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 (30m)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-12 20:16:49 UTC Now

2015-11-17 12:12:23 UTC MAIN commitmail json YAML

Updated devel/cmake to 3.4.0

(wiz)

2015-11-17 12:12:12 UTC MAIN commitmail json YAML

Update cmake to 3.4.0:

CMake 3.4 Release Notes
***********************

Changes made since CMake 3.3 include the following.

New Features
============

Generators
----------

* The :generator:`Visual Studio 14 2015` generator learned to select
  a Windows 10 SDK based on the value of the :variable:`CMAKE_SYSTEM_VERSION`
  variable and the SDKs available on the host.

* CMake learned rudimentary support for the Apple Swift language.  When using
  the :generator:`Xcode` generator with Xcode 6.1 or higher, one may enable
  the ``Swift`` language with the :command:`enable_language` command or the
  :command:`project` command (this is an error with other generators or when
  Xcode is too old).  Then one may list ``.swift`` source files in targets
  for compilation.

Commands
--------

* The :command:`find_program` command learned a ``NAMES_PER_DIR``
  option to consider all given ``NAMES`` in each directory before
  moving on to the next directory.

* The :command:`get_filename_component` command learned a new ``BASE_DIR``
  subcommand.  This is used to specify a base directory when calculating an
  absolute path from a relative path.

* The :command:`if` command learned a new ``TEST`` operator that evaluates
  to true if a given test name has been defined by the :command:`add_test`
  command.  See policy :policy:`CMP0064`.

* The :command:`install(DIRECTORY)` command ``DESTINATION`` option learned to
  support :manual:`generator expressions <cmake-generator-expressions(7)>`.

* The :command:`install(FILES)` command ``DESTINATION`` option learned to
  support :manual:`generator expressions <cmake-generator-expressions(7)>`.

* The :command:`string` command learned a new ``APPEND`` subcommand.

Variables
---------

* The :ref:`Makefile Generators` and the :generator:`Ninja` generator
  learned to add compiler launcher tools like distcc and ccache along
  with the compiler for ``C`` and ``CXX`` languages.  See the
  :variable:`CMAKE_<LANG>_COMPILER_LAUNCHER` variable and
  :prop_tgt:`<LANG>_COMPILER_LAUNCHER` target property for details.

* New :variable:`CMAKE_LINK_SEARCH_START_STATIC` and
  :variable:`CMAKE_LINK_SEARCH_END_STATIC` variables were
  introduced to initialize the
  :prop_tgt:`LINK_SEARCH_START_STATIC` and
  :prop_tgt:`LINK_SEARCH_END_STATIC` target properties,
  respectively.

Properties
----------

* :ref:`Visual Studio Generators` learned to support additonal
  target properties to customize projects for NVIDIA Nsight
  Tegra Visual Studio Edition:

  * :prop_tgt:`ANDROID_ANT_ADDITIONAL_OPTIONS`
  * :prop_tgt:`ANDROID_ARCH`
  * :prop_tgt:`ANDROID_ASSETS_DIRECTORIES`
  * :prop_tgt:`ANDROID_JAR_DEPENDENCIES`
  * :prop_tgt:`ANDROID_JAR_DIRECTORIES`
  * :prop_tgt:`ANDROID_JAVA_SOURCE_DIR`
  * :prop_tgt:`ANDROID_NATIVE_LIB_DEPENDENCIES`
  * :prop_tgt:`ANDROID_NATIVE_LIB_DIRECTORIES`
  * :prop_tgt:`ANDROID_PROCESS_MAX`
  * :prop_tgt:`ANDROID_PROGUARD`
  * :prop_tgt:`ANDROID_PROGUARD_CONFIG_PATH`
  * :prop_tgt:`ANDROID_SECURE_PROPS_PATH`
  * :prop_tgt:`ANDROID_SKIP_ANT_STEP`
  * :prop_tgt:`ANDROID_STL_TYPE`

* The :prop_tgt:`ARCHIVE_OUTPUT_DIRECTORY`,
  :prop_tgt:`LIBRARY_OUTPUT_DIRECTORY`, and
  :prop_tgt:`RUNTIME_OUTPUT_DIRECTORY` target properties learned to
  support :manual:`generator expressions <cmake-generator-expressions(7)>`.

* The :prop_tgt:`SOURCE_DIR` and :prop_tgt:`BINARY_DIR` target properties
  were introduced to allow project code to query where a target is defined.

* The :prop_tgt:`OUTPUT_NAME` target property and its variants learned to
  support :manual:`generator expressions <cmake-generator-expressions(7)>`.

* A :prop_gbl:`TARGET_MESSAGES` global property was added to tell the
  :ref:`Makefile Generators` whether to generate commands to print output
  after each target is completed.

* On Windows with MS-compatible tools, CMake learned to optionally
  generate a module definition (``.def``) file for ``SHARED`` libraries.
  See the :prop_tgt:`WINDOWS_EXPORT_ALL_SYMBOLS` target property.

Modules
-------

* The :module:`ExternalProject` module :command:`ExternalProject_Add`
  function ``GIT_SUBMODULES`` option now also limits the set of
  submodules that are initialized in addition to the prior behavior
  of limiting the set of submodules that are updated.

* The :module:`ExternalProject` module learned new ``USES_TERMINAL``
  arguments for giving steps exclusive terminal access.  This is
  useful with the :generator:`Ninja` generator to monitor CMake
  superbuild progress and prevent CPU oversubscription.

* The :module:`FindBISON` module ``BISON_TARGET`` macro learned a
  new ``DEFINES_FILE`` option to specify a custom output header
  to be generated.

* The :module:`FindHDF5` module learend a new ``HDF5_PREFER_PARALLEL``
  option allowing users to specify that a parallel HDF5 tool is
  preferred if both are available.

* The :module:`FindIce` module now provides imported targets.

* The :module:`FindJava` module learned to optionally find
  the ``idlj`` and ``jarsigner`` tools.

* The :module:`FindOpenSSL` module now provides imported targets.

* The :module:`FindOpenSSL` module learned a new ``OPENSSL_USE_STATIC_LIBS``
  option to search only for static libraries.

* The :module:`FindPkgConfig` learned a new :command:`pkg_get_variable`
  command which may be used to query for arbitrary variables from a package
  (such as for related tools or data and plugin install paths).

* The :module:`FindProtobuf` module gained a new
  :command:`protobuf_generate_python` function to generate python
  sources from ``.proto`` files.

* The :module:`FindTIFF` module learned to search separately for
  debug and release variants.

* The :module:`FindwxWidgets` module learned to support version requests.

* The :module:`FindXercesC` module learned to search separately for
  debug and release variants.

* The :module:`FindZLIB` module learned to search separately for
  debug and release variants.

* The :module:`GNUInstallDirs` module learned special default values
  for certain installation prefixes according to the `GNU Coding
  Standards`_ and the `Filesystem Hierarchy Standard`_.

* The :module:`UseJava` module ``add_jar`` function learned
  to support response files (e.g. ``@srcs.txt``) for source
  specification.

* The :module:`UseJava` module ``install_jar`` function learned
  new ``DESTINATION`` and ``COMPONENT`` options to specify
  the corresponding :command:`install` command options.

* The :module:`UseJava` module gained a new ``create_javah``
  function to create C headers from Java classes.

.. _`GNU Coding Standards`: https://www.gnu.org/prep/standards/html_node/Directory-Variables.html
.. _`Filesystem Hierarchy Standard`: https://refspecs.linuxfoundation.org/FHS_3.0/fhs/index.html

Generator Expressions
---------------------

* A new ``$<SHELL_PATH:...>``
  :manual:`generator expression <cmake-generator-expressions(7)>`
  has been added.

CTest
-----

* CTest learned to optionally measure the CPU load during parallel
  testing and avoid starting tests that may cause the load to exceed
  a given threshold.  See the :manual:`ctest(1)` command ``--test-load``
  option, the ``TestLoad`` setting of the :ref:`CTest Test Step`,
  the :variable:`CTEST_TEST_LOAD` variable, and the ``TEST_LOAD``
  option of the :command:`ctest_test` command.

* :manual:`ctest(1)` learned options
  ``--test-output-size-passed`` and ``--test-output-size-failed``
  to customize the limit on test output size submitted when
  running as a :ref:`Dashboard Client`.

CPack
-----

* The :module:`CPackDeb` module learned to set package dependencies
  per component.  See variables:

  * :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_BREAKS`
  * :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_CONFLICTS`
  * :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_ENHANCES`
  * :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_PREDEPENDS`
  * :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_PROVIDES`
  * :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_RECOMMENDS`
  * :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_REPLACES`
  * :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_SUGGESTS`

* The :module:`CPack` module learned to package empty directories.

* The :module:`CPack` module gained a new setting, ``CPACK_VERBATIM_VARIABLES``,
  which can be used to ensure the cpack program receives the settings' values
  exactly as they were set, even if they contain CMake-special characters.
  For compatibility, it's off by default.

Other
-----

* The :manual:`Compile Features <cmake-compile-features(7)>` functionality
  is now aware of features supported by GNU C compilers on Windows.

* CMake learned to honor ``*.manifest`` source files with MSVC tools.
  Manifest files named as sources of ``.exe`` and ``.dll`` targets
  will be merged with linker-generated manifests and embedded in the
  binary.

* The `Concurrent Fortran 77 <https://ccur.com>`__ compiler is now supported.
  Its :variable:`compiler id <CMAKE_<LANG>_COMPILER_ID>` is ``CCur``.

* :manual:`cmake(1)` gained a new ``--trace-expand`` command line option
  that is like ``--trace`` but expands variable references in the output.

Deprecated and Removed Features
===============================

* The :module:`CMakeExpandImportedTargets` module is now documented
  as deprecated.  See module documentation for an explanation.

* The :variable:`CMAKE_USE_RELATIVE_PATHS` variable no longer has any
  effect.  Previously it was partially implemented and unreliable.

Other Changes
=============

* The :module:`CheckFunctionExists`, :module:`CheckLibraryExists`,
  :module:`CheckSymbolExists`, and :module:`FindThreads` modules learned to
  work in environments where only CXX is enabled.

* The :module:`CPackDeb` module now correctly excludes symlinks during package
  checksum calculation.

* The :module:`CPackDeb` no longer uses fakeroot and system tar program for
  packaging.

* The :module:`CPack` module no longer mangles settings with CMake-special
  characters when they're used as defaults for other settings. The macro
  ``cpack_set_if_not_set``, which was responsible for this, is now deprecated.

* CMake no longer links executables with flags to export symbols
  unless the :prop_tgt:`ENABLE_EXPORTS` target property is set.
  See policy :policy:`CMP0065`.

* The ``SONAME`` field is no longer set for ``MODULE`` libraries
  created with the :command:`add_library` command.  ``MODULE``
  libraries are meant for explicit dynamic loading at runtime.
  They cannot be linked so ``SONAME`` is not useful.

* The internal :variable:`CMAKE_<LANG>_COMPILE_OBJECT` rule variable now
  substitutes compiler include flags in a separate ``<INCLUDES>`` placeholder
  instead of the main ``<FLAGS>`` placeholder.

(wiz)

2015-11-17 11:59:35 UTC MAIN commitmail json YAML

Updated textproc/xmlto to 0.0.27

(wiz)

2015-11-17 11:59:25 UTC MAIN commitmail json YAML

Update xmlto to 0.0.27:

0.0.27 (stable)
  - remove several bashisms from scripts
  - add new option --profile for preprocessing documents
    with profiling stylesheet

(wiz)

2015-11-17 11:58:44 UTC MAIN commitmail json YAML

Updated sysutils/mc to 4.8.15

(wiz)

2015-11-17 11:58:32 UTC MAIN commitmail json YAML

Update mc to 4.8.15:

Version 4.8.15

- Core
  * Minimal version of GLib is 2.26.0
  * Use the PATH environment variable to search for the executable when opening pipe (#3444)
  * Support more than 2 (up to 9) columns in file panel in brief mode (#3212)
  * Clarify file sorting in "Unsorted" mode (#3496)
  * WGroupbox: respect dialog's colors (#3468)
  * Highlight find file's result in internal viewer (#3530)

- VFS
  * s3 extfs vfs: bugfixes and improvements (#3470, #3502)

- Editor
  * Add hidden option to choose full or base file name in the status line (#3445)
  * Improvements of syntax highlighting:
    - Lua (#3471)
    - PKGBUILD (#3484)

- Misc
  * Text alignment in Info panel (#3155)
  * Select of menu file edit: change default button to "User" (#3493)
  * Recognize .gmo files as well as .mo ones (#3422)
  * Fix mc.pot comment tripping up Transifex and unportable inplace sed (#3479)
  * A lot of code clean up (#3420, #3424, #3426, #3427, #3428, #3429, #3430, #3431, #3434, #3435, #3437, #3463, #3464, #3465, #3466, #3467, #3494, #3495, #3539)
  * Documentation updates:
    - Spanish man and help: Diff Viewer section and minor fixes (#3477)
    - VFS garbage collection (#3472)

- Fixes
  * Various memory leaks (#3438, #3439, #3440, #3457, #3458, #3459, #3460, #3461, #3462, #3475, #3520, #3521, #3522)
  * Linux kernel-specific segfault on startup (#3441)
  * Lost of Panelize contents in some cases (#3032, #3489, #3498, #3507)
  * Wrong highlight of search result in case of "Regular expression" and "Whole words" (#3524)
  * "Whole words" search works only in Normal mode (#3525)
  * SFTP VFS: segfault (#3456)
  * Segfault in "Find file" due to invalid UTF-8 sequences (#3449)
  * Bash variable 'PROMPT_COMMAND' in  pantheon-terminal (#3534)

(wiz)

2015-11-17 11:55:49 UTC MAIN commitmail json YAML

Updated devel/liblangtag to 0.5.8

(wiz)

2015-11-17 11:55:39 UTC MAIN commitmail json YAML

Update liblangtag to 0.5.8:

0.5.7 -> 0.5.8
=================
Akira TAGOH (6):
      Fix the build fail on MSVC 14 (fixes issue#13)
      Drop the word of GNOME from the ifdef'd variable for debugging
      Fix the build requirement in pkgconfig file
      Make some header files public (fixes: issue#14)
      Fix test fail on SunOS
      Fix unknown node issue

(wiz)

2015-11-17 11:53:55 UTC MAIN commitmail json YAML

Updated net/py-ipaddress to 1.0.15

(wiz)

2015-11-17 11:53:43 UTC MAIN commitmail json YAML

Update py-ipaddress to 1.0.15.

All tests pass. Changes not found.

(wiz)

2015-11-17 11:52:22 UTC MAIN commitmail json YAML

Updated textproc/py-lxml to 3.5.0

(wiz)

2015-11-17 11:52:10 UTC MAIN commitmail json YAML

Update py-lxml to 3.5.0:

3.5.0 (2015-11-13)
==================

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

* Unicode string results failed XPath queries in PyPy.

* LP#1497051: HTML target parser failed to terminate on exceptions
  and continued parsing instead.

* Deprecated API usage in doctestcompare.

3.5.0b1 (2015-09-18)
====================

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

* ``cleanup_namespaces()`` accepts a new argument ``keep_ns_prefixes``
  that does not remove definitions of the provided prefix-namespace
  mapping from the tree.

* ``cleanup_namespaces()`` accepts a new argument ``top_nsmap`` that
  moves definitions of the provided prefix-namespace mapping to the
  top of the tree.

* LP#1490451: ``Element`` objects gained a ``cssselect()`` method as
  known from ``lxml.html``.  Patch by Simon Sapin.

* API functions and methods behave and look more like Python functions,
  which allows introspection on them etc.  One side effect to be aware of
  is that the functions now bind as methods when assigned to a class
  variable.  A quick fix is to wrap them in ``staticmethod()`` (as for
  normal Python functions).

* ISO-Schematron support gained an option ``error_finder`` that allows
  passing a filter function for picking validation errors from reports.

* LP#1243600: Elements in ``lxml.html`` gained a ``classes`` property
  that provides a set-like interface to the ``class`` attribute.
  Original patch by masklinn.

* LP#1341964: The soupparser now handles DOCTYPE declarations, comments
  and processing instructions outside of the root element.
  Patch by Olli Pottonen.

* LP#1421512: The ``docinfo`` of a tree was made editable to allow
  setting and removing the public ID and system ID of the DOCTYPE.
  Patch by Olli Pottonen.

* LP#1442427: More work-arounds for quirks and bugs in pypy and pypy3.

* ``lxml.html.soupparser`` now uses BeautifulSoup version 4 instead
  of version 3 if available.

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

* Memory errors that occur during tree adaptations (e.g. moving subtrees
  to foreign documents) could leave the tree in a crash prone state.

* Calling ``process_children()`` in an XSLT extension element without
  an ``output_parent`` argument failed with a ``TypeError``.
  Fix by Jens Træ—¦ger.

* GH#162: Image data in HTML ``data`` URLs is considered safe and
  no longer removed by ``lxml.html.clean`` JavaScript cleaner.

* GH#166: Static build could link libraries in wrong order.

* GH#172: Rely a bit more on libxml2 for encoding detection rather than
  rolling our own in some cases.  Patch by Olli Pottonen.

* GH#159: Validity checks for names and string content were tightened
  to detect the use of illegal characters early.  Patch by Olli Pottonen.

* LP#1421921: Comments/PIs before the DOCTYPE declaration were not
  serialised.  Patch by Olli Pottonen.

* LP#659367: Some HTML DOCTYPE declarations were not serialised.
  Patch by Olli Pottonen.

* LP#1238503: lxml.doctestcompare is now consistent with stdlib's doctest
  in how it uses ``+`` and ``-`` to refer to unexpected and missing output.

* Empty prefixes are explicitly rejected when a namespace mapping is used
  with ElementPath to avoid hiding bugs in user code.

* Several problems with PyPy were fixed by switching to Cython 0.23.

(wiz)

2015-11-17 11:42:49 UTC MAIN commitmail json YAML

Updated devel/py-tortoisehg to 3.6

(wiz)

2015-11-17 11:42:39 UTC MAIN commitmail json YAML

Update py-tortoisehg to 3.6:

TortoiseHg 3.6 is a major feature release

Bugs Fixes

    mq: suppress original error only if all rejects are resolved (fixes #4325)
    osx: adjust icon sizes when add THG_RETINA environment variable is set to True
    repowidget: allow bookmarking applied MQ patch (fixes #4336)
    update: handle EnvironmentError in the same way as parameter error (fixes #4283)

Improvements

    compress, graft, rebase: provide "shelve" as cleanup option (closes #4252)
    mqdock: add menu action to push/pop to the selected patch
    mqdock: add menu and toolbar action to finish patches (closes #4296)
    repowidget: change Filter by/Ancestors into Filter by/Ancestors and Descendants

(wiz)

2015-11-17 11:27:27 UTC MAIN commitmail json YAML

Updated devel/py-mercurial to 3.6.1

(wiz)

2015-11-17 11:27:16 UTC MAIN commitmail json YAML

Update py-mercurial to 3.6.1:

Mercurial 3.6.1 (2015-11-9)

This is an out-of-cycle bugfix release for issues related to hooks.

    changegroup: call 'prechangegroup' hook before setting up write delay
    changegroup: fix the scope of a try finally
    clonebundles: fix typo s/comand/command/
    demandimport: fix level passed to loader of sub-modules
    dirstate: fix filefoldmap incosistency on file delete
    dockerlib: allow non-unique uid and gid of $DBUILDUSER (issue4657)
    exchange: do not attempt clone bundle if local repo is non-empty (issue4932)
    hooks: always include HG_PENDING
    hooks: fix hooks not firing if prechangegroup was set (issue4934)
    parsers: fix width of datalen variable in fm1readmarkers
    posix: fix test-permissions regression
    posix: retry on symlink race in checklink
    templatefilters: try round-trip utf-8 conversion by json filter (issue4933)
    wireproto: move clonebundles command from extension (issue4931)
    wix: style-coal.css has been renamed

(wiz)

2015-11-17 11:21:15 UTC MAIN commitmail json YAML

2015-11-17 11:18:38 UTC MAIN commitmail json YAML

2015-11-17 10:49:16 UTC MAIN commitmail json YAML

PR pkg/50433
dnssd is the selector for both dnssd and mdns backends.

(hauke)

2015-11-17 10:43:52 UTC MAIN commitmail json YAML

Updated audio/taglib to 1.10

(wiz)

2015-11-17 10:43:42 UTC MAIN commitmail json YAML

Update taglib to 1.10:

TagLib 1.10 (Nov 11, 2015)
==========================

1.10:

* Added new options to the tagwriter example.
* Fixed self-assignment operator in some types.
* Fixed extraction of MP4 tag keys with an empty list.

1.10 BETA:

* New API for the audio length in milliseconds.
* Added support for ID3v2 ETCO and SYLT frames.
* Added support for album artist in PropertyMap API of MP4 files.
* Added support for embedded frames in ID3v2 CHAP and CTOC frames.
* Added support for AIFF-C files.
* Better handling of duplicate ID3v2 tags in MPEG files.
* Allowed generating taglib.pc on Windows.
* Added ZLIB_SOURCE build option.
* Fixed backwards-incompatible change in TagLib::String when constructing UTF16 strings.
* Fixed crash when parsing certain FLAC files.
* Fixed crash when encoding empty strings.
* Fixed saving of certain XM files on OS X.
* Changed Xiph and APE generic getters to return space-concatenated values.
* Fixed possible file corruptions when removing tags from WAV files.
* Added support for MP4 files with 64-bit atoms in certain 64-bit environments.
* Prevented ID3v2 padding from being too large.
* Fixed crash when parsing corrupted APE files.
* Fixed crash when parsing corrupted WAV files.
* Fixed crash when parsing corrupted Ogg FLAC files.
* Fixed crash when parsing corrupted MPEG files.
* Fixed saving empty tags in WAV files.
* Fixed crash when parsing corrupted Musepack files.
* Fixed possible memory leaks when parsing AIFF and WAV files.
* Fixed crash when parsing corrupted MP4 files.
* Stopped writing empty ID3v2 frames.
* Fixed possible file corruptions when saving WMA files.
* Added TagLib::MP4::Tag::isEmpty().
* Added accessors to manipulate MP4 tags.
* Fixed crash when parsing corrupted WavPack files.
* Fixed seeking MPEG frames.
* Fixed reading FLAC files with zero-sized padding blocks.
* Added support for reading the encoder information of WMA files.
* Added support for reading the codec of WAV files.
* Added support for multi channel WavPack files.
* Added support for reading the nominal bitrate of Ogg Speex files.
* Added support for VBR headers in MPEG files.
* Marked FLAC::File::streamInfoData() deprecated. It returns an empty ByteVector.
* Marked FLAC::File::streamLength() deprecated. It returns zero.
* Fixed possible file corruptions when adding an ID3v1 tag to FLAC files.
* Many smaller bug fixes and performance improvements.

(wiz)

2015-11-17 10:42:24 UTC MAIN commitmail json YAML

2015-11-17 10:42:13 UTC MAIN commitmail json YAML

Update gsl to 2.1:

* What is new in gsl-2.1:

** added test suite for example programs

** bug fix when compiling with #undef GSL_DISABLE_DEPRECATED

** bug fix in setting libtool age versioning

** bug fix in gsl_multifit_wlinear()

** added gsl_multifit_linear_rcond() to compute reciprocal
  condition number of least squares matrix

** added gsl_multilarge module for large linear least squares
  systems

(wiz)

2015-11-17 10:29:13 UTC MAIN commitmail json YAML

2015-11-17 10:29:03 UTC MAIN commitmail json YAML

Update afl to 1.95b:

--------------
Version 1.95b:
--------------

  - Fixed a harmless bug when handling -B. Spotted by Jacek Wielemborek.

  - Made the exit message a bit more accurate when AFL_EXIT_WHEN_DONE is set.

  - Added some error-checking for old-style forkserver syntax. Suggested by
    Ben Nagy.

  - Switched from exit() to _exit() in injected code to avoid snafus with
    destructors in C++ code. Spotted by sunblate.

  - Made a change to avoid spuriously setting __AFL_SHM_ID when
    AFL_DUMB_FORKSRV is set in conjunction with -n. Spotted by Jakub Wilk.

(wiz)

2015-11-17 10:19:40 UTC MAIN commitmail json YAML

Fix build on NetBSD with PKGSRC_USE_SSP.

Thanks to mrg for hints.

Some pkglint cleanup while here.

(wiz)

2015-11-17 00:02:50 UTC MAIN commitmail json YAML

2015-11-17 00:02:13 UTC MAIN commitmail json YAML

2015-11-16 20:34:28 UTC MAIN commitmail json YAML

Re PR pkg/50433 fix options var name.

(hauke)

2015-11-16 18:34:03 UTC MAIN commitmail json YAML

Updated net/mitmproxy to 0.14.0

(leot)

2015-11-16 18:33:51 UTC MAIN commitmail json YAML

Update net/mitmproxy to 0.14.0.

Changes:
* Statistics: 399 commits, 13 contributors, 79 closed issues, 37 closed
  PRs, 103 days
* Docs: Greatly updated docs now hosted on ReadTheDocs!
  http://docs.mitmproxy.org
* Docs: Fixed Typos, updated URLs etc. (Nick Badger, Ben Lerner, Choongwoo
  Han, onlywade, Jurriaan Bremer)
* mitmdump: Colorized TTY output
* mitmdump: Use mitmproxy's content views for human-readable output (Chris
  Czub)
* mitmproxy and mitmdump: Support for displaying UTF8 contents
* mitmproxy: add command line switch to disable mouse interaction (Timothy
  Elliott)
* mitmproxy: bug fixes (Choongwoo Han, sethp-jive, FreeArtMan)
* mitmweb: bug fixes (Colin Bendell)
* libmproxy: Add ability to fall back to TCP passthrough for non-HTTP
  connections.
* libmproxy: Avoid double-connect in case of TLS Server Name Indication.
  This yields a massive speedup for TLS handshakes.
* libmproxy: Prevent unneccessary upstream connections (macmantrl)
* Inline Scripts: New API for HTTP Headers:
  http://docs.mitmproxy.org/en/latest/dev/models.html#netlib.http.Headers
* Inline Scripts: Properly handle exceptions in `done` hook
* Inline Scripts: Allow relative imports, provide `__file__`
* Examples: Add probabilistic TLS passthrough as an inline script

(leot)

2015-11-16 18:32:48 UTC MAIN commitmail json YAML

Updated net/py-netlib to 0.14.0

(leot)

2015-11-16 18:32:32 UTC MAIN commitmail json YAML

Update net/py-netlib to 0.14.0.

Changes:
* netlib: Refactored HTTP protocol handling code
* netlib: ALPN support
* netlib: fixed a bug in the optional certificate verification.
* netlib: Initial Python 3.5 support (this is the first prerequisite for
  3.x support in mitmproxy)

(leot)

2015-11-16 17:53:29 UTC MAIN commitmail json YAML

Add support for CHECK_WRKREF_EXTRA_DIRS to check-shlibs.  If "extra" is
listed in CHECK_WRKREF then these directories will added to the checks
for rpath references.

(jperkin)

2015-11-16 17:37:09 UTC MAIN commitmail json YAML

Added devel/py-construct version 2.5.2

(leot)

2015-11-16 17:36:47 UTC MAIN commitmail json YAML

Added py-construct.

(leot)

2015-11-16 17:35:59 UTC MAIN commitmail json YAML

Import py-construct-2.5.2 as devel/py-construct.
Originally packaged in pkgsrc-wip by Eric Schnoebelen and updated to the
latest stable version and minor (more or less) cosmetic fixes by myself.

Construct is a powerful declarative parser for binary data.

It is based on the concept of defining data structures in a declarative
manner, rather than procedural code: Simple constructs can be combined
hierarchically to form increasingly complex data structures. It's the
first library that makes parsing fun, instead of the usual headache it
is today.

Construct features bit and byte granularity, symmetrical operation
(parsing and building), component-oriented declarative design, easy
debugging and testing, an easy-to-extend subclass system, and lots of
primitive constructs to make your work easier.

        * Fields
        * Structs
        * Unions
        * Repeaters
        * Meta constructs
        * Switches
        * On-demand parsing
        * Pointers
        * And more!

(leot)

2015-11-16 16:34:08 UTC MAIN commitmail json YAML

Updated sysutils/intel-microcode-netbsd to 20151106.

(msaitoh)

2015-11-16 16:31:19 UTC MAIN commitmail json YAML

Update to 20151106. Added the following files:

000306f4-7 (Family 6, Model 3f, Stepping 4, Platform ID 7)
00040671-1 (Family 6, Model 47, Stepping 1, Platform ID 1)
00040671-5 (Family 6, Model 47, Stepping 1, Platform ID 5)

(msaitoh)

2015-11-16 15:59:59 UTC MAIN commitmail json YAML

Always set _OPSYS_CAN_CHECK_SHLIBS to "yes" regardless of whether
TOOLS_PATH.readelf is set.  This is a PKG_DEVELOPER feature and it's
likely the developer is smart enough to either have it already available
in $PATH or be able to install it (e.g. via devel/binutils) if required.

(jperkin)

2015-11-16 15:02:53 UTC MAIN commitmail json YAML

Commit dnssd related PLIST fix from PR pkg/50433
-- coincidentally, I had just this patch in a local tree...

(hauke)

2015-11-16 13:47:26 UTC MAIN commitmail json YAML

2015-11-16 13:34:38 UTC MAIN commitmail json YAML

Added graphics/gimp-webp version 0.2

(nros)

2015-11-16 13:33:14 UTC MAIN commitmail json YAML

Import of gimp-webp to pkgsrc-current.
Packaged in pkgsrc-wip by nros(me).

This plugin allows the Gimp to open and save image files in the WebP
format.

(nros)

2015-11-16 13:24:06 UTC MAIN commitmail json YAML

Updated graphics/libwebp to 0.4.4

(nros)

2015-11-16 13:22:47 UTC MAIN commitmail json YAML

Remove FETCH_USING completely, it is not a package-settable variable.

(jperkin)

2015-11-16 13:22:38 UTC MAIN commitmail json YAML

Update libwebp to version 0.4.4.

Chagelog:
This is a binary compatible release.
  * rescaling out-of-bounds read fix (issue #254)
  * various build fixes and improvements (issues #253, #259, #262, #267, #268)
  * container documentation update
  * gif2webp transparency fix (issue #245)

(nros)

2015-11-16 13:13:30 UTC MAIN commitmail json YAML

mk/fetch/fetch.mk sports --no-check-certificate in
_FETCH_BEFORE_ARGS.wget, already.

(hauke)

2015-11-16 13:12:27 UTC MAIN commitmail json YAML

Add patches obtained from LibreSSL to fix build when RAND_EGD() or SSLv3 support
is not present in SSL library.
Add workaround for decimal floating point support in older versions of GCC which
resolves build problem on OpenBSD.

Reviewed by wiz@

(sevan)

2015-11-16 11:27:58 UTC MAIN commitmail json YAML

+ afl-1.95b, cmake-3.4.0, gsl-2.1, liblangtag-0.5.8, mc-4.8.15,
  py-ipaddress-1.0.15, py-lxml-3.5.0, py-mercurial-3.6.1,
  py-tortoisehg-3.6, taglib-1.10, x264-devel-20151114, xmlto-0.0.27.

(wiz)

2015-11-16 10:33:47 UTC MAIN commitmail json YAML

Updated security/gnupg to 1.4.19nb1

(wiz)

2015-11-16 10:33:35 UTC MAIN commitmail json YAML

2015-11-16 10:33:20 UTC MAIN commitmail json YAML

Remove annoying left-over debug message.

>From upstream via Petar Bogdanovic on pkgsrc-users.

Bump PKGREVISION.

(wiz)

2015-11-16 10:09:58 UTC MAIN commitmail json YAML

Note update of security/opendnssec to 1.4.8.2.

(he)

2015-11-16 10:09:08 UTC MAIN commitmail json YAML

Update OpenDNSSEC to version 1.4.8.2.

Pkgsrc changes:
* Adapt patches to match new files.
* Add new migration scripts to PLIST

Upstream changes:

News
* Support for RFC5011 style KSK rollovers. KSK section in the KASP
  now accepts element.
* Enforcer: New repository option allows to generate keys with
  CKA_EXTRACTABLE attribute set to TRUE so keys can be wrapped and
  extracted from HSM.

Bugfixes
* SUPPORT-145: EOF handling an ARM architecture caused signer to hang.
* Fixed signer hitting assertion on short reply XFR handler.
* Include revoke bit in keytag calculation.
* Increased stacksize on some systems (thanks Patrik Lundin!).
* Stop ods-signerd on SIGINT.

Note:
* Updating from earlier versions of OpenDNSSEC requires use of the
  database migration script(s) included in ${PKG}/share/opendnssec/
  as the migrate_1_4_8* scripts.

(he)

2015-11-16 09:24:14 UTC MAIN commitmail json YAML

Updated security/py-certifi to 2015.9.6.2

(leot)

2015-11-16 09:23:29 UTC MAIN commitmail json YAML

Update security/py-certifi to 2015.9.6.2.

pkgsrc changes:
o Simplify MASTER_SITES.
o Get rid of the EGG_NAME redefinition (seems no more needed).

Changes:
2015.09.06.2
o Ship weak cert bundle.
2015.09.06.1
o Provide old cert bundle.
o Use secure roots by defaults.
2015.09.06
o Update scripts to use mkcert.org.

(leot)

2015-11-16 03:16:50 UTC MAIN commitmail json YAML

2015-11-16 02:07:06 UTC MAIN commitmail json YAML

Added devel/bokken version 1.8

(khorben)

2015-11-16 02:05:53 UTC MAIN commitmail json YAML

2015-11-16 02:05:09 UTC MAIN commitmail json YAML

An intuitive and user friendly user interace for binary analysis loaded
with plenty of features and visual aids.

Powered by Radare, an open source reverse engineering framework.

(khorben)

2015-11-16 01:48:01 UTC MAIN commitmail json YAML

Added graphics/py-pygraphviz version 1.3.1

(khorben)

2015-11-16 01:47:01 UTC MAIN commitmail json YAML

Add py-pygraphviz

(khorben)

2015-11-16 01:46:20 UTC MAIN commitmail json YAML

Import py-pygraphviz 1.3.1 from wip

PyGraphviz is a Python interface to the Graphviz graph layout
and visualization package. With PyGraphviz you can create,
edit, read, write, and draw graphs using Python to access the
Graphviz graph data structure and layout algorithms. PyGraphviz
is independent from NetworkX but provides a similar programming
interface.

(khorben)

2015-11-16 01:36:06 UTC MAIN commitmail json YAML

Also mention devel/py-radare2

(khorben)

2015-11-16 01:34:48 UTC MAIN commitmail json YAML

Added devel/py-radare2 version 0.9.9

(khorben)

2015-11-16 01:31:47 UTC MAIN commitmail json YAML

2015-11-16 01:31:10 UTC MAIN commitmail json YAML

Import py-radare2 version 0.9.9 from wip

radare2 is an advanced commandline hexadecimal editor
with a set of tools for working with binary files.

This package provides Python bindings for radare2.

(khorben)

2015-11-15 12:09:59 UTC MAIN commitmail json YAML

Remove reference to 3.1.4 from distinfo

(prlw1)

2015-11-15 12:06:56 UTC MAIN commitmail json YAML

Updated math/eigen3 to 3.2.7

(prlw1)

2015-11-15 12:06:33 UTC MAIN commitmail json YAML

Update eigen3 to 3.2.7

Eigen 3.2.7

  Released on November 5, 2015

  Changes since 3.2.6:
    * Main fixes and improvements:
          + Add support for dense.cwiseProduct(sparse).
          + Fix a regression regarding (dense*sparse).diagonal().
          + Make the IterativeLinearSolvers module compatible with
            MPL2-only mode by defaulting to COLAMDOrdering and
            NaturalOrdering for ILUT and ILLT respectively.
          + [59]Bug 266: backport support for c++11 move semantic
          + operator/=(Scalar) now performs a true division (instead of
            mat*(1/s))
          + Improve numerical accuracy in LLT and triangular solve by
            using true scalar divisions (instead of mat * (1/s))
          + [60]Bug 1092: fix iterative solver constructors for
            expressions as input
          + [61]Bug 1088: fix setIdenity for non-compressed sparse-matrix
          + [62]Bug 1086: add support for recent SuiteSparse versions

    * Others:
          + Add overloads for real-scalar times SparseMatrix<complex>
            operations. This avoids real to complex conversions, and also
            fixes a compilation issue with MSVC.
          + Use explicit Scalar types for AngleAxis initialization
          + Fix several shortcomings in cost computation (avoid multiple
            re-evaluation in some very rare cases).
          + [63]Bug 1090: fix a shortcoming in redux logic for which
            slice-vectorization plus unrolling might happen.
          + Fix compilation issue with MSVC by backporting
            DenseStorage::operator= from devel branch.
          + [64]Bug 1063: fix nesting of unsupported/AutoDiffScalar to
            prevent dead references when computing second-order
            derivatives
          + [65]Bug 1100: remove explicit CMAKE_INSTALL_PREFIX prefix to
            conform to cmake install's DESTINATION parameter.
          + unsupported/ArpackSupport is now properly installed by make
            install.
          + [66]Bug 1080: warning fixes

Eigen 3.2.6

  Released on October 1, 2015

  Changes since 3.2.5:
    * fix some compilation issues with MSVC 2013, including bugs [67]1000
      and [68]1057
    * SparseLU: fixes to support EIGEN_DEFAULT_TO_ROW_MAJOR ([69]bug
      1053), and for empty ([70]bug 1026) and some structurally rank
      deficient matrices ([71]bug 792)
    * [72]Bug 1075: fix AlignedBox::sample() for Dynamic dimension
    * fix regression in AMD ordering when a column has only one
      off-diagonal non-zero (used in sparse Cholesky)
    * fix Jacobi preconditioner with zero diagonal entries
    * fix Quaternion identity initialization for non-implicitly
      convertible types
    * [73]Bug 1059: fix predux_max<Packet4i> for NEON
    * [74]Bug 1039: fix some issues when redefining
      EIGEN_DEFAULT_DENSE_INDEX_TYPE
    * [75]Bug 1062: fix SelfAdjointEigenSolver for RowMajor matrices
    * MKL: fix support for the 11.2 version, and fix a naming conflict
      ([76]bug 1067)
          + [77]Bug 1033: explicit type conversion from 0 to RealScalar

Eigen 3.3-alpha1

  Released on September 4, 2015

  See the [78]announcement.

Eigen 3.2.5

  Released on June 16, 2015

  Changes since 3.2.4:
    * Changes with main impact:
          + Improve robustness of SimplicialLDLT to semidefinite problems
            by correctly handling structural zeros in AMD reordering
          + Re-enable supernodes in SparseLU (fix a performance regression
            in SparseLU)
          + Use zero guess in ConjugateGradients::solve
          + Add PermutationMatrix::determinant method
          + Fix SparseLU::signDeterminant() method, and add a
            SparseLU::determinant() method
          + Allows Lower|Upper as a template argument of CG and MINRES: in
            this case the full matrix will be considered
          + [79]Bug 872: remove usage of std::bind* functions (deprecated
            in c++11)

    * Numerical robustness improvements:
          + [80]Bug 1014: improve numerical robustness of the 3x3 direct
            eigenvalue solver
          + [81]Bug 1013: fix 2x2 direct eigenvalue solver for identical
            eigenvalues
          + [82]Bug 824: improve accuracy of Quaternion::angularDistance
          + [83]Bug 941: fix an accuracy issue in ColPivHouseholderQR by
            continuing the decomposition on a small pivot
          + [84]Bug 933: improve numerical robustness in RealSchur
          + Fix default threshold value in SPQR

    * Other changes:
          + Fix usage of EIGEN_NO_AUTOMATIC_RESIZING
          + Improved support for custom scalar types in SparseLU
          + Improve cygwin compatibility
          + [85]Bug 650: fix an issue with sparse-dense product and
            rowmajor matrices
          + [86]Bug 704: fix MKL support (HouseholderQR)
          + [87]Bug 705: fix handling of Lapack potrf return code (LLT)
          + [88]Bug 714: fix matrix product with OpenMP support
          + [89]Bug 949: add static assertions for incompatible scalar
            types in many of the dense decompositions
          + [90]Bugs 957, [91]1000: workaround MSVC/ICC compilation issues
            when using sparse blocks
          + [92]Bug 969: fix ambiguous calls to Ref
          + [93]Bugs 972, [94]986: add support for coefficient-based
            product with 0 depth
          + [95]Bug 980: fix taking a row (resp. column) of a column-major
            (resp. row-major) sparse matrix
          + [96]Bug 983: fix an alignement issue in Quaternion
          + [97]Bug 985: fix RealQZ when either matrix had zero rows or
            columns
          + [98]Bug 987: fix alignement guess in diagonal product
          + [99]Bug 993: fix a pitfall with matrix.inverse()
          + [100]Bugs 996, [101]1016: fix scalar conversions
          + [102]Bug 1003: fix handling of pointers non aligned on scalar
            boundary in slice-vectorization
          + [103]Bug 1010: fix member initialization in IncompleteLUT
          + [104]Bug 1012: enable alloca on Mac OS or if alloca is defined
            as macro
          + Doc and build system: [105]733, [106]914, [107]952, [108]961,
            [109]999

Eigen 3.2.4

  Released on January 21, 2015

  Changes since 3.2.3:
    * Fix compilation regression in Rotation2D
    * [110]Bug 920: fix compilation issue with MSVC 2015.
    * [111]Bug 921: fix utilization of bitwise operation on enums in
      first_aligned.
    * Fix compilation with NEON on some platforms.

Eigen 3.2.3

  Released on December 16, 2014

  Changes since 3.2.2:
    * Core:
          + Enable Mx0 * 0xN matrix products.
          + [112]Bug 859: fix returned values for vectorized versions of
            exp(NaN), log(NaN), sqrt(NaN) and sqrt(-1).
          + [113]Bug 879: tri1 = mat * tri2 was compiling and running
            incorrectly if tri2 was not numerically triangular. Workaround
            the issue by evaluating mat*tri2 into a temporary.
          + [114]Bug 854: fix numerical issue in
            SelfAdjointEigenSolver::computeDirect for 3x3 matrices.
          + [115]Bug 884: make sure there no call to malloc for zero-sized
            matrices or for a Ref<> without temporaries.
          + [116]Bug 890: fix aliasing detection when applying a
            permutation.
          + [117]Bug 898: MSVC optimization by adding inline hint to
            const_cast_ptr.
          + [118]Bug 853: remove enable_if<> in Ref<> ctor.

    * Dense solvers:
          + [119]Bug 894: fix the sign returned by LDLT for multiple calls
            to compute().
          + Fix JacobiSVD wrt underflow and overflow.
          + [120]Bug 791: fix infinite loop in JacobiSVD in the presence
            of NaN.

    * Sparse:
          + Fix out-of-bounds memory write when the product of two sparse
            matrices is completely dense and performed using pruning.
          + UmfPack support: fix redundant evaluation/copies when calling
            compute(), add support for generic expressions as input, and
            fix extraction of the L and U factors ([121]Bug 911).
          + Improve SparseMatrix::block for const matrices (the generic
            path was used).
          + Fix memory pre-allocation when permuting inner vectors of a
            sparse matrix.
          + Fix SparseQR::rank for a completely empty matrix.
          + Fix SparseQR for row-major inputs.
          + Fix SparseLU::absDeterminant and add respective unit test.
          + BiCGSTAB: make sure that good initial guesses are not
            destroyed by a bad preconditioner.

    * Geometry:
          + Fix Hyperplane::Through(a,b,c) when points are aligned or
            identical.
          + Fix linking issues in OpenGLSupport.

    * OS, build system and doc:
          + Various compilation fixes including: [122]bug 821, [123]bug
            822, [124]bug 857, [125]bug 871, [126]bug 873.
          + Fix many compilation warnings produced by recent compilers
            including: [127]bug 909.
          + [128]Bug 861: enable posix_memalign with PGI.
          + Fix BiCGSTAB doc example.

Eigen 3.2.2

  Released on August 4, 2014

  Changes since 3.2.1:
    * Core:
          + Relax Ref such that Ref<MatrixXf> accepts a RowVectorXf which
            can be seen as a degenerate MatrixXf(1,N)
          + Fix performance regression for the vectorization of sub
            columns/rows of matrices.
          + EIGEN_STACK_ALLOCATION_LIMIT: Raise its default value to
            128KB, make use of it to assert on maximal fixed size object,
            and allows it to be 0 to mean "no limit".
          + [129]Bug 839: Fix 1x1 triangular matrix-vector product.
          + [130]Bug 755: CommaInitializer produced wrong assertions in
            absence of Return-Value-Optimization.

    * Dense solvers:
          + Add a rank() method with threshold control to JacobiSVD, and
            make solve uses it to return the minimal norm solution for
            rank-deficient problems.
          + Various numerical fixes in JacobiSVD, including:[131]bug 843,
            and the move from Lapack to Matlab strategy for the default
            threshold.
          + Various numerical fixes in LDLT, including the case of
            semi-definite complex matrices.
          + Fix ColPivHouseholderQR::rank().
          + [132]Bug 222: Make temporary matrix column-major independently
            of EIGEN_DEFAULT_TO_ROW_MAJOR in BlockHouseholder.

    * Sparse:
          + [133]http://eigen.tuxfamily.org/bz/show_bug.cgi?id=838 Bug
            838]: Fix dense * sparse and sparse * dense outer products and
            detect outer products from either the lhs or rhs.
          + Make the ordering method of SimplicialL[D]LT configurable.
          + Fix regression in the restart mechanism of BiCGSTAB.
          + [134]Bug 836: extend SparseQR to support more columns than
            rows.
          + [135]Bug 808: Use double instead of float for the increasing
            size ratio in CompressedStorage::resize, fix implicit
            conversions from int/longint to float/double, and fix
            set_from_triplets temporary matrix type.
          + [136]Bug 647: Use smart_copy instead of bitwise memcpy in
            CompressedStorage.
          + GMRES: Initialize essential Householder vector with correct
            dimension.

    * Geometry:
          + [137]Bug 807: Missing scalar type cast in umeyama()
          + [138]Bug 806: Missing scalar type cast in
            Quaternion::setFromTwoVectors()
          + [139]Bug 759: Removed hard-coded double-math from
            Quaternion::angularDistance.

    * OS, build system and doc:
          + Fix compilation with Windows CE.
          + Fix some ICEs with VC11.
          + Check IMKL version for compatibility with Eigen
          + [140]Bug 754: Only inserted (!defined(_WIN32_WCE)) analog to
            alloc and free implementation.
          + [141]Bug 803: Avoid char* to int* conversion.
          + [142]Bug 819: Include path of details.h file.
          + [143]Bug 738: Use the "current" version of cmake project
            directories to ease the inclusion of Eigen within other
            projects.
          + [144]Bug 815: Fix doc of FullPivLU wrt permutation matrices.
          + [145]Bug 632: doc: Note that dm2 = sm1 + dm1 is not possible
          + Extend AsciiQuickReference (real, imag, conjugate, rot90)

Eigen 3.2.1

  Released on February 26, 2014

  Changes since 3.2.0:
    * Eigen2 support is now deprecated and will be removed in version
      3.3.
    * Core:
          + Bug fix for Ref object containing a temporary matrix.
          + [146]Bug 654: Allow construction of row vector from 1D array.
          + [147]Bug 679: Support cwiseMin() and cwiseMax() on maps.
          + Support conservativeResize() on vectors.
          + Improve performance of vectorwise and replicate expressions.
          + [148]Bug 642: Add vectorization of sqrt for doubles, and make
            sqrt really safe if EIGEN_FAST_MATH is disabled.
          + [149]Bug 616: Try harder to align columns when printing
            matrices and arrays.
          + [150]Bug 579: Add optional run-time parameter to fixed-size
            block methods.
          + Implement .all() and .any() for zero-sized objects
          + [151]Bug 708: Add placement new and delete for arrays.
          + [152]Bug 503: Better C++11 support.
    * Dense linear algebra:
          + [153]Bug 689: Speed up some matrix-vector products by using
            aligned loads if possible.
          + Make solve in FullPivHouseholderQR return least-square
            solution if there is no exact solution.
          + [154]Bug 678: Fix fullPivHouseholderQR for rectangular
            matrices.
          + Fix a 0/0 issue in JacobiSVD.
          + [155]Bug 736: Wrong result in LDLT::isPositiveDefinite() for
            semi-definite matrices.
          + [156]Bug 740: Fix overflow issue in stableNorm().
          + Make pivoting HouseholderQR compatible with custom scalar
            types.
    * Geometry:
          + Fix compilation of Transform * UniformScaling
    * Sparse matrices:
          + Fix elimination tree and SparseQR for fat rectangular
            matrices.
          + [157]Bug 635: add isCompressed to MappedSparseMatrix for
            compatibility.
          + [158]Bug 664: Support iterators without operator< in
            setFromTriplets().
          + Fixes in SparseLU: infinite loop, aliasing issue when solving,
            overflow in memory allocation, use exceptions only if enabled
            ([159]bug 672).
          + Fixes in SparseQR: reduce explicit zero, assigning result to
            map, assert catching non-conforming sizes, memory leak.
          + [160]Bug 681: Uninitialized value in CholmodSupport which may
            lead to incorrect results.
          + Fix some issues when using a non-standard index type ([161]bug
            665 and more)
          + Update constrained CG (unsupported module) to Eigen3.
    * OS and build system:
          + MacOS put OpenGL header files somewhere else from where we
            expected it.
          + Do not assume that alloca() is 16-byte aligned on Windows.
          + Compilation fixes when using ICC with Visual Studio.
          + Fix Fortran compiler detection in CMake files.
    * Fix some of our tests (bugs [162]744 and [163]748 and more).
    * Fix a few compiler warnings (bug [164]317 and more).
    * Documentation fixes (bugs [165]609, [166]638 and [167]739 and
      more).

(prlw1)

2015-11-15 08:22:59 UTC MAIN commitmail json YAML

Updated time/hs-timezone-olson to 0.1.7

(szptvlfn)

2015-11-15 08:22:20 UTC MAIN commitmail json YAML

Updated time/hs-timezone-series to 0.1.5.1

(szptvlfn)

2015-11-15 08:22:15 UTC MAIN commitmail json YAML

Update to 0.1.7

Changes from https://github.com/ygale/timezone-olson
0.1.7
- Bump time to 1.5.
0.1.6
- Update link in package description.
- Update comment to indicate support for version 3 format.

(szptvlfn)

2015-11-15 08:22:00 UTC MAIN commitmail json YAML

2015-11-15 08:12:20 UTC MAIN commitmail json YAML

Updated www/p5-Starlet to 0.28

(wen)

2015-11-15 08:10:21 UTC MAIN commitmail json YAML

Update to 0.28
Update DEPENDS

Upstream changes:
0.28
- always shutdown after SIGTERM, but only after notifying the client (via connection: close or equiv.) #23

0.26
- fix abrupt connection close when receiving SIGTERM #21 (by shogo82148)

0.25
- support listing to unix socket wo. using Server::Starter
- suppress warning when receiving broken requests
- fix test issue with Plack >= 1.0035

(wen)

2015-11-15 06:53:46 UTC MAIN commitmail json YAML

Updated mail/p5-MIME-Types to 2.12

(wiz)

2015-11-15 06:53:34 UTC MAIN commitmail json YAML

Update p5-MIME-Types to 2.12:

version 2.12: Wed 11 Nov 12:24:55 CET 2015

Improvements:
- downgrade prereq perl to 5.6 [Peter Rabbitson]
- update IANA

(wiz)

2015-11-15 05:12:49 UTC MAIN commitmail json YAML

Updated time/p5-DateTime-Format-Strptime to 1.61

(wen)

2015-11-15 05:11:52 UTC MAIN commitmail json YAML

Update to 1.61
Update DEPENDS

Upstream changes:
1.61    2015-11-13

[BUG FIXES]

- If you loaded this module with warnings globally enabled ("perl -w", which
  you should never do), then you'd get a warning about the import subroutine
  being redefined. This broke the Package::DeprecationManager API for turning
  off deprecation warnings. This has been fixed in
  Package::DeprecationManager 0.15. Reported by Martin. RT #108871.

1.60    2015-11-07

- This release is identical to the prior trial release. The changes for the
  trial releases are reproduced below for convenience.

[BACKWARDS INCOMPATIBILITIES]

- The error messages for various types of failures have changed.

- The never-documented diagnostic parameter for the constructor has been
  removed.

- The never-documented feature to allow you to use arbitrary DateTime.pm
  methods in the parsing pattern has been removed. This never made much sense
  anyway, since most DateTime.pm methods are not constructor params, but they
  were used that way.

- Using the pattern, locale, and time_zone to set the respective attribute is
  now deprecated. Make a new object instead of changing one of these values.

[BUG FIXES]

- Fixed a warning from the tests with newer Perl versions. RT #107620.

- Clarified docs to note that %Y and %G require 4-digit years. Reported by
  Karen Etheridge. RT #103147.

- Using the 24-hour token (%H) with an AM/PM specifier (%p) now leads to an
  error if you try to parse something like "23:01 AM". Reported by Ric
  Signes. RT #92445.

1.59    2015-10-25 (TRIAL RELEASE)

- The previous release accidentally included an old version of Strptime.pm in
  the root dir, causing all sorts of chaos and test failures.

1.58    2015-10-18 (TRIAL RELEASE)

- This release is a substantial rewrite. Please test it and file bugs for any
  unintentional breakage.

* The error messages for various types of failures have changed.

* The never-documented diagnostic parameter for the constructor has been
  removed.

* The never-documented feature to allow you to use arbitrary DateTime.pm
  methods in the parsing pattern has been removed. This never made much sense
  anyway, since most DateTime.pm methods are not constructor params, but they
  were used that way.

* Using the pattern, locale, and time_zone to set the respective attribute is
  now deprecated. Make a new object instead of changing one of these values.

- Fixed a warning from the tests with newer Perl versions. RT #107620.

- Clarified docs to note that %Y and %G require 4-digit years. Reported by
  Karen Etheridge. RT #103147.

1.57    2015-10-04

- Make all tests pass with both the current DateTime::Locale and the upcoming
  new version (currently still in trial releases).

(wen)

2015-11-15 05:09:01 UTC MAIN commitmail json YAML

Updated devel/p5-Package-DeprecationManager to 0.15

(wen)

2015-11-15 05:07:55 UTC MAIN commitmail json YAML

Update to 0.15

Upstream changes:
0.15    2015-11-13

- Made this module co-operate with existing import() subs in packages that use
  this module, as long as you use this module last.

(wen)

2015-11-15 04:55:44 UTC MAIN commitmail json YAML

Updated devel/p5-Getopt-Long to 2.48

(wen)

2015-11-15 04:54:38 UTC MAIN commitmail json YAML

Update to 2.48

Upstream changes:
Changes in version 2.48
-----------------------

* Fix bug https://rt.cpan.org/Ticket/Display.html?id=39052.

  Thanks to Roy Ivy III for digging this out and providing patches.

(wen)

2015-11-15 04:51:47 UTC MAIN commitmail json YAML

Updated devel/p5-File-Path to 2.12

(wen)

2015-11-15 04:50:59 UTC MAIN commitmail json YAML

Update to 2.12

Upstream changes:
2.12    2015-10-09
    - RT 105935 Change ERROR HANDLING doc section to be very clear about the
      error handling mechanism for root nodes.
    - RT 105935 Change ERROR HANDLING doc section to remove the EXPERIMENTAL
      note; the error handling mechanism has been in place for several versions.

2.11_004 2015-10-01
    - RT 105935 Revert change made in 2.10_001 to carp on failure to find root
      directory when performing an rmtree.

2.11_003 2015-08-03
    - Fix root tests to properly call prereq() -- failed primarily on Windows
      since getpwent/getgrent not implemented on Windows.

2.11_002 2015-07-25
    - Fix windows refactored tests - missing import and since it's out of
      Path.t the path creation creates 2 directories (t/Path_win32.t)
    - Fix root only tests.  getpwent/getgrent was called twice, causing
      skip_all to trigger and giving impression all tests pass.

2.11_001 2015-07-24
    - RT 105527 FIX: Move eg/ and author tests from t/Path.t to xt/
    - RT 105935 FIX: Clarify error behavior for rmtree errors on root directory
      (not fixed but documented).  Clarify in documentation the how alike
      rmtree is to 'rm -r'.
    - RT 105977 FIX: Fix INSTALLDIRS for Perl 5.6
    - RT 105986 FIX: Refactor unit tests to better care for test counts
    - RT 106039 FIX: Wrong version in Pod
    - RT 106043 FIX: Suboptimal error message
    - RT 106045 FIX: _run_for_warning does not consume multiple messages
    - RT 106047 FIX: _run_for_verbose cause fail test on 5.6.2
    - Removed optional File::Output usage and run those tests for everyone.

(wen)

2015-11-15 03:43:55 UTC MAIN commitmail json YAML

Updated www/py-werkzeug to 0.11.2

(wen)

2015-11-15 03:42:42 UTC MAIN commitmail json YAML

Update to 0.11.2
Update MASTER_SITES
Add BUILD_DEPENDS for test

Upstream changes:
Version 0.11.2
--------------

Released on November 12th 2015.

- Fix inheritable sockets on Windows on Python 3.
- Fixed an issue with the forking server not starting any longer.
- Fixed SSL wrapping on platforms that supported opening sockets
  by file descriptor.
- No longer log from the watchdog reloader.
- Unicode errors in hosts are now better catched or converted into
  bad request errors.

Version 0.11.1
--------------

Released on November 10th 2015.

- Fixed a regression on Python 3 in the debugger.

Version 0.11
------------

Released on November 8th 2015, codename Gleisbaumaschine.

- Added ``reloader_paths`` option to ``run_simple`` and other functions in
  ``werkzeug.serving``. This allows the user to completely override the Python
  module watching of Werkzeug with custom paths.
- Many custom cached properties of Werkzeug's classes are now subclasses of
  Python's ``property`` type (issue ``#616``).
- ``bind_to_environ`` now doesn't differentiate between implicit and explicit
  default port numbers in ``HTTP_HOST`` (pull request ``#204``).
- ``BuildErrors`` are now more informative. They come with a complete sentence
  as error message, and also provide suggestions (pull request ``#691``).
- Fix a bug in the user agent parser where Safari's build number instead of
  version would be extracted (pull request ``#703``).
- Fixed issue where RedisCache set_many was broken for twemproxy, which doesn't
  support the default MULTI command (pull request ``#702``).
- ``mimetype`` parameters on request and response classes are now always
  converted to lowercase.
- Changed cache so that cache never expires if timeout is 0. This also fixes
  an issue with redis setex (issue ``#550``)
- Werkzeug now assumes ``UTF-8`` as filesystem encoding on Unix if Python
  detected it as ASCII.
- New optional `has` method on caches.
- Fixed various bugs in `parse_options_header` (pull request ``#643``).
- If the reloader is enabled the server will now open the socket in the parent
  process if this is possible.  This means that when the reloader kicks in
  the connection from client will wait instead of tearing down.  This does
  not work on all Python versions.
- Implemented PIN based authentication for the debugger.  This can optionally
  be disabled but is discouraged.  This change was necessary as it has been
  discovered that too many people run the debugger in production.
- Devserver no longer requires SSL module to be installed.

Version 0.10.5
--------------

(bugfix release, release date yet to be decided)

- Reloader: Correctly detect file changes made by moving temporary files over
  the original, which is e.g. the case with PyCharm (pull request ``#722``).
- Fix bool behavior of ``werkzeug.datastructures.ETags`` under Python 3 (issue
  ``#744``).

(wen)

2015-11-15 03:17:16 UTC MAIN commitmail json YAML

Replace blank space with tab

(wen)

2015-11-15 02:57:45 UTC MAIN commitmail json YAML

Update version of qgis, gdal-lib and mapserver
Add merkaator

(wen)

2015-11-14 18:15:53 UTC MAIN commitmail json YAML

Updated lang/sbcl to 1.3.0

(asau)

2015-11-14 18:11:15 UTC MAIN commitmail json YAML

Update to SBCL 1.3.0

changes in sbcl-1.3.0 relative to sbcl-1.2.16:
  * minor incompatible change: the environment passed to a macro/setf/deftype
    expander is not always an object of type SB-KERNEL:LEXENV.
    It can be nil, as is permissible by the standard.
  * enhancement: ported to ARM64 Linux.
  * enhancement: a new interpreter is included which has many benefits
    over sb-eval. It is disabled by default. See src/interpreter/README
    for instructions to enable it, and further details.
  * bug fix: calling COMPILE when SB-EXT:*EVALUATOR-MODE* was :INTERPRET
    would fail to perform "normal semantic processing such as macro expansion"
    as stipulated by X3J13 issue LOAD-TIME-EVAL.
  * bug fix: SB-UNICODE:CONFUSABLE-P no longer treats "<" and the empty
    string as confusable.  (lp#1504739)
  * bug fix: (ASSERT (COMPUTE-IT ...)) would expand incorrectly
    if COMPUTE-IT was a local macro that shadowed a global function.
  * bug fix: SB-POSIX:CFSETISPEED and SB-POSIX:CFSETOSPEED now work properly
    on platforms that use only the minimum specified set of fields in struct
    termios (verified on Linux, still known not to work on FreeBSD and NetBSD,
    very probably others).  (partial fix for lp#1500951)

changes in sbcl-1.2.16 relative to sbcl-1.2.15:
  * enhancement: by default, timers with a repeat interval do not "catch up"
    by repeatedly calling their function after a clock discontinuity such as a
    suspend and resume cycle
  * bug fix: correctly restore multiple values on the stack in the presence of
    alien calls. (lp#1489590)
  * bug fix: MAKE-STRING-OUTPUT-STREAM enforces that :ELEMENT-TYPE
    is a subtype of CHARACTER.
  * bug fix: an EQL method specializer no longer causes garbage retention
    if there are no extant methods using the specializer. (lp#492851)

changes in sbcl-1.2.15 relative to sbcl-1.2.14:
  * new feature: DEPRECATION declaration for functions, variables and types
    causes {EARLY,LATE,FINAL}-DEPRECATION-WARNING to be signaled when subject
    of the declaration is used. Integrated with DESCRIBE, DOCUMENTATION and
    SB-CLTL2:{VARIABLE,FUNCTION}-INFORMATION. Documented in the "Deprecation"
    section of the manual.
  * enhancement: ASDF updated to 3.1.5. (lp#1476867)
  * enhancement: definitions within PROGN get proper source locations when
    compiled (needs latest Slime to take advantage of this). (lp#1473147)
  * enhancement: source locations for DEFCLASS slots now point directly to the
    slot definitions, not the whole DEFCLASS form.
  * bug fix: better source location in the presence of quoted forms.
    (lp#1370561)
  * bug fix: better source locations inside backqoute. (lp#1361502)
  * bug fix: HANDLER-BIND requires that the handler-function be
    a function designator at the time of binding establishment. (lp#1480679)
  * bug fix: inlined functions surrounded by nested macrolets are properly
    inlined. (lp#309123)

changes in sbcl-1.2.14 relative to sbcl-1.2.13:
  * minor incompatible change: The name of a compiled anonymous lambda
    as returned by the third value of FUNCTION-LAMBDA-EXPRESSION can have
    a lambda-list-like list following the introductory LAMBDA that is not
    in general a syntactically valid lambda list. Specifically, it won't
    retain default values, supplied-p variables, or &KEY or &AUX bindings.
  * enhancement: DESTRUCTURING-BIND has been totally reimplemented from
    scratch to address a handful of performance and correctness issues.
    Some minor behavioral differences exist regarding order of evaluation
    of default forms for unsupplied &OPTIONAL and &KEY arguments
    when nested destructuring patterns are involved.
    (lp#707556, lp#707573, lp#707578, lp#708051)
  * enhancement: DEFCONSTANT and DEFSTRUCT respect package locks. (lp#1186238,
    lp#1036716)
  * enhancement: sb-unicode:normalize-string has a new optional argument,
    FILTER, a callback which controls which decomposed characters are
    collected. Useful for stripping away diacritics more efficiently.
  * bug fix: (TYPE-OF ARRAY) for a non-simple array is subject to change
    after a call of ADJUST-ARRAY. (lp#1333731)
  * bug fix: Dynamic-extent allocation with a loop between allocating a value
    and the start of its environment no longer discards the allocated data
    when the loop is taken. (lp#1472785)
  * bug fix: Variable-reference elimination no longer generates incorrect code
    under certain circumstances. (lp#1446891)
  * bug fix: variables with EQL types are no longer treated as constants by
    VOPs, which caused problems with closures being allocated for such
    variables, but they remained unused. (lp#1390149)
  * bug fix: Windows installer generates registry key name
    correctly. (lp#1476447)

(asau)

2015-11-14 17:14:22 UTC MAIN commitmail json YAML

Updated parallel/hwloc to 1.11.1

(asau)

2015-11-14 17:12:35 UTC MAIN commitmail json YAML

Update hwloc to 1.11.1

pkgsrc changes: stop regenerating build system
and drop build-time dependency on autotools.

Version 1.11.1
--------------
* Detection fixes
  + Hardwire the topology of Fujitsu K-computer, FX10, FX100 servers to
    workaround buggy Linux kernels.
    Thanks to Takahiro Kawashima and Gilles Gouaillardet.
  + Fix L3 cache information on AMD Opteron 61xx Magny-Cours processors
    in the x86 backend. Thanks to Guillaume Beauchamp for the patch.
  + Detect block devices directly attached to PCI without a controller,
    for instance NVMe disks. Thanks to Barry M. Tannenbaum.
  + Add the PCISlot attribute to all PCI functions instead of only the
    first one.
* Miscellaneous internal fixes
  + Ignore PCI bridges that could fail assertions by reporting buggy
    secondary-subordinate bus numbers
    Thanks to George Bosilca for reporting the issue.
  + Fix an overzealous assertion when inserting an intermediate Group object
    while Groups are totally ignored.
  + Fix a memory leak on Linux on AMD processors with dual-core compute units.
    Thanks to Bob Benner.
  + Fix a memory leak on failure to load a xml diff file.
  + Fix some segfaults when inputting an invalid synthetic description.
  + Fix a segfault when plugins fail to find core symbols.
    Thanks to Guy Streeter.
* Many fixes and improvements in the Windows backend:
  + Fix the discovery of more than 32 processors and multiple processor
    groups. Thanks to Barry M. Tannenbaum for the help.
  + Add thread binding set support in case of multiple process groups.
  + Add thread binding get support.
  + Add get_last_cpu_location() support for the current thread.
  + Disable the unsupported process binding in case of multiple processor
    groups.
  + Fix/update the Visual Studio support under contrib/windows.
    Thanks to Eloi Gaudry for the help.
* Tools fixes
  + Fix a segfault when displaying logical indexes in the graphical lstopo.
    Thanks to Guillaume Mercier for reporting the issue.
  + Fix lstopo linking with X11 libraries, for instance on Mac OS X.
    Thanks to Scott Atchley and Pierre Ramet for reporting the issue.
  + hwloc-annotate, hwloc-diff and hwloc-patch do not drop unavailable
    resources from the output anymore and those may be annotated as well.
  + Command-line tools may now import XML from the standard input with -i -.xml
  + Add missing documentation for the hwloc-info --no-icaches option.

(asau)

2015-11-14 16:38:48 UTC MAIN commitmail json YAML

Updated net/mikutter to 3.2.10

(tsutsui)

2015-11-14 16:38:03 UTC MAIN commitmail json YAML

Update to mikutter 3.2.10.

* Adapt to Twitter's display requirement changes (fav -> like)
* Use ruby-gtk2 3.0.7
* add -v option to check mikutter version (thanks @Akkiesoft)

(tsutsui)

2015-11-14 14:15:20 UTC MAIN commitmail json YAML

Updated lang/scheme48 to 1.9.2

(leot)

2015-11-14 14:14:46 UTC MAIN commitmail json YAML

Update lang/scheme48 to 1.9.2.
Patch provided by Aleksej Lebedev via PR pkg/50425 and pkgsrc-users@.

pkgsrc changes:
o While here fix various pkglint warnings (spaces vs tabs)
o Update DESCR to reflect current status of scheme48 and R5RS

Changes:
* 2014-04-12 (version 1.9.2)
** Bug fixes
- Some regressions with respect to integer shifts were fixed.
- Some compiler warnings were fixed.

* 2014-02-22 (version 1.9.1)
** Bug fixes
- A bug fix from SRFI 13 was imported (in `string-trim-right').
- =DESTDIR= is now used consistently in the Makefile.
- A bug in `integer->errno' was fixed. (William Vining)
- Various problems that broke the VM when compiled with Clang were
  fixed.

(leot)

2015-11-14 10:12:40 UTC MAIN commitmail json YAML

Note omxplayer update to 20150118nb4

(skrll)

2015-11-14 07:49:12 UTC MAIN commitmail json YAML

Updated multimedia/ffmpeg2 to 2.8.2

(adam)

2015-11-14 06:01:02 UTC MAIN commitmail json YAML

avoid configure picking up pkgsrc TMPDIR and changing its default

(richard)

2015-11-14 05:08:18 UTC MAIN commitmail json YAML

Updated math/p5-Math-GMP to 2.11

(wen)

2015-11-14 05:06:47 UTC MAIN commitmail json YAML

Update to 2.11

Upstream changes:
2.11  2015-08-16 Shlomif
    - Got the distribution to have full POD coverage and check all functions
    for usage.
        - t/check-funcs-ret-value--rt92593.t
        - https://rt.cpan.org/Public/Bug/Display.html?id=92593
        - CPAN Day!

2.10  2015-08-12 Shlomif
    - Throw an exception on invalid input to Math::GMP->new;
        - https://rt.cpan.org/Ticket/Display.html?id=27521
        - Thanks to SISYPHUS for the report.
    - Put RELEASE_TESTING tests under xt instead of t.
        - https://rt.cpan.org/Ticket/Display.html?id=106365
        - Thanks to ilmari for the report and suggested fix.
    - Document and test some functions that were improperly documented or
    not tested.
        - t/check-funcs-ret-value--rt92593.t
        - https://rt.cpan.org/Public/Bug/Display.html?id=92593
        - Still aiming for full POD Coverage.

2.09  2015-07-29 Shlomif
    - Add the binary-left-shift / << operator.
    - Add the binary-right-shift / >> operator.
    - Convert the build system to Dist-Zilla to ease future maintenance.
    - Add a call to Devel::CheckLib for finding the "gmp.h" header.

2.08  2015-07-28 Shlomif
    - Add a link to the version control repository at various places.
    - Get rid of indirect object notation in the code and the examples.
        - It�塜 a sign of Ancient Perl.
    - Overload bool to avoid fallback to intify (Hugo)
        - Fixes RT #101443
            - https://rt.cpan.org/Ticket/Display.html?id=101443
        - Modified patch applied by Shlomif.
    - Add tests from DANAJ for large numbers in some functions.
        - RT #92641
            - https://rt.cpan.org/Ticket/Display.html?id=92641

(wen)

2015-11-14 04:09:27 UTC MAIN commitmail json YAML

Updated mail/p5-Email-MIME to 1.936

(wen)

2015-11-14 04:08:25 UTC MAIN commitmail json YAML

Update to 1.936

Upstream changes:
1.936    2015-09-10 22:46:29-04:00 America/New_York
        - no changes since 1.935, but a stable release

1.935    2015-08-31 16:47:46-04:00 America/New_York (TRIAL RELEASE)
        - do not remove too many newlines at the end (bug introduced in 1.926)

(wen)

2015-11-14 03:59:20 UTC MAIN commitmail json YAML

Updated graphics/p5-SVG to 2.64

(wen)

2015-11-14 03:57:58 UTC MAIN commitmail json YAML

Update to 2.64

Upstream changes:
2.64 2015.06.02
    - RT #103938 SVG::DOM insertSiblingAfter calls nonexistent 'parent' method (Marius Gavrilescu)

(wen)

2015-11-14 03:53:54 UTC MAIN commitmail json YAML

Updated devel/p5-System-Command to 1.115

(wen)

2015-11-14 03:52:51 UTC MAIN commitmail json YAML

Update to 1.115

Upstream changes:
1.115 Mon Sep 28 2015
    [BUG FIX]
    - ensure test counts and skip counts remain tied together (MITHALDU)
    [DOCUMENTATION]
    - for each option/feature, document in which version it appeared

1.114 Fri Sep 18 2015
    [ENHANCEMENTS]
    - added proper accessors for the following System::Command::Reaper
      attributes: sdtin, stdout, stderr, exit, signal, core
      (after discussion with TIMB in RT #106330)
    - added 'exit', 'signal', 'core' options to System::Command, to allow
      direct update of variables at reaping time
    - added the 'interactive' option, to make it possible to run interactive
      commands directly with system (after discussion with TIMB in RT #106330)

1.113 Sun Sep 6 2015
    [ENHANCEMENTS]
    - add proper accessors for the following System::Command::Reaper
      attributes: sdtin, stdout, stderr, exit, signal, core
      (after discussion with TIMB in RT #106330)
    - System::Command::close() now returns the object itself (RT #106867)
    [DOCUMENTATION]
    - document the return value of close() can be used to access the
      value of exit, signal and core

(wen)

2015-11-14 03:45:03 UTC MAIN commitmail json YAML

Updated devel/p5-PathTools to 3.59

(wen)

2015-11-14 03:44:15 UTC MAIN commitmail json YAML

Update to 3.59

Upstream changes:
3.59 - Fri Nov 13 18:38:01 EST 2015
- no changes since 5.56

3.58_01 - Mon Nov  9 17:35:28 EST 2015 - TRIAL RELEASE
- add File::Spec::AmigaOS
- fix INSTALLDIRS on post-5.10 perls

3.56_02 - Thu Jul 16 11:28:57 EDT 2015 - TRIAL RELEASE
- fix $VERSION in loaded modules

3.56_01 - Sat Jul 11 18:07:28 EDT 2015 - TRIAL RELEASE
- CPAN release of the PathTools included in perl v5.22.0
- support for z/OS sysplexed systems
- long-deprecated "fixpath" and "eliminate_macros" VMS functions removed
- avoid turning leading // into / on cygwin
- Force barename base to be a directory in File::Spec::VMS:abs2rel
- Revise Unix syntax detection File::Spec::VMS::abs2rel
- compiles on Android now
- fewer compiler warnings
- eliminate some runtime perl warnings, too

(wen)

2015-11-13 22:13:59 UTC MAIN commitmail json YAML

Updated archivers/unzip to 6.0nb6

(wiz)

2015-11-13 22:13:43 UTC MAIN commitmail json YAML

Bump PKGREVISION for NO_LCHMOD change on Linux.

(wiz)

2015-11-13 22:13:22 UTC MAIN commitmail json YAML

Add -DNO_LCHMOD for Linux as well.

Matthias Ferdinand reported on pkgsrc-users:

building archivers/unzip on Linux (Ubuntu 14.04 64bit) succeeds, but
produces the following warning:

    ...
    gcc -o unzip  -Lbzip2 unzip.o crc32.o  crypt.o envargs.o explode.o extract.o fileio.o globals.o inflate.o list.o match.o process.o ttyio.o ubz2err.o u
+nreduce.o unshrink.o zipinfo.o unix.o  -s  -L/opt/pkgsrc/lib -Wl,--enable-new-dtags,-R/opt/pkgsrc/lib -lz
    unix.o: In function `set_symlnk_attribs':
=>  unix.c:(.text+0x1840): warning: lchmod is not implemented and will always fail
    ...

(wiz)

2015-11-13 21:05:41 UTC MAIN commitmail json YAML

Assing mplayer to myself.

(leot)

2015-11-13 20:20:08 UTC MAIN commitmail json YAML

version 2.8.2
- various fixes in the aac_fixed decoder
- various fixes in softfloat
- swresample/resample: increase precision for compensation
- lavf/mov: add support for sidx fragment indexes
- avformat/mxfenc: Only store user comment related tags when needed
- tests/fate/avformat: Fix fate-lavf
- doc/ffmpeg: Clarify that the sdp_file option requires an rtp output.
- ffmpeg: Don't try and write sdp info if none of the outputs had an rtp format.
- apng: use correct size for output buffer
- jvdec: avoid unsigned overflow in comparison
- avcodec/jpeg2000dec: Clip all tile coordinates
- avcodec/microdvddec: Check for string end in 'P' case
- avcodec/dirac_parser: Fix undefined memcpy() use
- avformat/xmv: Discard remainder of packet on error
- avformat/xmv: factor return check out of if/else
- avcodec/mpeg12dec: Do not call show_bits() with invalid bits
- avcodec/faxcompr: Add missing runs check in decode_uncompressed()
- libavutil/channel_layout: Check strtol*() for failure
- avformat/mpegts: Only start probing data streams within probe_packets
- avcodec/hevc_ps: Check chroma_format_idc
- avcodec/ffv1dec: Check for 0 quant tables
- avcodec/mjpegdec: Reinitialize IDCT on BPP changes
- avcodec/mjpegdec: Check index in ljpeg_decode_yuv_scan() before using it
- avutil/file_open: avoid file handle inheritance on Windows
- avcodec/h264_slice: Disable slice threads if there are multiple access units in a packet
- avformat/hls: update cookies on setcookie response
- opusdec: Don't run vector_fmul_scalar on zero length arrays
- avcodec/opusdec: Fix extra samples read index
- avcodec/ffv1: Initialize vlc_state on allocation
- avcodec/ffv1dec: update progress in case of broken pointer chains
- avcodec/ffv1dec: Clear slice coordinates if they are invalid or slice header decoding fails for other reasons
- rtsp: Allow $ as interleaved packet indicator before a complete response header
- videodsp: don't overread edges in vfix3 emu_edge.
- avformat/mp3dec: improve junk skipping heuristic
- concatdec: fix file_start_time calculation regression
- avcodec: loongson optimize h264dsp idct and loop filter with mmi
- avcodec/jpeg2000dec: Clear properties in jpeg2000_dec_cleanup() too
- avformat/hls: add support for EXT-X-MAP
- avformat/hls: fix segment selection regression on track changes of live streams
- configure: Require libkvazaar < 0.7.
- avcodec/vp8: Do not use num_coeff_partitions in thread/buffer setup

(adam)

2015-11-13 20:04:31 UTC MAIN commitmail json YAML

Updated www/py-django-reversion to 1.9.3

(adam)

2015-11-13 19:56:16 UTC MAIN commitmail json YAML

Changes 1.9.3:
- Fixing regression with admin redirects following save action

(adam)

2015-11-13 16:27:28 UTC MAIN commitmail json YAML

+ tidy-5.0.0 [wip].

(wiz)

2015-11-13 16:22:00 UTC MAIN commitmail json YAML

Added archivers/zopfli version 1.0.1

(wiz)

2015-11-13 16:20:46 UTC MAIN commitmail json YAML

2015-11-13 16:20:32 UTC MAIN commitmail json YAML

Import zopfli-1.0.1 as archivers/zopfli.

Compression Algorithm is a compression library programmed in C to
perform very good, but slow, deflate or zlib compression.

(wiz)

2015-11-13 15:48:17 UTC MAIN commitmail json YAML

Updated textproc/py-html2text to 2015.11.4

(wiz)

2015-11-13 15:48:02 UTC MAIN commitmail json YAML

Update to 2015.11.4:

2015.11.4
=========
----

* Fix #38: Long links wrapping controlled by `--no-wrap-links`.
* Note: `--no-wrap-links` implies `--reference-links`
* Feature #83: Add callback-on-tag.
* Fix #87: Decode errors can be handled via command line.
* Feature #95: Docs, decode errors spelling mistake.
* Fix #84: Make bodywidth kwarg overridable using config.

(wiz)

2015-11-13 15:12:15 UTC MAIN commitmail json YAML

Pull over two fixes from FreeBSD

SingleLock.h
Do not create copy of CCriticalSection for each CSingleLock instance

Use reference to CCriticalSection as a CSingleLock member. Otherwise
assignment operator just byte-copies content of CCriticalSection
and for each copy destructor will destroy mutex which may lead
to undefined behaviour

OMXThread.cpp
Fix order of operations on pthread attribute: init first, then modify

Bump PKGREVISION

(skrll)

2015-11-13 14:55:48 UTC MAIN commitmail json YAML

Remove OpenBSD chunk from patch.

Not needed, tested by sevan@

(wiz)

2015-11-13 14:50:14 UTC MAIN commitmail json YAML

Updated devel/talloc to 2.1.5

(wiz)

2015-11-13 14:50:01 UTC MAIN commitmail json YAML

Update talloc to 2.1.5.

Changes not found.

(wiz)

2015-11-13 14:47:21 UTC MAIN commitmail json YAML

Updated textproc/py-markdown to 2.6.4

(wiz)

2015-11-13 14:47:09 UTC MAIN commitmail json YAML

Update py-markdown to 2.6.4.

Add missing test dependencies.

Nov 6, 2015: Released version 2.6.4 (a bug-fix release).

(wiz)

2015-11-13 14:44:06 UTC MAIN commitmail json YAML

Updated time/py-iso8601 to 0.1.11

(wiz)

2015-11-13 14:43:53 UTC MAIN commitmail json YAML

Update iso8601 to 0.1.11.

Add test dependency and fix test target.

Changes:
Update README for release and add more pythons for testing
Remove debug logging
Add support for , as separator for fractional part
Add pypy 3 into tox test config
Add python 3.4 to tox tests and update doc links

(wiz)

2015-11-13 14:28:15 UTC MAIN commitmail json YAML

2015-11-13 14:24:38 UTC MAIN commitmail json YAML

2015-11-13 14:23:42 UTC MAIN commitmail json YAML

2015-11-13 14:18:23 UTC MAIN commitmail json YAML

2015-11-13 14:13:26 UTC MAIN commitmail json YAML

2015-11-13 14:12:03 UTC MAIN commitmail json YAML

Updated emulators/mame to 0.167

(wiz)

2015-11-13 14:11:49 UTC MAIN commitmail json YAML

Update mame to 0.167.

0.167
-------

MAMETesters Bugs Fixed
----------------------
- 00100: [Sound] (galdrvr.c) froggermc: After starting a game, the sound cuts off. (Osso)
- 05596: [Color/Palette] (thunderj.c) thunderj & clones: palette problem in the briefing (hap)
- 06049: [Gameplay] (ibmpcjr.c) ibmpcjr [kingqst, mouser, pitfall2, scubavnt] : some
  softlist games are broken (crazyc)

Source Changes
--------------
-piggypas.c: fixed CPU type, added layout and some inputs. [Sandro Ronco]

-firebeat: add proper dongle dumps for kbm3rd, pop4 and popn5 [Guru, Ville Linde]

-Fix reversion for PI.  PI transfers round length up, not down. Add [Happy]
field for VI interlaced modes.  Display of interlaced video still
needs work.

-adding ROM dump of Commodore MPS-1000 dot matrix printer [Felipe Sanches]

-dvk_ksm: update memory map, rom checksums. [shattered]

-ec1840, ec1841: clean up memory options [shattered]

-Victor 9000 Keyboard: Added two key labels I realized I'd forgotten.
Updated comments to be more clear about keys with multiple contacts
underneath but only one metal contact on the key. Noted in comments
that the symbolic and mode keys on the numeric keypad (except for
decimal point) are beige, not white. [Lord Nightmare]

-DEC LA120: Make the status leds and 7seg displays a popmessage(), for
now. [Lord Nightmare]

-Votrax TNT: fixed the memory map mirroring based on schematic.
[Lord Nightmare, Kevtris]

-added correct sprite rom dumps to Led Storm Rally 2011 (US) [Guru]

-adjusted the rom loading / gfxdecoding in the driver to accommodate
the correct ROMs for Led Storm Rally 2011 [David Haywood]

-z80scc rework [Joakim Larsson]
* z80scc_channel class rebased on device_t instead of z80sio_channel
* Improved LOG printouts
* Interrupt support started
* Made register pointer bits shared bewtween A and B channel as per
    spec
* Variant type keeping moved from channel class to device class where
    it belongs
* Clocks are blocked until Rx/Tx enabled by ROM code
* Improved logging
* Started variant handling

-tiki100: Added 8088 expansion ROMs. [Person]

-tiki100: Used PROM for memory mapping. [Curt Coder]

-tiki100: Added expansion bus and skeleton for 8088 card. [Curt Coder]

-tiki100: Connected the I/O space to the expansion bus, and added the
360KB floppy format for MS-DOS. [Curt Coder]

-tiki100: Added raw screen parameters. [Curt Coder]

-tiki100: Added DART speed select jumper. [Curt Coder]

-tiki100: Added skeleton for Winchester controller. [Curt Coder]

-tiki100: Added the expansion bus slots to the Z80 daisy chain.
[Curt Coder]

-tiki100: Added BUSRQ, BUSAK, and EXIN to the expansion bus.
[Curt Coder]

-PTY support for u*x OSes [F.Ulivi]

-Fix to allow mips3 exceptions to detect branch delay slots for setting
EPC. Minor cleanup/correction for n64.c [Happy]

-Added Siemens Sicomp PC16-05 BIOS ROM (Multitech MPF-PC/700 mainboard) [rfka01]

-Split cat.c into separate drivers for canon cat and iai swyft.  [Lord Nightmare]

-PSX GPU: Fix the 24bit rendering of video sequences on games such as
GranTurismo and Digimon World 3 [Felipe Sanches]

-ETI-660 fixed and working [Robbbert]

-Camputers Lynx 48k, 96k, 128k fixed and working. [Robbbert]

-Game-A-Tron gambling hardware changes [Roberto Fresca]:
* Added siren/alarm input to Pull Tabs, and beeps/alarm input to Four
    In One Poker. All these are present in the Test Mode. However,
    their functions aren't clear.
* Switched the PSG to SN76489, since it's present in the Bingo PCB.
* Added technical notes and more documentation.

-Pinball, Bally early solid state (by17.c by35.c)  [Quench]
* Add mockup playfield layouts for Playboy, PowerPlay and Matahari
    that includes input/output devices
* Add sound to first gen -35 games
* Various fixes based on schematics and measurements.

-TMS52xx: Fix a bug where if the FIFO contained exactly 0 bytes and a
SPEAK (VSM) command was issued, the command would instantly terminate
due to the FIFO being empty even though the chip wasn't in SPEAK
EXTERNAL mode. Fixes speech in TI Extended Basic [Lord Nightmare]

-wackygtr: added inputs and internal layout. [Sandro Ronco]

-Aristocrat MKV driver: Added the undumped PLD devices to Adonis
(parent) ROM_LOAD since is running in the same hardware than the
recent added clon. [Roberto Fresca]

-Aristocrat MKV driver: Added PCB ASCII layout and components
description. Added extra documentation and some notes. [Roberto
Fresca]

-Aristocrat MKV driver improvements [Roberto Fresca]
Added the undumped ST93C46 serial EEPROMS to Adonisa, and added a placeholder to
the parent set for the same devices, flagged as NO_DUMP. Added master
crystal via #define, and derived the CPU clock. Added some technical
notes.

-saa5050: graphics generator and character rounding [Nigel Barnes]
* implemented graphics generator, no longer read from fake ROM
* added character rounding
* improved control code handling
* added ROMs for variants saa5051, saa5053, saa5054, saa5055,
    saa5056, saa5057

-osborne1: add SCREEN-PAC support [Vas Crabb]
* implement 104-column and pseudo-80-column modes
* correct scrolling in 52-column mode according to schematics
* approximate scrolling in 104-column and pseudo-80-column modes
* rework Osborne 1 memory and I/O maps to match schematics

-bbc: floppy formats and rom updates [Nigel Barnes]
* improved ssd, dsd handling
* added Acorn DOS and CPM formats
* added known good rom configuration for acw443 (Cambridge
    Workstation)
* removed some BAD_DUMP flags

-bbc: various softlists  [Nigel Barnes]
* bbca_cass - new titles and additional info added
* bbcb_cass - new titles and additional info added
* bbcb_flop - preliminary list containing test cases
* bbcm_flop - preliminary list
* bbc_32016_flop - requires additional hardware emulated
* bbc_65c102_flop - requires additional hardware emulated
* bbc_80186_flop - requires additional hardware emulated
* bbc_arm_flop - requires additional hardware emulated
* bbc_z80_flop - requires additional hardware emulated
* pro128s_flop - all known available dumps

-bbc: fdc intrq/drq causes nmi [Nigel Barnes]

-HLSL changes [ImJezze]
* Unified HLSL render pipline for raster and vector graphics
* simplified draw call of render pass functions
* reduced number of used render targets from 7 to 4 (2 native and 2
    pre-scaled)
* made render pass functions (nearly) independent from each other
* unified render pipeline for raster and vector graphics, which means
    that all effects are now also available for vector graphics
    (except scan-lines)
* removed/replaced simple.fx by primary.fx
* removed CU_PHOSPHOR_IGNORE uniform, which was only used in phosphor
    pass function and is now directly set
* added CU_TARGET_DIMS uniform based on the current render target
* added CU_QUAD_DIMS uniform based on the current full screen polygon
    quad
* removed pre-scale knowledge from shaders
* fixed DX9 related half pixel offset in most shaders
* reduced shadow mask color bleeding
* fixed defocus strength with different pre-scales
* added slight noise to bloom effect to reduce the color banding of
    lower bloom levels
* fixed position of reflection effect when screen is rotated or
    flipped
* fixed roundness and size of rounded corners in any aspect ratio
* added distortion pass, which is applied after the bloom pass and
    moved curvature, vignetting, rounded corners and reflection effect
    to this pass
* fixed bloom stair-step artifacts when screen is curved
* added smooth border effect and option, its amount is limited by the
    amount of rounded corners
* added bloom overdrive effect and options, this effect allows to
    overdrive pure colors like red, green and blue to become more
    brighter
* merged vector and raster bloom options, use vector.ini or
    raster.ini to distinguish
* added raster.ini and lcd.ini to parse_standard_inis()
* added bounds() and screen_bounds() getter to layout_view
* added current_view() getter to render_target
* many other small changes and refactoring
* fixed vector intensity
* fixed vector flicker
* replace beam width by beam width min. and beam width max. width, this
  makes it possible to create a linear dynamic beam width by the amount
  of intensity of the beam
* added beam intensity weight, this adds an exponential factor to the
  dynamic beam width (values greater than 0 will push larger intensities
  more than smaller intensities)
* fixed ratio of "vector points" (zero-length lines)

-psxcd: Declaring ROM images for the CDROM controller MCU. [Felipe Sanches]

-Apollo changes: [Hans Ostermeyer]
* fixed the Apollo floppy disk emulation
* added the media option -node_id resp. -ni to set the node ID from a
    node ID rom image file
* fixed the unmapped ISA Bus access to return 0xff instead of 0x00
* removed excessive log entries from unmapped ISA Bus access
* fixed date (and some other issues) in mc146818 (new in MAME 0166)

-Fix for imds2 driver after i8271 modernization [F.Ulivi]

-namcos23: fix the polynew conversion [O. Galibert]

-namcos23: Go back to z-sorting [O. Galibert]

-deorphaned the software lists for cd32, 3do_m2 and pippin so that they get
parsed by the validity checker etc. [Shideravan]

-amstrad: added Draysoft Doubler expansion [Barry Rodewald]

-Changed the qotna set to run in a US-Export hardware.
Even when is NSW/ACT, the program seems to run in that hardware.
Added more documentation. [Roberto Fresca]

-apple2: fixed "The Mill" 6809 card so OS9 can boot. [robj, R. Belmont]

-Changed the vpoker set description to Videotronics Draw Poker,
since the game is "Draw Poker". Two companies sold it with
different name. Documented the legal issues and added links.
[Roberto Fresca]

-Update VMX/Altivec RGB implementation (fixes PowerPC) [Vas Crabb]

New machines added or promoted from NOT_WORKING status
------------------------------------------------------
Attack Pla Rail (Japan, AP1/VER.A) [Guru, R. Belmont]
Led Storm Rally 2011 (US) [Guru, David Haywood]
Player's Edge Plus (X002287P+XP000057) Pay the Aces NO Faces Bonus Poker  [BrianT]
Exidy Sorcerer II [Robbbert]
Unisonic Champion 2711 [David Viens]
SegaSonic Popcorn Shop (Rev B) [ShouTime, The Dumping Union - insert full credit list here]

New clones added or promoted from NOT_WORKING status
----------------------------------------------------
Final Fight (USA 900424) [Bonky0013]
Lightning Swords [System11, The Dumping Union]
Air Duel (World, M82) [system11, The Dumping Union]
Ken-Go (set 2) [caius]
Master Boy (Italian, PCB Rev A, set 2) [Any, The Dumping Union]
WEC Le Mans 24 (v1.26)  [Any, The Dumping Union]
Wonder Stick (set 2, censored)  [Any, The Dumping Union]
Sliver (set 2)  [Any, The Dumping Union]
Joe & Mac Returns (Japan, Version 1.2, 1994.06.06)  [rtw, The Dumping Union]
Led Storm Rally 2011 (World) [system11]
Player's Edge Plus (KE0004) Keno [Badbaud, BrianT]
Player's Edge Plus (KE1006) Keno [Badbaud, BrianT]
Player's Edge Plus (KE1013) Keno (set 2) [Badbaud, BrianT]
Player's Edge Plus (PP0042) 10's or Better (set 2) [Badbaud, BrianT]
Player's Edge Plus (PP0045) 10's or Better (Gambler Downtown Reno)  [Badbaud, BrianT]
Player's Edge Plus (PP0045) 10's or Better (Par-A-Dice Riverboat Casino)  [Badbaud, BrianT]
Player's Edge Plus (PP0045) 10's or Better (Annie Oakely's Central City)  [Badbaud, BrianT]
Player's Edge Plus (PP0055) Deuces Wild Poker (set 2, Skyline Casino)  [Badbaud, BrianT]
Player's Edge Plus (PP0158) 4 of a Kind Bonus Poker (set 2, Skyline Casino)  [Badbaud, BrianT]
Player's Edge Plus (PP0430) Deuces Joker Wild Poker [Badbaud, BrianT]
Player's Edge Plus (PP0459) Joker Poker [Badbaud, BrianT]
Player's Edge Plus (PP0515) Double Bonus Poker (set 4) [Badbaud, BrianT]
Player's Edge Plus (X000055P+XP000038) Deuces Wild Poker (Sunset Station Hotel-Casino)
  [Badbaud, BrianT]
Player's Edge Plus (X000426P+XP000038) Joker Poker [Badbaud, BrianT]
Player's Edge Plus (X002179P+XP000119) Double Bonus Poker [BrianT]
Player's Edge Plus (XM00006P+XMP00002) Multi-Poker (The Orleans)  [Badbaud, BrianT]

New machines marked as NOT_WORKING
----------------------------------
Micral 80-22G [Robbbert]
Data RD100 [Robbbert]
Proteus III [Robbbert]
Neo Print (Japan) (T2d) [Bonky0013]
Cuckoo (MV4104, Export) [Roberto Fresca]
Mine, Mine, Mine (Export) [Roberto Fresca]
Party Gras (MV4115/6, Export) [Roberto Fresca]
Penguin Pays (Export) [Roberto Fresca]
Wild Cougar (Export) [Roberto Fresca]
Boot Scootin' (Export, 92.767%) [Roberto Fresca]
Bumble Bugs (Export, 92.691%) [Roberto Fresca]
Cash Chameleon (Export) [Roberto Fresca]
Sub Hunter [Piero Andreini]
The Chariot Challenge (04J00714, NSW/ACT) [Roberto Fresca]
Eagle 1600 [SomeGuy]

New clones marked as NOT_WORKING
--------------------------------
Dolphin Treasure (Export) [Roberto Fresca]
Magic Mask (MV4115, Export, set 2) [Roberto Fresca]
Adonis (MV4124/1, Export) [Roberto Fresca]
Mega-CD with 32X (Japan, NTSC) [Shideravan]
Mega-CD with 32X (Europe, PAL) [Shideravan]
Adonis (0100751V, NSW/ACT) [Roberto Fresca]
Dolphin Treasure (Export) [Roberto Fresca]
Queen of the Nile (MV4091, NSW/ACT) [Roberto Fresca]

New WORKING software list additions
-----------------------------------
a2600.xml: Atari 2600 cartridges
- Stella's Stocking 2008 [The Dumping Union]
megadriv.xml:
- Putty Squad (prototype) [?]

(wiz)

2015-11-13 13:41:39 UTC MAIN commitmail json YAML

Remove unnecessary build dependency on perl.

>From Petar Bogdanovic on pkgsrc-users.

(wiz)

2015-11-13 12:14:04 UTC MAIN commitmail json YAML

Updated www/davical to 1.1.3.1

(hauke)

2015-11-13 12:13:13 UTC MAIN commitmail json YAML

Updating davical to 1.1.3.1
Updating MASTER_SITES

>From the ChangeLog:

2013-03-25  Christoph Anton Mitterer <mail@christoph.anton.mitterer.name>
        * In places where the CGI variable REMOTE_USER is read, support
          alternatively REDIRECT_REMOTE_USER, which is used by the Apache
          HTTPD Server instead, when a redirect was used.
        * Removed debian/README.Debian which did not contain any useful
          information.

2013-03-23  Christoph Anton Mitterer <mail@christoph.anton.mitterer.name>
        * Handle the content of the CGI AUTH_TYPE variable case-insensitively as
          defined by RFC 3875 Section 4.1.1.

2013-03-21  Christoph Anton Mitterer <mail@christoph.anton.mitterer.name>
        * Changed the pathnames of the debug files to be a bit more FHS
          compliant.

2013-03-20  Christoph Anton Mitterer <mail@christoph.anton.mitterer.name>
        * Changed the end-of-line encodings of all non-Windows-related and
          non-autogenerated text files to use UNIX LF (lots of them had mixed
          LF/CRLF).
        * HTML escape the remotely retrieved version string printed to the HTML
          in order to prevent and attacks (if this would have been possible at
          all in 12 characters).
        * Updated all addresses of the canonical git upstream repository and the
          issue tracker to the new ones.

2013-03-06  Andrew McMillan  <andrew@morphoss.com>
        * Fix capitalisation of 'plpgsql' & 'sql' for Postgres 9.2. (debbug #702403)

2013-02-16  Andrew McMillan  <andrew@morphoss.com>
        * Content-Type header should be 'charset' not 'encoding'.

2012-09-20  Andrew McMillan  <andrew@morphoss.com>
        * When we get here it is a Bad Request, not a Server Error.
        * Quick workaround for iOS6 supported-calendar-component-set issue.
          Adds a $c->default_calendar_components array of (VEVENT,VTODO,...)
        * Workaround client software with imperfect add-member implementations.

2012-09-10  Andrew McMillan  <andrew@morphoss.com>
        * Fix unassigned variable.
        * Avoid unassigned variable warning.
        * Fix UID handling.
        * Fix debugging to error log.

2012-08-09  Andrew McMillan  <andrew@morphoss.com>
        * Ensure test responses are displayed in their unprocessed form.
        * Some debugging messages.

2012-07-31  Andrew McMillan  <andrew@morphoss.com>
        * Replace deprecated split() with explode()

2012-05-28  Andrew McMillan  <andrew@morphoss.com>
        * First cut at iMIP implementation.  Still working on this.

2012-07-30  Andrew McMillan  <andrew@morphoss.com>
        * Fix SQL fieldname.

2012-07-29  Andrew McMillan  <andrew@morphoss.com>
        * Sometimes we want to retrieve the sync-token as a result of a change we just made.
          This allows a (default true) flag to indicate whether it's OK to use
          a previously cached value.
        * On Apple devices these can sometimes appear in the Apple namespace. Odd.
        * Let the VCalendar class handle how to get the UID from the calendar.

2012-07-25  Andrew McMillan  <andrew@morphoss.com>
        * Remove old redundant constructor.

2012-07-13  Andrew McMillan  <andrew@morphoss.com>
        * Add workaround for Apple's POST add-member trainwreck.
        * We might not have a $request calling this so use the object's path instead.
        * Testing for dead property XML which is a set of prop.
        * supported-calendar-component-set uses dead properties too...
        * Don't just return the first element in a dead property - there might be multiple!

(hauke)

2015-11-13 11:53:00 UTC MAIN commitmail json YAML

Updated devel/libuuid to 2.27.1

(wiz)

2015-11-13 11:52:50 UTC MAIN commitmail json YAML

Update libuuid to 2.27.1:

util-linux 2.27.1 Release Notes
===============================
...
libuuid:
  - fix buffer overflow with long paths  [Karel Zak]
...

(wiz)

2015-11-13 11:36:59 UTC MAIN commitmail json YAML

2015-11-13 11:36:44 UTC MAIN commitmail json YAML

Update gmp to 6.1.0:

Changes between GMP version 6.0.* and 6.1.0

  BUGS FIXED
  * The public function mpn_com is now correctly declared in gmp.h.

  * Healed possible failures of mpn_sec_sqr for non-cryptographic sizes for
    some obsolete CPUs.

  * The option --disable-assembly now disables all inlined asm.

  * Fixed bug affecting mini-gmp's bitwise functions mpz_setbit, mpz_clrbit,
    and mpz_combit.

  * Various problems related to precision for mpf have been fixed.

  * Fixed ABI incompatible stack alignment in calls from assembly code.

  * Fixed PIC bug in popcount affecting Intel processors using the 32-bit ABI.

  SPEEDUPS
  * Speedup for Intel Broadwell and Skylake though assembly code making use of
    new ADX instructions.

  * Square root is now faster when the remainder is not needed. Also the speed
    to compute the k-th root improved, for small sizes.

  * Improved arm64 support.

  FEATURES
  * New C++ functions gcd and lcm for mpz_class.

  * New public mpn functions mpn_divexact_1, mpn_zero_p, and mpn_cnd_swap.

  * New public mpq_cmp_z function, to efficiently compare rationals with
    integers.

  * Support for Darwin in all x86 code, thereby enabling fat builds on Darwin.

  * Support for more 32-bit arm processors.

  * Support for compilation with clang/llvm on more platforms.  Caution: GMP
    triggers mis-compilation bugs in clang for many platforms, such as arm, x86
    (32-bit and 64-bit), powerpc, mips.

  * Support for AVX-less modern x86 CPUs. (Such support might be missing either
    because the CPU vendor chose to disable AVX, or because the running kernel
    lacks AVX context switch support.)

  * Stack usage trimmed; we believe 512 KiB is now sufficient for any GMP
    call, irrespective of operand size.

  * Support for NetBSD under Xen; we switch off AVX unconditionally under
    NetBSD since a bug in NetBSD makes AVX fail under Xen.

  MISC
  * We now use manufacturers' code names for x86 CPUs, e.g., "haswell" instead
    of names derived from the commercial brands.

  * Small improvements and better coverage for the test suite.

  * The various FreeBSD problems listed for 6.0.0 affect this release too.

  * Tuned values for FFT multiplications are provided for larger number on
    many platforms.

(wiz)

2015-11-13 10:42:23 UTC MAIN commitmail json YAML

2015-11-12 21:12:12 UTC MAIN commitmail json YAML

Updated print/mupdf to 1.8nb1

(leot)

2015-11-12 21:11:31 UTC MAIN commitmail json YAML

Fix various installation and build issues.

o Add a lost hunk of patches/patch-ac in order to build and install "mupdf-x11"
  simply as "mupdf" (like previous mupdf releases)
o Threat glfw like any other thirdparty library (and avoid to accidently build
  "mupdf-gl")

Thanks to Thomas Klausner and Yorick Hardy for noticing that.

(leot)

2015-11-12 16:45:58 UTC MAIN commitmail json YAML

2015-11-12 16:41:40 UTC MAIN commitmail json YAML

Updated sysutils/rsyslog to 8.14.0

(fhajny)

2015-11-12 16:41:27 UTC MAIN commitmail json YAML

Update sysutils/rsyslog to 8.14.0.

Version 8.14.0 [v8-stable] 2015-11-03
- add property "rawmsg-after-pri"
- bugfix: potential misadresseing in imfile
  Could happen when wildcards were used.
- bugfix: re_extract RainerScript function did not work

(fhajny)

2015-11-12 16:39:01 UTC MAIN commitmail json YAML

Updated devel/py-urwid to 1.3.1

(wiz)

2015-11-12 16:38:45 UTC MAIN commitmail json YAML

Update py-urwid to 1.3.1:

Urwid 1.3.1
===========

2015-11-01

* Fix for screen not getting reset on exception regression
  (by Rian Hunter)

* AttrSpec objects are now comparable (by Random User)

* MonitoredList now has a clear method if list has a clear method
  (by neumond)

* Fix for BarGraph hlines sort order (by Heiko Noordhof)

* Fix for final output not appearing on exit with some terminals
  now that extra newline was removed (by Jared Winborne)

* Fix for a resizing bug in raw_display (by Esteban null)

(wiz)

2015-11-12 16:37:15 UTC MAIN commitmail json YAML

Updated security/py-cryptography to 1.1

(wiz)

2015-11-12 16:37:00 UTC MAIN commitmail json YAML

Update py-cryptography to 1.1:

1.1 - 2015-10-28
~~~~~~~~~~~~~~~~

* Added support for Elliptic Curve Diffie-Hellman with
  :class:`~cryptography.hazmat.primitives.asymmetric.ec.ECDH`.
* Added :class:`~cryptography.hazmat.primitives.kdf.x963kdf.X963KDF`.
* Added support for parsing certificate revocation lists (CRLs) using
  :func:`~cryptography.x509.load_pem_x509_crl` and
  :func:`~cryptography.x509.load_der_x509_crl`.
* Add support for AES key wrapping with
  :func:`~cryptography.hazmat.primitives.keywrap.aes_key_wrap` and
  :func:`~cryptography.hazmat.primitives.keywrap.aes_key_unwrap`.
* Added a ``__hash__`` method to :class:`~cryptography.x509.Name`.
* Add support for encoding and decoding elliptic curve points to a byte string
  form using
  :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicNumbers.encode_point`
  and
  :meth:`~cryptography.hazmat.primitives.asymmetric.ec.EllipticCurvePublicNumbers.from_encoded_point`.
* Added :meth:`~cryptography.x509.Extensions.get_extension_for_class`.
* :class:`~cryptography.x509.CertificatePolicies` are now supported in the
  :class:`~cryptography.x509.CertificateBuilder`.
* ``countryName`` is now encoded as a ``PrintableString`` when creating subject
  and issuer distinguished names with the Certificate and CSR builder classes.

(wiz)

2015-11-12 16:35:28 UTC MAIN commitmail json YAML

Remove obsolete patch.

(morr)

2015-11-12 16:34:57 UTC MAIN commitmail json YAML

Updated devel/py-setuptools to 18.5

(wiz)

2015-11-12 16:34:42 UTC MAIN commitmail json YAML

Update py-setuptools to 18.5:

----
18.5
----

* In preparation for dropping support for Python 3.2, a warning is
  now logged when pkg_resources is imported on Python 3.2 or earlier
  Python 3 versions.
* `Add support for python_platform_implementation environment marker
  <https://github.com/jaraco/setuptools/pull/28>`_.
* `Fix dictionary mutation during iteration
  <https://github.com/jaraco/setuptools/pull/29>`_.

(wiz)

2015-11-12 16:32:29 UTC MAIN commitmail json YAML

Update to newest version.

ChangeLog (only stable versions):

2015/11/03 : 1.6.2
    - BUILD: ssl: fix build error introduced in commit 7969a3 with OpenSSL < 1.0.0
    - DOC: fix a typo for a "deviceatlas" keyword
    - FIX: small typo in an example using the "Referer" header
    - BUG/MEDIUM: config: count memory limits on 64 bits, not 32
    - BUG/MAJOR: dns: first DNS response packet not matching queried hostname may lead to a loop
    - BUG/MINOR: dns: unable to parse CNAMEs response
    - BUG/MINOR: examples/haproxy.init: missing brace in quiet_check()
    - DOC: deviceatlas: more example use cases.
    - BUG/BUILD: replace haproxy-systemd-wrapper with $(EXTRA) in install-bin.
    - BUG/MAJOR: http: don't requeue an idle connection that is already queued
    - DOC: typo on capture.res.hdr and capture.req.hdr
    - BUG/MINOR: dns: check for duplicate nameserver id in a resolvers section was missing
    - CLEANUP: use direction names in place of numeric values
    - BUG/MEDIUM: lua: sample fetches based on response doesn't work

2015/10/20 : 1.6.1
    - DOC: specify that stats socket doc (section 9.2) is in management
    - BUILD: install only relevant and existing documentation
    - CLEANUP: don't ignore debian/ directory if present
    - BUG/MINOR: dns: parsing error of some DNS response
    - BUG/MEDIUM: namespaces: don't fail if no namespace is used
    - BUG/MAJOR: ssl: free the generated SSL_CTX if the LRU cache is disabled
    - MEDIUM: dns: Don't use the ANY query type

2015/10/13 : 1.6.0
    - BUG/MINOR: Handle interactive mode in cli handler
    - DOC: global section missing parameters
    - DOC: backend section missing parameters
    - DOC: stats paramaters available in frontend
    - MINOR: lru: do not allocate useless memory in lru64_lookup
    - BUG/MINOR: http: Add OPTIONS in supported http methods (found by find_http_meth)
    - BUG/MINOR: ssl: fix management of the cache where forged certificates are stored
    - MINOR: ssl: Release Servers SSL context when HAProxy is shut down
    - MINOR: ssl: Read the file used to generate certificates in any order
    - MINOR: ssl: Add support for EC for the CA used to sign generated certificates
    - MINOR: ssl: Add callbacks to set DH/ECDH params for generated certificates
    - BUG/MEDIUM: logs: fix time zone offset format in RFC5424
    - BUILD: Fix the build on OSX (htonll/ntohll)
    - BUILD: enable build on Linux/s390x
    - BUG/MEDIUM: lua: direction test failed
    - MINOR: lua: fix a spelling error in some error messages
    - CLEANUP: cli: ensure we can never double-free error messages
    - BUG/MEDIUM: lua: force server-close mode on Lua services
    - MEDIUM: init: support more command line arguments after pid list
    - MEDIUM: init: support a list of files on the command line
    - MINOR: debug: enable memory poisonning to use byte 0
    - BUILD: ssl: fix build error introduced by recent commit
    - BUG/MINOR: config: make the stats socket pass the correct proxy to the parsers
    - MEDIUM: server: implement TCP_USER_TIMEOUT on the server
    - DOC: mention the "namespace" options for bind and server lines
    - DOC: add the "management" documentation
    - DOC: move the stats socket documentation from config to management
    - MINOR: examples: update haproxy.spec to mention new docs
    - DOC: mention management.txt in README
    - DOC: remove haproxy-{en,fr}.txt
    - BUILD: properly report when USE_ZLIB and USE_SLZ are used together
    - MINOR: init: report use of libslz instead of "no compression"
    - CLEANUP: examples: remove some obsolete and confusing files
    - CLEANUP: examples: remove obsolete configuration file samples
    - CLEANUP: examples: fix the example file content-sw-sample.cfg
    - CLEANUP: examples: update sample file option-http_proxy.cfg
    - CLEANUP: examples: update sample file ssl.cfg
    - CLEANUP: tests: move a test file from examples/ to tests/
    - CLEANUP: examples: shut up warnings in transparent proxy example
    - CLEANUP: tests: removed completely obsolete test files
    - DOC: update ROADMAP to remove what was done in 1.6
    - BUG/MEDIUM: pattern: fixup use_after_free in the pat_ref_delete_by_id

(morr)

2015-11-12 16:30:48 UTC MAIN commitmail json YAML

Updated net/p5-Net-DNS to 1.03

(wiz)

2015-11-12 16:30:36 UTC MAIN commitmail json YAML

Update p5-Net-DNS to 1.03:

**** 1.03 November 6, 2015

Fix rt.cpan.org #107897

t/10-recurse.t freezes, never completes

Fix rt.cpan.org #101978

Update Net::DNS to use IO::Socket::IP

Fix rt.cpan.org #84375

Timeout doesn't work with bgsend/bgread

Fix rt.cpan.org #47050

persistent sockets for Resolver::bg(send|read|isready)

Fix rt.cpan.org #15515

bgsend on TCP

(wiz)

2015-11-12 16:26:06 UTC MAIN commitmail json YAML

Updated textproc/iso-codes to 3.63

(wiz)

2015-11-12 16:25:51 UTC MAIN commitmail json YAML

Update iso-codes to 3.63:

iso-codes 3.63
--------------
Dr. Tobias Quathamer <toddy@debian.org>
Sun, 1 Nov 2015

  [ ISO 639 translations ]
  * Ukrainian by Yuri Chornoivan (TP)

  [ ISO 639-3 translations ]
  * Ukrainian by Yuri Chornoivan (TP)

(wiz)

2015-11-12 16:23:24 UTC MAIN commitmail json YAML

Updated x11/xf86-video-ati to 7.6.1

(wiz)

2015-11-12 16:23:09 UTC MAIN commitmail json YAML

Update xf86-video-ati to 7.6.1:

7.6.1:

This is a brown paper bag release fixing a double-free bug in the 7.6.0
release.

I could swear I'd tested this appropriately yesterday, but apparently
not. :(

Michel Dè¾°nzer (3):
      Post 7.6.0 release version bump
      Remove duplicate free(output_ids) call
      Set version for 7.6.1 release

The xf86-video-ati 7.6.0 release supports xserver versions 1.8-1.18.

New features in this release:

* DRI3 and Present extension support, allowing more efficient and secure
  OpenGL compositing
* Option "TearFree" [0] to eliminate tearing (currently only effective for
  non-rotated outputs)
* Option "ShadowPrimary" [0] which may deliver better performance for some
  2D use cases, at the potential expense of other use cases (only available
  with glamor)
* DisplayPort 1.2 MST support
* Implemented support for Xorg -background none with glamor and fixed it to
  work better with EXA
* The contents of newly allocated buffers are always initialized before
  scanout, reducing intermittent artifacts

[0] Enabling Option "TearFree" or Option "ShadowPrimary" currently disables
    DRI page flipping.

Plus support for a few more Bonaire and Oland GPUs, and lots of other small
improvements and fixes. Thanks to everybody who contributed to this
release!

Adam Jackson (1):
      Remove dead accelDFS flag

Alex Deucher (3):
      radeon: bump version post release
      add new bonaire pci id
      add new OLAND pci id

Dave Airlie (6):
      radeon: stop caching mode resources
      radeon: move output name creation to its own function
      radeon: add support for DP 1.2 display hotplug (v2)
      radeon: adopt for new X server dirty tracking APIs.
      radeon: cleanup the entity rec
      radeon: move radeon_pixmap forward declaration into other block

David Heidelberger (2):
      radeon/vdpau: don't report VDPAU for < r300
      Handle tiling in radeon_set_shared_pixmap_backing

Emil Velikov (1):
      Do not link radeon_drv.so against libpciaccess

Jerome Glisse (2):
      Avoid leaking memory on output.
      Proper leak fix, previous leak fix was bogus.

Mario Kleiner (6):
      present: Move check for async flips
      present: Fix present notify timestamps and counts.
      Allow/Fix use of multiple ZaphodHead outputs per x-screen. (v2)
      Don't set TILE_SPLIT flags if surface.tile_split == 0.
      Fix inconsistent default eg_tile_split in evergreen_accel.c
      Make selection between DRI2 and DRI3 consistent with other drivers. (v2)

Michel Dè¾°nzer (78):
      Remove duplicate OPTION_PAGE_FLIP entry
      PRIME: Don't advertise offload capabilities when acceleration is disabled
      Prefer drmModeSetCursor2 over drmModeSetCursor
      Require at least xserver 1.8
      Move xorg_list backwards compatibility to new radeon_list.h header
      Add DRM event queue helpers v2
      DRI2: Simplify blit fallback handling for scheduled swaps
      DRI2: Remove superfluous assignments to *_info->frame
      DRI2: Move radeon_dri2_flip_event_handler
      DRI2: Use helper functions for DRM event queue management v3
      DRI2: Split out helper for getting UST and MSC of a specific CRTC
      Move #include "radeon_glamor.h" from radeon.h to where it's needed
      Fold radeon_glamor_flush into radeon_cs_flush_indirect
      Add support for SYNC extension fences v2
      Add support for the Present extension v2
      Add DRI3 support v2
      Simplify includes in radeon_{dri3,present}.c
      Add xorg_list_for_each_entry_safe fallback in radeon_list.h
      Initialize boolean variable before calling xf86GetOptValBool
      DRI3: Use open hook instead of open_client
      Always include misync.h before other misync headers
      glamor: Add glamor_fd_from_pixmap define for standalone glamor tree
      dri3: Use screen->CreatePixmap instead of fbCreatePixmap directly
      EXA: Return NULL from radeon_get_pixmap_bo if there is no driver private
      configure.ac: Check for misyncshm.h again
      Adapt radeon_sync.c for misyncshm.h vs misync.h as well
      Make radeon_do_pageflip take a BO handle directly
      Present: Add radeon_present_get_pixmap_handle helper
      glamor: Avoid generating GEM flink names for BOs shared via DRI3 v2
      glamor: Handle GLAMOR_* flags removed from xserver
      Increase robustness against DRM page flip ioctl failures v3
      Simplify radeon_do_pageflip() error handling slightly more
      Move radeon_drm_handler/abort_proc fields to drmmode_flipdata_rec
      Move get_pixmap_handle helper to radeon_bo_helper.c
      DRI2: Use radeon_get_pixmap_handle
      Only enable SYNC extension fences and the Present extension along with DRI3
      Add radeon_get_pixmap_tiling_flags helper
      present: Don't flip between BOs with different tiling parameters
      Rename scanout_pixmap_x field to prime_pixmap_x
      Split out struct drmmode_scanout for rotation shadow buffer information
      Add RADEON_CREATE_PIXMAP_SCANOUT flag
      glamor: Remove unused function radeon_glamor_pixmap_is_offscreen
      glamor: Add radeon_pixmap parameter to radeon_glamor_create_textured_pixmap
      glamor: Add wrappers for the X server rendering hooks
      glamor: Add Option "ShadowPrimary" v2
      glamor: Remove the stride member of struct radeon_pixmap
      Add Option "TearFree" v4
      DRI2: Clear old->devPrivate.ptr in fixup_glamor
      Only copy fbcon BO contents if bgNoneRoot is TRUE
      Defer initial drmmode_copy_fb call until root window creation
      Defer initial modeset until the first BlockHandler invocation
      Update scanout pixmap contents before setting a mode with it
      Make drmmode_copy_fb() work with glamor as well
      On screen resize, clear the new buffer before displaying it
      Don't call radeon_get_pixmap_private() when using EXA
      Skip disabled CRTCs in drmmode_set_desired_modes() even if set_hw == FALSE
      glamor: Deal with glamor_glyphs_init being removed from xserver
      Replace SyncFence typedef with declaration of struct _SyncFence
      present: Remove get_drmmode_crtc helper
      glamor: Only wait for GPU writes in radeon_glamor_prepare_access_cpu_ro
      DRI2: Fix handling of drmmode_crtc_get_ust_msc return code
      Don't attempt a DRI2/Present page flip while the other one is flipping
      Skip disabled CRTCs in radeon_scanout_(do_)update
      present: Fall back to modeset for unflip operation
      present: Look at all CRTCs to determine if we can flip
      present: Handle DPMS off in radeon_present_get_ust_msc
      Remove unused local variable pRADEONEnt
      glamor: Move declaration of struct radeon_pixmap out of #if/#else blocks
      Only call drmmode_copy_fb (at most) once on server startup
      Wait for scanout BO initialization to finish before setting mode
      DRI2: Don't ignore rotated CRTCs in amdgpu_dri2_drawable_crtc
      DRI2: Keep MSC monotonic when moving window between CRTCs
      Only align screen / scanout pixmap height where necessary
      Call xf86CrtcRotate from initial drmmode_set_desired_modes call
      Don't advertise rotation support without hardware acceleration v2
      Eliminate redundant data parameter from drmmode_crtc_scanout_create
      Properly handle drmModeAddFB failure in drmmode_crtc_scanout_allocate
      Bump version for 7.6.0 release

Piotr Redlewski (2):
      Disable CRTCs when disabling the outputs
      Do not try to enable already enabled CRTCs in DPMS hook

Rolf Eike Beer (1):
      radeon: remove unneeded inclusion of sarea.h

Stephen Chandler Paul (1):
      Handle failures in setting a CRTC to a DRM mode properly

Tom St Denis (5):
      dri2: Avoid calculation with undefined msc value
      Simplify pick best crtc to fold two loops into one
      Clean up allocation in RADEONInitVideo()
      Simplify drmmode_set_mode_major() and avoid leaking memory.
      Clean up radeon_dri2_create_buffer2()

(wiz)

2015-11-12 16:14:21 UTC MAIN commitmail json YAML

Updated x11/xf86-video-rendition to 4.2.6

(wiz)

2015-11-12 16:14:06 UTC MAIN commitmail json YAML

Update xf86-video-rendition to 4.2.6:

Just a few accumulated build fixes.

Adam Jackson (4):
      Remove mibstore.h
      Fix build against xserver 1.17
      Remove dependency on xf86PciInfo.h
      rendition 4.2.6

(wiz)

2015-11-12 16:12:33 UTC MAIN commitmail json YAML

Updated graphics/png to 1.6.19

(wiz)

2015-11-12 16:12:19 UTC MAIN commitmail json YAML

Update png to 1.6.19:

Libpng 1.6.19 - November 12, 2015
Changes since the last public release (1.6.18):
  Updated obsolete information about the simplified API macros in the
    manual pages (Bug report by Arc Riley).
  Avoid potentially dereferencing NULL info_ptr in png_info_init_3().
  Rearranged png.h to put the major sections in the same order as
    in libpng17.
  Eliminated unused PNG_COST_SHIFT, PNG_WEIGHT_SHIFT, PNG_COST_FACTOR, and
    PNG_WEIGHT_FACTOR macros.
  Suppressed some warnings from the Borland C++ 5.5.1/5.82 compiler
    (Bug report by Viktor Szakats).  Several warnings remain and are
    unavoidable, where we test for overflow.
  Fixed potential leak of png_pixels in contrib/pngminus/pnm2png.c
  Fixed uninitialized variable in contrib/gregbook/rpng2-x.c
  Moved config.h.in~ from the "libpng_autotools_files" list to the
    "libpng_autotools_extra" list in autogen.sh because it was causing a
    false positive for missing files (bug report by Robert C. Seacord).
  Removed unreachable "break" statements in png.c, pngread.c, and pngrtran.c
    to suppress clang warnings (Bug report by Viktor Szakats).
  Fixed some bad links in the man page.
  Changed "n bit" to "n-bit" in comments.
  Added signed/unsigned 16-bit safety net. This removes the dubious
    0x8000 flag definitions on 16-bit systems. They aren't supported
    yet the defs *probably* work, however it seems much safer to do this
    and be advised if anyone, contrary to advice, is building libpng 1.6
    on a 16-bit system. It also adds back various switch default clauses
    for GCC; GCC errors out if they are not present (with an appropriately
    high level of warnings).
  Safely convert num_bytes to a png_byte in png_set_sig_bytes() (Robert
    Seacord).
  Fixed the recently reported 1's complement security issue by replacing
    the value that is illegal in the PNG spec, in both signed and unsigned
    values, with 0. Illegal unsigned values (anything greater than or equal
    to  0x80000000) can still pass through, but since these are not illegal
    in ANSI-C (unlike 0x80000000 in the signed case) the checking that
    occurs later can catch them (John Bowler).
  Fixed png_save_int_32 when int is not 2's complement (John Bowler).
  Updated libpng16 with all the recent test changes from libpng17,
    including changes to pngvalid.c to ensure that the original,
    distributed, version of contrib/visupng/cexcept.h can be used
    (John Bowler).
  pngvalid contains the correction to the use of SAVE/STORE_
    UNKNOWN_CHUNKS; a bug revealed by changes in libpng 1.7. More
    tests contain the --strict option to detect warnings and the
    pngvalid-standard test has been corrected so that it does not
    turn on progressive-read. There is a separate test which does
    that. (John Bowler)
  Also made some signed/unsigned fixes.
  Make pngstest error limits version specific. Splitting the machine
    generated error structs out to a file allows the values to be updated
    without changing pngstest.c itself. Since libpng 1.6 and 1.7 have
    slightly different error limits this simplifies maintenance. The
    makepngs.sh script has also been updated to more accurately reflect
    current problems in libpng 1.7 (John Bowler).
  Incorporated new test PNG files into make check.  tests/pngstest-*
    are changed so that the new test files are divided into 8 groups by
    gamma and alpha channel.  These tests have considerably better code
    and pixel-value coverage than contrib/pngsuite; however,coverage is
    still incomplete (John Bowler).
  Removed the '--strict' in 1.6 because of the double-gamma-correction
    warning, updated pngstest-errors.h for the errors detected with the
    new contrib/testspngs PNG test files (John Bowler).
  Worked around rgb-to-gray issues in libpng 1.6.  The previous
    attempts to ignore the errors in the code aren't quite enough to
    deal with the 'channel selection' encoding added to libpng 1.7; abort.
  Fixed 'pow' macros in pngvalid.c. It is legal for 'pow' to be a
    macro, therefore the argument list cannot contain preprocessing
    directives.  Make sure pow is a function where this happens. This is
    a minimal safe fix, the issue only arises in non-performance-critical
    code (bug report by Curtis Leach, fix by John Bowler).
  Added sPLT support to pngtest.c
  Prevent setting or writing over-length PLTE chunk (Cosmin Truta).
  Silently truncate over-length PLTE chunk while reading.
  Libpng incorrectly calculated the output rowbytes when the application
    decreased either the number of channels or the bit depth (or both) in
    a user transform.  This was safe; libpng overallocated buffer space
  (potentially by quite a lot; up to 4 times the amount required) but,
  from 1.5.4 on, resulted in a png_error (John Bowler).
  Fixed some inconsequential cut-and-paste typos in
png_set_cHRM_XYZ_fixed().
  Clarified COPYRIGHT information to state explicitly that versions
    are derived from previous versions.
  Removed much of the long list of previous versions from png.h and
    libpng.3.

(wiz)

2015-11-12 15:37:20 UTC MAIN commitmail json YAML

Updated databases/elasticsearch to 2.0.0

(fhajny)

2015-11-12 15:37:08 UTC MAIN commitmail json YAML

Update databases/elasticsearch to 2.0.0.

Breaking changes
- Remove option to configure custom config file via CONF_FILE
  or -Des.default.conf

Deprecations
- Deprecate index.analysis.analyzer.default_index in favor
  of index.analysis.analyzer.default.

Enhancements
- Make PerThreadIDAndVersionLookup per-segment
- TransportNodesAction shouldn't hold on to cluster state
- Packaging: change permissions/ownership of config dir
- Release: Fix package repo path to only consist of major version
- Plugin Cloud GCE: Add _gce_ network host setting
- Check "plugin already installed" before jar hell check.
- Plugin script to set proper plugin bin dir attributes
- Plugin script to set proper plugin config dir attributes

Bug fixes
- CRUD: Send response for update request when it timed out
- Engine: Never wrap searcher for internal engine operations
- Fielddata: Add GeoPoint in StreamInput/StreamOutput
- Properly bind ClassSet extensions as singletons
- Streamline top level reader close listeners and forbid
  general usage
- Settings in log config file should not overwrite custom parameters
- Plugin cli tool should not create empty log files
- Mappings: Enforce metadata fields are not passed in documents
- Plugin Cloud AWS: Discovery-ec2 plugin should check discovery.type
- Parse Java system properties in plugin.bat
- PluginManager: Dont leave leftover files on unsuccessful installs
- REST: Restore support for escaped '/' as part of document id
- REST: Add missing REST spec for detect_noop
- REST: Expose nodes operation timeout in REST API
- REST: Ensure XContent is consistent across platforms
- Shadow Replicas: Don't pull translog from shadow engine
- Snapshot restore operations throttle more than specified

Upgrades
- Upgrade Netty to 3.10.5.final

NOT CLASSIFIED
- [DOCS] terminate_after is not experimental anymore
- Remove unused clear(IndexReader) method from IndexFieldData
- changed ben to been
- move render search template methods to cluster admin client
- Docs: Document ES_CLASSPATH removal in breaking changes
- Rewrite native script documentation
- Docs: Update repository docs with new major version structure
- Add a note about shard failure in the api

(fhajny)

2015-11-12 15:23:38 UTC MAIN commitmail json YAML

Updated www/apache22 to 2.2.31nb1

(prlw1)

2015-11-12 15:21:51 UTC MAIN commitmail json YAML

2015-11-12 08:54:52 UTC MAIN commitmail json YAML

Allow accessing the extended configuration space. Tested on amd64-current
(support the extended configuration space) and i386 netbsd-7(not support).

(msaitoh)

2015-11-11 17:37:45 UTC MAIN commitmail json YAML

Updated multimedia/mpv to 0.13.0

(leot)

2015-11-11 17:37:18 UTC MAIN commitmail json YAML

Update multimedia/mpv to 0.13.0.

Changes:
NOTE: The previous release changed the default format for youtube-dl and
removed some workarounds related to MPEG DASH support. However, the required
changes to FFmpeg code (FFmpeg/FFmpeg@4ab5666)
are not in any FFmpeg release yet (as of 2015-11-10), so for now, playing DASH
streams requires using FFmpeg git master. You can work around this by using the
--ytdl-format=best option.

Features
--------
New
  * SVG version of the icon (with symbolic counterpart)
  * stream_libarchive: add multivolume support
  * vo_opengl: add prescaling framework along with Super-xBR and NNEDI3
    (currently very slow) prescalers (issue #2230)

Options and Commands
--------------------
Added
  * command: add mistimed-frame-count property
  * vo_opengl: add vsync-fences option

Changed
  * command: make display-fps property writable
  * options: enable mpeg2 hw decoding by default if hw decoding is requested
  * vo_opengl: rename fancy-downscaling to correct-downscaling
  * vo_opengl: correct-downscaling: enable also for anamorphic clips
  * vo_opengl: rename "drm_egl" to "drm-egl"
  * vo_opengl: disable drm-egl autopickup
  * vo_opengl: never load vaapi GLX interop by default

Fixes and Minor Enhancements
----------------------------
  * ao_alsa: fix 7.1 over HDMI
  * audio: do not require full audio chain reinit for speed changes
  * rpi: add support for codecs other than h264 (mpeg2 for now)
  * vd_lavc: make hwdec fallback more tolerant
  * video: fix playback of pal8
  * video: multiple display-sync fixes
  * vo: fix no-audio mode with interpolation enabled/display-sync disabled
  * vo_direct3d: fix operation (issue #2434)
  * vo_drm: handle possible errors from sigaction
  * vo_drm: show osd in audio only mode
  * vo_opengl: do not attempt to cache frames in FBO in dumb-mode (issue #2432)
  * vo_opengl: win32: always request MMCSS for DWM
  * vo_opengl: win32: try to enable DwmFlush by default
  * vo_vdpau: check VDP_RGBA_FORMAT_A8 support
  * win32: request MMCSS "Playback" profile

(leot)

2015-11-11 17:09:06 UTC MAIN commitmail json YAML

Updated print/mupdf to 1.8

(leot)

2015-11-11 17:08:25 UTC MAIN commitmail json YAML

Update print/mupdf to 1.8.

pkgsrc changes:
* Bump BUILDLINK_API_DEPENDS (spotted and tested via the only print/mupdf
  consumer wip/zathura-mupdf)
* OpenGL-based desktop viewer is still not enabled by default neither upstream
  nor in pkgsrc

Changes:
List of changes in MuPDF 1.8
* Headline changes:
* New OpenGL-based barebones desktop viewer.
* New URW fonts with greek and cyrillic.
* 64-bit file support.
* Ghostscript proofing mode (source only; not in shipped binaries).
* EPUB improvements:
* User style sheets.
* GIF images (also for CBZ).
* Table of contents.
* CJK text.
* Page margins.
* Many bug fixes.
* Bug fixes:
* Updated FreeType to version 2.6.1.
* Various font substitution bug fixes.
* Fix setjmp/longjmp behaviour which could cause optimizing compilers to misbehave.

(leot)

2015-11-11 16:47:38 UTC MAIN commitmail json YAML

Updated net/youtube-dl to 20151110

(leot)

2015-11-11 16:47:14 UTC MAIN commitmail json YAML

Update net/youtube-dl to 20151110.

Changes:
o Fix and improvements to various extractors (most user visible change is the
  support for new base.js html5 youtube player).

(leot)

2015-11-11 16:20:42 UTC MAIN commitmail json YAML

Avoid possible problems if HOST environment variable is defined.

Fixes PR pkg/50418 submitted by Hauke Fath.

(leot)

2015-11-11 16:14:17 UTC MAIN commitmail json YAML

2015-11-11 16:13:44 UTC MAIN commitmail json YAML

2015-11-11 16:13:12 UTC MAIN commitmail json YAML

Update x11/dmenu to 4.6.

Changes:
Features:
  - Now uses Xft for font rendering by default with fallback-font
support, this also allows anti-aliased fonts and such.
    The font string matching will be different, check out
http://www.freedesktop.org/software/fontconfig/fontconfig-user.html
for the font string syntax, huge thanks to Eric Pruitt and the other
people who worked on the dmenu-xft patch (previously on the wiki).
  - Uses a shared libdraw codebase (also used for dwm right now).
  - Merged wiki patches:
    - monarg: allow to specify monitor number to start on with -m (Martin K端hl).
    - multisel: allow selecting multiple items (ctrl-enter) (Evan Gates).
    - xft: see above.
  - Accepted vi'is exit approach ^[ (Arkaduisz).
  - Add ^G escape keybinding (Karl F).
  - Separate config options to config.h (Alex Sedov).
  - Support keybind C-S-[jm] (Connor Lane Smith).
  - stest: get rid of getopt, use suckless arg.h (Hiltjo).
  - stest: support inverse matching (flag -v) (Martin K端hl).

Notable fixes:
  - Buffer nul termination on tab (Alex Sedov's).
  - Crash (pointer dereference) with ctrl-enter as input (Hiltjo).
  - Ignore prompt if it is empty in addition to NULL (Moritz Wilhelmy).
  - Incorrect ordering of match results (Davide Del Zompo).
  - Input text matching (Quentin Rameau).
  - Paste from clipboard (ctrl+shift+y) (Joshua Lloret).
  - Replace deprecated usleep() with nanosleep() (Quentin Rameau).
  - dmenu_run: Split cache logic to dmenu_path again (Quentin Glidic).
  - multimon: always spawn client on first monitor if specified with
-m 0 (Hiltjo).
  - reset ControlMask for C-j and C-m (Hiltjo).

Build improvements:
  - config.mk: add $FREETYPELIBS and $FREETYPEINC, simpler to override
(ports and *BSDs).
  - config.mk: improve feature test check (k0ga, stateless).
  - config.mk: use -std=c99 by default.

(leot)

2015-11-11 16:12:10 UTC MAIN commitmail json YAML

Update wm/dwm to 6.1.

Changes:
Features:
  - Now uses Xft for font rendering by default with fallback-font
support, this also allows anti-aliased fonts and such.
    The font string matching will be different, check out
http://www.freedesktop.org/software/fontconfig/fontconfig-user.html
for the font string syntax, huge thanks to Eric Pruitt and the other
people who worked on the dwm-xft patch (previously on the wiki).
  - Uses a shared libdraw codebase (also used for dmenu right now).
  - _NET_ACTIVE_WINDOW improvements (Andreas Amanns).
  - _NET_CLIENT_LIST support (Andreas Amanns).
  - Spawn dmenu on the selected monitor in dwm (dmenu -m option).
  - Use st as default terminal from now on (used to be xterm).

Notable fixes:
  - Barwin memory leak fix (Eckehard Berns).
  - Drw_text width check fix (Jochen).
  - Setfullscreen: don't process the property twice (Quentin Rameau,
Markus Teich).
  - Smoother resizing of floating windows (capped at 60fps), (Hiltjo).
  - Unfocus on slow sloppy monitor focus (Connor Lane Smith).

Build improvements:
  - config.mk: add $FREETYPELIBS and $FREETYPEINC, simpler to override
(ports and *BSDs).

(leot)

2015-11-11 15:02:33 UTC MAIN commitmail json YAML

2015-11-11 14:07:45 UTC MAIN commitmail json YAML

Updated multimedia/adobe-flash-plugin11 to 11.2.202.548

(tsutsui)

2015-11-11 14:06:05 UTC MAIN commitmail json YAML

Update adobe-flash-plugin11 to 11.2.202.548.

Upstream announcement:

https://helpx.adobe.com/security/products/flash-player/apsb15-28.html

Adobe Security Bulletin

Security updates available for Adobe Flash Player

Release date: November 10, 2015

Vulnerability identifier: APSB15-28

CVE number: CVE-2015-7651, CVE-2015-7652, CVE-2015-7653, CVE-2015-7654,
CVE-2015-7655, CVE-2015-7656, CVE-2015-7657, CVE-2015-7658, CVE-2015-7659,
CVE-2015-7660, CVE-2015-7661, CVE-2015-7662, CVE-2015-7663, CVE-2015-8042,
CVE-2015-8043, CVE-2015-8044, CVE-2015-8046

Platform: All Platforms

(tsutsui)

2015-11-11 13:55:25 UTC MAIN commitmail json YAML

Updated graphics/MesaLib to 11.0.5

(tnn)

2015-11-11 13:54:09 UTC MAIN commitmail json YAML

Update to mesa-11.0.5.

"With this release we have some driver patches for i965 and nouveau, a couple
of llvm 3.7 related fixes and a some bugfixes in the VA state-tracker.
Additionally we have a few new PCI ids for i965 and radeonsi."

(tnn)

2015-11-11 13:03:36 UTC MAIN commitmail json YAML

+ gmp-6.1.0, iso-codes-3.63, libuuid-2.27.1, py-html2text-2015.11.4,
  py-iso8601-0.1.11, py-markdown-2.6.4, py-setuptools-18.5,
  py-urwid-1.3.1, talloc-2.1.5.

(wiz)

2015-11-11 12:47:37 UTC MAIN commitmail json YAML

Updated archivers/unzip to 6.0nb5

(wiz)

2015-11-11 12:47:27 UTC MAIN commitmail json YAML

Add patches to fix CVE-2015-7696, CVE-2015-7697, and an integer underflow.

>From Debian.

Bump PKGREVISION.

(wiz)

2015-11-11 12:40:03 UTC MAIN commitmail json YAML

2015-11-11 12:02:31 UTC MAIN commitmail json YAML

+ glpk-4.57, modular-xorg-server-1.18.0, p5-Net-DNS-1.03,
  ruby-jekyll-3.0.0, stow-2.2.2.

(wiz)

2015-11-11 11:59:40 UTC MAIN commitmail json YAML

Updated devel/py-hg-git to 0.8.3

(wiz)

2015-11-11 11:59:28 UTC MAIN commitmail json YAML

Update py-hg-git to 0.8.3.

Compatible with latest mercurial (3.6).

Change summary not found, commit list at
https://bitbucket.org/durin42/hg-git/commits/tag/0.8.3

(wiz)

2015-11-11 11:56:21 UTC MAIN commitmail json YAML

py-dulwich is python-3.x compatible now.

(wiz)