summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-11-21Update to 20181121. Changes:schmonz2-7/+9
- NOFIXSMTPIO: new environment variable to perform no filtering. - FIXSMTPIODEBUG: prefix program name to log messages. - Compile as C99. - Have die_nomem() log two levels of call stack. - Have get_one() log one caller further. - Avoid extern in declarations. - Empty next_pile and free event when done. - Use acceptutils' stralloc wrappers in tls_info(). - Don't call tls_info(): no point setting TLS connection environment variables when our child has already forked.
2018-11-21Added devel/py-prompt_toolkit2; Updated devel/py-ipythonadam1-1/+3
2018-11-21py-ipython: updated to 7.1.1adam4-22/+39
IPython 7.1.0 IPython 7.1.0 is the first minor release after 7.0.0 and mostly bring fixes to new feature, internal refactor and regressions that happen during the 6.x->7.x transition. It also bring Compatibility with Python 3.7.1, as were unwillingly relying on a bug in CPython. New Core Dev: We welcome Jonathan Slenders to the commiters. Jonathan has done a fantastic work on Prompt toolkit, and we’d like to recognise his impact by giving him commit rights. Notables Changes Major update of “latex to unicode” tab completion map (see below) Notable New Features: Restore functionality and documentation of the sphinx directive, which is now stricter (fail on error by default), gained configuration options, have a brand new documentation page IPython Sphinx Directive, which need some cleanup. It is also now tested so we hope to have less regressions. IPython.display.Video now supports width and height arguments, allowing a custom width and height to be set instead of using the video’s width and height. Warn when using HTML('<iframe>') instead of IFrame Allow Dynamic switching of editing mode between vi/emacs and show normal/input mode in prompt when using vi. Use %config TerminalInteractiveShell.editing_mode = 'vi' or %config TerminalInteractiveShell.editing_mode = 'emacs' to dynamically spwitch Notable Fixes: Fix entering of multi-line block in terminal IPython, and various crashes in the new input transformation machinery Fix moving through generator stack in ipdb Magics arguments now support quoting. Re-add rprint and rprinte aliases. Remove implicit dependency to ipython_genutils Make nonlocal raise SyntaxError instead of silently failing in async mode. Fix mishandling of magics and = ! assignment just after a dedent in nested code blocks Fix instructions for custom shortcuts Notable Internals improvements: Use of os.scandir (Python 3 only) to speedup some file system operations. use perf_counter instead of clock for more precise timing result with %time
2018-11-21py-prompt_toolkit2: added version 2.0.7adam5-1/+466
2.0.7: Bug fixes: - Fixed assertion in PromptSession: the style_transformation check was wrong. - Removed 'default' attribute in PromptSession. Only ask for it in the prompt() method. This fixes the issue that passing default once, will store it for all consequent calls in the PromptSession. - Ensure that __pt_formatted_text__ always returns a FormattedText instance. This fixes an issue with print_formatted_text. New features: - Improved handling of situations where stdin or stdout are not a terminal. (Print warning instead of failing with an assertion.) - Added print_container utility. - Sound bell when attempting to edit read-only buffer. - Handle page-down and page-up keys in RadioList. - Accept any collections.abc.Sequence for HSplit/VSplit children (instead of lists only). - Improved Vi key bindings: return to navigation mode when Insert is pressed. 2.0.6: Bug fixes: - Don't use the predefined ANSI colors for colors that are defined as RGB. (Terminals can assign different color schemes for ansi colors, and we don't want use any of those for colors that are defined like #aabbcc for instance.) - Fix in handling of CPRs when patch_stdout is used. Backwards incompatible changes: - Change to the Buffer class. Reset the buffer unless the accept_handler returns True (which means: "keep_text"). This doesn't affect applications that use PromptSession. New features: - Added AdjustBrightnessStyleTransformation. This is a simple style transformation that improves the rendering on terminals with light or dark background. - Improved performance (string width caching and line height calculation). - Improved TextArea: * Exposed focus_on_click. * Added attributes: auto_suggest, complete_while_typing, history, get_line_prefix, input_processors. * Made attributes writable: lexer, completer, complete_while_typing, accept_handler, read_only, wrap_lines. 2.0.5: Bug fixes: - Fix in DynamicContainer. Return correct result for get_children. This fixes a bug related to focusing. - Properly compute length of start, end and sym_b characters of progress bar. - CPR (cursor position request) fix. Backwards incompatible changes: - Stop restoring PromptSession attributes when exiting prompt. New features: - Added get_line_prefix attribute to window. This opens many possibilities: * Line wrapping (soft and hard) can insert whitespace in front of the line, or insert some symbols in front. Like the Vim "breakindent" option. * Single line prompts also support line continuations now. * Line continuations can have a variable width. - For VI mode: implemented temporary normal mode (control-O in insert mode). - Added style transformations API. Useful for swapping between light and dark color schemes. Added swap_light_and_dark_colors parameter to prompt() function. - Added format() method to ANSI formatted text. - Set cursor position for Button widgets. - Added pre_run argument to PromptSession.prompt() method. 2.0.4: Bug fixes: - Fix render height for rendering full screen applications in Windows. - Fix in TextArea. Set accept_handler to None if not given. - Go to the beginning of the next line when enter is pressed in Vi navigation mode, and the buffer doesn't have an accept handler. - Fix the default argument of the prompt function when called multiple times. - Display decomposed multiwidth characters correctly. - Accept history in prompt() function again. Backwards incompatible changes: - Renamed PipeInput to PosixPipeInput. Added Win32PipeInput and create_input_pipe. - Pass buffer argument to the accept_handler of TextArea. New features: - Added accept_default argument to prompt(). - Make it easier to change the body/title of a Frame/Dialog. - Added DynamicContainer. - Added merge_completers for merging multiple completers together. - Add vt100 data to key presses in Windows. - Handle left/right key bindings in Vi block insert mode. 2.0.3: Bug fixes: - Fix in 'x' and 'X' Vi key bindings. Correctly handle line endings and args. - Fixed off by one error in Vi line selection. - Fixed bugs in Vi block selection. Correctly handle lines that the selection doesn't cross. - Python 2 bugfix. Handle str/unicode correctly. - Handle option+left/right in iTerm. 2.0.2: Bug fixes: - Python 3.7 support: correctly handle StopIteration in asynchronous generator. - Fixed off-by-one bug in Vi visual block mode. - Bugfix in TabsProcessor: handle situations when the cursor is at the end of the line.
2018-11-21Updated www/py-httpie, www/py-httplib2adam1-1/+3
2018-11-21py-httplib2: updated to 0.12.0adam3-9/+12
0.12.0 Drop support for Python 3.3 ca_certs from environment HTTPLIB2_CA_CERTS or certifi PROXY_TYPE_HTTP with non-empty user/pass raised TypeError: bytes required Revert http:443->https workaround eliminate connection pool read race cache: stronger safename
2018-11-21py-httpie: updated to 1.0.0adam4-12/+15
1.0.0: * Added --style=auto which follows the terminal ANSI color styles. * Added support for selecting TLS 1.3 via --ssl=tls1.3 (available once implemented in upstream libraries). * Added true/false as valid values for --verify (in addition to yes/no) and the boolean value is case-insensitive. * Changed the default --style from solarized to auto (on Windows it stays fruity). * Fixed default headers being incorrectly case-sensitive. * Removed Python 2.6 support.
2018-11-21Updated devel/cmake, devel/libcerf, graphics/gnuplotadam1-1/+4
2018-11-21gnuplot: updated to 5.2.5adam4-12/+29
CHANGES IN 5.2.5 NEW "set pm3d depthorder base" sorts pm3d quadrangles by projecting to z=0 NEW "set jitter vertical" displaces y coordinate rather than x coordinate NEW array size can be determined automatically from the initializer CHANGE place titles along x axis in plots with columnstacked histograms CHANGE equivalent slope constraint for mcs splines at both ends of the range CHANGE treat imaginary values plotted from a using spec as UNDEFINED (NaN) CHANGE allow "reset" between plots in a multiplot layout CHANGE Deprecate linux and vgagl terminals (to be removed in 5.3) CHANGE placement of axis and tic labels in 3D projections on to xz or yz plane CHANGE default to ./configure --without-wx-multithreading FIX parametric function plots did not work with logscale x (regression in 5.2.0-4) FIX polar mode "set trange" was assumed to use radians, now it tracks "set angle" FIX clip polar grid lines and ticks to x/y range limits FIX clipping of plot "with lines" when axes are nonlinear (regression from 5.0) FIX clipping of all elements in finanacebars/candlesticks/boxplots FIX clipping of 3D splot "with labels" FIX strange interaction of "noautoscale" with blank data lines FIX alignment of boxed text to center for eps/cairolatex FIX incompatibility of "pm3d depthorder" and rgb color taken from data column FIX aqua terminal font changes in enhanced text mode
2018-11-21libcerf: updated to 1.7adam3-23/+19
libcerf-1.7: - Option -DCERF_CPP allows to choose C++ compilation, which is useful because MS VisualStudio supports C++14, but not yet C99, and in particular does not suppotr complex.h under C. libcerf-1.6: - Migrated from automake to CMake. - Corrected typos in man pages.
2018-11-21cmake: updated to 3.13.0adam5-29/+112
CMake 3.13.0: The Visual Studio Generators for VS 2010 and above learned to support the “INTERPROCEDURAL_OPTIMIZATION” target property and supporting “CheckIPOSupported” module. The “Green Hills MULTI” generator has been updated to include support for platform, architecture, and toolset selection. The “cmake” command gained the “-S <source_dir>” command line option to specify the location of the source directory. This option can be used independently of “-B”. The “cmake” command gained the “-B <build_dir>” command line option to specify the location of the build directory. This option can be used independently of “-S”. The “cmake” “-E create_symlink” command can now be used on Windows. The “target_link_directories()” command was created to specify link directories for targets and their dependents. The “target_link_options()” command was created to specify link options for targets and their dependents. The “target_link_libraries()” command may now be called to modify targets created outside the current directory. See policy “CMP0079”. The “install(TARGETS)” command learned to install targets created outside the current directory. A “VS_DEBUGGER_COMMAND_ARGUMENTS” target property was created to set the debugging command line arguments with Visual Studio Generators for VS 2010 and above. A “VS_DEBUGGER_ENVIRONMENT” target property was created to set the debugging environment with Visual Studio Generators for VS 2010 and above. The “option()” command now honors an existing normal variable of the same name and does nothing instead of possibly creating a cache entry (or setting its type) and removing the normal variable. See policy “CMP0077”. The “target_sources()” command now interprets relative source file paths as relative to the current source directory. This simplifies incrementally building up a target’s sources from subdirectories. The “CMP0076” policy was added to provide backward compatibility with the old behavior where required.
2018-11-21doc: Updated graphics/papirus-icon-theme to 20181120nia1-1/+2
2018-11-21papirus-icon-theme: Update to 20181120nia3-27645/+1032
Highlights * Papirus-Adapta and Papirus-Adapta-Nokto icon themes removed #1499 * Papirus-Dark, and Papirus-Light detached from GTK theme colors #1500
2018-11-21When failing to install due to OS version mismatch, also print how to ↵jmcneill1-1/+2
override this check.
2018-11-21lang: Re-enable lang/go as a meta package.jperkin3-2/+28
This allows users to simply install a "go" package and pull in the latest version available for their host operating system without having to figure out the name for the correct suffixed package.
2018-11-21tootstream: remove patch to unbreak thisnia3-22/+3
2018-11-21Updated textproc/py-Unidecode, devel/py-dashadam1-1/+3
2018-11-21py-dash: updated to 4.7.4adam2-7/+7
v4.7.4: Bug Fixes - Raise an explicit exception in set_, set_with, update, and update_with when an object cannot be updated due to that object or one of its nested objects not being subscriptable.
2018-11-21py-Unidecode: updated to 1.0.23adam4-11/+12
unidecode 1.0.23 * Improve transliteration of Hebrew letters * Add transliterations for the phonetic block U+1D00 - U+1D7F * Transliterate SI "micro" prefix as "u" instead of "micro" in the U+33xx block. * Add U+33DE SQUARE V OVER M and U+33DF SQUARE A OVER M. * Drop support for Python 2.6 and 3.3
2018-11-21Updated security/py-cryptography_vectors, security/py-cryptographyadam1-1/+3
2018-11-21py-cryptography[_vectors]: updated to 2.4.2adam4-15/+15
2.4.2: Updated Windows, macOS, and manylinux1 wheels to be compiled with OpenSSL 1.1.0j.
2018-11-21perl5: Add some comments regarding the hack.maya1-4/+7
Requested by leot
2018-11-21perl5: low cost hack for alignment issue on SunOS/sparc.maya1-1/+8
Substitute -O3 with -O2. This is tracked upstream in https://rt.perl.org/Public/Bug/Display.html?id=133495 From Hiroshi Hakoyama in PR pkg/53568
2018-11-21fltk2: don't provide declarations if we know they exist.maya2-1/+36
Fixes build failure: https://mail-index.netbsd.org/pkgsrc-users/2018/11/16/msg027701.html
2018-11-21MesaLib18: depend on zlibmaya1-1/+2
Most people get this through either llvm or libpciaccess, but everyone needs it. PR pkg/52686.
2018-11-21Include bsd.prefs.mk fot OPSYSryoon1-1/+2
2018-11-20doc: Updated net/torsocks to 2.3.0leot1-1/+2
2018-11-20torsocks: Update net/torsocks to 2.3.0leot4-145/+32
pkgsrc changes: - Update MASTER_SITES to avoid MASTER_SITE_DEBIAN Changes: 2018-11-19 torsocks 2.3.0 * Fix a bunch of stuff in the wrapper script, #24967 * gethostbyaddr_r: always assign result * log: Remove log line when logging is stopped * gethostbyaddr_r: Don't put garbage in data->hostname * gethostbyaddr_r: Populate h_addrtype field * log: Avoid crash or file corruption when closing logs * connect: Always pass .onion IP cookie to connection object * Merge remote-tracking branch 'yawning/bug23715' * Make torsocks always connect to the configured Tor port * test: Make getpeername test connect to moria1 * socks5: Always use ATYP 0x03 for CONNECT command * Merge remote-tracking branch 'upstream/master' * doc: Clarify the libc limitation in README * accept4: Initialize libc symbol early * Bug 23715: Support memfd_create(2). * test: Detect if tor is running in test_fd_passing * No tab in the README * Merge remote-tracking branch 'debian/bugfix/typo-subsytem' * Merge remote-tracking branch 'debian/bugfix/typo-catched' * Merge remote-tracking branch 'debian/bugfix/typo-conect' * doc: Add autogen.sh step to README * Add a -q/--quiet to torsocks * tests: Add a check for a running Tor * Make cpp conditional for definition of handle_mmap match use * utils: Add useful function for later use * man: Some words were missing * Remove clang warnings * Add missing quotes to variable in torsocks.in * Fix check_addr() to return either 0 or 1 * Ignore stderr for getcap command * syscall: Add seccomp, gettimeofday, clock_gettime, fork * Fix typo: conect -> connect. * Fix typo: subsytem -> subsystem. * Fix typo: catched -> caught.
2018-11-20doc: Updated devel/gradle to 4.10.2schmonz1-1/+2
2018-11-20Update to 4.10.2. From the changelog:schmonz2-7/+7
- [#6750] Gradle fails to resolve project dependencies against Scala projects - [#6747] Candidate set provided to `AttributeDisambiguationRule` contains null entry - [#6735] Dependent module Scala compilation in test context fails for 4.10.1
2018-11-20arm-none-eabi-gcc: Remove hack for building with clang.maya1-9/+1
GCC no longer generates super deeply nested code requiring this workaround as of upstream revision 235536
2018-11-20Updated devel/py-test-localserver, www/py-django-admin-rangefilteradam1-1/+3
2018-11-20py-django-admin-rangefilter: updated to 0.3.9adam2-7/+7
0.3.9: - Fix calendar icons displayed for Django 2.1
2018-11-20py-test-localserver: updated to 0.5.0adam2-12/+10
0.5.0: New feature: SMTP email message objects now include a details property capturing the envelope details.
2018-11-20Added www/py-djangocms-attributes-field; Updated www/py-django-filer, ↵adam1-1/+10
www/py-djangocms-text-ckeditor, www/py-djangocms-file, www/py-djangocms-googlemap, www/py-djangocms-inherit, www/py-djangocms-picture, www/py-djangocms-style, www/py-djangocms-video
2018-11-20py-djangocms-video: updated to 2.1.0adam4-21/+57
2.1.0: Removed support for Django 1.8, 1.9, 1.10 2.0.5: Deal with missing context from aldryn-search Add support for newer Django versions Add parameters for embed_link Fix swappable filer image model support 2.0.4: Added URL parsing for the embed url. It now accepts various versions of YouTube urls and converts them to an embed link. Added the python3.5 test env 2.0.3: Prevent changes to DJANGOCMS_VIDEO_XXX settings from requiring new migrations Changed naming of Aldryn to Divio Cloud Adapted testing infrastructure (tox/travis) to incorporate django CMS 3.4 and dropped 3.2 Updated translations 2.0.2: Fixed an issues with migrations where Null values caused IntegrityError 2.0.1: Removed base.html for performance reasons Fixed faulty settings parsing in aldryn_config.py Fixed an issue where ValidationError wasn't imported Adapted private get_template method Updated translations 2.0.0: Dropped flash support Dropped django CMS <3.3.1 support Dropped Django <1.8 support Renamed Video to VideoPlayer Added Video Source Plugin Added Video Track Plugin Adapted files to resemble best practices Updated translations
2018-11-20py-djangocms-style: updated to 2.1.0adam4-28/+44
2.1.0: Fixed a validation issue with attributes Added support for Django 1.11, 2.0 and 2.1 Removed support for Django 1.8, 1.9, 1.10 Adapted testing infrastructure (tox/travis) to incorporate django CMS 3.5 and 4.0 2.0.2: Ensure class ordering is maintained 2.0.1: Prevent changes to DJANGOCMS_STYLE_XXX settings from requiring new migrations Changed naming of Aldryn to Divio Cloud Adapted testing infrastructure (tox/travis) to incorporate django CMS 3.4 and dropped 3.2 Updated translations
2018-11-20py-djangocms-picture: updated to 2.1.1adam4-22/+52
2.1.1: Added reference variables to migrations Fixed a text typo in models 2.1.0: Removed support for Django 1.8, 1.9, 1.10 2.0.8: Fixed an issue where default DJANGOCMS_PICTURE_RESPONSIVE_IMAGES was not in settings 2.0.7: Add responsive image support Add support for Django 2.0 and 2.1 Fix swappable filer image model support 2.0.6: Fixed a misleading link to MDN inside code documentation Abstract the link model so it can be extended by other addons 2.0.5: Fixed an issue in DJANGOCMS_PICTURE_ALIGN where "Align center" pointed to the wrong value Updated translations 2.0.4: Prevent changes to DJANGOCMS_PICTURE_XXX settings from requiring new migrations Changed naming of Aldryn to Divio Cloud Adapted testing infrastructure (tox/travis) to incorporate django CMS 3.4 and dropped 3.2 Fixed an issue when no image is set after deletion in django-filer (on_delete=SET_NULL) Updated translations 2.0.3: Fixed an issue with picture_link not working as expected in the template Fixed an issue where the alt text was not displayed appropriately Fixed an issue where placeholder params can be strings 2.0.2: Fixed an issues with migrations where Null values caused IntegrityError 2.0.1: Fixes an issue where images throw an AttributeError
2018-11-20py-djangocms-inherit: updated to 0.2.2adam3-10/+13
0.2.2: Unknown changes
2018-11-20py-djangocms-googlemap: updated to 1.2.0adam4-21/+57
1.2.0: Fixed an issue with map not always setting correct zoom level Removed admin url data attribute from the map marker if cms isn't in edit mode Added support for Django 1.11, 2.0 and 2.1 Removed support for Django 1.8, 1.9, 1.10 Adapted testing infrastructure (tox/travis) to incorporate django CMS 3.5 and 4.0 1.1.1: Refactored migration 0005 to avoid using the django CMS api because it can lead to database errors when the models on file don't match the ones in the migration. Moved Google Apps API Key to an environment variable on Divio Cloud 1.1.0: Added support for customize marker icon Updated translations 1.0.2: Fixed an issue where 0005 migration mismatches lat/lng values when creating the new nested structure from older upgrades Updated translations 1.0.1: Prevent changes to DJANGOCMS_GOOGLEMAP_XXX settings from requiring new migrations Changed naming of Aldryn to Divio Cloud Adapted testing infrastructure (tox/travis) to incorporate django CMS 3.4 and dropped 3.2 Fixed zoom level not correctly being applied Fixed latitude/longitude data attribute values being incorrectly parsed for locales not using a period as decimal separator (e.g. german)
2018-11-20py-djangocms-file: updated to 2.1.0adam4-24/+50
2.1.0: Removed support for Django 1.8, 1.9, 1.10 2.0.3: Add support for Django 1.10, 1.11, 2.0 and 2.1 Adapted testing infrastructure (tox/travis) to incorporate django CMS 3.5 and 4.0 2.0.2: Prevent changes to DJANGOCMS_FILE_XXX settings from requiring new migrations Changed naming of Aldryn to Divio Cloud Adapted testing infrastructure (tox/travis) to incorporate django CMS 3.4 and dropped 3.2 Updated translations 2.0.1: Fixes an issue where images throw an AttributeError 2.0.0: Added tests Cleaned up file structure Removed Django < 1.8 support Adapted README.txt Added translations
2018-11-20py-djangocms-text-ckeditor: updated to 3.6.1adam3-50/+74
3.6.1: Added Django 2.0 & 2.1 support Updated setup.py to use html5lib>=0.999999999 Fixed ValueError on static file resolution at import time 3.6.0: Changed the way ckeditor widget is initialized 3.5.3: Updated CKEditor to 4.7.3 Added context to translation payload when dealing with TextPlugin instances 3.5.1: Introduced support for django CMS 3.5.0 Fixed a regression which prevented multiple HTMLFields from having different configurations. Fixed a bug where text coming from HtmlField was escaped when using it with other third party apps like django-parler. Fixed a bug where dialog backdrop would've been incorrectly removed allowing for disallowed actions. Fixed a bug when a dialog would open underneath maximized editor. 3.5.0: Fixed an issue where the rendered HTML of plugins nested in text plugins leaked and became editable in some cases. Updated CKEditor to 4.6.2 3.4.0: Introduced support for the djangocms-history app. Fixed an issue when CKEditor was triggering unnecessary delete-on-cancel requests after editing a plugin. Fixed a bug which raised an exception when using a lazy object on the plugin configuration.
2018-11-20py-djangocms-attributes-field: added version 0.4.0adam5-1/+58
This project aims to provide a sensible means of storing and managing arbitrary HTML element attributes for later emitting them into templates. There are a wide variety of types of attributes and using the "normal" Django method of adding ModelFields for each on a business model is cumbersome at best and moreover may require related tables to allow cases where any number of the same type of attribute should be supported (i.e., data-attributes). This can contribute to performance problems. To avoid these pitfalls, this package allows all of these attributes to be stored together in a single text field in the database as a JSON blob, but provides a nice widget to provide an intuitive, key/value pair interface and provide sensible validation of the keys used.
2018-11-20doc: Updated databases/postgresql-postgis2 to 2.5.1gdt1-1/+2
2018-11-20postgresql-postgis2: update to 2.5.1gdt3-12/+14
upstream NEWS is: bug fixes
2018-11-20angband-tty: Drop old GCC logicmaya1-5/+1
2018-11-20py-django-filer: updated to 1.4.0adam3-82/+165
1.4.0: * Added support for Django 2.0 and 2.1 * Enabled django-mptt 0.9 * Converted QueryDict to dict before manipulating in admin * Hide 'Save as new' button in file admin * Fixed history link for folder and image object * Fixed rendering canonical URL in change form
2018-11-20lua-posix: Only use CLOCK_{PROCESS,THREAD}_CPUTIME_ID if definedmaya2-1/+23
This is needed for netbsd<8. From Edgar Fuß in PR pkg/53600
2018-11-20lua stuff, from edgar.maya1-1/+5
2018-11-20lua-posix: missing and wrong dependencies, missing packagesmaya1-2/+5
From Edgar Fuß in PR pkg/53600. Bump PKGREVISION.