Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (27m)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-13 07:24:53 UTC Now

2017-02-21 08:01:19 UTC MAIN commitmail json YAML

Updated geopgraphy/py-geojson to 1.3.4.

(kleink)

2017-02-21 08:00:24 UTC MAIN commitmail json YAML

Update py-geojson to 1.3.4.

1.3.4 (2017-02-11)
------------------

- Remove runtime dependency on setuptools

  - https://github.com/frewsxcv/python-geojson/pull/90

1.3.3 (2016-07-21)
------------------

- Add validate parameter to GeoJSON constructors

  - https://github.com/frewsxcv/python-geojson/pull/78

(kleink)

2017-02-21 07:47:29 UTC MAIN commitmail json YAML

Updated textproc/p5-Text-vCard to 3.09.

(kleink)

2017-02-21 07:46:52 UTC MAIN commitmail json YAML

Update p5-Text-vCard to 3.09.

3.09 Sun 23 Oct 2016 20:24:06 BST
    - Support Orgs (worthmine)

3.08 Sun  9 Oct 2016 21:56:23 BST
    - Enconde/decode the key value pair to UTF-8 solves (jluis)

(kleink)

2017-02-21 06:32:15 UTC MAIN commitmail json YAML

Added devel/ruby-multi_test version 0.1.2

(minskim)

2017-02-21 06:31:46 UTC MAIN commitmail json YAML

Add ruby-multi_test

(minskim)

2017-02-21 06:30:46 UTC MAIN commitmail json YAML

Import ruby-multi_test-0.1.2 as devel/ruby-multi_test

multi_test is a wafter-thin gem to help control rogue
test/unit/autorun requires.

(minskim)

2017-02-21 05:25:13 UTC MAIN commitmail json YAML

Add an upper API version restriction.
The current only user of this buildlink file is asterisk-chan-dongle
(which is yet to be committed).
With further users, comms/asterisk may need to find a version specific
directory as newer versions are imported.

(cherry)

2017-02-21 02:32:00 UTC MAIN commitmail json YAML

2017-02-21 01:20:14 UTC MAIN commitmail json YAML

Added devel/ruby-bit-struct version 0.15.0

(minskim)

2017-02-21 01:19:46 UTC MAIN commitmail json YAML

Add ruby-bit-struct

(minskim)

2017-02-21 01:18:13 UTC MAIN commitmail json YAML

Import ruby-bit-struct-0.15.0 as devel/ruby-bit-struct

Library for packed binary data stored in ruby Strings. Useful for
accessing fields in network packets and binary files.

(minskim)

2017-02-21 00:06:12 UTC MAIN commitmail json YAML

Make this more make-jobs-safe by creating a needed directory early enough.

(wiz)

2017-02-20 23:43:31 UTC MAIN commitmail json YAML

2017-02-20 23:42:25 UTC MAIN commitmail json YAML

2017-02-20 23:27:10 UTC MAIN commitmail json YAML

Added security/ruby-metasploit_payloads-mettle version 0.1.7

(minskim)

2017-02-20 23:26:41 UTC MAIN commitmail json YAML

Add ruby-metasploit_payloads-mettle

(minskim)

2017-02-20 23:25:42 UTC MAIN commitmail json YAML

2017-02-20 20:01:59 UTC MAIN commitmail json YAML

Updated lang/guile20 to 2.0.14

(gdt)

2017-02-20 20:01:45 UTC MAIN commitmail json YAML

Update to 2.0.14

Packaging changes: add patch to work around calling mkostemp with
invalid flags.

Upstream changes:

  Bug fixes

  Fix for CVE-2016-8606.  REPL server now protects against HTTP
  inter-protocol attacks

  Fix for CVE-2016-8605.  'mkdir' procedure no longer calls umask(2)
  (<http://bugs.gnu.org/24659>)

  New interface mkstemp! which takes optional "mode" argument

  New 'scm_to_uintptr_t' and 'scm_from_uintptr_t' C functions

(gdt)

2017-02-20 17:02:24 UTC MAIN commitmail json YAML

2017-02-20 17:00:37 UTC MAIN commitmail json YAML

2017-02-20 15:27:57 UTC MAIN commitmail json YAML

Updated www/py-flask-wtf to 0.14.2.

(kleink)

2017-02-20 15:27:12 UTC MAIN commitmail json YAML

Update py-flask-wtf to 0.14.2.

Version 0.14.2
--------------

Released 2017-01-10

- Fix bug where ``FlaskForm`` assumed ``meta`` argument was not ``None`` if it
  was passed. (`#278`_)

.. _#278: https://github.com/lepture/flask-wtf/issues/278

Version 0.14.1
--------------

Released 2017-01-10

- Fix bug where the file validators would incorrectly identify an empty file as
  valid data. (`#276`_, `#277`_)

    - ``FileField`` is no longer deprecated. The data is checked during
      processing and only set if it's a valid file.
    - ``has_file`` *is* deprecated; it's now equivalent to ``bool(field.data)``.
    - ``FileRequired`` and ``FileAllowed`` work with both the Flask-WTF and
      WTForms ``FileField`` classes.
    - The ``Optional`` validator now works with ``FileField``.

.. _#276: https://github.com/lepture/flask-wtf/issues/276
.. _#277: https://github.com/lepture/flask-wtf/pull/277

Version 0.14
------------

Released 2017-01-06

- Use itsdangerous to sign CSRF tokens and check expiration instead of doing it
  ourselves. (`#264`_)

    - All tokens are URL safe, removing the ``url_safe`` parameter from
      ``generate_csrf``. (`#206`_)
    - All tokens store a timestamp, which is checked in ``validate_csrf``. The
      ``time_limit`` parameter of ``generate_csrf`` is removed.

- Remove the ``app`` attribute from ``CsrfProtect``, use ``current_app``.
  (`#264`_)
- ``CsrfProtect`` protects the ``DELETE`` method by default. (`#264`_)
- The same CSRF token is generated for the lifetime of a request. It is exposed
  as ``g.csrf_token`` for use during testing. (`#227`_, `#264`_)
- ``CsrfProtect.error_handler`` is deprecated. (`#264`_)

    - Handlers that return a response work in addition to those that raise an
      error. The behavior was not clear in previous docs.
    - (`#200`_, `#209`_, `#243`_, `#252`_)

- Use ``Form.Meta`` instead of deprecated ``SecureForm`` for CSRF (and
  everything else). (`#216`_, `#271`_)

    - ``csrf_enabled`` parameter is still recognized but deprecated. All other
      attributes and methods from ``SecureForm`` are removed. (`#271`_)

- Provide ``WTF_CSRF_FIELD_NAME`` to configure the name of the CSRF token.
  (`#271`_)
- ``validate_csrf`` raises ``wtforms.ValidationError`` with specific messages
  instead of returning ``True`` or ``False``. This breaks anything that was
  calling the method directly. (`#239`_, `#271`_)

    - CSRF errors are logged as well as raised. (`#239`_)

- ``CsrfProtect`` is renamed to ``CSRFProtect``. A deprecation warning is issued
  when using the old name. ``CsrfError`` is renamed to ``CSRFError`` without
  deprecation. (`#271`_)
- ``FileField`` is deprecated because it no longer provides functionality over
  the provided validators. Use ``wtforms.FileField`` directly. (`#272`_)

.. _`#200`: https://github.com/lepture/flask-wtf/issues/200
.. _`#209`: https://github.com/lepture/flask-wtf/pull/209
.. _`#216`: https://github.com/lepture/flask-wtf/issues/216
.. _`#227`: https://github.com/lepture/flask-wtf/issues/227
.. _`#239`: https://github.com/lepture/flask-wtf/issues/239
.. _`#243`: https://github.com/lepture/flask-wtf/pull/243
.. _`#252`: https://github.com/lepture/flask-wtf/pull/252
.. _`#264`: https://github.com/lepture/flask-wtf/pull/264
.. _`#271`: https://github.com/lepture/flask-wtf/pull/271
.. _`#272`: https://github.com/lepture/flask-wtf/pull/272

Version 0.13.1
--------------

Released 2016/10/6

- Deprecation warning for ``Form`` is shown during ``__init__`` instead of immediately when subclassing. (`#262`_)
- Don't use ``pkg_resources`` to get version, for compatibility with GAE. (`#261`_)

.. _`#261`: https://github.com/lepture/flask-wtf/issues/261
.. _`#262`: https://github.com/lepture/flask-wtf/issues/262

Version 0.13
------------

Released 2016/09/29

- ``Form`` is renamed to ``FlaskForm`` in order to avoid name collision with WTForms's base class.  Using ``Form`` will show a deprecation warning. (`#250`_)
- ``hidden_tag`` no longer wraps the hidden inputs in a hidden div.  This is valid HTML5 and any modern HTML parser will behave correctly. (`#217`_, `#193`_)
- ``flask_wtf.html5`` is deprecated.  Import directly from ``wtforms.fields.html5``. (`#251`_)
- ``is_submitted`` is true for ``PATCH`` and ``DELETE`` in addition to ``POST`` and ``PUT``. (`#187`_)
- ``generate_csrf`` takes a ``token_key`` parameter to specify the key stored in the session. (`#206`_)
- ``generate_csrf`` takes a ``url_safe`` parameter to allow the token to be used in URLs. (`#206`_)
- ``form.data`` can be accessed multiple times without raising an exception. (`#248`_)
- File extension with multiple parts (``.tar.gz``) can be used in the ``FileAllowed`` validator. (`#201`_)

.. _`#187`: https://github.com/lepture/flask-wtf/pull/187
.. _`#193`: https://github.com/lepture/flask-wtf/issues/193
.. _`#201`: https://github.com/lepture/flask-wtf/issues/201
.. _`#206`: https://github.com/lepture/flask-wtf/pull/206
.. _`#217`: https://github.com/lepture/flask-wtf/issues/217
.. _`#248`: https://github.com/lepture/flask-wtf/pull/248
.. _`#250`: https://github.com/lepture/flask-wtf/pull/250
.. _`#251`: https://github.com/lepture/flask-wtf/pull/251

(kleink)

2017-02-20 15:19:54 UTC MAIN commitmail json YAML

Change bind99 and bind910 package to use the standard PKG_SYSCONFDIR
for config files instead of the hardcoded /etc path. Sync SMF support
across the two packages. Bump PKGREVISION.

(fhajny)

2017-02-20 15:03:50 UTC MAIN commitmail json YAML

Newer versions of Teapot appear to expect a wide char capable ncurses.

While here, drop maintainership - I haven't used the thing in years,
and definitely not since its conversion to a CMake build (of which I
know nothing).

(hauke)

2017-02-20 14:51:34 UTC MAIN commitmail json YAML

Updated textproc/py-vobject to 0.9.4.1.

(kleink)

2017-02-20 14:51:03 UTC MAIN commitmail json YAML

Update py-vobject to 0.9.4.1.

0.9.4.1
-------

* Pickling/deepcopy hotfix (#60)

(kleink)

2017-02-20 12:31:20 UTC MAIN commitmail json YAML

Updated devel/nss to 3.29.1

(ryoon)

2017-02-20 12:30:50 UTC MAIN commitmail json YAML

Update to 3.29.1

Changelog:
Fix binary compatibility issues in 3.29

(ryoon)

2017-02-20 12:26:20 UTC MAIN commitmail json YAML

Updated net/wget to 1.19.1

(ryoon)

2017-02-20 12:25:48 UTC MAIN commitmail json YAML

Update to 1.19.1

Changelog:
* Changes in Wget 1.19.1

* Fix bugs, a regression, portability/build issues

* Add new option --retry-on-http-error

* Changes in Wget 1.19

* New option --use-askpass=COMMAND. Fetch user/password by calling
  an external program.

* Use IDNA2008 (+ TR46 if available) through libidn2

* When processing a Metalink header, --metalink-index=<number> allows
  to process the header's application/metalink4+xml files.

* When processing a Metalink file, --trust-server-names enables the
  use of the destination file names specified in the Metalink file,
  otherwise a safe destination file name is computed.

* When processing a Metalink file, enforce a safe destination path.
  Remove any drive letter prefix under w32, i.e. 'C:D:file'.  Call
  libmetalink's metalink_check_safe_path() to prevent absolute,
  relative, or home paths:
  https://tools.ietf.org/html/rfc5854#section-4.1.2.1
  https://tools.ietf.org/html/rfc5854#section-4.2.8.3

* When processing a Metalink file, --directory-prefix=<prefix> sets
  the top of the retrieval tree to prefix for Metalink downloads.

* When processing a Metalink file, reject downloaded files which don't
  agree with their own metalink:size value:
  https://tools.ietf.org/html/rfc5854#section-4.2.16

* When processing a Metalink file, with --continue resume partially
  downloaded files and keep fully downloaded files even if they fail
  the verification.

* When processing a Metalink file, create the parent directories of a
  "path/file" destination file name:
  https://tools.ietf.org/html/rfc5854#section-4.1.2.1
  https://tools.ietf.org/html/rfc5854#section-4.2.8.3

* On a recursive download, append a .tmp suffix to temporary files
  that will be deleted after being parsed, and create them
  readable/writable only by the owner.

* New make target 'check-valgrind'

* Fix several bugs

* Fix compatibility issues

(ryoon)

2017-02-20 12:23:48 UTC MAIN commitmail json YAML

Updated www/firefox to 51.0.1nb4
Updated www/seamonkey to 2.46nb6

(ryoon)

2017-02-20 12:22:53 UTC MAIN commitmail json YAML

Disable widevine support, PR pkg/51969. Bump PKGREVISION.
It works with the demo site, however does not work with real services.

(ryoon)

2017-02-20 11:15:19 UTC MAIN commitmail json YAML

Hardcode the location of sandboxctl to not rely on the PATH.

Should fix the problems observed in:
http://ftp.netbsd.org/pub/pkgsrc/misc/joerg/20170219.1406/meta/report.html

(jmmv)

2017-02-20 10:33:48 UTC MAIN commitmail json YAML

Updated devel/meld to 3.17.0

(wiz)

2017-02-20 10:33:35 UTC MAIN commitmail json YAML

Updated meld to 3.17.0.

2016-12-18 meld 3.17.0
======================

  Python 3 porting:

  * Python 3 support; we now require Python 3.3 as a minimum
  * Python 3 compatibility fixes; too many cases of bytes/string confusion,
    syntax changes and other miscellany to mention individually (Vasily
    Galkin, Kai Willadsen)
  * Handle new unicode-escape behaviour and unicode/bytes confusion for
    process interaction and version control plugins (Vasily Galkin, Kai
    Willadsen)
  * Add support for byte-based filters, to support directory vs. file
    comparison filters (Kai Willadsen)

  UI changes:

  * The "Tabs" menu item has been removed, to better match up with more
    modern GTK+ design. All of the actions are still available in the
    expected key bindings, and there is a new per-tab context menu.
  * The change action buttons in the central pane divider now correctly
    render as flat buttons (Kai Willadsen)
  * The curves in the central pane divider are now... smoother!

  Internal changes:

  * Handle reload notifications better in asynchronous saving (Vasily Galkin)
  * Remove multi-process diff in favour of asynchronous (threaded, but
    GIL-throttled) matching (Kai Willadsen)
  * Performance improvements in rendering of multiple widgets, as well as for
    initial text comparison (Kai Willadsen)
  * Many updates for GTK+ 3.20 and 3.22 ABI changes (Kai Willadsen)
  * NOTE: Windows support is currently untested

  Fixes:

  * Update supported version control list (Kai Willadsen)
  * Update requirements and build requirements lists (Kai Willadsen)
  * Don't create empty help/figures directories (Kai Willadsen)
  * Translation maintenance (Piotr Dr��g)

(wiz)

2017-02-20 10:18:46 UTC MAIN commitmail json YAML

Updated textproc/lit2epub to 0.2.2

(wiz)

2017-02-20 10:18:33 UTC MAIN commitmail json YAML

2017-02-20 10:18:08 UTC MAIN commitmail json YAML

Updated textproc/ebook-tools to 0.2.2

(wiz)

2017-02-20 10:17:54 UTC MAIN commitmail json YAML

Updated ebook-tools to 0.2.2.

0.2.0
This release contains major bug fixes.
Among them crash bugs/security bugs.
Update recommended

(wiz)

2017-02-20 10:06:57 UTC MAIN commitmail json YAML

Updated mail/prayer to 1.3.5

(wiz)

2017-02-20 10:06:43 UTC MAIN commitmail json YAML

Updated prayer to 1.3.5 (from 2012).

Comment out non-existing HOMEPAGE.

No changelog found.

(wiz)

2017-02-20 10:04:24 UTC MAIN commitmail json YAML

Updated devel/py-setuptools to 34.2.0

(wiz)

2017-02-20 10:04:10 UTC MAIN commitmail json YAML

Updated py-setuptools to 34.2.0.

v34.2.0
-------

* #966: Add support for reading dist-info metadata and
  thus locating Distributions from zip files.

* #968: Allow '+' and '!' in egg fragments
  so that it can take package names that contain
  PEP 440 conforming version specifiers.

(wiz)

2017-02-20 10:02:28 UTC MAIN commitmail json YAML

Updated devel/py-requests-toolbelt to 0.7.1

(wiz)

2017-02-20 10:01:53 UTC MAIN commitmail json YAML

Updated www/py-google-api-python-client to 1.6.2

(wiz)

2017-02-20 10:01:46 UTC MAIN commitmail json YAML

Updated py-requests-toolbelt to 0.7.1.

0.7.1 -- 2017-02-13
-------------------

Fixed Bugs
~~~~~~~~~~

- Fixed monkey-patching for the AppEngineAdapter.

- Make it easier to disable certificate verification when monkey-patching
  AppEngine.

- Handle ``multipart/form-data`` bodies without a trailing ``CRLF``.

(wiz)

2017-02-20 10:01:37 UTC MAIN commitmail json YAML

Updated py-google-api-python-client to 1.6.2.

v1.6.2
  Version 1.6.2

  Bugfix release

  - Fixed a bug where application default credentials would still be used even
    when a developerKey was specified. (#347)
  - Official support for Python 3.5 and 3.6. (#341)

(wiz)

2017-02-20 10:00:23 UTC MAIN commitmail json YAML

Updated security/py-requests-oauthlib to 0.8.0

(wiz)

2017-02-20 10:00:08 UTC MAIN commitmail json YAML

Updated py-requests-oauthlib to 0.8.0.

v0.8.0 (14 February 2017)
+++++++++++++++++++++++++

- Added Fitbit compliance fix.
- Fixed an issue where newlines in the response body for the access token
  request would cause errors when trying to extract the token.
- Fixed an issue introduced in v0.7.0 where users passing ``auth`` to several
  methods would encounter conflicts with the ``client_id`` and
  ``client_secret``-derived auth. The user-supplied ``auth`` argument is now
  used in preference to those options.

(wiz)

2017-02-20 09:56:01 UTC MAIN commitmail json YAML

Updated audio/libopenmpt to 0.2.7561

(wiz)

2017-02-20 09:55:48 UTC MAIN commitmail json YAML

Updated libopenmpt to 0.2.7561.

libopenmpt 0.2-beta20.5 (2017-02-05)

    [Bug] libmodplug: C++ API did not build with MSVC2008 in 0.2-beta20.4.

libopenmpt 0.2-beta20.4 (2017-02-05, not released)

    [Bug] Possible hangs with malformed files containing cyclic plugin routings.
    libmodplug: Added all missing C++ API symbols that are accessable via the public libmodplug header file.
    Channel frequency could wrap around after some excessive portamento / down in some formats since libopenmpt 0.2-beta17.
    Playback improvements for S3M files made with Impulse Tracker and Schism Tracker.

(wiz)

2017-02-20 09:53:02 UTC MAIN commitmail json YAML

Updated misc/khard to 0.11.4

(wiz)

2017-02-20 09:52:47 UTC MAIN commitmail json YAML

Updated khard to 0.11.4.

v0.11.4: 2017.02.16
- Unpinned vobject library version (base64 decoding/encoding bug was fixed upstream)
- New option: -c / --config /path/to/config.file
- Changed short option of --search-in-source-files from -c to -f to avoid confusion with the new -c / --config option
- Minor bug fixes

(wiz)

2017-02-20 09:50:46 UTC MAIN commitmail json YAML

Updated graphics/p5-PerlMagick to 7.0.4.10

(wiz)

2017-02-20 09:50:31 UTC MAIN commitmail json YAML

Updated graphics/ImageMagick to 7.0.4.10

(wiz)

2017-02-20 09:50:16 UTC MAIN commitmail json YAML

Updated ImageMagick to 7.0.4.10.

2017-02-18  7.0.4-10 Cristy  <quetzlzacatenango@image...>
  * Release ImageMagick version 7.0.4-10, GIT revision 19608:fe757a2:20170218.

2017-02-18  7.0.4-10 Dirk Lemstra <dirk@lem.....org>
  * Fixed fd leak for webp coder (reference
    https://github.com/ImageMagick/ImageMagick/pull/382)

2017-02-15  7.0.4-10 Cristy  <quetzlzacatenango@image...>
  * Prevent random pixel data for corrupt JPEG image (bug report from
    Hirokazu Moriguchi, Sony).
  * Restore -mattecolor option.
  * Support pixel-cache and shred security policies.
  * Bump Magick++ SO.  Previously a global replace changed matteColor to
    alphaColor.

2017-02-14  7.0.4-9 Cristy  <quetzlzacatenango@image...>
  * Release ImageMagick version 7.0.4-9, GIT revision 19580:d474b37:20170214.

2017-02-14  7.0.4-9 Cristy  <quetzlzacatenango@image...>
  * Revert patch that did not set update trait on alpha channel.

2017-02-13  7.0.4-8 Cristy  <quetzlzacatenango@image...>
  * Release ImageMagick version 7.0.4-8, GIT revision 19574:7642384:20170213.

2017-02-09  7.0.4-8 Dirk Lemstra <dirk@lem.....org>
  * Fixed memory leak when creating nested exceptions in Magick++ (reference
    https://www.imagemagick.org/discourse-server/viewtopic.php?f=23&p=142634)

2017-02-09  7.0.4-8 Cristy  <quetzlzacatenango@image...>
  * Unbreak build without JPEG support (reference
    https://github.com/ImageMagick/ImageMagick/pull/373).
  * Document behavior change in the security policy (thanks to yoya @
    https://blog.awm.jp/2017/02/09/imagemagick-en/).
  * Return unbiased standard deviation for image statistics (reference
    https://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=31377).
  * Don't set update trait on alpha channel (private e-mail concerning
    -levels-colors option).

(wiz)

2017-02-20 09:44:49 UTC MAIN commitmail json YAML

Updated devel/pcre2 to 10.23

(wiz)

2017-02-20 09:44:34 UTC MAIN commitmail json YAML

Updated pcre2 to 10.23.

Version 10.23 14-February-2017
------------------------------

1. ChangeLog has the details of a lot of bug fixes and tidies.

2. There has been a major re-factoring of the pcre2_compile.c file. Most syntax
checking is now done in the pre-pass that identifies capturing groups. This has
reduced the amount of duplication and made the code tidier. While doing this,
some minor bugs and Perl incompatibilities were fixed (see ChangeLog for
details.)

3. Back references are now permitted in lookbehind assertions when there are
no duplicated group numbers (that is, (?| has not been used), and, if the
reference is by name, there is only one group of that name. The referenced
group must, of course be of fixed length.

4. \g{+<number>} (e.g. \g{+2} ) is now supported. It is a "forward back
reference" and can be useful in repetitions (compare \g{-<number>} ). Perl does
not recognize this syntax.

5. pcre2grep now automatically expands its buffer up to a maximum set by
--max-buffer-size.

6. The -t option (grand total) has been added to pcre2grep.

7. A new function called pcre2_code_copy_with_tables() exists to copy a
compiled pattern along with a private copy of the character tables that is
uses.

8. A user supplied a number of patches to upgrade pcre2grep under Windows and
tidy the code.

9. Several updates have been made to pcre2test and test scripts (see
ChangeLog).

(wiz)

2017-02-20 09:37:12 UTC MAIN commitmail json YAML

2017-02-20 09:35:18 UTC MAIN commitmail json YAML

2017-02-20 09:32:11 UTC MAIN commitmail json YAML

2017-02-20 09:31:53 UTC MAIN commitmail json YAML

Updated tidy to 5.2.0.

This is the currently maintained version of tidy.
No concise changelog compared to the 2009 version available though,
sorry.

(wiz)

2017-02-20 09:19:27 UTC MAIN commitmail json YAML

Fix no-x11 option and add option to disable icu. Bump rev.

(tnn)

2017-02-20 08:01:08 UTC MAIN commitmail json YAML

Updated graphics/freeimage to 3.17.0nb1

(snj)

2017-02-20 08:00:43 UTC MAIN commitmail json YAML

2017-02-20 05:53:42 UTC MAIN commitmail json YAML

Added devel/ruby-cucumber-wire version 0.0.1

(minskim)

2017-02-20 05:53:10 UTC MAIN commitmail json YAML

Add ruby-cucumber-wire

(minskim)

2017-02-20 05:52:31 UTC MAIN commitmail json YAML

2017-02-20 05:29:49 UTC MAIN commitmail json YAML

Correct the version number of the last entry

(minskim)

2017-02-20 05:23:55 UTC MAIN commitmail json YAML

Note update of textproc/ruby-builder

(minskim)

2017-02-20 04:03:07 UTC MAIN commitmail json YAML

Update MASTER_SITES and HOMEPAGE

(ryoon)

2017-02-20 03:23:59 UTC MAIN commitmail json YAML

Add USE_PHP_EXT_PATCHES to use patch for php-intl.

(taca)

2017-02-20 03:23:13 UTC MAIN commitmail json YAML

2017-02-20 03:22:55 UTC MAIN commitmail json YAML

2017-02-20 01:09:11 UTC MAIN commitmail json YAML

2017-02-19 22:45:27 UTC MAIN commitmail json YAML

2017-02-19 20:18:38 UTC MAIN commitmail json YAML

Updated shells/ast-ksh to 20120801nb2

(maya)

2017-02-19 20:18:16 UTC MAIN commitmail json YAML

ast-ksh: fix compilation on NetBSD, possibly linux too.

Fix "storage size of buf is not known" likely caused by it being defined
to be something with sizeof().
add LDFLAGS -lm to all operating systems (I see undefined reference to
frexpl/ldexpl), remove duplicate from other operating systems.

bump PKGREVISION sinze L_tmpnam will be changed for the few who can build
the package.

(maya)

2017-02-19 19:15:10 UTC MAIN commitmail json YAML

Updated editors/vim-share to 8.0.0341

(snj)

2017-02-19 19:13:35 UTC MAIN commitmail json YAML

Update vim to 8.0.0341.

Changes:
8.0.0162  build error on Fedora 23
8.0.0163  cannot build with Ruby 2.4
8.0.0164  outdated and misplaced comments
8.0.0165  ubsan warns for integer overflow
8.0.0166  JSON with a duplicate key gives an internal error
8.0.0167  str2nr()/str2float() fail with negative values
8.0.0168  not all float functionality is tested
8.0.0169  json_decode() may run out of stack space
8.0.0170  crash in channel test
8.0.0171  JS style JSON does not support single quotes
8.0.0172  command line window does not work
8.0.0173  build fails with EBCDIC defined
8.0.0174  executing "locale -a" on MS-Windows needlessly
8.0.0175  setting language on MS-Windows does not always work
8.0.0176  cannot use :change inside a function definition
8.0.0177  BufEnter autocommand not fired for a directory
8.0.0178  command count test fails on MS-Windows
8.0.0179  cannot have a local value for 'formatprg'
8.0.0180  error E937 is used twice
8.0.0181  with cursorbind set cursor column highlighting is off
8.0.0182  cursor ilne not update when 'cursorbind' is set
8.0.0183  ubsan warns for unaligned address
8.0.0184  when an error is caught Vim still exits with non-zero result
8.0.0185  (after 8.0.0184) system() test fails on MS-Windows
8.0.0186  confusing error message from assert_notequal()
8.0.0187  cant build with new Ruby version
8.0.0188  (after 8.0.0182) redrawing for 'cursorbind' is inefficient
8.0.0189  profile commands are not tested
8.0.0190  finding duplicate tags uses a slow linear search
8.0.0191  (after 8.0.0187) can't build with Ruby on some systems
8.0.0192  (after 8.0.0190) cannot build with tiny features
8.0.0193  (after 8.0.0188) accidentally removed #ifdef
8.0.0194  (after 8.0.0189) profile test fails if times are equal
8.0.0195  (after 8.0.0190) fail to jump to static tag in current file
8.0.0196  profile test is slow and does not work on MS-Windows
8.0.0197  system() test skips some parts for MS-Windows
8.0.0198  some syntax arguments take effect even after "if 0"
8.0.0199  compiler warnings for libcall
8.0.0200  some syntax arguments are not tested
8.0.0201  completion of highlight groups includes cleared names
8.0.0202  no test for invalid syntax group name
8.0.0203  order of complication flags is sometimes wrong
8.0.0204  compiler warns for uninitialized variable
8.0.0205  wrong behavior after :undojoin
8.0.0206  test coverage for :retab insufficient
8.0.0207  leaking file descriptor when system() fails
8.0.0208  internally used commands end up in history
8.0.0209  cursor binding does not work with :substitute
8.0.0210  no support for bracketed paste
8.0.0211  (after 8.0.0210) cannot build without the multi-byte feature
8.0.0212  buffer for key name may be too small
8.0.0213  Netbeans specialKeys command does not check argument length
8.0.0214  leaking memory when syntax cluster id is unknown
8.0.0215  NULL pointer use if cscope line looks like emacs tag
8.0.0216  decoding js style json may fail
8.0.0217  (after 8.0.0215) build fails without cscope feature
8.0.0218  no completion for :cexpr and similar commands
8.0.0219  ubsan reports errors for overflow
8.0.0220  completion of highlight names misses a few values
8.0.0221  unnecessary condition on PROTO
8.0.0222  blockwise put on multi-byte character misplaced
8.0.0223  Coverity warns for an uninitialized variable
8.0.0224  change to 'fileformats' from autocmd does not take effect
8.0.0225  put in Visual block mode terminates early
8.0.0226  test for patch 8.0.0224 missing CR characters
8.0.0227  crash with ff=dos when first line in file has no CR
8.0.0228  pasting in xterm on the command line has PasteStart
8.0.0229  local 'formatprg' option value leaks
8.0.0230  bracketed paste does not support line breaks
8.0.0231  bracketed paste mode is not tested
8.0.0232  paste does not work when 'esckeys' is off
8.0.0233  (after 8.0.0231) paste test fails in the GUI
8.0.0234  (after 8.0.0225) crash when using put in Visual mode
8.0.0235  memory leak in diff mode
8.0.0236  (after 8.0.0234) gcc complains about uninitialized variable
8.0.0237  when 'wildoptions' is "tagfile" completion may not work
8.0.0238  bracketed paste does not disable autoindent
8.0.0239  no CI with an address sanitizer
8.0.0240  (after 8.0.0239) failure with one build on CI
8.0.0241  fallback implementation of mch_memmove is unused
8.0.0242  no tests for user command completion
8.0.0243  tolower() does not work if the byte count changes
8.0.0244  making t_BE empty only has an effect before startup
8.0.0245  zh_CN.cp936.po has a conversion error
8.0.0246  compiler warnings for int to pointer conversion
8.0.0247  need to type Ctrl-N twice to select a completion
8.0.0248  vim_strcat() cannot handle overlapping arguments
8.0.0249  CI failure when a submit is close to previous one
8.0.0250  virtcol() does not work well for multi-byte characters
8.0.0251  not easy to select Python 2 or 3
8.0.0252  not properly recognizing word characters between 128 and 255
8.0.0253  error when loading session if winminheight is 2
8.0.0254  error message of assert functions is sometimes incomplete
8.0.0255  setpos() does not use the buffer argument for all marks
8.0.0256  (after 8.0.0255) missing changes to one file breaks test
8.0.0257  (after 8.0.0252) test file missing in distribution
8.0.0258  (after 8.0.0252) mksession test leaves file behind
8.0.0259  tab commands do not handle count correctly
8.0.0260  build fails with tiny features
8.0.0261  not enough test coverage for eval functions
8.0.0262  Farsi support is barely tested
8.0.0263  Farsi support is not tested enough
8.0.0264  memory error reported by ubsan
8.0.0265  may get ml_get error when :pydo deletes lines
8.0.0266  compiler warning for using uninitialized variable
8.0.0267  channel test sometimes fails on Mac
8.0.0268  may get ml_get error when :luado deletes lines
8.0.0269  may get ml_get error when :perldo deletes lines
8.0.0270  may get ml_get error when :rubydo deletes lines
8.0.0271  may get ml_get error when :tcldo deletes lines
8.0.0272  crash on exit is not detected when running tests
8.0.0273  dead code detected by Coverity
8.0.0274  possible recursive screen updating causes trouble
8.0.0275  the screen may be updated at the wrong time
8.0.0276  unnecessary #ifdefs
8.0.0277  the GUI test may trigger fontconfig and take a long time
8.0.0278  (after 8.0.0277) GUI test fails on MS-Windows
8.0.0279  MSVC 2015 uses a different dll name
8.0.0280  problem setting multi-byte environment var on MS-Windows
8.0.0281  some files are still using ARGSUSED instead of UNUSED
8.0.0282  need to use CTRL-O twice when in Visual-Insert mode
8.0.0283  mode() does not indicate Insert mode completion
8.0.0284  collapse buffers test failed once
8.0.0285  (after 8.0.0277) tests fail with tiny build on Unix
8.0.0286  not always redrawing after screen resize
8.0.0287  debug mode: cannot access function arguments
8.0.0288  (after 8.0.0284) errors reported while running tests
8.0.0289  no test for "ga" and :ascii
8.0.0290  cursor positioning wrong if wide character wraps
8.0.0291  (after 8.0.0282) Visual block insert does not do all lines
8.0.0292  the stat test is a bit slow
8.0.0293  some tests have a one or three second wait
8.0.0294  argument list is not stored correctly in a session file
8.0.0295  (after 8.0.0293) test_viml hangs
8.0.0296  bracketed paste can only append, not insert
8.0.0297  double free on exit when using a closure
8.0.0298  Ex command range with repeated search does not work
8.0.0299  a window resize is sometimes not taking effect
8.0.0300  cannot stop diffing hidden buffers
8.0.0301  not enough testing for setting options
8.0.0302  cannot set terminal key codes with :let
8.0.0303  bracketed paste does not work in Visual mode
8.0.0304  assign test fails in the GUI
8.0.0305  invalid memory access when option has duplicate flag
8.0.0306  mode() not sufficiently tested
8.0.0307  asan detects a memory error when EXITFREE is defined
8.0.0308 'runtimepath' not updated correctly when using symbolic link
8.0.0309  cannot use an empty key in json
8.0.0310  not enough testing for GUI functionality
8.0.0311  linebreak tests are old style
8.0.0312  failure when a channel receives a split json message
8.0.0313  (after 8.0.0310) not enough testing for GUI functionality
8.0.0314  getcmd*() functions are not tested
8.0.0315  :help :[range] does not work
8.0.0316  :help z? does not work
8.0.0317  no test for setting 'guifont'
8.0.0318  small mistake in 7x13 font name
8.0.0319  insert mode completion does not respect 'backspace'
8.0.0320  warning for unused variable with small build
8.0.0321  errors when trying to use scripts in tiny version
8.0.0322  possible overflow with corrupted spell file
8.0.0323  one second pause when running cmdline test
8.0.0324  illegal memory access with a wrong yank range
8.0.0325  packadd test does not clean up symlink
8.0.0326  packadd test uses wrong directory name
8.0.0327  error message in cmdline window is not translated
8.0.0328  the "zero count" error doesn't have a number
8.0.0329  xfontset and guifontwide are not tested
8.0.0330  illegal memory access after "vapo"
8.0.0331  restoring help snapshot accesses freed memory
8.0.0332  GUI test fails on some systems
8.0.0333  illegal memory access when 'complete' ends in a backslash
8.0.0334  can't access b:changedtick from a dict reference
8.0.0335  (after 8.0.0335) functions test fails
8.0.0336  flags of :substitute not sufficiently tested
8.0.0337  invalid memory access in :recover command
8.0.0338  (after 8.0.0337) :recover test fails on MS-Windows
8.0.0339  illegal memory access with vi'
8.0.0340  not checking return valud of dict_add()
8.0.0341  undo does not work properly when using completion

(snj)

2017-02-19 18:56:51 UTC MAIN commitmail json YAML

Added devel/py-typing version 3.5.3.0; Updated security/py-m2crypto to 0.25.1

(adam)

2017-02-19 18:54:39 UTC MAIN commitmail json YAML

Changes 0.25.0:
- More cleanups, removal of obsolete stuff, and moves towards py3k
  compatibility.
- Add support for EC.get_builtin_curves() and use it for testing.
- Enable AES CTR mode
- Bundle-in six module v. 1.10.0
- add rand_file_name and rand_status
- remove all LHASH fiddling
- Extend Travis and GitLab CI configuration to test also py3k (with
  allowed_failures) and CentOS6 (on GitLab CI).
- Add CONTRIBUTORS.rst. Thank you!
- Add PEP-484 type hints in comments to all Python files (except for
  tests)
- Use context managers for file handling wherever possible instead of
  leaking open file descriptors.
- Improve defaults handling for SSL_CTX_new().
- Fix PGP tests to actually run

(adam)

2017-02-19 18:53:25 UTC MAIN commitmail json YAML

Added devel/py-typing version 3.5.3.0

Typing defines a standard notation for Python function and variable
type annotations. The notation can be used for documenting code in
a concise, standard format, and it has been designed to also be
used by static and runtime type checkers, static analyzers, IDEs
and other tools.

This is a backport of the standard library typing module to Python
versions older than 3.5.

(adam)

2017-02-19 18:35:46 UTC MAIN commitmail json YAML

Updated www/w3m to 0.5.3.0.20170102

(snj)

2017-02-19 18:35:13 UTC MAIN commitmail json YAML

Update w3m to 0.5.3+git20170102.

Changes:
- fix multiple flaws with malformed text (buffer overflow, use after
  free, infinite loop)
- fix uninitialized variable when not USE_IMAGE

(snj)

2017-02-19 13:03:43 UTC MAIN commitmail json YAML

Updated www/p5-Mojolicious to 7.26

(wiz)

2017-02-19 13:03:29 UTC MAIN commitmail json YAML

Updated p5-Mojolicious to 7.26.

Add a comment that distfiles should be uploaded when updating the package.

7.26  2017-02-15
  - Fixed bug in Mojo::IOLoop::Subprocess where starting multiple subprocesses
    at once could cause expcetions. (jberger)

(wiz)

2017-02-19 13:02:51 UTC MAIN commitmail json YAML

2017-02-19 13:01:51 UTC MAIN commitmail json YAML

Add a comment that distfiles should be uploaded when updating the package.

(wiz)

2017-02-19 12:50:57 UTC MAIN commitmail json YAML

Updated textproc/p5-Swim to 0.1.46

(schmonz)

2017-02-19 12:50:52 UTC MAIN commitmail json YAML

Update to 0.1.46. From the changelog:

- Release after pause-cleanup screwed up Swim dists

(schmonz)

2017-02-19 11:46:34 UTC MAIN commitmail json YAML

2017-02-19 11:46:20 UTC MAIN commitmail json YAML

Update devel/waf to waf-1.9.8

Changes:
1.9.8
-----
* Keep winres flags in subsequent detections #1908
* New -qopenmp option #1900
* Enable Java compat attribute as numbers #1899
* Qt5 library detection enhancements
* Save compiler optimization flags from foo-config #1887
* Emscripten enhancements #1885
* Fix chmod with tuple rules #1884
* Include all vars in tuple rules #1883
* Compile glib2 schemas per directory #1881
* Boost libraries detection enhancements
* Work around an annoying Python 3.6 regression #1889

(leot)

2017-02-19 11:40:43 UTC MAIN commitmail json YAML

Updated print/cups-filters to 1.13.4

(leot)

2017-02-19 11:40:22 UTC MAIN commitmail json YAML

Update print/cups-filters to cups-filters-1.13.4

Changes:
1.13.4
------
- libcupsfilters: Let PPD generator for driverless printing
  not error out when there is no urf-supported or
  pwg-raster-document-resolution-supported IPP attribute,
  simply accept the default resolution also from the
  printer-resolution-default attribute or set a default value
  of 300 dpi to get a working PPD file.
- cups-browsed: Do not use deprecated names for IPP status
  constants
- cups-browsed: Corrected determination whether an IPP status
  is an error, to avoid "Unable to create/modify CUPS queue
  (Success)" and infinite repetition of a succeeded operation
  (Debian bug #852436).

(leot)

2017-02-19 11:22:55 UTC MAIN commitmail json YAML

Updated archivers/libzip to 1.2.0

(wiz)

2017-02-19 11:22:43 UTC MAIN commitmail json YAML

Updated libzip to 1.2.0.

1.2.0 [2017-02-19]
==================

* Support for AES encryption (Winzip version), both encryption
  and decryption.
* Support legacy zip files with >64k entries.
* Fix seeking in zip_source_file if start > 0.
* Add zip_fseek() for seeking in uncompressed data.
* Add zip_ftell() for telling position in uncompressed data.
* Add zip_register_progress_callback() for UI updates during zip_close()

(wiz)

2017-02-19 10:01:49 UTC MAIN commitmail json YAML

+ ImageMagick-7.0.4.10, MesaLib-17.0.0, cups-filters-1.13.4,
  guile20-2.0.14, khard-0.11.4, pcre2-10.23, poppler-0.52.0,
  py-google-api-python-client-1.6.2, py-requests-oauthlib-0.8.0,
  py-requests-toolbelt-0.7.1, py-setuptools-34.2.0, rspamd-1.4.4,
  strace-4.16, vim-8.0.0339, vim-share-8.0.0339, waf-1.9.8,
  x264-devel-20170218, zlib-1.2.11.

(wiz)

2017-02-19 08:55:02 UTC MAIN commitmail json YAML

Updated devel/p5-CPAN to 2.1600

(wiz)

2017-02-19 08:54:43 UTC MAIN commitmail json YAML

Updated textproc/p5-YAML to 1.22

(wiz)

2017-02-19 08:54:19 UTC MAIN commitmail json YAML

Updated p5-YAML to 1.22.

1.22 Tue Feb 14 23:23:08 CET 2017
- Add $YAML::Numify @perlpunk++

(wiz)

2017-02-19 08:52:51 UTC MAIN commitmail json YAML

Updated p5-CPAN to 2.1600.

2017-02-14  k  <andk@cpan.org>

* release 2.16

* four weeks after the TRIAL2 release cpantesters have produced
392 pass and 5 fail; by my estimation the fails are two bugs in
the test suite: (1) insufficient rubustness against make -j and
(2) insufficient robustness against missing unzip program; both
will be targeted at a later date

* otherwise no functional change; only changes in the distroprefs/
directory (which is not used per default) and minor changes to
Makefile.PL and t/97*.t

2017-01-16  k  <andk@cpan.org>

* release 2.16-TRIAL2

* release 2.16-TRIAL (had a broken manifest/signature file)

* Adjust test 97-return_values.t to survive the removal of "."
from @INC (Andreas Koenig)

* Bugfix: fix wrong method call on $logger (Simon Legner)

* Bugfix: protect version dependencies with eval to survive
requirements like "2.08a" (Andreas Koenig)

* Bugfix #47934: honour version requirement with "==" (Andreas
Koenig)

* partially address #82295: improve diagnostics (Andreas Koenig)

* introduce new config variable cleanup_after_install: helps
keeping build directory small (Andreas Koenig)

* adopting changes from bleadperl related to removal of "." from
@INC (Tony Cook)

* distroprefs minor updates

2016-07-17  k  <andk@cpan.org>

* release 2.15-TRIAL

* bugfix #115734 App::Cpan Installing from cwd broken (Boutros Lab
  Software, Andreas Koenig)

* bugfix #115786 App::Cpan Can't locate object method "inst_file" via
  package "AAA::Demo" (dmitryb, Andreas Koenig)

* bugfix #115340 recursive dependencies (Father Chrysostomos, Andreas Koenig)

* bugfix #110833 ftp proxy (Father Chrysostomos, Andreas Koenig)

* distroprefs a handful of updates

(wiz)

2017-02-19 08:49:58 UTC MAIN commitmail json YAML

Updated security/p5-IO-Socket-SSL to 2.047

(wiz)

2017-02-19 08:49:46 UTC MAIN commitmail json YAML

Updated p5-IO-Socket-SSL to 2.047.

2.047 2017/02/16
- better fix for problem which 2.046 tried to fix but broke LWP this way
2.046 2017/02/15
- cleanup everything in DESTROY and make sure to start with a fresh %{*self}
  in configure_SSL because it can happen that a GLOB gets used again without
  calling DESTROY (https://github.com/noxxi/p5-io-socket-ssl/issues/56)

(wiz)

2017-02-19 02:37:08 UTC MAIN commitmail json YAML

Updated devel/p5-Dist-Zooky to 0.22

(mef)

2017-02-19 02:36:54 UTC MAIN commitmail json YAML

Updated devel/p5-Dist-Zooky 0.16 to 0.22
----------------------------------------
version 0.22 at 2017-02-17 19:58:46 +0000
- Switch to using my plugin bundle. No functional changes

version 0.20 at 2017-02-17 19:48:24 +0000
- Actually pass the bundle arg to the distini generator

version 0.18 at 2017-02-17 17:41:28 +0000
- Added bundle parameter
- dzooky --bundle BINGOS
- Use the BINGOS plugin bundle instead of the default dist.ini
----------------------------------------------------------------------

(mef)

2017-02-19 02:13:33 UTC MAIN commitmail json YAML

Make Rails 3.2 packages use ruby-builder in textproc/ruby-builder30

(minskim)

2017-02-19 02:09:04 UTC MAIN commitmail json YAML

Update ruby-builder to 3.1.4

Changes:
* Included the to_xs arity patch needed for weird Rails compatibility
  issue.
* Escaping newlines in attributes now.
* Allow method caching

(minskim)

2017-02-19 02:03:12 UTC MAIN commitmail json YAML

Added textproc/ruby-builder30 version 3.0.4

(minskim)

2017-02-19 02:01:46 UTC MAIN commitmail json YAML

Add ruby-builder30

(minskim)

2017-02-19 02:00:58 UTC MAIN commitmail json YAML

Import textproc/ruby-builder as textproc-ruby-builder30

This is required to update textproc/ruby-builder to 3.1.x, which is
incompatible with devel/ruby-activemodel32.

(minskim)

2017-02-18 23:19:25 UTC MAIN commitmail json YAML

Updated graphics/ImageMagick6 to 6.9.7.9

(joerg)

2017-02-18 23:19:14 UTC MAIN commitmail json YAML

ImageMagick-6.9.7-9:
- fix file descriptor leak in webp code
- prevent random pixel data from corrupt JPEG images
- Support pixel-cache and shred security policies.
- Fixed memory leak when creating nested exceptions in Magick++
- Eliminate bogus assertion
- Unbreak build without JPEG support

(joerg)

2017-02-18 23:17:17 UTC MAIN commitmail json YAML

2017-02-18 23:17:02 UTC MAIN commitmail json YAML

2017-02-18 23:16:26 UTC MAIN commitmail json YAML

Run configure only once. Deal with Gnome 3.22.

(joerg)

2017-02-18 20:19:27 UTC MAIN commitmail json YAML

Updated net/youtube-dl to 20170217

(leot)

2017-02-18 20:19:12 UTC MAIN commitmail json YAML

Update net/youtube-dl to youtube-dl-20170217

Changes:
version 2017.02.17

Extractors
* [heise] Improve extraction (#9725)
* [ellentv] Improve (#11653)
* [openload] Fix extraction (#10408, #12002)
+ [theplatform] Recognize URLs with whitespaces (#12044)
* [einthusan] Relax URL regular expression (#12141, #12159)
+ [generic] Support complex JWPlayer embedded videos (#12030)
* [elpais] Improve extraction (#12139)

version 2017.02.16

Core
+ [utils] Add support for quoted string literals in --match-filter (#8050,
  #12142, #12144)

Extractors
* [ceskatelevize] Lower priority for audio description sources (#12119)
* [amcnetworks] Fix extraction (#12127)
* [pinkbike] Fix uploader extraction (#12054)
+ [onetpl] Add support for businessinsider.com.pl and plejada.pl
+ [onetpl] Add support for onet.pl (#10507)
+ [onetmvp] Add shortcut extractor
+ [vodpl] Add support for vod.pl (#12122)
+ [pornhub] Extract video URL from tv platform site (#12007, #12129)
+ [ceskatelevize] Extract DASH formats (#12119, #12133)

version 2017.02.14

Core
* TypeError is fixed with Python 2.7.13 on Windows (#11540, #12085)

Extractor
* [zdf] Fix extraction (#12117)
* [xtube] Fix extraction for both kinds of video id (#12088)
* [xtube] Improve title extraction (#12088)
+ [lemonde] Fallback delegate extraction to generic extractor (#12115, #12116)
* [bellmedia] Allow video id longer than 6 characters (#12114)
+ [limelight] Add support for referer protected videos
* [disney] Improve extraction (#4975, #11000, #11882, #11936)
* [hotstar] Improve extraction (#12096)
* [einthusan] Fix extraction (#11416)
+ [aenetworks] Add support for lifetimemovieclub.com (#12097)
* [youtube] Fix parsing codecs (#12091)

version 2017.02.11

Core
+ [utils] Introduce get_elements_by_class and get_elements_by_attribute
  utility functions
+ [extractor/common] Skip m3u8 manifests protected with Adobe Flash Access

Extractor
* [pluralsight:course] Fix extraction (#12075)
+ [bbc] Extract m3u8 formats with 320k audio
* [facebook] Relax video id matching (#11017, #12055, #12056)
+ [corus] Add support for Corus Entertainment sites (#12060, #9164)
+ [pluralsight] Detect blocked account error message (#12070)
+ [bloomberg] Add another video id pattern (#12062)
* [extractor/commonmistakes] Restrict URL regular expression (#12050)
+ [tvplayer] Add support for tvplayer.com

version 2017.02.10

Extractors
* [xtube] Fix extraction (#12023)
* [pornhub] Fix extraction (#12007, #12018)
* [facebook] Improve JS data regular expression (#12042)
* [kaltura] Improve embed partner id extraction (#12041)
+ [sprout] Add support for sproutonline.com
* [6play] Improve extraction
+ [scrippsnetworks:watch] Add support for Scripps Networks sites (#10765)
+ [go] Add support for Adobe Pass authentication (#11468, #10831)
* [6play] Fix extraction (#12011)
+ [nbc] Add support for Adobe Pass authentication (#12006)

version 2017.02.07

Core
* [extractor/common] Fix audio only with audio group in m3u8 (#11995)
+ [downloader/fragment] Respect --no-part
* [extractor/common] Speed-up HTML5 media entries extraction (#11979)

Extractors
* [pornhub] Fix extraction (#11997)
+ [canalplus] Add support for cstar.fr (#11990)
+ [extractor/generic] Improve RTMP support (#11993)
+ [gaskrank] Add support for gaskrank.tv (#11685)
* [bandcamp] Fix extraction for incomplete albums (#11727)
* [iwara] Fix extraction (#11781)
* [googledrive] Fix extraction on Python 3.6
+ [videopress] Add support for videopress.com
+ [afreecatv] Extract RTMP formats

version 2017.02.04.1

Extractors
+ [twitch:stream] Add support for player.twitch.tv (#11971)
* [radiocanada] Fix extraction for toutv rtmp formats

version 2017.02.04

Core
+ Add --playlist-random to shuffle playlists (#11889, #11901)
* [utils] Improve comments processing in js_to_json (#11947)
* [utils] Handle single-line comments in js_to_json
* [downloader/external:ffmpeg] Minimize the use of aac_adtstoasc filter

Extractors
+ [piksel] Add another app token pattern (#11969)
+ [vk] Capture and output author blocked error message (#11965)
+ [turner] Fix secure HLS formats downloading with ffmpeg (#11358, #11373,
  #11800)
+ [drtv] Add support for live and radio sections (#1827, #3427)
* [myspace] Fix extraction and extract HLS and HTTP formats
+ [youtube] Add format info for itag 325 and 328
* [vine] Fix extraction (#11955)
- [sportbox] Remove extractor (#11954)
+ [filmon] Add support for filmon.com (#11187)
+ [infoq] Add audio only formats (#11565)
* [douyutv] Improve room id regular expression (#11931)
* [iprima] Fix extraction (#11920, #11896)
* [youtube] Fix ytsearch when cookies are provided (#11924)
* [go] Relax video id regular expression (#11937)
* [facebook] Fix title extraction (#11941)
+ [youtube:playlist] Recognize TL playlists (#11945)
+ [bilibili] Support new Bangumi URLs (#11845)
+ [cbc:watch] Extract audio codec for audio only formats (#11893)
+ [elpais] Fix extraction for some URLs (#11765)

(leot)

2017-02-18 19:12:28 UTC MAIN commitmail json YAML

Bump PKGREVISION for libgit2 API depends bump.

(wiz)

2017-02-18 17:43:37 UTC MAIN commitmail json YAML

Prepare gdb/amd64bsd-nat.c for Debug Registers (watchpoints) on NetBSD

Define DBREG_DRX when it's undefined to:
    #define        DBREG_DRX(d,x)  ((d)->dr[(x)])

This has been copied from FreeBSD:
/usr/include/x86/reg.h:#define DBREG_DRX(d,x) ((d)->dr[(x)])

No functional change for existing operating systems.

Sponsored by <The NetBSD Foundation>

(kamil)

2017-02-18 14:01:22 UTC MAIN commitmail json YAML

2017-02-18 14:00:54 UTC MAIN commitmail json YAML

2017-02-18 14:00:06 UTC MAIN commitmail json YAML

When not hard-coding EGL, use the correct macro that available EGL is
actually used.

(joerg)

2017-02-18 13:59:20 UTC MAIN commitmail json YAML

2017-02-18 13:59:02 UTC MAIN commitmail json YAML

2017-02-18 13:58:33 UTC MAIN commitmail json YAML

2017-02-18 13:57:37 UTC MAIN commitmail json YAML

2017-02-18 13:57:06 UTC MAIN commitmail json YAML

Depends on INT64_MAX to be available in pre-C++11 mode.

(joerg)

2017-02-18 13:39:22 UTC MAIN commitmail json YAML

Updated print/zathura-pdf-mupdf to 0.3.1nb3

(leot)

2017-02-18 13:38:33 UTC MAIN commitmail json YAML

Avoid possible NULL pointer dereferencies in `Index mode' for PDF with index
pointing to non-existing pages.

Bump PKGREVISION

(leot)

2017-02-18 13:18:46 UTC MAIN commitmail json YAML

Note update of devel/ruby-rugged package to 0.25.1.1.

(taca)

2017-02-18 13:18:17 UTC MAIN commitmail json YAML

Update ruby-rugged to 0.25.1.1.

* Catch up to libgit2 0.25.0.
* Add support for Ruby 2.4.0.
* Some documentation improvements.

(taca)

2017-02-18 13:17:23 UTC MAIN commitmail json YAML

API has changed with 0.25.0.

(taca)

2017-02-18 13:13:37 UTC MAIN commitmail json YAML

Note update of lang/php71 package to 7.1.2.

(taca)

2017-02-18 13:13:08 UTC MAIN commitmail json YAML

Update php71 to

16 Feb 2017, PHP 7.1.2

- Core:
  . Improved GENERATOR_CREATE opcode handler. (Bob, Dmitry)
  . Fixed bug #73877 (readlink() returns garbage for UTF-8 paths). (Anatol)
  . Fixed bug #73876 (Crash when exporting **= in expansion of assign op).
    (Sara)
  . Fixed bug #73962 (bug with symlink related to cyrillic directory). (Anatol)
  . Fixed bug #73969 (segfault in debug_print_backtrace). (andrewnester)
  . Fixed bug #73994 (arginfo incorrect for unpack). (krakjoe)
  . Fixed bug #73973 (assertion error in debug_zval_dump). (andrewnester)

- DOM:
  . Fixed bug #54382 (getAttributeNodeNS doesn't get xmlns* attributes).
    (aboks)

- DTrace:
  . Fixed bug #73965 (DTrace reported as enabled when disabled). (Remi)

- FCGI:
  . Fixed bug #73904 (php-cgi fails to load -c specified php.ini file). (Anatol)
  . Fixed bug #72898 (PHP_FCGI_CHILDREN is not included in phpinfo()). (Anatol)

- FPM:
  . Fixed bug #69865 (php-fpm does not close stderr when using syslog).
    (m6w6)

- GD:
  . Fixed bug #73968 (Premature failing of XBM reading). (cmb)

- GMP:
  . Fixed bug #69993 (test for gmp.h needs to test machine includes).
    (Jordan Gigov)

- Hash:
  . Added hash_hkdf() function. (Andrey Andreev)
  . Fixed bug #73961 (environmental build dependency in hash sha3 source).
    (krakjoe)

- Intl:
  . Fix bug #73956 (Link use CC instead of CXX). (Remi)

- LDAP:
  . Fixed bug #73933 (error/segfault with ldap_mod_replace and opcache).
    (Laruence)

- MySQLi:
  . Fixed bug #73949 (leak in mysqli_fetch_object). (krakjoe)

- Mysqlnd:
  . Fixed bug #69899 (segfault on close() after free_result() with mysqlnd).
    (Richard Fussenegger)

- Opcache:
  . Fixed bug #73983 (crash on finish work with phar in cli + opcache).
    (Anatol)

- OpenSSL:
  . Fixed bug #71519 (add serial hex to return value array). (xrobau)
  . Fixed bug #73692 (Compile ext/openssl with openssl 1.1.0 on Win). (Anatol)
  . Fixed bug #73978 (openssl_decrypt triggers bug in PDO). (Jakub Zelenka)

- PDO_Firebird:
  . Implemented FR #72583 (All data are fetched as strings). (Dorin Marcoci)

- PDO_PgSQL:
  . Fixed bug #73959 (lastInsertId fails to throw an exception for wrong
    sequence name). (andrewnester)

- Phar:
  . Fixed bug #70417 (PharData::compress() doesn't close temp file). (cmb)

- posix:
  . Fixed bug #71219 (configure script incorrectly checks for ttyname_r). (atoh)

- Session:
  . Fixed bug #69582 (session not readable by root in CLI). (EvgeniySpinov)

- SPL:
  . Fixed bug #73896 (spl_autoload() crashes when calls magic _call()). (Dmitry)

- Standard:
  . Fixed bug #69442 (closing of fd incorrect when PTS enabled). (jaytaph)
  . Fixed bug #47021 (SoapClient stumbles over WSDL delivered with
    "Transfer-Encoding: chunked"). (Rowan Collins)
  . Fixed bug #72974 (imap is undefined service on AIX). (matthieu.sarter)
  . Fixed bug #72979 (money_format stores wrong length AIX). (matthieu.sarter)
  . Fixed bug #73374 (intval() with base 0 should detect binary). (Leigh)
  . Fixed bug #69061 (mail.log = syslog contains double information).
    (Tom Sommer)

- ZIP:
  . Fixed bug #70103 (ZipArchive::addGlob ignores remove_all_path option). (cmb,
    Mitch Hagstrand)

(taca)

2017-02-18 13:10:48 UTC MAIN commitmail json YAML

Note update of lang/php70 package to 7.0.16.

(taca)

2017-02-18 13:09:52 UTC MAIN commitmail json YAML

Updated textproc/py-pygments to 2.2.0

(adam)

2017-02-18 13:09:20 UTC MAIN commitmail json YAML

Update php70 to 7.0.16.

16 Feb 2017 PHP 7.0.16

- Core:
  . Fixed bug #73916 (zend_print_flat_zval_r doesn't consider reference).
    (Laruence)
  . Fixed bug #73876 (Crash when exporting **= in expansion of assign op).
    (Sara)
  . Fixed bug #73969 (segfault in debug_print_backtrace). (andrewnester)
  . Fixed bug #73973 (assertion error in debug_zval_dump). (andrewnester)

- DOM:
  . Fixed bug #54382 (getAttributeNodeNS doesn't get xmlns* attributes).
    (aboks)

- DTrace:
  . Fixed bug #73965 (DTrace reported as enabled when disabled). (Remi)

- FPM:
  . Fixed bug #67583 (double fastcgi_end_request on max_children limit).
    (Dmitry Saprykin)
  . Fixed bug #69865 (php-fpm does not close stderr when using syslog).
    (m6w6)

- GD:
  . Fixed bug #73968 (Premature failing of XBM reading). (cmb)

- GMP:
  . Fixed bug #69993 (test for gmp.h needs to test machine includes).
    (Jordan Gigov)

- Intl:
  . Fix bug #73956 (Link use CC instead of CXX). (Remi)

- LDAP:
  . Fixed bug #73933 (error/segfault with ldap_mod_replace and opcache).
    (Laruence)

- MySQLi:
  . Fixed bug #73949 (leak in mysqli_fetch_object). (krakjoe)

- Mysqlnd:
  . Fixed bug #69899 (segfault on close() after free_result() with mysqlnd).
    (Richard Fussenegger)

- Opcache:
  . Fixed bug #73983 (crash on finish work with phar in cli + opcache).
    (Anatol)

- OpenSSL:
  . Fixed bug #71519 (add serial hex to return value array). (xrobau)

- PDO_Firebird:
  . Implemented FR #72583 (All data are fetched as strings). (Dorin Marcoci)

- PDO_PgSQL:
  . Fixed bug #73959 (lastInsertId fails to throw an exception for wrong
    sequence name). (andrewnester)

- Phar:
  . Fixed bug #70417 (PharData::compress() doesn't close temp file). (cmb)

- posix:
  . Fixed bug #71219 (configure script incorrectly checks for ttyname_r). (atoth)

- Session:
  . Fixed bug #69582 (session not readable by root in CLI). (EvgeniySpinov)

- SPL:
  . Fixed bug #73896 (spl_autoload() crashes when calls magic _call()). (Dmitry)

- Standard:
  . Fixed bug #69442 (closing of fd incorrect when PTS enabled). (jaytaph)
  . Fixed bug #47021 (SoapClient stumbles over WSDL delivered with
    "Transfer-Encoding: chunked"). (Rowan Collins)
  . Fixed bug #72974 (imap is undefined service on AIX). (matthieu.sarter)
  . Fixed bug #72979 (money_format stores wrong length AIX). (matthieu.sarter)

- ZIP:
  . Fixed bug #70103 (ZipArchive::addGlob ignores remove_all_path option). (cmb,
    Mitch Hagstrand)

(taca)

2017-02-18 13:09:11 UTC MAIN commitmail json YAML

Version 2.2.0

- Added lexers:
  * AMPL
  * TypoScript
  * Varnish config
  * Clean
  * WDiff
  * Flatline
  * Silver
  * HSAIL
  * JSGF
  * NCAR command language
  * Extempore
  * Cap'n Proto
  * Whiley
  * Monte
  * Crystal
  * Snowball
  * CapDL
  * NuSMV
  * SAS, Stata
- Added the ability to load lexer and formatter classes directly from files
  with the `-x` command line option and the `lexers.load_lexer_from_file()`
  and `formatters.load_formatter_from_file()` functions.
- Added `lexers.find_lexer_class_by_name()`.
- Added new token types and lexing for magic methods and variables in Python
  and PHP.
- Added a new token type for string affixes and lexing for them in Python, C++
  and Postgresql lexers.
- Added a new token type for heredoc (and similar) string delimiters and
  lexing for them in C++, Perl, PHP, Postgresql and Ruby lexers.
- Styles can now define colors with ANSI colors for use in the 256-color
  terminal formatter.
- Improved the CSS lexer.
- Added "Rainbow Dash" style.
- Delay loading `pkg_resources`, which takes a long while to import.

(adam)

2017-02-18 08:12:29 UTC MAIN commitmail json YAML

Updated security/p5-AuthCAS to 1.7

(wen)

2017-02-18 08:11:05 UTC MAIN commitmail json YAML

Update to 1.7

Upstream changes:
2016-10-20 12:09  osalaun_ur1

* trunk/META.yml, trunk/lib/AuthCAS.pm: Preparing version 1.7

2016-10-20 09:08  osalaun_ur1

* trunk/lib/AuthCAS.pm: Add encoding declaration in perl module.
  Fix for this bug report:
  https://rt.cpan.org/Ticket/Display.html?id=87241

(wen)

2017-02-18 07:51:22 UTC MAIN commitmail json YAML

Updated textproc/p5-Encode to 2.88

(wen)

2017-02-18 07:50:23 UTC MAIN commitmail json YAML

Update to 2.88

Upstream changes:
$Revision: 2.88 $ $Date: 2016/11/29 23:29:23 $
! t/taint.t
  Pulled: Fix test t/taint.t to pass when Encode::ConfigLocal is present
  https://github.com/dankogai/p5-encode/pull/83
! Makefile.PL Unicode/Makefile.PL bin/enc2xs lib/Encode/Alias.pm
  t/Aliases.t t/enc_data.t t/enc_module.t t/encoding.t t/jperl.t
  Pulled: various fixes
  https://github.com/dankogai/p5-encode/pull/82
! t/mime-header.t
  Pulled: Fix test t/mime-header.t to pass on HP-UX 11.23/64 U
    with perl v5.8.3
  https://github.com/dankogai/p5-encode/pull/81
! t/Encode.t
  Pulled: Extend COW tests for UTF-8 and Latin1
  https://github.com/dankogai/p5-encode/pull/80
! Encode.xs Unicode/Unicode.xs
  Pulled: Rmv impediment to compiling under C++11
  https://github.com/dankogai/p5-encode/pull/78
! Encode.xs Unicode/Unicode.xs
  Pulled: Do not use expressions in macros SvTRUE, SvPV, SvIV,
    attr and attr_true
  https://github.com/dankogai/p5-encode/pull/77
! Unicode/Unicode.xs t/magic.t
  Pulled: Fix handling of undef, COW and magic scalar argument
    in Unicode.xs
  https://github.com/dankogai/p5-encode/pull/76
! Encode.xs encoding.pm
  Fix 2 of 3 problems Steve Hay found.
  1. C89 compiler failures (patch attached).
  2. encoding.pm has changed slightly but has no $VERSION++
  Message-Id: <CADED=K6ve_DAzRXPX=EsjtUDnZppAaw+BP1Ziw_fU5f32k+Wyg@mail.gmail.com>

(wen)

2017-02-18 07:37:02 UTC MAIN commitmail json YAML

Updated devel/p5-Mouse to 2.4.8

(wen)

2017-02-18 07:36:18 UTC MAIN commitmail json YAML

Update to 2.4.8

Upstream changes:
v2.4.8 2017-02-16T08:45:28Z
    - Fix stack collapse(#71)

(wen)

2017-02-18 07:30:04 UTC MAIN commitmail json YAML

Updated filesystems/p5-Path-Tiny to 0.104

(wen)

2017-02-18 07:25:57 UTC MAIN commitmail json YAML

Update to 0.104

Upstream changes:
0.104    2017-02-17 07:17:00-05:00 America/New_York

    - No changes from 0.103-TRIAL.

0.103    2017-02-10 17:25:06-05:00 America/New_York (TRIAL RELEASE)

    [Bug fixes]

    - Path::Tiny 0.101 on Windows made `$path->absolute("/foo")` return an
      absolute path starting with 'C:/foo', which was an unintentional
      behavior change.  This release now uses any absolute base without
      further normalization.

0.101    2017-02-05 09:56:46-05:00 America/New_York (TRIAL RELEASE)

    [Changes]

    - The 'absolute' method now always returns an absolute path, even if a
      user provided a relative path for the base path.  The old, odd
      behavior was documented, but people often don't read docs.  The new
      behavior avoids suprises.

    [Additions]

    - Added 'cached_temp' method.

0.100    2017-01-14 22:47:55-05:00 America/New_York

    - No changes from 0.099-TRIAL.

0.099    2017-01-10 15:12:13-05:00 America/New_York (TRIAL RELEASE)

    [Tests]

    - Fixed tests for eventual removal of '.' from `@INC` in Perl.

    [Documentation]

    - Fixed filehandle mode typo.

    - Fixed typo in relative() that mentioned rel2abs instead of abs2rel.

(wen)

2017-02-18 06:50:50 UTC MAIN commitmail json YAML

Updated databases/py-ldap to 2.4.32

(adam)

2017-02-18 06:50:18 UTC MAIN commitmail json YAML

Released 2.4.32:
Running tests made easier:
- python setup.py test
- added tox.ini

(adam)

2017-02-18 05:59:23 UTC MAIN commitmail json YAML

2017-02-18 05:48:52 UTC MAIN commitmail json YAML

Import ledger 3.1.1 from wip, with some tweaks as 3.1.1nb1.

- Fill text in DESCR.
- Use lang/python/tool.mk explicitly.
- Add options.mk for python option.  (Other extensions TBD.)
- Patch a misuse of editline.

(riastradh)

2017-02-18 05:45:46 UTC MAIN commitmail json YAML

Note PKGSRCDIR in introduction.

>From discussion on IRC a few months ago.

(riastradh)

2017-02-18 02:37:11 UTC MAIN commitmail json YAML

2017-02-17 23:45:48 UTC MAIN commitmail json YAML

Handle non-kerberos automatically. Based on suggestions by pgoyette
and tested by him.

Add upstream bug report URL.

(wiz)

2017-02-17 21:29:13 UTC MAIN commitmail json YAML

Note the addition of pkg_comp 2.0 and all related changes: the update of
shtk to 1.7, the addition of sandboxctl 1.0, and the addition of
pkg_comp-cron 1.0.

(jmmv)

2017-02-17 21:28:24 UTC MAIN commitmail json YAML

Remove file added by mistake.

(jmmv)

2017-02-17 21:27:38 UTC MAIN commitmail json YAML

Initial addition of pkgtools/pkg_comp-cron, version 1.0:

This package sets up periodic builds of binary packages using the
pkgtools/pkg_comp utility given minimal configuration.  All that is
needed from the user is to determine which packages to build
automatically.

If you are on NetBSD, see also sysutils/sysbuild-user, which is the
perfect companion to this package to periodically build the base system.

(jmmv)

2017-02-17 21:25:46 UTC MAIN commitmail json YAML

Readd pkg_comp, now at version 2.0:

**Released on 2017-02-17.**

This is the first release of the pkg_comp project as a standalone
package.  This new release shares no code with previous versions and is
not compatible with them.

The following are the major differences between pkg_comp 2.0 and all
previous releases, which incidentally are the reasons that triggered
this rewrite:

* Support for multiple platforms.

* Use of pbulk to (re)build packages within the sandbox.  This results
  in more reliable incremental builds after pkgsrc updates.

* Support for bootstrap, generating binary kits as part of the builds.

* Better scriptability to allow running from cron(8) trivially.

(jmmv)

2017-02-17 21:23:42 UTC MAIN commitmail json YAML

Initial addition of sandboxctl 1.0:

sandboxctl is a tool to interact with chroot-based sandboxes.

The sandboxctl tool provides an automated mechanism to create and
interact with chroot-based sandboxes.  These sandboxes can be transient
(e.g. to run a single command within them) or long-lived (e.g. to run a
system service in a safe manner).

Sandboxes can be created using multiple mechanisms, which range from
extracting fresh distribution sets to bind-mounting the outer file
systems inside the sandbox.  The specific mechanism depends on the
features supported by the underlying operating system and the chosen
sandbox type.  Currently, sandboxctl includes support for FreeBSD,
Linux, macOS (Darwin), and NetBSD.

Each sandbox is defined via a configuration file provided by the user
and a system-specific template provided by this package.  The user
configuration is simple and semantically-rich, allowing the system
administrator to not worry about the environment-specific details.

This package is primarily targetted at supporting pkgtools/pkg_comp
but is provided as a standalone tool for flexibility.

(jmmv)

2017-02-17 21:20:07 UTC MAIN commitmail json YAML

Update shtk to 1.7:

**Released on 2017-02-17.**

* This is the first release with fixes for and confirmed to work with all
  of bash, dash, pdksh, and zsh.  We now have continuous integration runs
  for all these interpreters to ensure that this holds true in future
  releases.

* Added the `shtk_abort` function to terminate a script on fatal internal
  errors.

* Added the `shtk_cli_debug` function to log debug-level messages.

* Added the `shtk_cli_log_level` and `shtk_cli_set_log_level` functions to
  query and set the maximum log level.

* Added the `shtk_fs` module with the `shtk_fs_join_paths` and
  `shtk_fs_normalize_path` functions.

* Added the `shtk_hw` module with the `shtk_hw_ncpus` function.

* Fixed option parsing to detect missing arguments to options.

* Fixed pattern matching in `shtk_list_filter` so that it supports
  alternative branches.

(jmmv)

2017-02-17 20:51:37 UTC MAIN commitmail json YAML

Library version is tied to kdelibs.

(markd)

2017-02-17 19:59:30 UTC MAIN commitmail json YAML

Note update of shells/tcsh to 6.20.00nb2.

(he)

2017-02-17 19:21:44 UTC MAIN commitmail json YAML

Make the <meta> modifier work on Linux again by applying a fix
from upstream, ref.

https://github.com/tcsh-org/tcsh/commit/8e6dfd53321a0b0047f7d75db21a946c166c600b

Unfortunately the AsciiOnly reversion causes a SEGV because
*ch is used to index in the command array, and now contains
INVALID_BYTE.  Reproduce error with:
  env -i ./tcsh
  <meta>b
Bump PKGREVISION.

(he)

2017-02-17 19:19:01 UTC pkgsrc-2016Q4 commitmail json YAML

Pullup tickets #5212 and #5214.

(bsiegert)

2017-02-17 19:11:36 UTC pkgsrc-2016Q4 commitmail json YAML

Pullup ticket #5214 - requested by maya
devel/memcached: security fix

Revisions pulled up:
- devel/memcached/Makefile                                      1.53
- devel/memcached/distinfo                                      1.27
- devel/memcached/patches/patch-Makefile.am                    deleted
- devel/memcached/patches/patch-aa                              deleted
- devel/memcached/patches/patch-ab                              deleted
- devel/memcached/patches/patch-items.c                        1.1
- devel/memcached/patches/patch-logger.h                        1.1

---
  Module Name:    pkgsrc
  Committed By:  adam
  Date:          Thu Feb 16 11:10:53 UTC 2017

  Modified Files:
          pkgsrc/devel/memcached: Makefile distinfo
  Added Files:
          pkgsrc/devel/memcached/patches: patch-items.c patch-logger.h
  Removed Files:
          pkgsrc/devel/memcached/patches: patch-Makefile.am patch-aa patch-ab

  Log Message:
  Changes 1.4.34:
  Add -o modern switches to -h
  metadump: Fix preventing dumping of class 63
  Fix cache_memlimit bug for > 4G values
  metadump: ensure buffer is flushed to client before finishing
  Number of small fixes/additions to new logging
  add logging endpoint for LRU crawler
  evicted_active counter for LRU maintainer
  stop pushing NULL byte into watcher stream
  Scale item hash locks more with more worker threads (minor performance)
  Further increase systemd service hardening
  Missing necessary header for atomic_inc_64_nv() used in logger.c (solaris)
  Fix print format for idle timeout thread
  Improve binary sasl security fixes
  Fix clang compile error
  Widen systemd caps to allow maxconns to increase
  Add -X option to disable cachedump/metadump
  Don't double free in lru_crawler on closed clients
  Fix segfault if metadump client goes away

(bsiegert)

2017-02-17 17:11:23 UTC MAIN commitmail json YAML

2017-02-17 17:10:37 UTC MAIN commitmail json YAML

2017-02-17 17:10:06 UTC MAIN commitmail json YAML

2017-02-17 17:09:17 UTC MAIN commitmail json YAML

2017-02-17 17:08:32 UTC MAIN commitmail json YAML

2017-02-17 17:08:14 UTC MAIN commitmail json YAML

2017-02-17 17:07:52 UTC MAIN commitmail json YAML

Updated lang/mono2 to 2.10.9nb19

(joerg)

2017-02-17 17:07:32 UTC MAIN commitmail json YAML

Disable mprotect for mini-mono. Disable pthread key delete since the key
is still often used during thread destruction. Bump revision.

(joerg)

2017-02-17 17:05:02 UTC MAIN commitmail json YAML

Updated graphics/numix-icon-theme to 0.1nb1

(joerg)

2017-02-17 17:04:36 UTC MAIN commitmail json YAML

Updated graphics/numix-icon-theme-circle to 0.1nb1

(joerg)

2017-02-17 17:03:51 UTC MAIN commitmail json YAML

2017-02-17 17:03:19 UTC MAIN commitmail json YAML

Update plugin registry to make the svg loader available. Bump revision.

(joerg)

2017-02-17 17:02:45 UTC MAIN commitmail json YAML

Macros of newer zlib versions don't like the implicit cast from void *,
so be explicit.

(joerg)

2017-02-17 17:02:01 UTC MAIN commitmail json YAML

2017-02-17 17:01:19 UTC MAIN commitmail json YAML

Create obj directory in advance to prevent parallel build failures.
Drop debug flags I leaked here a decade ago. Bump revision.

(joerg)

2017-02-17 17:00:31 UTC MAIN commitmail json YAML

Don't define accept4 locally on new enough NetBSD current.

(joerg)

2017-02-17 17:00:03 UTC MAIN commitmail json YAML

2017-02-17 15:53:50 UTC MAIN commitmail json YAML

Mark as not ready for python-3.x due to py-cheetah.

(wiz)

2017-02-17 15:44:01 UTC MAIN commitmail json YAML

Updated misc/calibre to 2.79.1

(wiz)

2017-02-17 15:43:43 UTC MAIN commitmail json YAML

Updated calibre to 2.79.1.

2.79.1

New Features

    Windows: Make recently opened books show up in the jump lists for the standalone viewer and editor programs
    OS X/Linux: Show an informational popup message when an Android device is plugged in that needs the user to tap Allow for the connection to work.
    Conversion: Log options that are different from the defaults separately, for easy reference

Bug Fixes

    2.79.1 fixes a regression in 2.79.0 that broke the file open dialogs on windows vista
    Conversion: Fix regression that broke conversion of some epub files when using the 'Remove first image' option.
    Get Books: Update Kobo plugin for website changes
    Windows MTP driver: Fix error when enumerating device storage not being reported during debug device detection
    Tag Browser: When dragging and dropping a book onto a series increment the series number.
    Fix crash when generating covers with Qt 5.8 on linux
    Fix Get Books result list and jobs list not being populated on Qt 5.8
    Fix importing rules in the coloring/icon rules dialog not enabling the apply button

(wiz)

2017-02-17 15:40:38 UTC MAIN commitmail json YAML

Enable www/pup

(fhajny)

2017-02-17 15:39:53 UTC MAIN commitmail json YAML

Added www/pup version 0.4.0

(fhajny)

2017-02-17 15:39:38 UTC MAIN commitmail json YAML

Import pup 0.4.0 as www/pup.

pup is a command line tool for processing HTML. It reads from
stdin, prints to stdout, and allows the user to filter parts of
the page using CSS selectors.

(fhajny)

2017-02-17 15:22:11 UTC MAIN commitmail json YAML

Updated sysutils/consul to 0.7.5

(fhajny)

2017-02-17 15:22:03 UTC MAIN commitmail json YAML

Update sysutils/consul to 0.7.5.

- server: Fixed a rare but serious issue where Consul servers could
  panic when performing a large delete operation followed by a specific
  sequence of other updates to related parts of the state store (affects
  KV, sessions, prepared queries, and the catalog).

(fhajny)

2017-02-17 15:19:33 UTC MAIN commitmail json YAML

- ragel-7.0.0.9 (development release, we have latest stable).

(wiz)

2017-02-17 15:17:24 UTC MAIN commitmail json YAML

Updated graphics/libepoxy to 1.4

(wiz)

2017-02-17 15:17:09 UTC MAIN commitmail json YAML

Updated libepoxy to 1.4.

This is a new stable release.

Major changes for 1.4 are:

    Epoxy can now build with MSVC versions prior to 2013; we still recommend using a recent, C99-compatible compiler, like MSVC 2015 [Chun-wei Fan]
    When used under X11, Epoxy now attempts to handle the cases where the GLX extension is not built or not available [Yaron Cohen-Tal]
    GLX can now be enabled and disabled at configuration time; this allows building Epoxy with GLX on macOS, and allows building Epoxy without GLX on embedded platforms
    Epoxy now exposes API that lets dependent projects safely check if platform API like GLX and EGL is available at run time
    EGL support has been improved on Windows, and made more resilient on other platforms [Yaron Cohen-Tal, Adam Jackson]
    Epoxy supports building with the Meson build system, which has Ninja, Visual Studio, and XCode backends
    Epoxy can generate its API reference using Doxygen (currently only available on Meson builds)
    The GL registry has been updated with the latest version of the API references provided by Khronos; Epoxy now supports the API introduced by OpenGL 4.5

(wiz)

2017-02-17 15:02:16 UTC MAIN commitmail json YAML

Updated mail/rspamd to 1.4.3

(wiz)

2017-02-17 15:01:52 UTC MAIN commitmail json YAML

Add missing patch for 1.4.3 update.

(wiz)

2017-02-17 15:01:33 UTC MAIN commitmail json YAML

Updated rspamd to 1.4.3 based on changes in wip by Bartosz Kuzma.

1.4.3:
* [CritFix] Backport PTR_ARRAY_FOREACH fix
* [CritFix] Fix descriptors leak on reload
* [Feature] Add `caseless_hash` method to `lua_util`
* [Feature] Use t1ha for hashes, allow inlining
* [Feature] Use t1ha instead of metrohash and xxhash32
* [Fix] Another try to fix descriptors leak
* [Fix] Another try to fix reload and logger
* [Fix] Avoid extensive reallocs
* [Fix] Avoid race condition on saving cache and reload
* [Fix] Backport redis pool fixes from master
* [Fix] Break pool connection on fatal redis errors
* [Fix] Fix argument returned on redis backend errors
* [Fix] Fix errors handling in fuzzy backend initialization
* [Fix] Fix race condition in SIGUSR2 handler
* [Fix] Fix reload and hyperscan ready event
* [Fix] More fixes to logger initialization
* [Fix] Plug memory leak in learning fuzzy storage

1.4.2:
* [CritFix] Deal with absent headers in DKIM
* [CritFix] Do not trust remote shingles count
* [CritFix] Fix headers selection in DKIM verification
* [Feature] Add EXT_CSS rule
* [Feature] Add toggle for disabling SURBLs
* [Feature] Extend redis lock when learning spawned
* [Feature] Parse <link> HTML tags
* [Fix] Avoid reusing g_error (Fixes #1262)
* [Fix] Do not reset loaded ANN when learning is requested
* [Fix] Fix another issue with external deps in SA
* [Fix] Fix body trie matching
* [Fix] Fix checking of DKIM bodies that needs just `\n` to be added
* [Fix] Fix fuzzy hashes count
* [Fix] Fix keys names
* [Fix] Fix length calculations for url encoded urls
* [Fix] Fix matching of the same patterns from different tries
* [Fix] Fix name of var
* [Fix] Fix parsing of URLs with spaces and other bad chars
* [Fix] Fix probability calculations for fuzzy redis backend
* [Fix] Fix signing headers creation in DKIM
* [Fix] Plug memory leak
* [Fix] Really fix chained SA dependencies
* [Fix] Really increase lock lifetime
* [Fix] Use checksum to avoid intersection between different ANNs
* [Fix] Use rspamd hashes in embedded ucl
* [Fix] Yet another change for testing external deps

1.4.1:
* [Feature] ASN support in Clickhouse module
* [Feature] Add clickhouse plugin
* [Feature] Add generic tool to add universal maps for lua modules
* [Feature] Add logger.debugm to debug lua modules
* [Feature] Allow to register metrics symbols using register_symbol
* [Feature] Allow to specify prefix for fann_redis
* [Feature] Clickhouse: support different masks for IPv4/IPv6
* [Feature] Support forcing action in antivirus plugin
* [Fix] Add handling of regexp maps
* [Fix] Allow backslashes in http urls
* [Fix] Avoid mapping of empty files
* [Fix] Do not load tld file to speed up rspamadm
* [Fix] Do not resolve numeric IP addresses due to ipv6 insanity
* [Fix] Filter incorrect training data
* [Fix] Fix Fuzzyconvert tool when password or DB is given
* [Fix] Fix build with custom glib/gmime
* [Fix] Fix converting of learn count from sqlite to redis
* [Fix] Fix crashes with invalid received and task:set_from_ip
* [Fix] Fix external dependencies for SA module
* [Fix] Fix fann_redis when number of scores has been changed
* [Fix] Fix hyperscan usage for non compatible platforms
* [Fix] Fix loading of maps from UCL objects
* [Fix] Fix memory leak for task-less redis requests
* [Fix] Fix mid module with new maps syntax
* [Fix] Fix parsing of URLs with username
* [Fix] Fix re cache initialisation
* [Fix] Fix replacements to sanitize '%' character
* [Fix] Fix set and regexp like static maps
* [Fix] Fix some issues in redis settings
* [Fix] Fix static IP maps
* [Fix] Fix total learns counter for redis stats
* [Fix] Fix usage of config during reload
* [Fix] Fix various warnings and issues
* [Fix] Invalidate ANN if training data is incorrect
* [Fix] Miltiple fixes to fann_redis module
* [Fix] More fixes for URLs with backslashes
* [Fix] Properly get options for ip_score module
* [Fix] Relax requirements for Received as gmail cannot RFC
* [Fix] Remove or fix hyperscan incompatible regexps
* [Fix] Settings: correctly read redis config
* [Rework] Rework lua logger interface slightly
* [Rework] Use new maps add function

1.4.0:
* [CritFix] Add guards for inactive redis connections
* [CritFix] Another fix for proxying files using rspamd_proxy
* [CritFix] Cleanup inactive redis connections
* [CritFix] Do not sometimes try to exec posfilters before classification
* [CritFix] Fix application of IPv6 mask
* [CritFix] Fix chunked encoding when reading messages
* [CritFix] Fix file mode for rspamd_proxy
* [CritFix] Fix hyperscan compilation on regexp change
* [CritFix] Fix issue with finding of end of lines pointers
* [CritFix] Fix iteration over headers array (introduced in 1.4)
* [CritFix] Fix processing of learned tokens count for redis backend
* [CritFix] Fix race condition in checking of cached maps
* [CritFix] Fix workers scripts by sharing workers configs
* [CritFix] Introduce raw content to text parts
* [CritFix] Plug memory leak and potential memory corruption
* [Feature] Adaptive ratelimits
* [Feature] Add ASN -> rbldnsd script for asn.rspamd.com
* [Feature] Add DMARC_NA symbol
* [Feature] Add F-Prot support to antivirus module
* [Feature] Add HTTP backend to metadata exporter
* [Feature] Add Lua API module for monitored objects
* [Feature] Add R_DKIM_NA / R_SPF_NA / AUTH_NA symbols
* [Feature] Add R_DKIM_PERMFAIL symbol
* [Feature] Add R_SPF_PERMFAIL symbol
* [Feature] Add Sophos antivirus support
* [Feature] Add ZSTD compression to Lua API
* [Feature] Add `mid` Lua module
* [Feature] Add `one_param` flag for metric symbols
* [Feature] Add a generic lua classifier
* [Feature] Add a very basic interface to access workers data from on_load
* [Feature] Add ability to delete a hash by its data to fuzzy_check plugin
* [Feature] Add ability to enable/disable symbols via dynamic_conf
* [Feature] Add ability to lookup settings by key
* [Feature] Add common way to disable Lua modules
* [Feature] Add compression support to rspamd client
* [Feature] Add condition to do antiviral check
* [Feature] Add configuration for lua classifiers
* [Feature] Add configuration knobs for the errors circular buffer
* [Feature] Add decompression support in rspamd client
* [Feature] Add errors exporter to the controller
* [Feature] Add expected value for monitored DNS resources
* [Feature] Add exporter from error ringbuf to ucl
* [Feature] Add extended version for fann creation function
* [Feature] Add ffi friendly version of process_regexp function
* [Feature] Add frequency and time display to webui
* [Feature] Add fuzzy_delhash command to rspamc client
* [Feature] Add implementation of redis connections pool
* [Feature] Add latency and offline time monitoring
* [Feature] Add learning support for lua classifiers
* [Feature] Add max-size and timeout options to CGP helper
* [Feature] Add method to enable/disable symbols in config
* [Feature] Add methods to get metric's actions and symbols from Lua
* [Feature] Add mmap support to lua_text
* [Feature] Add monitored object for surbl plugin
* [Feature] Add more exceptions to surbl whitelist
* [Feature] Add more meta-tokens to bayes
* [Feature] Add neural net classifier to fann_scores module
* [Feature] Add neural net serialization/deserialization
* [Feature] Add new dynamic conf module
* [Feature] Add periodic events support for lua_config
* [Feature] Add plugin to check MX'es for the sender's domain
* [Feature] Add preliminary monitored module
* [Feature] Add preliminary support of dynamic conf updates in Redis
* [Feature] Add preliminary version of clamav plugin
* [Feature] Add redis cache to asn module
* [Feature] Add replies compression
* [Feature] Add spamhaus DROP dnsbl
* [Feature] Add support for dictionary in client compression
* [Feature] Add support for fuzzy learn and unlearn from lua
* [Feature] Add support for input encryption
* [Feature] Add support of min_learns to neural net classifier
* [Feature] Add termination callbacks for workers
* [Feature] Add user-agent for rspamc
* [Feature] Add utility to perform classifier tests
* [Feature] Add zstd compression library
* [Feature] Allow HTTPS requests in lua_http
* [Feature] Allow conditions for pre and postfilters
* [Feature] Allow custom functions for ratelimits
* [Feature] Allow for excluding messages from AV scanning based on size
* [Feature] Allow for getting worker stats from Lua
* [Feature] Allow getting task UID from Lua
* [Feature] Allow parsing of mailbox messages from the commandline
* [Feature] Allow plugins to publish their lua API via rspamd_plugins
* [Feature] Allow to compare other systems with Rspamd
* [Feature] Allow to execute Lua scripts by controller
* [Feature] Allow to have a function to set custom greylist message
* [Feature] Allow to iterate over multiple tags
* [Feature] Allow to pass extra data from plugins to log helper
* [Feature] Allow to plan new periodics at different time
* [Feature] Allow to reset hashes
* [Feature] Allow to run rspamadm lua just as a lua interpreter
* [Feature] Allow to store settings in redis
* [Feature] Allow to update dynamic conf in Redis
* [Feature] Allow to use dictionaries for compression
* [Feature] Allow to use md5, sha1, sha256, sha384 and sha512 hashes in Lua
* [Feature] Allow whitelisting by IP for greylisting plugin
* [Feature] Antivirus: Support whitelists & pattern-matching sig names
* [Feature] Backport pack/unpack routines from Lua 5.3
* [Feature] Check settings with equal priopities in alphabetical order
* [Feature] Compress neural net in redis
* [Feature] Consider more tags when doing WHITE_ON_WHITE rule
* [Feature] Descriptive options for DMARC failure symbols
* [Feature] Descriptive options for RBL symbols
* [Feature] Enable configuration for monitored objects
* [Feature] Execute on_load scripts with ev_base ready
* [Feature] Fann scores now uses metadata from a message
* [Feature] Implement FANN threaded learning
* [Feature] Implement classifying for lua classifiers
* [Feature] Implement finish scripts for worker processes
* [Feature] Implement monitoring for DNS resources
* [Feature] Implement real priorities for pre and post filters
* [Feature] Insert two symbols: FANN_HAM and FANN_SPAM instead of one
* [Feature] Module to push metadata/messages to redis pubsub
* [Feature] Monitor RBL records
* [Feature] Move fann_classifier to a separate plugin
* [Feature] Normalize all ANN inputs
* [Feature] Preliminary version of metric exporter module
* [Feature] Preserve decompression context between tasks
* [Feature] Ratelimit: Support dynamic bucket size/leak rate
* [Feature] Relax FORGED_RECIPIENTS: allow senders to BCC themselves
* [Feature] Remove symbols weights on composites processing
* [Feature] Return symbol scores when getting resulting symbols
* [Feature] Rework lua tcp module
* [Feature] Rule to detect some obvious X-PHP-Originating-Script forgeries
* [Feature] Rule to identify some X-PHP-Script forgeries
* [Feature] Rules for scoring Google Message-ID fixes
* [Feature] Send hashes values to reply
* [Feature] Set expire for dmarc reports
* [Feature] Stop using cymru zone as it is unstable
* [Feature] Stop using of GLists for headers, improve performance
* [Feature] Store `for` in task:get_received_headers
* [Feature] Store `for` part in received headers
* [Feature] Store enabled flag for webui session
* [Feature] Store error messages in ring buffer
* [Feature] Support compressed maps
* [Feature] Support excluding selected users from ratelimits
* [Feature] Support looking up NS records in lua_dns
* [Feature] Support modern style SURBL configuration
* [Feature] Support multiple hashes in delhash path
* [Feature] Support new messages in rspamc
* [Feature] Support requests without reads in lua_tcp
* [Feature] Support setting task message from Lua
* [Feature] Track visibility of HTML elements
* [Feature] Try to add CRLF when checking DKIM
* [Feature] Try to guess line endings when folding headers
* [Feature] Try to improve normalization function for bayes
* [Feature] Use FFI to optimize SA module
* [Feature] Use length based arguments for redis, allow lua_text as arg
* [Feature] Use more layers for fann and another normalization
* [Feature] User-defined ratelimits
* [Feature] Utility to convert fuzzy storage from sqlite to redis
* [Feature] Yield DMARC_DNSFAIL on lookup failure
* [Fix] Adopt fuzzy storage for flexible backends
* [Fix] Allow plain IP addresses in Rspamd maps
* [Fix] Another fix for brain-damaged hiredis
* [Fix] Another fix for rdns write errors
* [Fix] Another fix for rdns_make_request_full invocation
* [Fix] Another fix in DKIM canonicalization
* [Fix] Another memory leak plugged
* [Fix] Another try to deal with posix idiotizm
* [Fix] Another try to fix RDNS events processing logic
* [Fix] Avoid double frees in HEAD requests
* [Fix] Avoid extra symbols for RBLs
* [Fix] Banish table.maxn from Lua parts
* [Fix] Check for socket error before connection in lua_tcp
* [Fix] Correctly propagate redis timeouts to Lua
* [Fix] Do not add extra newline in MIME mode
* [Fix] Do not be cheated by system hiredis
* [Fix] Do not classify when a message has not enough tokens
* [Fix] Do not crash on redis errors
* [Fix] Do not distinguish NXDOMAIN and NOREC for monitored
* [Fix] Do not replan retransmits if merely one server is defined
* [Fix] Do not use headers to calculate messages digests
* [Fix] Don't force action in replies module for authenticated users/local networks
* [Fix] Explicitly ban default passwords in webui
* [Fix] Finally fix ambiguity between parsed and resolved spf elts
* [Fix] Fix 'decoded' value in task:get_header_full()
* [Fix] Fix DKIM calculations
* [Fix] Fix DKIM signing for messages with no newline at the end
* [Fix] Fix DNS request in monitored
* [Fix] Fix DNS write errors processing
* [Fix] Fix HTTP methods other than GET and POST
* [Fix] Fix PERMFAIL for v6/v4 ambiguities
* [Fix] Fix absurdic scores for HFILTER_URL_ONLY
* [Fix] Fix actions in rolling history
* [Fix] Fix actrie patterns
* [Fix] Fix applying of lua dynamic confg
* [Fix] Fix autolearning errors and redis cache
* [Fix] Fix bayes learn_condition
* [Fix] Fix build with the recent OpenSSL
* [Fix] Fix caching and compressed maps
* [Fix] Fix check plain text part
* [Fix] Fix crash on OpenBSD in `url_email_start`
* [Fix] Fix double free in SPF
* [Fix] Fix extraction of shingles from redis fuzzy storage
* [Fix] Fix false sharing for symbols in the cache
* [Fix] Fix float usage in util:get_time
* [Fix] Fix folding algorithm to deal with empty tokens
* [Fix] Fix format string
* [Fix] Fix format string usage in controller errors handling
* [Fix] Fix handling of '\0' in lua_tcp
* [Fix] Fix handling of HTTP HEAD methods
* [Fix] Fix hash creation
* [Fix] Fix hiredis stupidity
* [Fix] Fix implicit settings module settingsup
* [Fix] Fix interaction with lua GC to avoid craches
* [Fix] Fix ip_score module registration
* [Fix] Fix issue with empty messages and dkim
* [Fix] Fix issues with CGP helper
* [Fix] Fix issues with the recent SPF changes
* [Fix] Fix key name to load ANN correctly
* [Fix] Fix lua tcp module by saving `do_read` in callback data
* [Fix] Fix memory leak in client when using compression
* [Fix] Fix min_learns option
* [Fix] Fix on_finish scripts and async handlers
* [Fix] Fix options for SPF dnsfail symbol
* [Fix] Fix parsing includes and redirects in SPF
* [Fix] Fix parsing of lua comments with empty lines
* [Fix] Fix parsing of unquoted HTML attributes
* [Fix] Fix periodic events and redis
* [Fix] Fix processing of fuzzy learns from Lua
* [Fix] Fix processing of redirect in SPF includes
* [Fix] Fix processing of symbols when reject limit is reached
* [Fix] Fix refcounts when map is specified by IP
* [Fix] Fix rspamd{session} class in Lua API
* [Fix] Fix setting ratelimit key for 'ip' bucket
* [Fix] Fix some cases of TLD urls detector
* [Fix] Fix statconvert tool
* [Fix] Fix stats for backend-less classifiers
* [Fix] Fix training script for fann_redis
* [Fix] Fix variable in ann module
* [Fix] Fix various errors in lua dynamic conf plugin
* [Fix] Forget old ANN when max_usages is reached to avoid overtrain
* [Fix] Further canonicalization fixes
* [Fix] Further fixes for fann_redis prefixes
* [Fix] Handle failures for inactive pooled connections
* [Fix] Improve multimap info message
* [Fix] More fixes in ANN loading
* [Fix] More fixes to fann_redis
* [Fix] More issues in fann_redis
* [Fix] More spaces fix in DKIM signature
* [Fix] Multiple fixes to asn script, add IPv6 support
* [Fix] Multiple issues in fann_redis
* [Fix] No greylist rejected messages
* [Fix] One more attempt to fix lua_redis
* [Fix] One more check for readdir...
* [Fix] Params should be treated as a hash
* [Fix] Plug memory leak in regexp desctructor
* [Fix] Process headers only once
* [Fix] Properly handle nil values in ratelimit plugin
* [Fix] Really fix redis shingles check
* [Fix] Remove fann with incorrect layers count
* [Fix] Remove mentions of deleted include
* [Fix] Remove some incompatible functions
* [Fix] Settings: fix `authenticated` parameter (#886)
* [Fix] Skip MX check for authenticated users and local networks
* [Fix] Slightly fix ANN routines
* [Fix] Stop caching records with DNS failures
* [Fix] Treat all errors in redis_pool as fatal errors for a connection
* [Fix] Try avoid false-positives in HEADER_FORGED_MDN rule
* [Fix] Try to avoid race condition when using rrd
* [Fix] Try to reload redis scripts if they are missing
* [Fix] Unbreak once_received skipping for local networks
* [Fix] Unlock ANN on error
* [Fix] Use memmove for overlapping regions
* [Fix] Use real size instead of displayed for core limits
* [Fix] Use the correct macro to get the size of control
* [Fix] Various fixes for errors ringbuffer
* [Fix] Yield R_SPF_DNSFAIL if lookup of included record fails
* [Fix] mid: fix map initialization
* [Fix] mid: handle incorrect rgexps in the map
* [Rework] Add extract training data function to fann_redis
* [Rework] Add preliminary train tests
* [Rework] Add redis storage feature to fann_redis
* [Rework] Adopt fuzzy storage for abstract backend
* [Rework] Adopt plugins
* [Rework] First reiteration on fann scores
* [Rework] Implement loading/invalidating
* [Rework] Make lua_redis task agnostic
* [Rework] Make rspamd protocol messages useful
* [Rework] Massive removal of legacy code
* [Rework] More cleanup actions
* [Rework] Remove legacy code never used for classifiers
* [Rework] Remove outdated and unused lua_session module
* [Rework] Reorganize fuzzy backend structure
* [Rework] Reorganize the internal backend structure
* [Rework] Restore old fann_scores, move common parts
* [Rework] Rework and simplify rbl plugin
* [Rework] Rework parsing of DMARC records

(wiz)

2017-02-17 14:49:35 UTC MAIN commitmail json YAML

Updated misc/py-anki2 to 2.0.42

(wiz)

2017-02-17 14:49:20 UTC MAIN commitmail json YAML

Updated py-anki2 to 2.0.42.

Changes in 2.0.42

Released 2017-02-10.

A Linux-only release which fixes interface translations not working in the compiled package.

(wiz)