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 (4m)  pkgsrc-2024Q1 (8d)  pkgsrc-2023Q4 (55d)  pkgsrc-2023Q2 (88d)  pkgsrc-2023Q3 (167d) 

2024-05-26 11:41:36 UTC Now

2016-04-13 18:47:56 UTC MAIN commitmail json YAML

Updated x11/xf86-video-amdgpu to 1.1.0

(wiz)

2016-04-13 18:47:46 UTC MAIN commitmail json YAML

Update xf86-video-amdgpu to 1.1.0

I'm pleased to announce the 1.1.0 release of xf86-video-amdgpu, the Xorg
driver for AMD Radeon GPUs supported by the amdgpu kernel driver.
This release supports xserver versions 1.9-1.18.

Highlights:

* Support for the upcoming Polaris family of GPUs.
* Option "TearFree" can now prevent tearing with rotation/reflection as
  well (with Xorg >= 1.16).
* RandR CRTC transforms now work correctly (but for now still exhibit
  tearing even with TearFree).
* The RandR 1.4 provider name is now no longer hardcoded to "amdgpu"
  but constructed from the GPU chipset name and bus ID, allowing
  several GPUs supported by this driver to be distinguished by name.
* The RandR primary output is now always explicitly marked as such.
* The driver can prevent clients trying to use the DRI3 extension over a
  display connection forwarded via SSH from hanging.
* VDPAU/OpenGL interoperation can now work with DRI3 enabled.
* Many more fixes for issues using the DRI3/Present extensions.

Plus many other small improvements and fixes. Thanks to everybody who
contributed to this release in any way!

(wiz)

2016-04-13 18:46:43 UTC MAIN commitmail json YAML

Updated x11/xf86-video-ati to 7.7.0

(wiz)

2016-04-13 18:46:34 UTC MAIN commitmail json YAML

Update xf86-video-ati to 7.7.0.

I'm pleased to announce the 7.7.0 release of xf86-video-ati, the Xorg
driver for ATI/AMD Radeon GPUs supported by the radeon kernel driver.
This release supports xserver versions 1.9-1.18.

Highlights:

* Option "TearFree" can now prevent tearing with rotation/reflection as
  well (with Xorg >= 1.16).
* RandR CRTC transforms now work correctly (but for now still exhibit
  tearing even with TearFree).
* The RandR 1.4 provider name is now no longer hardcoded to "radeon"
  but constructed from the GPU chipset name and bus ID, allowing
  several GPUs supported by this driver to be distinguished by name.
* The RandR primary output is now always explicitly marked as such.
* The driver can now make use of more than 256MB of VRAM for scanout
  buffers, allowing e.g. virtual desktop sizes >= 8192x8192 to work.
* The driver can prevent clients trying to use the DRI3 extension over a
  display connection forwarded via SSH from hanging.
* Many more fixes for issues using the DRI3/Present extensions.

Plus many other small improvements and fixes. Thanks to everybody who
contributed to this release in any way!

(wiz)

2016-04-13 18:44:55 UTC MAIN commitmail json YAML

Updated x11/modular-xorg-xephyr to 1.18.3

(wiz)

2016-04-13 18:43:27 UTC MAIN commitmail json YAML

Updated x11/modular-xorg-server to 1.18.3

(wiz)

2016-04-13 18:43:17 UTC MAIN commitmail json YAML

Update modular-xorg-server to 1.18.3.

A few fixes relative to 1.18.2, including one fairly important
performance fix to the Present extension. Thanks to all for fixes and
testing.

Adam Jackson (2):
      vfb: Re-add LD_EXPORT_SYMBOLS_FLAG to LDFLAGS
      xserver 1.18.3

Chris Wilson (1):
      Xext/vidmode: Reduce verbosity of GetModeLine debug messages

Dave Airlie (1):
      glamor: swizzle RED to 0 for alpha textures

Michel Dänzer (2):
      present: Only requeue for next MSC after flip failure
      xfree86/modes: Make sure the HW cursor is hidden when it should be

Olivier Fourdan (2):
      xwayland: do not include frequency in mode name
      xwayland: Pretend we support viewport in vidmode

Sonny Jiang (1):
      DRI2: add Polaris PCI IDs

(wiz)

2016-04-13 18:39:31 UTC MAIN commitmail json YAML

Updated devel/py-test to 2.9.1

(wiz)

2016-04-13 18:39:21 UTC MAIN commitmail json YAML

Update py-test to 2.9.1.

2.9.1
=====

**Bug Fixes**

* Improve error message when a plugin fails to load.
  Thanks `@nicoddemus`_ for the PR.

* Fix (`#1178 <https://github.com/pytest-dev/pytest/issues/1178>`_):
  ``pytest.fail`` with non-ascii characters raises an internal pytest error.
  Thanks `@nicoddemus`_ for the PR.

* Fix (`#469`_): junit parses report.nodeid incorrectly, when params IDs
  contain ``::``. Thanks `@tomviner`_ for the PR (`#1431`_).

* Fix (`#578 <https://github.com/pytest-dev/pytest/issues/578>`_): SyntaxErrors
  containing non-ascii lines at the point of failure generated an internal
  py.test error.
  Thanks `@asottile`_ for the report and `@nicoddemus`_ for the PR.

* Fix (`#1437`_): When passing in a bytestring regex pattern to parameterize
  attempt to decode it as utf-8 ignoring errors.

* Fix (`#649`_): parametrized test nodes cannot be specified to run on the command line.

.. _#1437: https://github.com/pytest-dev/pytest/issues/1437
.. _#469: https://github.com/pytest-dev/pytest/issues/469
.. _#1431: https://github.com/pytest-dev/pytest/pull/1431
.. _#649: https://github.com/pytest-dev/pytest/issues/649

.. _@asottile: https://github.com/asottile

2.9.0
=====

**New Features**

* New ``pytest.mark.skip`` mark, which unconditionally skips marked tests.
  Thanks `@MichaelAquilina`_ for the complete PR (`#1040`_).

* ``--doctest-glob`` may now be passed multiple times in the command-line.
  Thanks `@jab`_ and `@nicoddemus`_ for the PR.

* New ``-rp`` and ``-rP`` reporting options give the summary and full output
  of passing tests, respectively. Thanks to `@codewarrior0`_ for the PR.

* ``pytest.mark.xfail`` now has a ``strict`` option, which makes ``XPASS``
  tests to fail the test suite (defaulting to ``False``). There's also a
  ``xfail_strict`` ini option that can be used to configure it project-wise.
  Thanks `@rabbbit`_ for the request and `@nicoddemus`_ for the PR (`#1355`_).

* ``Parser.addini`` now supports options of type ``bool``.
  Thanks `@nicoddemus`_ for the PR.

* New ``ALLOW_BYTES`` doctest option. This strips ``b`` prefixes from byte strings
  in doctest output (similar to ``ALLOW_UNICODE``).
  Thanks `@jaraco`_ for the request and `@nicoddemus`_ for the PR (`#1287`_).

* Give a hint on ``KeyboardInterrupt`` to use the ``--fulltrace`` option to show the errors.
  Fixes `#1366`_.
  Thanks to `@hpk42`_ for the report and `@RonnyPfannschmidt`_ for the PR.

* Catch ``IndexError`` exceptions when getting exception source location.
  Fixes a pytest internal error for dynamically generated code (fixtures and tests)
  where source lines are fake by intention.

**Changes**

* **Important**: `py.code <http://pylib.readthedocs.org/en/latest/code.html>`_ has been
  merged into the ``pytest`` repository as ``pytest._code``. This decision
  was made because ``py.code`` had very few uses outside ``pytest`` and the
  fact that it was in a different repository made it difficult to fix bugs on
  its code in a timely manner. The team hopes with this to be able to better
  refactor out and improve that code.
  This change shouldn't affect users, but it is useful to let users aware
  if they encounter any strange behavior.

  Keep in mind that the code for ``pytest._code`` is **private** and
  **experimental**, so you definitely should not import it explicitly!

  Please note that the original ``py.code`` is still available in
  `pylib <http://pylib.readthedocs.org>`_.

* ``pytest_enter_pdb`` now optionally receives the pytest config object.
  Thanks `@nicoddemus`_ for the PR.

* Removed code and documentation for Python 2.5 or lower versions,
  including removal of the obsolete ``_pytest.assertion.oldinterpret`` module.
  Thanks `@nicoddemus`_ for the PR (`#1226`_).

* Comparisons now always show up in full when ``CI`` or ``BUILD_NUMBER`` is
  found in the environment, even when ``-vv`` isn't used.
  Thanks `@The-Compiler`_ for the PR.

* ``--lf`` and ``--ff`` now support long names: ``--last-failed`` and
  ``--failed-first`` respectively.
  Thanks `@MichaelAquilina`_ for the PR.

* Added expected exceptions to ``pytest.raises`` fail message.

* Collection only displays progress ("collecting X items") when in a terminal.
  This avoids cluttering the output when using ``--color=yes`` to obtain
  colors in CI integrations systems (`#1397`_).

**Bug Fixes**

* The ``-s`` and ``-c`` options should now work under ``xdist``;
  ``Config.fromdictargs`` now represents its input much more faithfully.
  Thanks to `@bukzor`_ for the complete PR (`#680`_).

* Fix (`#1290`_): support Python 3.5's ``@`` operator in assertion rewriting.
  Thanks `@Shinkenjoe`_ for report with test case and `@tomviner`_ for the PR.

* Fix formatting utf-8 explanation messages (`#1379`_).
  Thanks `@biern`_ for the PR.

* Fix `traceback style docs`_ to describe all of the available options
  (auto/long/short/line/native/no), with `auto` being the default since v2.6.
  Thanks `@hackebrot`_ for the PR.

* Fix (`#1422`_): junit record_xml_property doesn't allow multiple records
  with same name.

.. _`traceback style docs`: https://pytest.org/latest/usage.html#modifying-python-traceback-printing

.. _#1422: https://github.com/pytest-dev/pytest/issues/1422
.. _#1379: https://github.com/pytest-dev/pytest/issues/1379
.. _#1366: https://github.com/pytest-dev/pytest/issues/1366
.. _#1040: https://github.com/pytest-dev/pytest/pull/1040
.. _#680: https://github.com/pytest-dev/pytest/issues/680
.. _#1287: https://github.com/pytest-dev/pytest/pull/1287
.. _#1226: https://github.com/pytest-dev/pytest/pull/1226
.. _#1290: https://github.com/pytest-dev/pytest/pull/1290
.. _#1355: https://github.com/pytest-dev/pytest/pull/1355
.. _#1397: https://github.com/pytest-dev/pytest/issues/1397
.. _@biern: https://github.com/biern
.. _@MichaelAquilina: https://github.com/MichaelAquilina
.. _@bukzor: https://github.com/bukzor
.. _@hpk42: https://github.com/hpk42
.. _@nicoddemus: https://github.com/nicoddemus
.. _@jab: https://github.com/jab
.. _@codewarrior0: https://github.com/codewarrior0
.. _@jaraco: https://github.com/jaraco
.. _@The-Compiler: https://github.com/The-Compiler
.. _@Shinkenjoe: https://github.com/Shinkenjoe
.. _@tomviner: https://github.com/tomviner
.. _@RonnyPfannschmidt: https://github.com/RonnyPfannschmidt
.. _@rabbbit: https://github.com/rabbbit
.. _@hackebrot: https://github.com/hackebrot

(wiz)

2016-04-13 18:34:36 UTC MAIN commitmail json YAML

Updated sysutils/mc to 4.8.16

(wiz)

2016-04-13 18:34:27 UTC MAIN commitmail json YAML

Update mc to 4.8.16

Version 4.8.16

- Core
  * Support for ash + bugfixes for bash, fish (#2742)
  * Find file: empty file name matches any file name (#3593)
  * Find file: empty value of "Content" is used instead of "Search for content" checkbox to disable search for content (#3594)
  * Listbox: don't wraparound on mouse scroll (#3554)
  * Internals:
    * Listbox: various fixups (#3569: #3562, #3563, #3565, #3161)
    * Split MSG_ACTION into MSG_ACTION and MSG_NOTIFY (#3566)

- VFS
  * Support lzip compression format (#2673, #1541)
  * Support lz4 compression format (#3523)
  * patchfs: support xz compression (#3443)
  * Update uc1541 version (#3527)
  * Add mc.ext patterns for initramfs / initrd (#3115)

- Editor
  * Add golang syntax (MidnightCommander/mc#84)
  * Update Puppet syntax (MidnightCommander/mc#86)

- Misc
  * Code cleanup (#3555, #3547, #3587)
  * Better subshell documentation (#3556)
  * Fixes to the English man pages by Denys Vlasenko

- Fixes
  * Insufficient quoting in `mc.menu` (#2947)
  * Broken ./configure --without-internal-edit (#3601)
  * Memory leaks (#3547, #3561, #3567, #3572)
  * No preallocation if appending during file copy (#3577)
  * Cannot set mini-format for "brief" listing type (#3588)
  * Info panel: incorrect inode information in some cases (#3214)
  * Info panel: wrong device name with symbolic link (#3412)
  * Info panel: buffer overflow (#3582)
  * Regression: match filename, not full path in mc.ext (#3578)
  * Broken case insensitive search in non-unicode locale (#3491)
  * Error message prefixed with no sense "0:" (#3269)
  * mcedit: buffer overflow (#3579)
  * mcedit: "Lower case selection" command in User Menu (#3586)
  * mcedit: close on ctrl-g (#3557)
  * mcview: "Not found" result isn't reported in some cases (#3543)
  * VFS: isofs doesn't show .dotfiles (#3537)
  * VFS: isofs: cannot copy file from iso when Joliet without RockRidge is used (#2851)
  * VFS: extfs/unzip: enter into zip file fails with "inconsistent extfs archive" (#3433)
  * VFS: SFTP: various bugs (#3581)
  * VFS: FISH: provide major/minor info for block/char devices (#3599)
  * Bashism in gitfs+ extfs helper (#3379)
  * Non-portable invocation of man (#3509)
  * mc-wrapper leaves MC_USER set (#3550)
  * Broken silent opening of files in background (#3574)
  * Run `identify` on JPEGs even if `exif` is not installed (#3568)

(wiz)

2016-04-13 18:30:51 UTC MAIN commitmail json YAML

Updated security/p5-Net-SSLeay to 1.74

(wiz)

2016-04-13 18:30:41 UTC MAIN commitmail json YAML

Update p5-Net-SSLeay to 1.74.

1.74 2016-04-12
    README.OSX was missing from the distribution

1.73 2016-04-11
    Added X509_get_X509_PUBKEY. Patch supplied by GUILHEM. Thanks.
    Added README.OSX with instructions on how to build for recent OS X.
    Added info about using OPENSSL_PREFIX to README.Win32.
    Added comments in POD about installation documentation.
    Added '/usr/local/opt/openssl/bin/openssl' to Openssl search path for
    latest version of  OSX homebrew openssl. Patch from Shoichi Kaji.

(wiz)

2016-04-13 18:28:20 UTC MAIN commitmail json YAML

Updated devel/p5-PadWalker to 2.2

(wiz)

2016-04-13 18:28:10 UTC MAIN commitmail json YAML

Update p5-PadWalker to 2.2.

2.2  Fri 23 Oct 2015 17:55:31 BST
    - Convert to PERL_NO_GET_CONTEXT
      https://github.com/robinhouston/PadWalker/pull/2

(wiz)

2016-04-13 18:26:32 UTC MAIN commitmail json YAML

Updated devel/p5-Log-Any to 1.04.0

(wiz)

2016-04-13 18:26:23 UTC MAIN commitmail json YAML

Update p5-Log-Any to 1.040.

1.040    2016-02-24 17:47:00-05:00 America/New_York

    [Fixed]

    - Fixed duplicated documentation sections.

1.038    2016-02-10 14:15:31-07:00 America/Mazatlan

    - No changes from 1.037

1.037    2016-02-05 20:22:34-05:00 America/New_York (TRIAL RELEASE)

    [Fixed]

    - Fixed t/filescreen.t Unicode string tests to use a backwards
      compatible form.  Should fix tests before 5.16.

1.035    2016-02-04 14:47:20-05:00 America/New_York (TRIAL RELEASE)

    [Changed]

    - The default formatter now replaces a code reference argument with
      the results of calling the code reference ONLY when it is the first
      argument (in place of a format string).  Code references in
      subsequent arguments (to sprintf) are not executed, as this would
      break backwards compatibility.

    [Documented]

    - Noted that repeatedly calling 'set' to set an adapter without calling
      'remove' or using the 'lexically' feature will leak memory.

1.033    2016-02-03 10:32:57-05:00 America/New_York (TRIAL RELEASE)

    [Added]

    - The default formatter now expands code references.  If the first
      argument is a code reference, it is expanded and returned.  If an
      argument to "sprintf" style formatting is a code reference, it is
      expanded.

    [Changed]

    - The File adapter now opens files with the ":utf8" layer.  It also
      takes a 'binmode' attribute to change the default.

    [Fixed]

    - does_not_contain_ok test adapter function now gives proper
      diagnostic message

    - all diagnostic messages that output the captured log now
      correctly dump the log with pretty formatting

    [Documented]

    - documented the 'proxy_class' argument to `get_logger`

    [~Internal~]

    - Data::Dumper is loaded lazily, to reduce module load times
      for programs that don't need it.

(wiz)

2016-04-13 18:25:14 UTC MAIN commitmail json YAML

Updated devel/py-setuptools_trial to 0.6.0

(wiz)

2016-04-13 18:25:05 UTC MAIN commitmail json YAML

Update py-setuptools_trial to 0.6.0.

0.6.0 (2016-XX-XX)
------------------

- Fix working with recent versions of setuptools.

- Python versions < 2.7 support was dropped.
  Currently Python 2.7 and Python 3.4, 3.5 versions are supported
  (should work in other Python 3 releases too, but it is not tested).

- Package "zip-safety" is determined by setuptools.

- New package home page is https://github.com/rutsky/setuptools-trial,
  please report issues there!

Internal changes:

- Getting version from Darcs VCS was removed.

- Remove trash files (prebuild eggs, PKG-INFO).

- Source code is not PEP8 and pyflakes conformant.

- Simple integration tests were added.

(wiz)

2016-04-13 18:21:28 UTC MAIN commitmail json YAML

Updated devel/py-setuptools to 20.6.7

(wiz)

2016-04-13 18:21:19 UTC MAIN commitmail json YAML

Update py-setuptools to 20.6.7.

v20.6.7
-------

* Issue #523: Disabled support for environment markers
  introduced in v20.5.

v20.6.6
-------

* Issue #503: Restore support for PEP 345 environment
  markers by updating to Packaging 16.6.

v20.6.0
-------

* New release process that relies on
  `bumpversion <https://github.com/peritus/bumpversion>`_
  and Travis CI for continuous deployment.
* Project versioning semantics now follow
  `semver <https://semver.org>`_ precisely.
  The 'v' prefix on version numbers now also allows
  version numbers to be referenced in the changelog,
  e.g. https://pythonhosted.org/setuptools/history.html#v20-6-0.

20.5
----

* BB Pull Request #185: Add support for environment markers
  in requirements in install_requires, setup_requires,
  tests_require as well as adding a test for the existing
  extra_requires machinery.

20.4
----

* Issue #422: Moved hosting to
  `Github <https://github.com/pypa/setuptools>`_
  from `Bitbucket <https://bitbucket.org/pypa/setuptools>`_.
  Issues have been migrated, though all issues and comments
  are attributed to bb-migration. So if you have a particular
  issue or issues to which you've been subscribed, you will
  want to "watch" the equivalent issue in Github.
  The Bitbucket project will be retained for the indefinite
  future, but Github now hosts the canonical project repository.

20.3.1
------

* Issue #519: Remove import hook when reloading the
  ``pkg_resources`` module.
* BB Pull Request #184: Update documentation in ``pkg_resources``
  around new ``Requirement`` implementation.

20.3
----

* BB Pull Request #179: ``pkg_resources.Requirement`` objects are
  now a subclass of ``packaging.requirements.Requirement``,
  allowing any environment markers and url (if any) to be
  affiliated with the requirement
* BB Pull Request #179: Restore use of RequirementParseError
  exception unintentionally dropped in 20.2.

(wiz)

2016-04-13 18:19:59 UTC MAIN commitmail json YAML

Updated net/py-foolscap to 0.11.0

(wiz)

2016-04-13 18:19:49 UTC MAIN commitmail json YAML

Update py-foolscap to 0.11.0.

* Release 0.11.0 (23-Mar-2016)

** Packaging Fixes

Foolscap now declares a dependency on "twisted[tls]" instead of just
"twisted": the "[tls]" extra means "we need Twisted and its TLS support".
That's how we ask for Twisted to depend upon service_identity and other
supporting packages. By using "[tls]", we no longer need to manually depend
upon service_identity ourselves. If Twisted switches to some other scheme for
TLS support, this will correctly ask for that to be included. (#249)

Note that we still depend on pyOpenSSL ourselves, because we need its code to
control certificate validation (if Twisted actually moved away from pyOpenSSL
for TLS, Foolscap might break altogether).

The Twisted dependency was updated to >=16.0.0 (the current version), to get
an important HostnameEndpoint fix (#155).

The "flogtool", "flappserver", and "flappclient" executables are now provided
as "entry_points" on all platforms, not just windows. The old bin/* scripts
have been removed. The "flogtool" entrypoint was fixed (a one-character typo
in the setup.py specification): apparently it was always broken on windows
and nobody noticed.

We now use "tox" to run tests, instead of "trial foolscap", although the
latter is still fine when run in a virtualenv into which Foolscap has been
installed (and is what "tox" does under the hood).

This release also moves all source code from "foolscap/" to "src/foolscap/",
which should avoid some confusion as to which code is being tested.
Developers who work from a git checkout should manually "rm -rf foolscap"
after pulling this change, because otherwise the leftover .pyc files are
likely to cause spurious test failures. (#250, #251)

** partial IPv6 support

Foolscap's outbound connections now use HostnameEndpoint, which means that
connection hints which contain DNS names which map to AAAA (and maybe A6)
records should successfully connect to those IPv6 addresses. There is not yet
any support to *listen* on IPv6 ports, so this probably does not enable IPv6
completely. But a client running this release may be able to connect to
server running some future IPv6-capable release and advertising v6-based
hostnames. (#155)

(wiz)

2016-04-13 18:18:21 UTC MAIN commitmail json YAML

Updated misc/py-anki2 to 2.0.36

(wiz)

2016-04-13 18:18:12 UTC MAIN commitmail json YAML

Update py-anki2 to 2.0.36.

Changes in 2.0.36

    Fix a problem starting the app on Vista. If you don窶冲 have trouble starting 2.0.35, there is no need to upgrade.

(wiz)

2016-04-13 18:17:34 UTC MAIN commitmail json YAML

Updated time/p5-Time-HiRes to 1.9728

(wiz)

2016-04-13 18:17:25 UTC MAIN commitmail json YAML

Update p5-Time-HiRes to 1.9728.

1.9728 [2015-11-13]
  - No changes since 1.9727_03

1.9727_03 [2015-11-06]
  - use PERL_UNUSED_ARG() in the not-here-croak branches
  - Makefile.PL/metadata improvements

1.9727_02 [2015-08-29]
  - correct documentation to note that Time::NVtime is NV, not double
    [perl #123879]
  - avoid a warning about clock_t on OS X / clang 3.6 - 3.6
    [rt.cpan.org #102718]

1.9727_01 [2015-08-17]
  - Remove usage of 5.005 thread APIs in favor of 5.6 and up thread APIs
    [rt.cpan.org #102799].
  - Silence a C++ compiler warning [rt.cpan.org #101497].
  - respect $Config{run} for cross-compiling [rt.cpan.org #92607]

(wiz)

2016-04-13 18:13:59 UTC MAIN commitmail json YAML

Updated devel/py-cython to 0.24

(wiz)

2016-04-13 18:13:49 UTC MAIN commitmail json YAML

Update py-cython to 0.24.

0.24 (2016-03-xx)
=================

Features added
--------------

* PEP 498: Literal String Formatting (f-strings).
  Original patch by Jelle Zijlstra.
  https://www.python.org/dev/peps/pep-0498/

* PEP 515: Underscores as visual separators in number literals.
  https://www.python.org/dev/peps/pep-0515/

* Parser was adapted to some minor syntax changes in Py3.6, e.g.
  https://bugs.python.org/issue9232

* The embedded C code comments that show the original source code
  can be discarded with the new directive ``emit_code_comments=False``.

* Cpdef enums are now first-class iterable, callable types in Python.

* Ctuples can now be declared in pure Python code.

* Posix declarations for DLL loading and stdio extensions were added.
  Patch by Lars Buitinck.

* The Py2-only builtins ``unicode()``, ``xrange()``, ``reduce()`` and
  ``long`` are now also available in compile time ``DEF`` expressions
  when compiling with Py3.

* Exception type tests have slightly lower overhead.
  This fixes ticket 868.

* @property syntax fully supported in cdef classes, old syntax deprecated.

* C++ classes can now be declared with default template parameters.

Bugs fixed
----------

* C++ exceptions raised by overloaded C++ operators were not always
  handled.  Patch by Ian Henriksen.

* C string literals were previously always stored as non-const global
  variables in the module.  They are now stored as global constants
  when possible, and otherwise as non-const C string literals in the
  generated code that uses them.  This improves compatibility with
  strict C compiler options and prevents non-const strings literals
  with the same content from being incorrectly merged.

* Compile time evaluated ``str`` expressions (``DEF``) now behave in a
  more useful way by turning into Unicode strings when compiling under
  Python 3.  This allows using them as intermediate values in expressions.
  Previously, they always evaluated to bytes objects.

* ``isinf()`` declarations in ``libc/math.pxd`` and ``numpy/math.pxd`` now
  reflect the actual tristate ``int`` return value instead of using ``bint``.

* Literal assignments to ctuples avoid Python tuple round-trips in some
  more corner cases.

* Iteration over ``dict(...).items()`` failed to get optimised when dict
  arguments included keyword arguments.

* cProfile now correctly profiles cpdef functions and methods.

0.23.5 (2016-03-26)
===================

* Compile errors and warnings in integer type conversion code.  This fixes
  ticket 877.  Patches by Christian Neukirchen, Nikolaus Rath, Ian Henriksen.

* Reference leak when "*args" argument was reassigned in closures.

* Truth-testing Unicode strings could waste time and memory in Py3.3+.

* Return values of async functions could be ignored and replaced by ``None``.

* Compiler crash in CPython 3.6.

* Fix prange() to behave identically to range().  The end condition was
  miscalculated when the range was not exactly divisible by the step.

* Optimised ``all(genexpr)``/``any(genexpr)`` calls could warn about unused
  code.  This fixes ticket 876.

(wiz)

2016-04-13 18:08:15 UTC MAIN commitmail json YAML

Updated time/py-vdirsyncer to 0.9.3

(wiz)

2016-04-13 18:08:05 UTC MAIN commitmail json YAML

Update py-vdirsyncer to 0.9.3.

Version 0.9.3
=============

*released on 22 March 2016*

- :storage:`singlefile` and :storage:`http` now handle recurring events
  properly.
- Fix a typo in the packaging guidelines.
- Moved to ``pimutils`` organization on GitHub. Old links *should* redirect,
  but be aware of client software that doesn't properly handle redirects.

Version 0.9.2
=============

*released on 13 March 2016*

- Fixed testsuite for environments that don't have any web browser installed.
  See :ghpr:`384`.

Version 0.9.1
=============

*released on 13 March 2016*

- Removed leftover debug print statement in ``vdirsyncer discover``, see commit
  ``3d856749f37639821b148238ef35f1acba82db36``.

- ``metasync`` will now strip whitespace from the start and the end of the
  values. See :gh:`358`.

- New ``Packaging Guidelines`` have been added to the documentation.

(wiz)

2016-04-13 18:06:19 UTC MAIN commitmail json YAML

Updated sysutils/spice-protocol to 0.12.11

(wiz)

2016-04-13 18:06:10 UTC MAIN commitmail json YAML

Update spice-protocol to 0.12.11.

Major changes in 0.12.11
========================
* protocol: add support for the VP8 and h264 video codecs
* protocol: add unix GL scanout messages
* remove code generation scripts, moved back to spice-common
* macros improvements, more type safety

(wiz)

2016-04-13 18:05:09 UTC MAIN commitmail json YAML

Updated devel/p5-Log-Dispatch to 2.54

(wiz)

2016-04-13 18:05:00 UTC MAIN commitmail json YAML

Update p5-Log-Dispatch to 2.54.

2.54    2016-01-18

- Fixed File::Locked even more. While some deadlocks were eliminated, there
  was still an issue when a Log::Dispatch object was created in a parent
  process and then recreated in the children. If the close_after_write
  parameter was false, then there would be a deadlock.

- Made Syslog work on a threaded Perl when the threads module was not
  explicitly loaded. Fixed by Konrad Bucheli. GitHub #13.

- The log() method now accepts a level parameter as an integer. Fixed by Steve
  Bertrand. GitHub #15.

2.53    2016-01-14

- Actually fix File::Locked, this time with some actual tests.

2.52    2016-01-13

- Make File::Locked output do an explicit unlock if the close_after_write
  option is not set. Without this it would open the file once in each process,
  attempting to get a lock at open time, pretty much guaranteeing a deadlock
  in a multiprocess environment. Now it should work sanely whether
  close_after_write is true or not.

2.51    2015-09-19

- Fixed t/08-screen.t on Windows platforms.

(wiz)

2016-04-13 18:04:14 UTC MAIN commitmail json YAML

Updated devel/p5-Sort-Versions to 1.62

(wiz)

2016-04-13 18:04:04 UTC MAIN commitmail json YAML

Update p5-Sort-Versions to 1.62.

1.62 2015-12-13 NEILB
    - Fixed Hack Kampbjørn's surname -- I'd previously switched the ø to an
      upper-case Ø -- thanks to pink-mist for pointing this out.
    - Updated github repo URL after changing my github username

(wiz)

2016-04-13 18:03:12 UTC MAIN commitmail json YAML

Updated textproc/p5-YAML-LibYAML to 0.62

(wiz)

2016-04-13 18:03:00 UTC MAIN commitmail json YAML

Update p5-YAML-LibYAML to 0.62.

0.62 Mon Feb 22 15:46:06 UTC 2016
- Apply PR/42 @perlpunk++ (fix for detecting filehandles)

0.61 Sat Feb 20 18:04:19 UTC 2016
- Apply PR/37 @perlpunk++ (includes PR/36 @lameventanas++)

0.60 Tue Feb  9 14:36:09 EST 2016
- Apply PR/33. @andygrundman++. Solaris fixes.

(wiz)

2016-04-13 18:02:06 UTC MAIN commitmail json YAML

Updated security/gnupg2 to 2.0.30

(wiz)

2016-04-13 18:01:55 UTC MAIN commitmail json YAML

Update gnupg2 to 2.0.30.

Noteworthy changes in version 2.0.30 (2016-03-31)
-------------------------------------------------

* gpg: Avoid too early timeout during key generation with 2.1 cards.

* agent: Fixed printing of ssh fingerprints for 384 bit ECDSA keys.

* agent: Fixed an alignment bug related to the passphrase
  confirmation.

* scdaemon: Fixed a "conflicting usage" bug.

* scdaemon: Fixed usb card reader removal problem on Windows 8 and
  later.

* Fixed a problem on AIX due to peculiarity with RLIMIT_NOFILE.

* Updated the Japanese and Dutch translations.

* Fixed a few other bugs.

(wiz)

2016-04-13 17:59:45 UTC MAIN commitmail json YAML

Updated graphics/jbig2dec to 0.13

(wiz)

2016-04-13 17:59:34 UTC MAIN commitmail json YAML

Update jbig2dec to 0.13.

Version 0.13 (2016 April 07)

* Bug fix release.

(wiz)

2016-04-13 17:58:44 UTC MAIN commitmail json YAML

Updated devel/py-click to 6.6

(wiz)

2016-04-13 17:58:32 UTC MAIN commitmail json YAML

Update py-click to 6.6.

Version 6.6
-----------

(bugfix release; released on April 4th 2016)

- Fix bug in `click.Path` where it would crash when passed a `-`. See #551.

(wiz)

2016-04-13 17:57:22 UTC MAIN commitmail json YAML

Updated devel/py-mock to 2.0.0

(wiz)

2016-04-13 17:57:07 UTC MAIN commitmail json YAML

2016-04-13 17:56:24 UTC MAIN commitmail json YAML

Update py-mock to 2.0.0

Library
-------

- Issue #26323: Add Mock.assert_called() and Mock.assert_called_once()
  methods to unittest.mock. Patch written by Amit Saha.

- Issue #22138: Fix mock.patch behavior when patching descriptors. Restore
  original values after patching. Patch contributed by Sean McCully.

- Issue #24857: Comparing call_args to a long sequence now correctly returns a
  boolean result instead of raising an exception.  Patch by A Kaptur.

- Issue #23004: mock_open() now reads binary data correctly when the type of
  read_data is bytes.  Initial patch by Aaron Hill.

- Issue #21750: mock_open.read_data can now be read from each instance, as it
  could in Python 3.3.

- Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.
  Patch from Nicola Palumbo and Laurent De Buyst.

- Issue #23661: unittest.mock side_effects can now be exceptions again. This
  was a regression vs Python 3.4. Patch from Ignacio Rossi

- Issue #23310: Fix MagicMock's initializer to work with __methods__, just
  like configure_mock().  Patch by Kasia Jachim.

- Issue #23568: Add rdivmod support to MagicMock() objects.
  Patch by H奪kan L旦vdahl.

- Issue #23581: Add matmul support to MagicMock. Patch by H奪kan L旦vdahl.

- Issue #23326: Removed __ne__ implementations.  Since fixing default __ne__
  implementation in issue #21408 they are redundant. *** NOT BACKPORTED ***

- Issue #21270: We now override tuple methods in mock.call objects so that
  they can be used as normal call attributes.

- Issue #21256: Printout of keyword args should be in deterministic order in
  a mock function call. This will help to write better doctests.

- Issue #21262: New method assert_not_called for Mock.
  It raises AssertionError if the mock has been called.

- Issue #21238: New keyword argument `unsafe` to Mock. It raises
  `AttributeError` incase of an attribute startswith assert or assret.

- Issue #21239: patch.stopall() didn't work deterministically when the same
  name was patched more than once.

- Issue #21222: Passing name keyword argument to mock.create_autospec now
  works.

- Issue #17826: setting an iterable side_effect on a mock function created by
  create_autospec now works. Patch by Kushal Das.

- Issue #17826: setting an iterable side_effect on a mock function created by
  create_autospec now works. Patch by Kushal Das.

- Issue #20968: unittest.mock.MagicMock now supports division.
  Patch by Johannes Baiter.

- Issue #20189: unittest.mock now no longer assumes that any object for
  which it could get an inspect.Signature is a callable written in Python.
  Fix courtesy of Michael Foord.

- Issue #17467: add readline and readlines support to mock_open in
  unittest.mock.

- Issue #17015: When it has a spec, a Mock object now inspects its signature
  when matching calls, so that arguments can be matched positionally or
  by name.

- Issue #15323: improve failure message of Mock.assert_called_once_with

- Issue #14857: fix regression in references to PEP 3135 implicit __class__
  closure variable (Reopens issue #12370)

- Issue #14295: Add unittest.mock

(wiz)

2016-04-13 17:54:21 UTC MAIN commitmail json YAML

Updated security/py-rsa to 3.4.1

(wiz)

2016-04-13 17:54:10 UTC MAIN commitmail json YAML

Update py-rsa to 3.4.1:

Version 3.4.1 - released 2006-03-26
----------------------------------------

- Included tests/private.pem in MANIFEST.in
- Included README.md and CHANGELOG.txt in MANIFEST.in

(wiz)

2016-04-13 17:52:51 UTC MAIN commitmail json YAML

Updated devel/talloc to 2.1.6

(wiz)

2016-04-13 17:52:38 UTC MAIN commitmail json YAML

Update talloc to 2.1.6.

Changes not found.

(wiz)

2016-04-13 17:50:22 UTC MAIN commitmail json YAML

Updated devel/waf to 1.8.20

(wiz)

2016-04-13 17:50:09 UTC MAIN commitmail json YAML

Update waf to 1.8.20:

NEW IN WAF 1.8.20
-----------------
* Detection SUN cc compiler version 5.0 #1697
* Initialize 'VALAFLAGS' with OS flags #1703
* Convert --perlbinary data to list #1705
* Cppcheck fixes #1708
* Boost module enhancements and fixes #1709
* Various cpplint enhancements #1711
* Workaround for unreadable home folders

(wiz)

2016-04-13 17:48:48 UTC MAIN commitmail json YAML

Updated audio/abcde to 2.7.2

(wiz)

2016-04-13 17:48:36 UTC MAIN commitmail json YAML

Update abcde to 2.7.2:

abcde 2.7.2

  * When using musicbrainz, don't assume that there will be release
    events attached to a particular CD release. Bug fix for the addition
    of year information support in 2.7.1. Thanks to Ed Oehler and Alan W.
    Kerr for debugging help.
  * Support for output to the Matroska container (mka). Encoder
    is FFmpeg (or avconv). Typical conf file syntax would be:

    MKAENCODERSYNTAX=ffmpeg
    FFMPEG=ffmpeg
    FFMPEGENCOPTS="-c:a ac3 -b:a 448k"
    OUTPUTTYPE="mka"

    Thanks to Shantiq and Fakeoutdoorsman of the Ubuntu Forums
    for the idea.
  * Add id3tag mp3 tagger as this is the tagger available to
    OpenBSD users. Thanks to Christopher Zimmermann for the
    notification and patch.
  * Allow for cddb response 500. Thanks again to Von Welch for the
    bug report and patch. This closes Issue 26:
    http://abcde.einval.com/bugzilla/show_bug.cgi?id=26
  * Fix for 'expansion of $REDIR' bug on MacOSX. Thanks to Von Welch
    for the bug report. This closes Issue 22:
    http://abcde.einval.com/bugzilla/show_bug.cgi?id=22
  * Makefile adjusted to allow the sample abcde.conf file to be
    installed by default to /etc rather than $(prefix)/etc.
    Thanks to Volker Schmidt from archlinux for the bug report:
    https://bugs.archlinux.org/task/46671
  * Allow getalbumart to correctly place cover image when single
    track is selected. Thanks to Nino Burini for the bug report
    and also the fix. This closes Issue 25:
    http://abcde.einval.com/bugzilla/show_bug.cgi?id=25

(wiz)

2016-04-13 17:46:16 UTC MAIN commitmail json YAML

+ MesaLib-11.2.0, calibre-2.54, duplicity-0.7.07 [pkg/51061],
  p5-Devel-Symdump-2.1600, p5-Net-SSLeay-1.74, wine-devel-1.9.7.

(wiz)

2016-04-13 17:25:58 UTC MAIN commitmail json YAML

Refactored patch-Makefile.in to fix building with pkgconf

(adam)

2016-04-13 16:14:25 UTC MAIN commitmail json YAML

Updated multimedia/mpv to 0.17.0

(leot)

2016-04-13 16:14:01 UTC MAIN commitmail json YAML

Update multimedia/mpv to 0.17.0.

Changes:
Release 0.17.0
==============
Note: The client API examples have moved to https://github.com/mpv-player/mpv-examples

Build System Changes
--------------------
- install symbolic SVG icon
- build: allow plain-gl build on OSX (#2980)
- build: disable encoding mode by default (uses deprecated FFmpeg APIs)

Features
--------
New
~~~
- csputils: add DCI-P3 colorspace
- d3d11va hwdec
- demux: add null demuxer
- ipc: add Windows implementation with named pipes
- mediacodec decoder hwdec wrapper
- vo_opengl: add dxva2 interop to angle backend
- vo_opengl: generate 3DLUT against source and use full BT.1886 (#2815)

Options and Commands
--------------------
Added
~~~~~
- command: add cache-speed property
- command: add keepaspect property
- command: add video-stereo-mode property (#2994)
- command: export canonical ffmpeg version identifier (ffmpeg-version)
- command: export lists of all codecs (decoder-list and encoder-list)
- osd: add italic font for osd (#3031)

Changed
~~~~~~~
- aspect: make video-zoom logarithmic (#3004)
- command: export more information under track-list
- ipc: rename --input-unix-socket to --input-ipc-server
- vo_opengl: decrease default superxbr-edge-strength
- vo_opengl: rename prescale to prescale-luma

Fixes and Minor Enhancements
----------------------------
- TOOLS/zsh.pl: don't complete URLs by default unless no files match (#2892)
- ad_lavc, vd_lavc: support new Libav decoding API
- cache: disable useless "Cache is not responding" warning (#3019)
- demux: delay bitrate calculation on packets with unknown timestamps (#2903)
- demux_timeline: set correct seekable flags (#2898)
- input: accept plain text for drag and drop (#2945)
- input: do not force double-click emulation for artificial commands (#2899)
- lavc_conv: fix Libav srt subtitles (#2888)
- player: add missing audio reconfig events (#2929, #2920)
- player: add wv to list of external audio file extensions
- player: fix --stream-dump exit code (#2848)
- player: fix breakage when combining 3D and rotate auto-filters
- playlist: improve shuffle algorithm (better uniformity)
- sub: interpret "text" subtitles as srt
- vo_opengl, osd: allow osc.lua to react faster on resizes
- vo_opengl: GLX: try to create 3.3 core profile context (#2938)
- vo_opengl: draw transparency checkerboard after upscaling
- vo_opengl: fix operation without GL_ARB_texture_rg
- vo_opengl: improve superxbr algorithm
- vo_opengl: only open one OpenGL/DX interop handle when using dxva2 (fixes interop with AMD drivers)
- wayland: don't set fs mode on every configure (#2817)
- x11: do not set _NET_WM_BYPASS_COMPOSITOR by default (#2997)
- ytdl_hook: handle optional format_note

(leot)

2016-04-13 14:24:37 UTC MAIN commitmail json YAML

Updated math/R-mvtnorm to 1.0.5

(wen)

2016-04-13 14:23:29 UTC MAIN commitmail json YAML

Update to 1.0.5

Upstream changes:
Changes in version 1.0-5 (2016-02-02)

  o  improvements in quantile estimation

Changes in version 1.0-4 (2016-01-19)

  o  a new algorithm for quantile estimation, again. Quantiles are
    now computed by a stochastic root finding algorithm. Note
    that f.quantile in the output of qmv{t,norm} is now (again)
    the squared difference between the cdf evaluated at the
    quantile and the level. The \code{interval} argument to the
    quantile functions is used as a starting value for the
    root finder when available.

  o  clean-ups in C and R code and documentation

Changes in version 1.0-3 (2015-07-21)

  o  new algorithm for quantile estimation. Quantiles are
    now computed by minimising the squared distance between the
    distribution function and the probability whereas previous versions
    used uniroot(). The procedure is now performed multiple times with
    difference random seeds in order to stabilise the results. The
    \code{interval} argument to the quantile functions is IGNORED now.

(wen)

2016-04-13 14:19:55 UTC MAIN commitmail json YAML

Updated textproc/R-markdown to 0.7.7

(wen)

2016-04-13 14:18:23 UTC MAIN commitmail json YAML

Update to 0.7.7
Update DEPENDS

Upstream changes:
CHANGES IN markdown VERSION 0.7.7

BUG FIXES

  o renderMarkdown() works now even if text = character(0) or ""

  o added an `encoding` argument to renderMarkdown() since multi-byte characters
  in renderMarkdown() did not work on Windows (thanks, Kohske Takahashi, #63)

  o fixed #64: invalid 'n' argument in rpubsUpload() (thanks, Wouter van
  Atteveldt)

MAJOR CHANGES

  o if renderMarkdown() returns a character vector, it will be marked with the
  UTF-8 encoding if it contains multi-byte characters

(wen)

2016-04-13 14:16:10 UTC MAIN commitmail json YAML

2016-04-13 14:14:59 UTC MAIN commitmail json YAML

Update to 0.4

Upstream changes:
CHANGES IN mime VERSION 0.4

NEW FEATURES

  o added a new content type: .geojson -> application/vnd.geo+json (thanks,
  @dmpe, #3)

BUG FIXES

  o guess_type() may fail on Windows when the file paths are too long (#2)

CHANGES IN mime VERSION 0.3

NEW FEATURES

  o added a few more content types

CHANGES IN mime VERSION 0.2

NEW FEATURES

  o added a function parse_multipart() to parse multipart form data submitted via
  HTTP POST

(wen)

2016-04-13 14:09:44 UTC MAIN commitmail json YAML

Updated mail/p5-Mail-Mbox-MessageParser to 1.5105

(wen)

2016-04-13 14:07:50 UTC MAIN commitmail json YAML

Update to 1.5105

Upstream changes:
Version 1.5105: Sat May 2 2015
- Prevent CPAN from indexing private-lib

Version 1.5104: Mon Apr 20 2015
- Remove unused File::Cat import

Version 1.5103: Mon Apr 20 2015
- Add File::Path dependency for testing. Thanks to Paul Howarth
  <paul@city-fan.org> for the info.
  https://rt.cpan.org/Ticket/Display.html?id=103482
- Don't install private Module::Install extension. Thanks to Paul Howarth
  <paul@city-fan.org> for the bug report.
  https://rt.cpan.org/Ticket/Display.html?id=103482
- Clarify licensing terms
- Move verbose testing to a private module, and implement it in a way that
  doesn't require editing the Makefile after it is generated.
- Require File::Slurp instead of including it, to avoid potential problems
  like this:
  http://www.cpantesters.org/cpan/report/86a0145a-e52b-11e4-a1d1-8536eb4f9f07
- Improve the ability of the test suite to be run in parallel
- Fix Windows test incompatibilities, such as:
  http://www.cpantesters.org/cpan/report/12187014-af8d-1014-92d8-fdf72a825c07
  http://www.cpantesters.org/cpan/report/12187014-af8d-1014-92d8-fdf72a825c07

Version 1.5102: Sun Apr 12 2015
- Fix xz and lzip test skip for when tools are not installed
- Enable verbose testing for CPAN-testers
- Use proper temp dir instead of t/temp
- Consolidate issue tracking at rt.cpan.org

Version 1.5101: Sat Apr 4 2015
- Add a version check for lzip, to make sure the .lz file can be decompressed
  properly during testing. Thanks to Paul Howarth <paul@city-fan.org> for the
  suggestion.
- Fix warning about deleting nonexistent test cache
- Enhance "make test TEST_VERBOSE=1" to dump debug information
- Work around a POD-stripping bug that would cause module load to fail on some
  platforms

Version 1.5100: Sun Mar 22 2015
- Moved code to github
- Added xz support.
  https://rt.cpan.org/Ticket/Display.html?id=68286
  Thanks to sascha@trimind.de for initial patches.
- Added lzip support.
  Thanks to an anonymous submitter for the idea.
  http://sourceforge.net/p/grepmail/patches/8/
- Added POD test
- Fixed hang in pure Perl implementation for a malformed mbox file scenario.
  Thanks to Jason Brooks <jason@petting-zoo.org> for providing an mbox
  that found this bug.
- Fixed $OLDSTDERR used only once warning.
  https://rt.cpan.org/Ticket/Display.html?id=58053
  Thanks to paul@city-fan.org for the bug report and patch.
- Fixed enabling of warnings.
  https://rt.cpan.org/Ticket/Display.html?id=79898
  Thanks to atourbin@cpan.org for the bug report and patch.
- Fixed a division by zero error for malformed mbox files that start with a
  newline.
  https://rt.cpan.org/Ticket/Display.html?id=69469
  Thanks to vadz@cpan.org for the bug report.
- Fix bug in M::M::Perl documentation.
  Thanks to Christopher Orsolits <chris@s7logic.com> for spotting it.
- Add more cache file validation.
  Thanks to Richard Higson <richard.higson@gt.owl.de> for reporting the
  problem.

(wen)

2016-04-13 13:59:14 UTC MAIN commitmail json YAML

haskell-mode-13.20

(mef)

2016-04-13 13:54:30 UTC MAIN commitmail json YAML

After editors/xemacs update, gc unsupported toolkit options

(hauke)

2016-04-13 13:53:06 UTC MAIN commitmail json YAML

Updated editors/xemacs to 21.4.24

(hauke)

2016-04-13 13:52:27 UTC MAIN commitmail json YAML

Update to patch release 21.4.24. From the ChangeLog:

2015-03-24 Vin Shelton <acs@xemacs.org>

        * XEmacs 21.4.24 is released

2015-02-23  Vin Shelton  <acs@xemacs.org>

        * configure.in: Add LIBOSSAUDIO as appropriate.  Patch from netbsd
        via Hauke Fath.
        * configure: Rebuild.

2015-02-15  Vin Shelton  <acs@xemacs.org>

        * configure.in: Additional netbsd platform definitions.
        * configure: Rebuild.

I have used the opportunity for a bit of spring cleaning:

o remove build restrictions for powerpc and mips (hacks.mk, Makefile)
o drop the inactive X11 toolkit options - they were never used, and
  upstream does not support them for 21.4, anyway (options.mk)
o add comments to patch files
o upstream converted the texinfo files to v5 format. Patch the offenders
  to be v4 compatible

(hauke)

2016-04-13 13:31:23 UTC MAIN commitmail json YAML

Update to 0.04

Upstream changes:
0.04
13 Jul 2015
- Whitespace and POD clean up. Functions are described
  individually.
- Added error checking for the array lengths.
- Modernized the use of EXPORT, added a minimum perl version, etc.
0.03
26 May 2015
- Remove pod-coverage.t from the test directory.
0.02
17 May 2015
- Get package up to more-or-less current standards using
  Module-Starter. Tests and documentation updates come
  with the next release.

(wen)

2016-04-13 13:29:29 UTC MAIN commitmail json YAML

Updated math/p5-Math-Derivative to 0.04

(wen)

2016-04-13 13:26:16 UTC MAIN commitmail json YAML

Updated security/p5-Digest-MD5 to 2.55

(wen)

2016-04-13 13:25:30 UTC MAIN commitmail json YAML

Update to 2.55

Upstream changes:
2016-03-09  Gisle Aas <gisle@ActiveState.com>

  Release 2.55

  Gordon Stanton (2):
      Make use warnings work including test cases.
      Initial Travis config

  Gisle Aas (1):
      Avoid warning: 'static' is not at beginning of declaration [RT#105646]

(wen)

2016-04-13 13:23:14 UTC MAIN commitmail json YAML

Updated www/p5-Mojolicious to 6.58

(wen)

2016-04-13 13:22:07 UTC MAIN commitmail json YAML

Update to 6.58

Upstream changes:
6.58  2016-04-09
  - Removed deprecated build_frame and parse_frame methods from
    Mojo::Transaction::WebSocket.
  - Added fork policy to Mojolicious::Guides::Contributing.
  - Improved Mojo::JSON to generate canonical JSON objects.
  - Fixed bug in Mojo::Loader where classes with exceptions could not be loaded
    twice. (kiwiroy, sri)

6.57  2016-03-23
  - Fixed a few validation bugs in Mojolicious::Validator::Validation.
    (Mikey, sri)
  - Fixed copyright notice.

(wen)

2016-04-13 12:07:16 UTC MAIN commitmail json YAML

Updated databases/py-cassandra-driver to 3.2.0

(fhajny)

2016-04-13 12:07:05 UTC MAIN commitmail json YAML

Update databases/py-cassandra-driver to 3.2.0.

Features
- cqlengine: Warn on sync_schema type mismatch
- cqlengine: Automatically defer fields with the '=' operator
  (and immutable values) in select queries
- cqlengine: support non-equal conditions for LWT
- cqlengine: sync_table should validate the primary key composition
- cqlengine: token-aware routing for mapper statements

Bug Fixes
- Deleting a column in a lightweight transaction raises
  a SyntaxException
- cqlengine: make Token function works with named tables/columns
- comparing models with datetime fields fail #79
- cython date deserializer integer math should be aligned
  with CPython
- db_field is not always respected with UpdateStatement
- Sync_table fails on column.Set with secondary index

(fhajny)

2016-04-13 11:55:41 UTC MAIN commitmail json YAML

Updated lang/nodejs4 to 4.4.3

(fhajny)

2016-04-13 11:55:31 UTC MAIN commitmail json YAML

Update lang/nodejs4 to 4.4.3.

- deps: Fix --gdbjit for embedders. Backported from v8 upstream.
- etw: Correctly display descriptors for ETW events 9 and 23 on
  the windows platform.
- querystring: Restore throw when attempting to stringify bad
  surrogate pair.

(fhajny)

2016-04-13 10:13:43 UTC MAIN commitmail json YAML

2016-04-13 10:10:36 UTC MAIN commitmail json YAML

Updated devel/atkmm to 2.24.2nb1

(wiz)

2016-04-13 10:10:25 UTC MAIN commitmail json YAML

Fix PLIST for update. Bump PKGREVISION.

(wiz)

2016-04-13 09:38:03 UTC MAIN commitmail json YAML

Updated lang/nodejs to 5.10.1nb2

(ryoon)

2016-04-13 09:37:35 UTC MAIN commitmail json YAML

Return process.execPath as absolute path on NetBSD current like on Linux.

Bump PKGREVISION for NetBSD current.
This fixes node-sass build under NetBSD current.

(ryoon)

2016-04-13 08:27:18 UTC MAIN commitmail json YAML

Updated net/samba4 to 4.3.8

(manu)

2016-04-13 08:26:10 UTC MAIN commitmail json YAML

Update net/samba4 to 4.3.8

This fixes the Badlock bug (CVE-2016-2118) and others vulnerabilities:
o  CVE-2016-2118 (SAMR and LSA man in the middle attacks possible)
o  CVE-2016-2115 (SMB IPC traffic is not integrity protected)
o  CVE-2016-2114 ("server signing = mandatory" not enforced)
o  CVE-2016-2113 (Missing TLS certificate validation)
o  CVE-2016-2112 (LDAP client and server don't enforce integrity)
o  CVE-2016-2111 (NETLOGON Spoofing Vulnerability)
o  CVE-2016-2110 (Man in the middle attacks possible with NTLMSSP)
o  CVE-2015-7560 (Incorrect ACL get/set allowed on symlink path)
o  CVE-2016-0771 (Out-of-bounds read in internal DNS server)
o  CVE-2015-5370 (Multiple errors in DCE-RPC code)

(manu)

2016-04-13 07:12:42 UTC MAIN commitmail json YAML

2016-04-13 07:12:00 UTC MAIN commitmail json YAML

Update Go to 1.6.1.

Two security-related issues were recently reported, and to address these issues
we have just released Go 1.6.1 and Go 1.5.4.

We recommend that all users update to one of these releases (if you're not sure
which, choose Go 1.6.1).

The issues addressed by these releases are:

On Windows, Go loads system DLLs by name with LoadLibrary, making it vulnerable
to DLL preloading attacks. For instance, if a user runs a Go executable from a
Downloads folder, malicious DLL files also downloaded to that folder could be
loaded into that executable.
This is CVE-2016-3958 and was addressed by this change: https://golang.org/cl/21428
Thanks to Taru Karttunen for identifying this issue.

Go's crypto libraries passed certain parameters unchecked to the underlying big
integer library, possibly leading to extremely long-running computations, which
in turn makes Go programs vulnerable to remote denial of service attacks.
Programs using HTTPS client certificates or the Go SSH server libraries are
both exposed to this vulnerability.
This is CVE-2016-3959 and was addressed by this change: https://golang.org/cl/21533
Thanks to David Wong for identifying this issue.

(bsiegert)

2016-04-12 23:59:20 UTC MAIN commitmail json YAML

Updated graphics/eog3 to 3.20.1

(prlw1)

2016-04-12 23:58:48 UTC MAIN commitmail json YAML

Update eog3 to 3.20.1

Highlights include:

Bug fixes:

#665897, Scaled down images have poor quality (Debarshi Ray)
#764139, Opening a 100 kB file takes about 45 seconds (Debarshi Ray)
#757827, Provide a shortcuts window (Felix Riemann)
#758763, Update CSS nodes (Trinh Anh Ngoc)
#754731, Use standard::display-name for Google Drive items (Debarshi Ray)
#753627, Add touchpad gesture event mask to EogScrolledWindow (Carlos Garnacho)
#746132, can't zoom to 100% 200% etc. in eog 3.15.91 (Felix Riemann)
#751007, Compilation error when EXIF support disabled (Alexandre Rostovtsev)
#751021, Use symbolic icons for fullscreen toolbar (Alexandre Franke)
#739654, support multi-page TIFFs, somehow (Felix Riemann)
#746842, provide a scalable -symbolic variant of the app icon (Jakub Steiner)
#747806, Ctrl+W shortcut stopped working (Felix Riemann)
#748653 - Progress not updated for corrupt images (Kent Vander Velden)

For full details see:
http://git.gnome.org/browse/eog/tree/NEWS?h=3.20.1

(prlw1)

2016-04-12 22:04:31 UTC MAIN commitmail json YAML

2016-04-12 21:41:48 UTC MAIN commitmail json YAML

2016-04-12 21:40:47 UTC MAIN commitmail json YAML

GLPK 4.60:

Some improvements were made in the primal and dual simplex
solvers to make the solution process more numerically stable.

An experimental long-step ratio test feature was added to the
dual simplex. On API level this feature is available thru the
GLP_RT_FLIP option. For glpsol it is available thru the options
--flip (for MIP) or --flip and --dual (for LP). This feature is
not documented yet.

Additional check was added to reject wrong solutions sometimes
reported by the PROXY heuristic.

A bug (memory leak) was fixed in the FPUMP heuristic routine.

The header sql.h was renamed to avoid conflicts with standard
ODBC headers.

(adam)

2016-04-12 21:35:24 UTC MAIN commitmail json YAML

Updated devel/libsigc++ to 2.8.0; devel/glibmm to 2.48.1; devel/pangomm to 2.40.0; devel/atkmm to 2.24.2; graphics/inkscape to 0.91nb13

(adam)

2016-04-12 21:33:49 UTC MAIN commitmail json YAML

2016-04-12 21:31:08 UTC MAIN commitmail json YAML

atkmm 2.24.2 (stable):
* Regenerate with the latest glibmm.

(adam)

2016-04-12 21:28:55 UTC MAIN commitmail json YAML

Changes 2.40.0:
* Renderer: Added get/set_alpha().
* Attribute: Added create_attr_background_alpha() and
  create_attr_foreground_alpha().
* Reduce the cairomm dependency back to 1.2.2.

(adam)

2016-04-12 21:27:25 UTC MAIN commitmail json YAML

2.48.1:
Build:
* MacOS X: Add alternative #ifdefed code when thread_local
  is not supported by the compiler.
* Replace most typedefs with the C++11 using keyword.

(adam)

2016-04-12 21:25:52 UTC MAIN commitmail json YAML

2.8.0 (stable)
* Documentation: Mention use with CMake.

2.7.2 (unstable):
* Deprecate sigc::ref() and sigc::reference_wrapper(),
  adding support instead for std::ref(), std::cref(),
  and std::reference_wrapper().
* mem_fun(): Deprecate mem_fun(pointer, func).
  Leaving just mem_fun(reference, func).
  Please let us know if you disagree strongly with this.
* Make all operator bool() explicit. (A C++11 feature.)
* Build: Remove some now-unnecessary configure checks.
  But please let us know if this causes problems for you.
* Build: Update MSVC project.
* Documentation: Improve the documentation of mem_fun(), making it clear that
  mem_fun() does not return a slot.

2.7.1 (unstable):
* signal: Add a moving connect() method, taking an rvalue reference
  to a slot.
* can_deduce_result_type_with_decltype: Rename the check() methods to
  checksize(). check() is a preprocessor macro in Mac OS X.
* Temporarily undefine the nil macro, if it's defined.
  nil is a preprocessor macro in Objective-C++ and Mac OS X.
* Correct the mem_functor<> declarations.

(adam)

2016-04-12 19:51:54 UTC MAIN commitmail json YAML

Revert incorrect change of the package list which was part of yesterday's
update of this package. It broke packaging under e.g. Mac OS X.

(tron)

2016-04-12 16:33:21 UTC MAIN commitmail json YAML

Updated www/liferea to 1.10.19

(leot)

2016-04-12 16:33:05 UTC MAIN commitmail json YAML

Updated graphics/py-Pillow to 3.1.2

(adam)

2016-04-12 16:33:04 UTC MAIN commitmail json YAML

Update www/liferea to 1.10.19.

Changes:
2016-04-04  Lars Windolf <lars.windolf@gmx.de>
Version 1.10.19
* Fixes #317: Compilation problems in 1.10.18 release
* Fixes #73: Problem with updating favicons
  (reported by asl97)

(leot)

2016-04-12 16:31:36 UTC MAIN commitmail json YAML

Changes 3.1.2:
- Fixed an integer overflow in Jpeg2KEncode.c causing a buffer overflow. CVE-2016-3076

(adam)

2016-04-12 16:13:33 UTC MAIN commitmail json YAML

Updated editors/gedit3 to 3.20.1

(prlw1)

2016-04-12 16:12:55 UTC MAIN commitmail json YAML

Update gedit3 to 3.20.1

- Use a menubar only if gtk-shell-shows-menubar is set to true
- Spell plugin: adapt code for gspell API changes
- Save window size properly
- CSS updates
- AppData: add project_group and translation tags
- Rename to "Text Editor" in the .desktop file
- Use traditional menubar layout on XFCE, Unity, etc
- require the latest gspell for the spell plugin
- New Windows WiX installer
- CSS updates to track GTK+ changes
- Ship our own app icon
- Add shortcuts window
- Adapt code for gspell API changes
- Rename GeditViewHolder -> GeditViewCentering
- CloseConfirmationDialog: subclass GtkMessageDialog
- CSS updates to track GTK+ changes
- Change default document title to "Untitled Document"
- Port the spell plugin to gspell
- Make the Replace dialog resizable
- Fix close confirmation dialog regression introduced in 3.17.92
- Spell checking: fix performance problem and re-organize the code
- Move minimap settings in the preferences dialog
- CSS improvements
- Add a snippet generating RPM SPEC %changelog line
- gtk-mac-integration support fix
- Add a menu to toggle the source map
- Fix print margins
- Fix the --wait options when passing a list of files
- Improve the Encodings dialog
- Add setting to display a grid pattern
- Misc bugfixes
- Translation updates

(prlw1)

2016-04-12 16:09:07 UTC MAIN commitmail json YAML

Added textproc/gspell version 1.0.1

(prlw1)

2016-04-12 16:08:06 UTC MAIN commitmail json YAML

2016-04-12 16:05:42 UTC MAIN commitmail json YAML

Updated devel/ocaml-type_conv to 113.00.02nb1

(jaapb)

2016-04-12 16:05:21 UTC MAIN commitmail json YAML

Updated package to work with new ocaml-findlib-register pkginstall
fragment.

(jaapb)

2016-04-12 16:01:06 UTC MAIN commitmail json YAML

Added a ${RUN} to the UNPACK line for the ocaml-findlib-register script

(jaapb)

2016-04-12 15:52:29 UTC MAIN commitmail json YAML

Added a pkginstall fragment that takes over from ocaml-findlib-register (a
script included in the ocaml-findlib package) and removes the need to call
said script explicitly from PLIST.

Packages that use findlib will now automatically add directories that are
in OCAML_FINDLIB_DIRS (set by default to $(OCAML_SITELIBDIR)/${PKGBASE})
to the file ${PREFIX}/lib/ocaml/ld.conf. This behaviour can be disabled by
undefining OCAML_FINDLIB_REGISTER.

(jaapb)

2016-04-12 13:45:16 UTC MAIN commitmail json YAML

Updated devel/dejagnu to 1.5.3

(mef)

2016-04-12 13:45:00 UTC MAIN commitmail json YAML

(pkgsrc)
- Revive make test (remove TEST_TARGET= # empty line)
  Found that expect segfaults at make test if hostname lookup fails,
  but it is environment issue only.
(upstream)
- Updated to devel/dejagnu-1.5.3
-------------------------------
2015-03-30  Ben Elliston  <bje@gnu.org>

* DejaGnu 1.5.3 released.

2015-03-30  Ben Elliston  <bje@gnu.org>

        * runtest.exp (frame_version): Set to 1.5.3.
* configure.ac (AC_INIT): Set version to 1.5.3.
* configure: Regenerate.
* doc/dejagnu.xml (appversion, version): Set to 1.5.3.
* doc/dejagnu.texi: Regenerate.

2015-03-30  Ben Elliston  <bje@gnu.org>

Revert the following change which causes breakage reported here:
https://lists.gnu.org/archive/html/dejagnu/2015-03/msg00003.html

2011-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>

* runtest.exp (runtest): Call reset_vars at initialisation so that
perror does not affect test results in other test scripts.

2015-02-26  H.J. Lu  <hjl.tools@gmail.com>

* lib/target.exp (default_target_compile): Prepend multilib_flags,
instead of appending it.

2015-02-18  Ben Elliston  <bje@gnu.org>

* lib/framework.exp (log_and_exit): Set tool to "testrun" if
unset.

2015-02-05  Ben Elliston  <bje@gnu.org>

* doc/runtest.1: Fix a spelling error.

2015-02-04  Ben Elliston  <bje@gnu.org>

* config.guess: Update to version 2015-01-01.
* config.sub: Likewise.

(mef)

2016-04-12 13:25:21 UTC MAIN commitmail json YAML

Fix PaX enabled NetBSD/amd64 -current build

(ryoon)

2016-04-12 13:15:53 UTC MAIN commitmail json YAML

pam-radius already at 1.4.0

(fhajny)

2016-04-12 13:15:15 UTC MAIN commitmail json YAML

2016-04-12 11:45:33 UTC MAIN commitmail json YAML

Updated x11/gtksourceview3 to 3.20.1

(prlw1)

2016-04-12 11:45:08 UTC MAIN commitmail json YAML

Update gtksourceview3 to 3.20.1

News in 3.20.1
--------------
* Improvements to style schemes
* Export missing public methods
* Translation updates

News in 3.20.0
--------------
* Improvements to the syntax highlighting of: CSS, JavaScript, protobuf, Vala,
  imagej, Python 3 and BibTeX
* Adapt code to use GTK_TEXT_VIEW_LAYER_BELOW_TEXT and
  GTK_TEXT_VIEW_LAYER_ABOVE_TEXT
* Add a "sourceview" CSS class to all GtkSourceView's
* Fixes to the MSVC build system
* Various other small fixes and improvements
* Translation updates

News in 3.19.4
--------------
* CSS fixes to track GTK+ changes
* Fix completion popup on Wayland
* MSVC build projects
* Misc bug fixes
* Translation updates

News in 3.19.3
--------------
* Many fixes to track GTK+ changes
* Rework symbol visibility handling
* Other small improvements
* Translation updates

News in 3.19.2
--------------
* Some CSS adjustments to track GTK+ changes
* Add API to get the GtkSourceView version
* Other small improvements
* Translation update

News in 3.19.1
--------------
* New class: GtkSourceTag with a draw-spaces property
* Drop build dependency on intltool, use upstream gettext and ITS Tool instead
* Completion windows: don't add space for scrollbars
* Do not show undo/redo in context menu if undo/redo is disabled
* Bracket matching: several bug fixes, unit tests written, code simplified
* Other small code improvements
* Translation updates

News in 3.18.1
--------------
* Misc bug fixes
* Translation updates

News in 3.18.0
--------------
* Minor improvement to the CSS syntax highlighting
* Translation updates

News in 3.17.7
--------------
* Handle creating pixbufs for HiDPI resolutions
* Improvements to the Octave and Matlab syntax highlighting
* Other various code improvements
* Translation updates

News in 3.17.6
--------------
* Search and replace: fix bug with regular expressions containing look-ahead
  assertions.
* Add some missing GI annotations
* A few adjustments to the build system
* Translation updates

News in 3.17.5
--------------
* Support symbolic icons in the completion API
* New lang or improved lang files: Rust, Meson, C, protobuf
* Revamped build system (drop gnome-common dependency)
* Misc bug fixes
* Translation updates

News in 3.17.4
--------------
* Add .rej files as another version of diff file
* Improvements to lang files: Apache Pig, rpmspec
* Misc bug fixes
* Translation updates

News in 3.17.3
--------------
* Add a few more functions to GtkSourceFile
* Add the "smart-backspace" property
* Misc bug fixes
* Translation updates

News in 3.17.2
--------------
* New widget: GtkSourceMap
* Set a GtkTextTag name for context classes (no-spell-check, etc)
* Add gtk_source_buffer_sort_lines()
* Style schemes:
        * Support "single", "double" etc for the underline attribute
        * Support underline-color
* Improvements to lang files: Ocaml, C++ header and Shell
* Translation updates

News in 3.17.1
--------------
* New public function: gtk_source_encoding_get_default_candidates()
* Add g_autoptr autocleanup support
* Add lang files for (basic) CSV and jade template
* Improvements to lang files: C, CMake, GDB log, JavaScript, C#, F#,
  VB.net and CSS
* Translation updates

(prlw1)

2016-04-12 11:42:13 UTC MAIN commitmail json YAML

Updated devel/libpeas to 1.18.0

(prlw1)

2016-04-12 11:41:41 UTC MAIN commitmail json YAML

Update libpeas to 1.18.0

* Fix Python plugin loader module paths
* Do not add pyexecdir to Python's paths at runtime
* Add support for embedded C plugins
* Order the PeasEngine:plugin-list by dependencies
* Keep plugins order in PeasExtensionSet
* Add g_autoptr() autocleanup support
* Fix Python tests on OpenBSD
* Fix libpeas crash on windows
* Simplify __all__ support in the Python plugin loader
* Removed support for Seed plugins
* Added support for Lua 5.1 plugins using the LGI bindings
* PeasEngine is now thread-safe
* Added support for non-global plugins loaders
* Load C plugins with local linkage
* Use Python to implement the plugin loader's logic
* Support Python plugins that define __all__
* Use Lua to implement the plugin loader's logic
* Prevent the accidental escaping of globals with Lua plugins
* Misc bugfixes
* Many translation updates

(prlw1)

2016-04-12 08:50:54 UTC MAIN commitmail json YAML

Updated net/rabbitmq-c to 0.8.0

(fhajny)

2016-04-12 08:50:43 UTC MAIN commitmail json YAML

Update net/rabbitmq-c to 0.8.0.

Added:
- SSL: peer certificate and hostname validation can now be
  controlled separately using amqp_ssl_socket_set_verify_peer and
  amqp_ssl_socket_set_verify_hostname.
- SSL: the desire SSL version range can now be specified using the
  amqp_ssl_socket_set_ssl_versions function.
- Add flags to SSL examples on controlling hostname verification.

Changed:
- SSL: SSLv2, and SSLv3 have been disabled by default.
- SSL: OpenSSL hostname validation has been improved.
- Win32 debug information is built with /Z7 on MSVC to embed debug
  info instead of using a .pdb

Fixed:
- Connection failure results in hang on Win32
- Rabbitmq-c may block when attempting to close an SSL socket
- amqp_parse_url does not correctly initialize default parameters
- x509 objects are leaked in verify_hostname
- TCP_NOPUSH doesn't work under cygwin

Deprecated
- SSL: amqp_ssl_socket_set_verify is being replaced by
- amqp_ssl_socket_set_verify_peer and
- amqp_ssl_socket_set_verify_hostname.

Removed:
- OpenVMS build system and related files.
- Unmaintained PolarSSL, CyaSSL, and gnuTLS SSL backends

(fhajny)

2016-04-12 08:14:50 UTC MAIN commitmail json YAML

Use __sun instead of __sun__.

>From Brad Forschinger in PR 49782.

(wiz)

2016-04-12 08:08:46 UTC MAIN commitmail json YAML

Use ${MASTER_SITE_LOCAL} when you mean ${MASTER_SITE_LOCAL}.

(wiz)

2016-04-12 08:07:50 UTC MAIN commitmail json YAML

No reason to have MASTER_SITE_LOCAL here, there's a valid upstream.

(wiz)

2016-04-12 08:07:48 UTC MAIN commitmail json YAML

No reason to have MASTER_SITE_LOCAL here, there's a valid upstream.

(wiz)

2016-04-12 08:06:24 UTC MAIN commitmail json YAML

No reason to have MASTER_SITE_LOCAL here, there's a valid upstream.

(wiz)

2016-04-12 07:59:47 UTC MAIN commitmail json YAML

Updated www/webkit-gtk to 2.10.9.

(leot)

2016-04-12 07:58:04 UTC MAIN commitmail json YAML

Update www/webkit-gtk to 2.10.9.

Changes:
=================
WebKitGTK+ 2.10.9
=================
What's new in WebKitGTK+ 2.10.9?

  - Revert the patch to limit the number of tiles according to the visible area introduced in 2.10.8,
    because it caused rendering issues in several popular websites.
  - Fix the build with musl libc library.
  - Fix the build with clang-3.8.

=================
WebKitGTK+ 2.10.8
=================
What's new in WebKitGTK+ 2.10.8?

  - Limit the number of tiles according to the visible area. This was causing a huge memory
    consumption with some websites.
  - Fix flickering and rendering artifacts when entering accelerated compositing mode
    before the web view is realized.
  - Fix rendering of form controls and scrollbars with GTK+ >= 3.19.
  - Fix HTTP authentication dialog rendering when accelerated compositing mode is enabled.
  - Fix rendering artifacts when using a web view background color.
  - Fix a crash when creating a WebKitWebView without providing a WebKitWebContext.
  - Fix several crashes and rendering issues.
  - Security fixes: CVE-2016-1726.

(leot)

2016-04-12 06:33:43 UTC MAIN commitmail json YAML

2016-04-11 23:47:58 UTC MAIN commitmail json YAML

Sorry Fix typo, doxgen -> doxygen.

(mef)

2016-04-11 19:02:08 UTC MAIN commitmail json YAML

2016-04-11 17:06:04 UTC MAIN commitmail json YAML

Additional CFLAGS and LDFLAGS to fix the build on SunOS.

(jperkin)

2016-04-11 16:15:52 UTC MAIN commitmail json YAML

Updated textproc/icu to 57.1

(ryoon)

2016-04-11 16:15:22 UTC MAIN commitmail json YAML

Update to 57.1

Changelog:
Common Changes
    CLDR 29: For details of the many changes in CLDR, see CLDR 29.
    Grapheme/word/line breaking for emoji sequences, based on Unicode 9 proposed rules. See the Unicode emoji break proposal and the Unicode Emoji Technical Report Proposed Update describing the new emoji sequences.  (#12081).
    Four new Unicode emoji properties (#11802).
    DateFormat day period formatting of "noon", "at night", etc. via new pattern characters b & B, and DateTimePatternGenerator support of C for selecting the customary form (#11872).
        Except: Formatting of "0:00 midnight" has been disabled because it is confusing except for at the end of an interval.
    RelativeDateTimeFormatter: Simpler formatting API (#12072).
    More robust CLDR data loading for MeasureFormat (#11986, #12030), RelativeDateTimeFormatter (#12018), and DateIntervalFormat/DateIntervalInfo (#12013).
    New simple & fast SimpleFormatter class for a trivial subset of MessageFormat as used in CLDR data, e.g., "{0} {1}" (#10896).

ICU4C Specific Changes
    C API support for RelativeDateTimeFormatter (#12072).
    Clang annotations for intended switch case fallthroughs, can now compile with -Wimplicit-fallthrough (#12166).
    Internal header files can be compiled by themselves, for simpler alternative build scripts (#12141).

(ryoon)

2016-04-11 15:03:05 UTC MAIN commitmail json YAML

2016-04-11 15:00:31 UTC MAIN commitmail json YAML

2016-04-11 14:59:17 UTC MAIN commitmail json YAML

2016-04-11 14:57:40 UTC MAIN commitmail json YAML

2016-04-11 14:48:23 UTC MAIN commitmail json YAML

+doxygen-1.8.11

(mef)

2016-04-11 14:20:42 UTC MAIN commitmail json YAML

Updated archivers/p7zip to 15.14.1

(ryoon)

2016-04-11 14:19:59 UTC MAIN commitmail json YAML

Update to 15.14.1

Fix PR pkg/51059

Changelog:
Version 15.14.1
===============
  - patch #32 Compiling in OS X fails with p7zip_15.14

(ryoon)

2016-04-11 12:48:48 UTC MAIN commitmail json YAML

Updated sysutils/cfengine3 to 3.7.3

(fhajny)

2016-04-11 12:48:37 UTC MAIN commitmail json YAML

Update cfengine3 to 3.7.3.

Behaviour changes:
- classesmatching(): order of classes changed
- Suppress standard services noise on SUSE

Fixes:
- Reduce verbosity of yum package module
- Reduce verbosity of apt_get package module
- Upgrade dependencies to latest patch versions.
  Upgraded libraries:
  - curl 7.47.0
  - libxml2 2.9.3
  - LMDB 0.9.18
  - MySQL 5.1.72
  - OpenLDAP 2.4.44
  - OpenSSL 1.0.2g
  - PCRE 8.38
  - PostgreSQL 9.3.11
  - Redis 2.8.24
  - rsync 3.1.2
  PHP was kept at 5.6.17 because of problems with the 5.6.19 version.
- parse def.json vars, classes in C
- Namespaced classes can now be specified on the command line.
- getvalues() will now return a list also for data containers,
  and will descend recursively into the containers.
- @if minimum_version now correctly ignores lines starting with '@'
- Fix definition of classes from augments file
- Don't follow symbolic links when copying extended attributes.
- Fix ps options for FreeBSD to check processes only in current
  host and not in jails
- Fix cf-serverd error messages with classic protocol clients
- The isvariable() function call now correctly accepts all
  array variables when specified inline. Previously it would not
  accept certain special characters, even though they could be
  specified indirectly by using a variable to hold it.
- Show errors regarding failure to copy extended attributes
  when doing a local file copy. Errors could happen when copying
  across two different mount points where the support for extended
  attributes is different between the mount points.
- Fix bad option nlwp to vzps on Proxmox / OpenVZ.
- Fix file descriptor leak when there are network errors.
- Fix a regression which would sometimes cause "Permission
  denied" errors on files inside directories with very restricted
  permissions.
- Check for empty server response in RemoteDirList after
  decryption
- Allow def.json up to 5MB instead of 4K.
- Add guard for binary upgrade during bootstrap
- Fix HP-UX specific bug that caused a lot of log output to
  disappear.
- Fix a bug which sometimes caused package promises to be
  skipped with "XX Another cf-agent seems to have done this since
  I started" messages in the log, most notably in long running
  cf-agent runs (longer than one minute).
- Define (bootstrap|failsafe)_mode during update.cf when triggerd
  from failsafe.cf
- Fix two cases where action_policy warn still produces errors
- Fix classes being set because of hash collision in the
  implementation.
- fix build failure on FreeBSD 7.1
- Installing packages containing version numbers using yum
  now works correctly.

(fhajny)

2016-04-11 12:37:57 UTC MAIN commitmail json YAML

Updated pkgtools/bootstrap-mk-files to 20160411

(jperkin)

2016-04-11 12:37:48 UTC MAIN commitmail json YAML

Update bootstrap-mk-files to 20160411.  Changes:

  * Default to MKCATPAGES=no if mandoc is available on newer SunOS.

(jperkin)

2016-04-11 12:29:53 UTC MAIN commitmail json YAML

Re-arrange parsing order to fix various combinations of PKGMANDIR, MANZ,
and MKCATPAGES.

(jperkin)

2016-04-11 12:22:27 UTC MAIN commitmail json YAML

Updated databases/postgresql-postgis2 to 2.2.2

(gdt)

2016-04-11 12:22:02 UTC MAIN commitmail json YAML

Update to 2.2.2.

PostGIS 2.2.2
2016/03/22

* Bug Fixes *

  - #3463, Fix crash on face-collapsing edge change
  - #3422, Improve ST_Split robustness on standard precision double
          systems (arm64, ppc64el, s390c, powerpc, ...)
  - #3427, Update spatial_ref_sys to EPSG version 8.8
  - #3433, ST_ClusterIntersecting incorrect for MultiPoints
  - #3435, ST_AsX3D fix rendering of concave geometries
  - #3436, memory handling mistake in ptarray_clone_deep
  - #3437, ST_ClusterIntersecting incorrect for MultiPoints
  - #3461, ST_GeomFromKML crashes Postgres when there are
          innerBoundaryIs and no outerBoundaryIs
  - #3429, upgrading to 2.3 or from 2.1 can cause loop/hang on some
          platforms
  - #3460, ST_ClusterWithin 'Tolerance not defined' error after upgrade
  - #3490, Raster data restore issues, materialized views
    Scripts postgis_proc_set_search_path.sql, rtpostgis_proc_set_search_path.sql
    refere to http://postgis.net/docs/manual-2.2/RT_FAQ.html#faq_raster_data_not_restore
  - #3426, failing POINT EMPTY tests on fun architectures

(gdt)

2016-04-11 11:32:38 UTC MAIN commitmail json YAML

Updated net/libtelnet to 0.21

(fhajny)

2016-04-11 11:32:22 UTC MAIN commitmail json YAML

Import libtelnet-0.21 as net/libtelnet.

libtelnet provides safe and correct handling of the core TELNET
protocol. In addition to the base TELNET protocol, libtelnet also
implements the Q method of TELNET option negotiation. libtelnet
can be used for writing servers, clients, or proxies.

(fhajny)

2016-04-11 09:25:08 UTC MAIN commitmail json YAML

Updated databases/py-sqlalchemy to 1.0.12

(adam)

2016-04-11 09:24:24 UTC MAIN commitmail json YAML

Release 1.0.12 is a bug fix release resolving a handful of issues reported in the past few weeks. Primary development continues on the 1.1 series which is slated for initial releases in the spring.

1.0.12 includes relatively minor fixes, including a revision to a fix made for version 1.0.10 where we're attempting to report on the "cause" of an error that is interrupted by a later failure to emit a ROLLBACK on the MySQL platform. While Python 3 solves this problem using exception chaining and cause reporting, on Python 2 we emit a warning so that the cause isn't totally concealed. The condition has been expanded to emit this warning in a much wider range of scenarios.

(adam)

2016-04-11 08:34:24 UTC MAIN commitmail json YAML

2016-04-11 08:01:09 UTC MAIN commitmail json YAML

2016-04-11 07:50:32 UTC MAIN commitmail json YAML

2016-04-11 06:45:41 UTC MAIN commitmail json YAML

Updated www/webkit24-gtk3 to 2.4.11

(leot)

2016-04-11 06:45:24 UTC MAIN commitmail json YAML

Updated www/webkit24-gtk to 2.4.11

(leot)

2016-04-11 06:45:01 UTC MAIN commitmail json YAML

Update www/webkit24-gtk{,3} to 2.4.11.

Changes:
=================
WebKitGTK+ 2.4.11
=================
  - Fix a crash when changing element attributes with DOM bindings.
  - Fix the build on ARM64.
  - Translation updates: Chinese, Japanese.

(leot)

2016-04-11 04:59:11 UTC MAIN commitmail json YAML

match x11 and xcb options to cairo package

(dbj)

2016-04-11 04:49:41 UTC MAIN commitmail json YAML

the native soelim is gsoelim so default it as TOOLS_PLATFORM.gsoelim

(dbj)

2016-04-11 04:41:20 UTC MAIN commitmail json YAML

specify --without-xmc and --without-libxpm if gtk2 is not built with x11

(dbj)

2016-04-11 04:25:39 UTC MAIN commitmail json YAML

Fix Typo on PKGVERSION for p5-ExtUtils-CBuilder, sorry.

(mef)

2016-04-11 04:23:51 UTC MAIN commitmail json YAML

Fix Typo on PKGVERSION, sorry.

(mef)

2016-04-11 04:22:35 UTC MAIN commitmail json YAML

2016-04-11 04:05:05 UTC MAIN commitmail json YAML

compile and install .pyc files

(dbj)

2016-04-11 01:49:28 UTC MAIN commitmail json YAML

Report memory statistics in NetBSD a little more sensibly.

(riastradh)

2016-04-10 22:38:03 UTC MAIN commitmail json YAML

Fix build.

Before, at-spi2-core installed accessibility.conf in $(sysconfdir)/at-spi2,
so we used the CONF_FILES mechanism to place it in
share/examples/at-spi2-core/at-spi2, so the administrator can make local
adjustments.

Now, at-spi2-core works with sensible defaults without an
accessibility.conf file, and places it in $(datadir)/defaults/at-spi2,
essentially to be used as an example.

Choose to revert to the old behaviour.

(prlw1)

2016-04-10 20:17:08 UTC MAIN commitmail json YAML

Updated fonts/harfbuzz to 1.2.6

(prlw1)

2016-04-10 20:16:49 UTC MAIN commitmail json YAML

Update harfbuzz to 1.2.6

Friday, April 8, 2016
====================================

- Blacklist GDEF table of another set of Times New Roman (Bold) Italic.
- DirectWrite backend improvements.  Note: DirectWrite backend is
  exclusively for our internal testing and should NOT be used in any
  production system whatsoever.

(prlw1)

2016-04-10 20:08:45 UTC MAIN commitmail json YAML

That was gtk3 3.20 (not nb1)

(prlw1)

2016-04-10 20:06:50 UTC MAIN commitmail json YAML

2016-04-10 20:06:09 UTC MAIN commitmail json YAML

Updated x11/gtk3 to 3.20.2nb1

(prlw1)

2016-04-10 20:05:49 UTC MAIN commitmail json YAML

Update gtk3 to 3.20.2

Many changes including:
* Fix blue background in Emacs windows
* Fix a performance issue with excessive redraws
* Active GtkSwitch widgets now use the :checked state, to match GtkToggleButton
* GTK+ now respects default size even for windows that are not resizable
* GtkScale and GtkScrollbar have received multiple fixes for fallout from
  the gadget port
* GtkStackSwitcher will now switch pages when hovered during drag-and-drop
* GtkRange, GtkScale and GtkScrollbar have been ported to use gadgets
* GTK+ will now list included backends when seeing the
  environment variable GDK_BACKEND=help
* gtk-builder-tool can now preview .ui files with custom CSS
* gtk3-demo now demonstrates saving window sizes in the application
  example, and has many more widgets in the foreign drawing example.
* GTK+ widget drawing scalability has been improved (for containers
  with many children, like large list boxes or flow boxes).
* Drag-and-Drop has been rearchitected to move the input handling into
  GDK, where different backends can handle it according to their needs
  and capabilities. The new, 'managed' DND is currently implemented
  for X11 and Wayland.

* CSS changes:
- the rem unit is now supported
- calc() expressions are supported, too
- Allow loading svg imges
- Fix baseline handling
- -gtk-recolor() works properly with hi-dpi now
- image() can be used in CSS now
- Fix rendering of asymmetric borders
- Add CSS names to more widgets
- Support recoloring icons with -gtk-recolor
- CSS margins, border and padding are more consistently supported
- More widgets support min-width and min-height
- More style properties have been superseded by CSS properties
- Pseudo state names have been aligned with what CSS uses:
  :disabled instead of :insensitive, :indeterminate instead of
  :inconsistent and :drop(active) instead of :dnd. The old names
  still work
- GTK+ specific CSS properties have been prefixed with -gtk-.
  The old names still work
- The CSS syntax for Radial gradients is now supported
- CSS documentation has been rewritten and expanded

* Inspector:
- The per-object CSS editor has been dropped; the global one is sufficient
- The sidebar has been replaced by a combo box
- Add a Show Layout option to the Visual tab
- CSS node tree and style properties are now on the same page
- The frame clock is shown in the Miscellaneous page
- Isolate the inspector from visual debugging effects
- Numerous smaller UI improvements
- Show input device information
- Update monitor information when it changes

* Themes:
- The HighContrast theme has been brought back up to par with Adwaita
- Adwaita has received detail fixes for many widgets
- Adwaita now transitions to backdrop
- Windows theme: handle spin buttons and switches
- Adwaita: Fixes for scales, combo boxes, info bars, action bars, radio and
  check buttons, side bars, etc
- Adwaita has gained a new style of drop target highlighting
- The Windows theme is now included on all platforms
- new radio / check implementation
- GTK+ now includes a HighContrastInverse theme which is a dark
  variant of the HighContrast theme

* Wayland:
- Synchronize key repeat with server
- Add a bell request to gtk_shell and use it to implement gdk_window_beep
- Add a focus request to gtk_shell and use it to implement gtk_window_present
- Dropping tabs to create new windows is now supported
- Implement primary selection (using a private protocol
  with mutter for now)
- Implement startup notification
- Fix a significant buffer leak
- Support kinetic scrolling, using the new events in version 5 of the
  wl_pointer interface
- Suppport DND actions and drag cancellation that were added in version
  3 of the wl_data_offer interface

* Windows:
- Use a custom drag-resize implementation
- Use layered windows
- Provide workarea information
- The Classic and XP themes have been dropped
- The remaining theme is being fixed to work with CSS nodes
- React to theme changes

* Quartz:
- Fix image retrieval from the clipboard

* OS X:
- Native zoom and rotate gestures are now supported

For full details see:
http://git.gnome.org/browse/gtk+/tree/NEWS?h=3.20.2

(prlw1)

2016-04-10 20:00:53 UTC MAIN commitmail json YAML

Add non-DESTDIR removal

(joerg)

2016-04-10 19:42:44 UTC MAIN commitmail json YAML

Updated graphics/gdk-pixbuf2 to 2.32.3

(prlw1)

2016-04-10 19:42:11 UTC MAIN commitmail json YAML

Update gdk-pixbuf2 to 2.32.3

2.32.3
======

* Fix two crashes in the bmp loader (#747605, #758991)
* ico: integer overflow fixes
* Translation updates

2.32.2
======

* Avoid some integer overflow possibilities in scaling code
* Translation updates

(prlw1)

2016-04-10 19:38:53 UTC MAIN commitmail json YAML

2016-04-10 19:17:50 UTC MAIN commitmail json YAML

Updated graphics/adwaita-icon-theme to 3.20

(prlw1)

2016-04-10 19:17:26 UTC MAIN commitmail json YAML

Update adwaita-icon-theme to 3.20

3.20
  - win32 build fixes

3.19.91
  - application-x-addon-symbolic
  - win32 build fixes
  - win32 grey shadows fixed (bug #763034)

3.19.90
  - lighter fullcolor folders
  - thicker stroke for non-starred-symbolic
  - emblem-new metaphor sync
  - call-start call-stop symbolic shape improvements
  - mark-location-symbolic improved shape
  - edit-cut shape improvement
  - simplify hdd symbolic shapes
  - document-edit-symblic
  - visual separation between list and grid view and hamburger menu
    (symbolic)
  - symbolic wifi-acquiring bugfix
  - specfic icon grid for gnome-shell
  - windows build system scripts

3.18.0
  - improved view-list-symbolic
  - cursors working on KDE
  - translations

3.17.4
  - updated folder-new-symbolic

3.17.3
  - updated cursors, support for win32
  - address-book-new fix
  - ebook device icon
  - updated select-all metaphor
  - removed widget assets form an icon theme
  - privacy-mode symbolic icon
  - intltool fixes
  - translations

(prlw1)

2016-04-10 19:08:28 UTC MAIN commitmail json YAML

Updated devel/py-at-spi2 to 2.20.0

(prlw1)

2016-04-10 19:08:00 UTC MAIN commitmail json YAML

Update py-at-spi2 to 2.20.0

* Call gi.require_version() before import
* Fix text.getDefaultAttributeSet (bgo#752928).

(prlw1)

2016-04-10 19:03:27 UTC MAIN commitmail json YAML

Updated devel/at-spi2-atk to 2.20.0

(prlw1)

2016-04-10 19:03:05 UTC MAIN commitmail json YAML

Update at-spi2-atk to 2.20.0

* Don't drop the main context when p2p socket configuration fails
  (bgo#763273).
* Make sure the runtime directory exists (bgo#763274).
* Avoid lagging with large gtk menus (bgo#754048).
* Always accept connections as root if unable to find an owning user.
* Test fixes for atk-adaptor and cache changes.
* Fixes for Text, Value, and Table Cell adaptors (bgo#755724).
* Many new tests, thanks to Patryk Kaczmarek of Samsung.
* Update for new caching API (bgo#650090).
* Eliminate some console warnings due to NULL gobjects.
* Tests: fix out-of-source and parallel build (bgo#751137).
* Add some missing files to the distribution (bgo#751138).

(prlw1)

2016-04-10 19:01:19 UTC MAIN commitmail json YAML

2016-04-10 18:59:50 UTC MAIN commitmail json YAML

Updated devel/at-spi2-core to 2.20.0

(prlw1)

2016-04-10 18:59:27 UTC MAIN commitmail json YAML

Update at-spi2-core to 2.20.0

* Support a stateless configuration by default (bgo#763540).
* Don't display warnings when connecting to an app that no longer exists.
* Don't display warning if unable to connect when logged in via ssh
  (bgo#761600).
* at-spi-bus-launcher: register with session manager (bgo#753931).
* Disable xevie by default--it probably doesn't do anything anyhow.
* get_index_in_parent: Don't crash if parent is defunct.
* Don't crash when trying to set an invalid state (bgo#757915).
* Don't crash if we get a children-changed event with a non-existent
  child (bgo#755951).
* atspi_hyperlink_get_index_range: don't return random values if the
  call fails (bgo#755727).
* Fixed some atspi_text_ functions (bgo#755731).
* Fixed crash during removal of last application in registryd (bgo#756513).
* Modified the cache API to specify an object's index and child count
  rather than its children. This eliminates the need for the application
  to enumerate its children, improving performance in some places with
  large lists (bgo#650090).
* Functions shouldn't try to return values (bgo#749330).
* Fix atspi_table_cell_get_position.

(prlw1)

2016-04-10 18:55:43 UTC MAIN commitmail json YAML

Updated devel/atk to 2.20.0

(prlw1)

2016-04-10 18:55:23 UTC MAIN commitmail json YAML

Update atk to 2.20.0

Changes in version 2.20.00:
===========================

Translations:
Ask Hjorth Larsen (da)

Changes in version 2.19.92:
===========================
*
* Build improvements:
  * Bug 763212: Fix gettext domain after recent changes
  * Fix builddir ≠ srcdir in autogen.sh
  * MSVC builds: Re-arrange include paths
* Cleaning:
  * atkregistry: remove code not being compiled

Contributors:
Chun-wei Fan, Kalev Lember, Alejandro Piñeiro Iglesias, Philip
Withnall

Translations:
Anders Jonsson (sv), Cédric Valmary (oc)

Changes in version 2.19.90:
===========================
*
* Bug 755548: atktablecell: use content of the pointer instead of
  pointer itself
* Bug 760323: Use upstream gettext intead glib-gettext
* Build/MSVC/win32 improvements:
  * Makefile-newvs.am: Update Comments for Usage
  * Make Makefile.msvcproj A Bit More Generic
  * Fix build/win32/vs10/atk-install.vcxproj

Contributors:
Chun-wei Fan, Javier Jardón, Alejandro Piñeiro Iglesias

Translations:
Aurimas Černius(lt), Trần Ngọc Quân (vi), Kristjan SCHMIDT (eo)

Changes in version 2.18.0:
===========================
*
* Build: Improvements on MSVC Build infrastructure

Contributors:
Chun-wei Fan

Translations:
Chao-Hsiung Liao (zh_TW)

Changes in version 2.17.90:
===========================
*
* Documentation:
  * Replace mentions of 'state-changed' with 'state-change'.
  * Fixed some tiny typos
* Build/win32 improvements:
  * Use Pattern Rules on build/Makefile-newvs.am
  * Tidying and cleaning .vcxproj.filters generation
    * Fixes Bug 748176: out-of-tree distcheck fails in build/win32
  * Removed GCC requirement
* "install" Projects renamed to "atk-install"

* Misc: set proper file permission to source files

Contributors:
Murray Cumming, Chun-wei Fan, Simon McVittie, Alejandro Piñeiro
Iglesias

Translations:
Pedro Albuquerque (pt), Daniel Martinez (an),

(prlw1)

2016-04-10 18:55:13 UTC MAIN commitmail json YAML

Updated lang/vala to 0.32.0

(prlw1)

2016-04-10 18:49:42 UTC MAIN commitmail json YAML

Update vala to 0.32.0

Vala 0.32.0
===========

* Bug fixes and binding updates.

Vala 0.31.1
===========

* Introduce [Version] attribute.
* Require and target GLib >= 2.32.
* Bug fixes and binding updates.

(prlw1)

2016-04-10 17:00:33 UTC MAIN commitmail json YAML

2016-04-10 16:59:37 UTC MAIN commitmail json YAML

2016-04-10 16:57:03 UTC MAIN commitmail json YAML

Added devel/libdwarf version 20160115

(kamil)

2016-04-10 16:55:18 UTC MAIN commitmail json YAML

2016-04-10 16:54:36 UTC MAIN commitmail json YAML

Import libdwarf-20160115 as devel/libdwarf

Library to access the DWARF debugging file format which supports source level
debugging of a number of procedural languages, such as C, C++, and Fortran.

This package contains utility dwarfdump.

(kamil)