Commit graph

247667 commits

Author SHA1 Message Date
wiz
3487f73895 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
2016-04-13 18:39:21 +00:00
wiz
6a2ea2ee29 Updated sysutils/mc to 4.8.16 2016-04-13 18:34:36 +00:00
wiz
862b4b9d81 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)
2016-04-13 18:34:27 +00:00
wiz
1959e59223 Updated security/p5-Net-SSLeay to 1.74 2016-04-13 18:30:51 +00:00
wiz
1d93b50272 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.
2016-04-13 18:30:41 +00:00
wiz
db21f0ca32 Updated devel/p5-PadWalker to 2.2 2016-04-13 18:28:19 +00:00
wiz
67adf92727 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
2016-04-13 18:28:10 +00:00
wiz
9b97a3dbb4 Updated devel/p5-Log-Any to 1.04.0 2016-04-13 18:26:32 +00:00
wiz
e88b66cbef 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.
2016-04-13 18:26:23 +00:00
wiz
0573fb0a32 Updated devel/py-setuptools_trial to 0.6.0 2016-04-13 18:25:14 +00:00
wiz
d47df1f82f 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.
2016-04-13 18:25:05 +00:00
wiz
7958565448 Updated devel/py-setuptools to 20.6.7 2016-04-13 18:21:28 +00:00
wiz
10870a92a5 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.
2016-04-13 18:21:19 +00:00
wiz
2df0c7ffd0 Updated net/py-foolscap to 0.11.0 2016-04-13 18:19:59 +00:00
wiz
b99038231e 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)
2016-04-13 18:19:49 +00:00
wiz
b65b9035bd Updated misc/py-anki2 to 2.0.36 2016-04-13 18:18:21 +00:00
wiz
e86ad65141 Update py-anki2 to 2.0.36.
Changes in 2.0.36

    Fix a problem starting the app on Vista. If you don’t have trouble starting 2.0.35, there is no need to upgrade.
2016-04-13 18:18:11 +00:00
wiz
1076e1cced Updated time/p5-Time-HiRes to 1.9728 2016-04-13 18:17:34 +00:00
wiz
9aa4ec1618 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]
2016-04-13 18:17:25 +00:00
wiz
52484ee23a Updated devel/py-cython to 0.24 2016-04-13 18:13:59 +00:00
wiz
d07e9ee4b2 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.
2016-04-13 18:13:49 +00:00
wiz
33e158a0ec Updated time/py-vdirsyncer to 0.9.3 2016-04-13 18:08:14 +00:00
wiz
a170ec47ad 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.
2016-04-13 18:08:05 +00:00
wiz
9d252b4748 Updated sysutils/spice-protocol to 0.12.11 2016-04-13 18:06:19 +00:00
wiz
113b29fd54 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
2016-04-13 18:06:10 +00:00
wiz
8f81e5ff58 Updated devel/p5-Log-Dispatch to 2.54 2016-04-13 18:05:09 +00:00
wiz
6fccd06f4c 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.
2016-04-13 18:05:00 +00:00
wiz
c58791c57e Updated devel/p5-Sort-Versions to 1.62 2016-04-13 18:04:14 +00:00
wiz
ea2380eb3f 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
2016-04-13 18:04:04 +00:00
wiz
c10d113a13 Updated textproc/p5-YAML-LibYAML to 0.62 2016-04-13 18:03:12 +00:00
wiz
94c6b27f0c 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.
2016-04-13 18:03:00 +00:00
wiz
3c312cdfd7 Updated security/gnupg2 to 2.0.30 2016-04-13 18:02:06 +00:00
wiz
1fd93a1b1b 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.
2016-04-13 18:01:55 +00:00
wiz
910f22fa61 Updated graphics/jbig2dec to 0.13 2016-04-13 17:59:45 +00:00
wiz
0a76d24a54 Update jbig2dec to 0.13.
Version 0.13 (2016 April 07)

* Bug fix release.
2016-04-13 17:59:34 +00:00
wiz
82fb49e8c3 Updated devel/py-click to 6.6 2016-04-13 17:58:44 +00:00
wiz
211e944e66 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.
2016-04-13 17:58:32 +00:00
wiz
43cfb94992 Updated devel/py-mock to 2.0.0 2016-04-13 17:57:22 +00:00
wiz
a796ab498e Fix previous. 2016-04-13 17:57:07 +00:00
wiz
37316ba7ef 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
2016-04-13 17:56:24 +00:00
wiz
fd80da377f Updated security/py-rsa to 3.4.1 2016-04-13 17:54:21 +00:00
wiz
1794f7b19f 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
2016-04-13 17:54:10 +00:00
wiz
d175d4f0f0 Updated devel/talloc to 2.1.6 2016-04-13 17:52:51 +00:00
wiz
b2ece992b9 Update talloc to 2.1.6.
Changes not found.
2016-04-13 17:52:38 +00:00
wiz
dbaafa47d0 Updated devel/waf to 1.8.20 2016-04-13 17:50:22 +00:00
wiz
8f0746c7c2 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
2016-04-13 17:50:08 +00:00
wiz
2b8ac5e8dd Updated audio/abcde to 2.7.2 2016-04-13 17:48:48 +00:00
wiz
446bb762c5 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
2016-04-13 17:48:36 +00:00
wiz
5dc896d21b + 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.
2016-04-13 17:46:16 +00:00
adam
ff3e00c33f Refactored patch-Makefile.in to fix building with pkgconf 2016-04-13 17:25:57 +00:00