summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2020-03-03Update the module extension for Darwin.brook2-45/+30
Babl v0.1.74 now uses .dylib as the extension for modules on Darwin. Consequently, it is no longer necessary to rename the files post-install, but it is necessary to use different extensions for more of PLIST.
2020-03-02gcc6: also record the checksum for ecj-4.5.jarkhorben1-1/+5
This fixes building lang/gcc6 with the "gcc-java" option enabled.
2020-03-02rust: Bump SmartOS bootstrap library requirements.jperkin1-3/+3
2020-03-02Updated sysutils/py-supervisor; Removed www/py-meld3adam1-1/+3
2020-03-02py-meld3: removed; included in latest py-supervisoradam5-53/+1
2020-03-02py-supervisor: updated to 4.1.0adam4-30/+67
4.1.0: - Fixed a bug on Python 3 only where logging to syslog did not work and would log the exception ``TypeError: a bytes-like object is required, not 'str'`` to the main ``supervisord`` log file. - Fixed a Python 3.8 compatibility issue caused by the removal of ``cgi.escape()``. - The ``meld3`` package is no longer a dependency. A version of ``meld3`` is now included within the ``supervisor`` package itself. 4.0.4: - Fixed a bug where ``supervisorctl tail <name> stdout`` would actually tail ``stderr``. Note that ``tail <name>`` without the explicit ``stdout`` correctly tailed ``stdout``. The bug existed since 3.0a3 (released in 2007). - Improved the warning message added in 4.0.3 so it is now emitted for both ``tail`` and ``tail -f``. - CVE-2019-12105. Documentation addition only, no code changes. This CVE states that ``inet_http_server`` does not use authentication by default (`details <https://github.com/Supervisor/supervisor/issues/1245>`_). Note that ``inet_http_server`` is not enabled by default, and is also not enabled in the example configuration output by ``echo_supervisord_conf``. The behavior of the ``inet_http_server`` options have been correctly documented, and have not changed, since the feature was introduced in 2006. A new `warning message <https://github.com/Supervisor/supervisor/commit/4e334d9cf2a1daff685893e35e72398437df3dcb>`_ was added to the documentation. 4.0.3: - Fixed an issue on Python 2 where running ``supervisorctl tail -f <name>`` would fail with the message ``Cannot connect, error: <type 'exceptions.UnicodeEncodeError'>`` where it may have worked on Supervisor 3.x. The issue was introduced in Supervisor 4.0.0 due to new bytes/strings conversions necessary to add Python 3 support. For ``supervisorctl`` to correctly display logs with Unicode characters, the terminal encoding specified by the environment must support it. If not, the ``UnicodeEncodeError`` may still occur on either Python 2 or 3. A new warning message is now printed if a problematic terminal encoding is detected. 4.0.2: - Fixed a bug where inline comments in the config file were not parsed correctly such that the comments were included as part of the values. This only occurred on Python 2, and only where the environment had an extra ``configparser`` module installed. The bug was introduced in Supervisor 4.0.0 because of Python 2/3 compatibility code that expected a Python 2 environment to only have a ``ConfigParser`` module. 4.0.1: - Fixed an issue on Python 3 where an ``OSError: [Errno 29] Illegal seek`` would occur if ``logfile`` in the ``[supervisord]`` section was set to a special file like ``/dev/stdout`` that was not seekable, even if ``logfile_maxbytes = 0`` was set to disable rotation. The issue only affected the main log and not child logs. 4.0.0: - Support for Python 3 has been added. On Python 3, Supervisor requires Python 3.4 or later. Many thanks to Vinay Sajip, Scott Maxwell, Palm Kevin, Tres Seaver, Marc Abramowitz, Son Nguyen, Shane Hathaway, Evan Andrews, and Ethan Hann who all made major contributions to the Python 3 porting effort. Thanks also to all contributors who submitted issue reports and patches towards this effort. - Support for Python 2.4, 2.5, and 2.6 has been dropped. On Python 2, Supervisor now requires Python 2.7. - The ``supervisor`` package is no longer a namespace package. - The behavior of the config file expansion ``%(here)s`` has changed. In previous versions, a bug caused ``%(here)s`` to always expand to the directory of the root config file. Now, when ``%(here)s`` is used inside a file included via ``[include]``, it will expand to the directory of that file. Thanks to Alex Eftimie and Zoltan Toth-Czifra for the patches. - The default value for the config file setting ``exitcodes=``, the expected exit codes of a program, has changed. In previous versions, it was ``0,2``. This caused issues with Golang programs where ``panic()`` causes the exit code to be ``2``. The default value for ``exitcodes`` is now ``0``. - An undocumented feature where multiple ``supervisorctl`` commands could be combined on a single line separated by semicolons has been removed. - ``supervisorctl`` will now set its exit code to a non-zero value when an error condition occurs. Previous versions did not set the exit code for most error conditions so it was almost always 0. - Added new ``stdout_syslog`` and ``stderr_syslog`` options to the config file. These are boolean options that indicate whether process output will be sent to syslog. Supervisor can now log to both files and syslog at the same time. Specifying a log filename of ``syslog`` is still supported but deprecated.
2020-03-02net/nagios-plugin-spamd: Fix spamc embedded pathgdt1-3/+5
Upstream has a hard-coded path to spamc which is not correct in the pkgsrc context. Previously there was a SUBST block to change this, but it was changed to an odd directory with a missing /, and it seems this could never have worked. Change the SUBST block to result in looking for spamc in ${PREFIX}/bin/spamc, which is where the pkgsrc build of spamassassin puts it. Add comments explaining why there is both this SUBST block (embedded spamc path) and REPLACE_PERL (interpreter path). From Mike Pumford on pkgsrc-users.
2020-03-02Updated databases/py-sqlparse, textproc/py-parse, devel/py-mako, ↵adam1-1/+5
devel/py-importlib-resources
2020-03-02py-importlib-resources: updated to 1.1.0adam3-9/+16
v1.1.0 Add support for retrieving resources from subdirectories of packages through the new files() function, which returns a Traversable object with joinpath and read_* interfaces matching those of pathlib.Path objects. This new function supersedes all of the previous functionality as it provides a more general-purpose access to a package’s resources. With this function, subdirectories are supported. The documentation has been updated to reflect that this function is now the preferred interface for loading package resources. It does not, however, support resources from arbitrary loaders. It currently only supports resources from file system path and zipfile packages (a consequence of the ResourceReader interface only operating on Python packages).
2020-03-02py-mako: updated to 1.1.2adam2-11/+10
1.1.2 [feature] [commands] Added –output-file argument to the Mako command line runner, which allows a specific output file to be selected. Pull request courtesy Björn Dahlgren. 1.1.1 [bug] [py3k] Replaced usage of the long-superseded “parser.suite” module in the mako.util package for parsing the python magic encoding comment with the “ast.parse” function introduced many years ago in Python 2.5, as “parser.suite” is emitting deprecation warnings in Python 3.9. [bug] [ext] Added “babel” and “lingua” dependency entries to the setuptools entrypoints for the babel and lingua extensions, so that pkg_resources can check that these extra dependencies are available, raising an informative exception if not. Pull request courtesy sinoroc.
2020-03-02py-parse: updated to 1.15.0adam2-7/+7
1.15.0 Several fixes for parsing non-base 10 numbers
2020-03-02py-sqlparse: updated to 0.3.1adam2-7/+7
Release 0.3.1: Enhancements * Add HQL keywords. * Add support for time zone casts. * Enhance formatting of AS keyword. * Stabilize grouping engine when parsing invalid SQL statements. Bug Fixes * Fix splitting of SQL with multiple statements inside parentheses. * Correctly identify NULLS FIRST / NULLS LAST as keywords. * Fix splitting of SQL statements that contain dollar signs in identifiers. * Remove support for parsing double slash comments introduced in 0.3.0 as it had some side-effects with other dialects and doesn't seem to be widely used. * Restrict detection of alias names to objects that acutally could have an alias. * Fix parsing of date/time literals. * Fix initialization of TokenList. * Fix parsing of LIKE. * Improve parsing of identifiers
2020-03-01doc: Updated net/gallery-dl to 1.13.1leot1-1/+2
2020-03-01gallery-dl: Update to 1.13.1leot3-8/+14
Changes: 1.13.1 ------ ### Additions - [hentaihand] add extractors (#605) - [hiperdex] add chapter and manga extractors (#606) - [oauth] implement option to write DeviantArt refresh-tokens to cache (#616) - [downloader:http] add more MIME types for `.bmp` and `.rar` files (#621, #628) - warn about expired cookies ### Fixes - [bcy] fix partial image URLs (#613) - [danbooru] fix Ugoira downloads and metadata - [deviantart] check availability of `/intermediary/` URLs (#609) - [hitomi] follow multiple redirects & fix image URLs - [piczel] improve and update - [tumblr] replace `-` with ` ` in tag searches (#611) - [vsco] update gallery URL pattern - fix `--verbose` and `--quiet` command-line options
2020-03-01doc: Updated x11/xfce4-session to 4.14.1nb1gutteridge1-1/+2
2020-03-01xfce4-session: fix compilation on !Linux !*BSDgutteridge3-2/+48
More work would be required should someone want suspension or hibernation to function in this case, this is simply a build fix.
2020-03-01proxytunnel: Fix build with OpenSSL 1.1nia3-3/+19
bump PKGREVISION
2020-03-01litmus: Disable SSL support, broken with OpenSSL 1.1nia1-4/+3
Also fails to build with current gnutls... Bump PKGREVISION
2020-03-01doc: Removed security/gpassnia1-1/+2
2020-03-01security: Remove gpass, dead GNOME 2 app, fails with OpenSSL 1.1nia11-234/+1
2020-03-01doc: Removed mail/freepopsnia1-1/+2
2020-03-01mail: Remove freepops - dead since 2008, fails with OpenSSL 1.1nia15-491/+1
2020-03-01doc: Removed security/mixminionnia1-1/+2
2020-03-01security: Remove mixminion - in alpha since 2007, fails with OpenSSL 1.1nia8-371/+1
2020-03-01doc: Removed security/signnia1-1/+2
2020-03-01security: Remove sign - fails with OpenSSL 1.1, no release since 2004nia5-41/+1
2020-03-01doc: Removed security/studnia1-1/+2
2020-03-01security: Remove stud - abandonware, fails to build with OpenSSL 1.1nia12-524/+1
From the README: "Stud is now officially abandonware, thanks for playing."
2020-03-01doc: Removed security/sslwrapnia1-1/+2
2020-03-01security: Remove sslwrap. Breaks with OpenSSL 1.1, no release since 2000nia8-126/+1
2020-03-01doc: Removed security/p5-OpenSSLnia1-1/+2
2020-03-01security: Remove p5-OpenSSL. Broken with OpenSSL 1.1, dead upstream.nia4-40/+1
p5-Net-SSLeay seems more popular in Perl-land.
2020-03-01doc: Removed print/pdfmodnia1-1/+2
2020-03-01print: remove pdfmodnia7-142/+1
unmaintained gnome2 component, archived upstream
2020-03-01opencv-contrib-face: Fix possible build failure when jasper is installedleot1-1/+2
When jasper is installed the build fails because it is accidentally recognized. Discussed on pkgsrc-changes@: https://mail-index.NetBSD.org/pkgsrc-changes/2020/02/16/msg206681.html
2020-03-01opencv: Restore optionality of jaspernia3-6/+18
bump PKGREVISION
2020-03-01doc: Updated net/youtube-dl to 20200301leot1-1/+2
2020-03-01youtube-dl: Update to 20200301leot2-7/+7
Changes: 20200301 -------- Core * [YoutubeDL] Force redirect URL to unicode on python 2 - [options] Remove duplicate short option -v for --version (#24162) Extractors * [xhamster] Fix extraction (#24205) * [franceculture] Fix extraction (#24204) + [telecinco] Add support for article opening videos * [telecinco] Fix extraction (#24195) * [xtube] Fix metadata extraction (#21073, #22455) * [youjizz] Fix extraction (#24181) - Remove no longer needed compat_str around geturl * [pornhd] Fix extraction (#24128) + [teachable] Add support for multiple videos per lecture (#24101) + [wistia] Add support for multiple generic embeds (#8347, 11385) * [imdb] Fix extraction (#23443) * [tv2dk:bornholm:play] Fix extraction (#24076)
2020-03-01doc: Removed audio/gimmixnia1-1/+2
2020-03-01audio: Remove gimmixnia8-218/+1
Upstream disappeared around 7 years ago. This isn't the latest version which is apparently 0.5.7.2. Plenty of other mpd clients are available.
2020-03-01updates to texworks and texstudiomarkd1-1/+3
2020-03-01texstudio: update to 2.12.22markd4-11/+34
2020-01-18: 2.12.22 It fixes garbled symbols in OSX, crash when changing magic language comment and pdf search path handling. 2020-01-13: 2.12.20 It fixes a problem with replacing when search highlight is activated. 2019-12-26: 2.12.18 This is mainly a bug fix release. Most notably change is better support of regexp in search (Qt5 version only).
2020-03-01glabels: gets gnome categorynia1-2/+2
2020-03-01texworks: update to 0.6.3markd5-15/+40
also add patch to work around qt5.14 issue. Release 0.6.3 (TL'19) [March 2019] * Implement "Insert Citations..." dialog * Implement indenting/unindenting by Tab/Shift+Tab (thanks to fsonner) * Make synchronization granularity configurable (highlight corresponding character, word, or line) * Add ability to distinguish identically named files by displaying the respective folders they are in in the window title, window menu, and under "Open Recent" * Implement "Fit to content width" PDF zoom (which ignores empty space around the text) * Disable unavailable typesetting engines * Allow to change the editor font size by Ctrl+Mousewheel (thanks to Tim Hoffmann) * Improve the detection of spellchecking languages (add ability to search multiple directories and list all results) * Hide the menu bar in PDF full screen mode * Rework/expand code completion strings (thanks to Joseph Wright) * Add/update syntax highlighting for LaTeX, ConTeXt, Lua, DTX (all thanks to Joseph Wright), and BibTeX * Add cleanup-patterns for beamer files .nav & .snm * Add new/unified icons for typeset (thanks to Tim Hoffmann) and zooming * Display paper size and file size in the PDF metadata * Fix infinite loop in syntax highlighter (which caused significant slow-down especially for large files) * Fix underline when spellchecking with syntax highlighting * Fix "Place on Left/Right", especially on multi-screen setups * Avoid 'file "" not found' errors when synchronizing * Fix synchronization while searching in a PDF * Fix fine-grained synchronization near paragraph boundaries * Fix the PDF copy menu command * Fix PDF text selection * Fix font color reset when searching and using stylesheets * Fix crashes when working with locked PDFs * Fix unexpected cursor movement when using a combination of backspace and up/down arrow keys (thanks to Markus Kuhn) * Fix the font in the log parser output * Fix persistent magnifying glass * Remove unimplemented PDF menu items cut, paste, clear * Update translations * Update libraries for pre-built binaries
2020-03-01glabels: missing schema includenia1-1/+2
2020-03-01PKGREVISION bump for poppler dependency changemarkd8-16/+16
2020-03-01doc: Updated print/glabels to 3.4.1nia1-1/+2
2020-03-01glabels: Remove file that's no longer needednia1-72/+0
2020-03-01glabels: Update to 3.4.1nia4-227/+704
Updated to gtk3 version, no longer depends on gnome2 libraries
2020-03-01doc: Fix changes linenia1-2/+2