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

2024-05-13 10:06:01 UTC Now

2017-04-17 07:28:31 UTC MAIN commitmail json YAML

Updated libdrm to 2.4.80.

Christian Gmeiner (1):
      configure.ac: bump version for release

Eric Engestrom (1):
      intel: remove dead code

Philipp Zabel (2):
      etnaviv: sync uapi header
      etnaviv: add fence fd support

Tobias Jakobi (1):
      exynos: add C++ support to exynos_drmif header

(wiz)

2017-04-16 23:12:37 UTC MAIN commitmail json YAML

Add granularity to PKGSRC_USE_FORTIFY and PKGSRC_USE_RELRO

The new options are, for FORTIFY:
  "no"    Do not pass any flags for FORTIFY
  "weak"  Pass -D_FORTIFY_SOURCE=1
  "strong" Pass -D_FORTIFY_SOURCE=2

This allows users to reduce the level of FORTIFY specified if necessary
or desired. The previous setting as "yes" is now equivalent to "strong"
(the default when enabling).

The new options are, for RELRO:
  "no"      Do not pass any flags for RELRO
  "partial" Pass -Wl,-z,relro
  "full"    Pass -Wl,-z,relro -Wl,-z,now

This allows users to reduce the level of RELRO specified if necessary or
desired. The previous setting as "yes" is now equivalent to "full" (the
default when enabling).

This is intended to match the changes committed by jperkin@ (for SSP)
after our discussion a (long) while back.

No functional change intended (with the settings supported so far).

(khorben)

2017-04-16 22:10:40 UTC MAIN commitmail json YAML

Remove references to WINDOWMAKER_{OPTIONS,THEMES}

>From what I can tell, this is no longer in use.

(khorben)

2017-04-16 21:47:24 UTC MAIN commitmail json YAML

Updated devel/zzuf to 0.15

(khorben)

2017-04-16 21:46:13 UTC MAIN commitmail json YAML

Update zzuf to version 0.15

The necessary patches have been submitted upstream.
This still does not build with PKGSRC_FORTIFY yet though.

List of intermediate commits:
* Prepare 0.15 release.
* Do not use rand() within fseek(), it might break reproducibility.
* Work around an issue with fseek() diversion. Closes #7.
* More verbose debug messages.
* Merge pull request #12 from edmcman/feature/retain_file_extension_in_copy_mode
* Also include alloca.h
* Retain file extension in copy mode.
* Merge pull request #11 from CERTCC-Vulnerability-Analysis/feature/add_opmode_null_to_run_without_fuzzing
* Add new "null" opmode which doesn't mutate the file.
* Export VERBOSE=1 in Travis so that the test suite outputs debug information.
* Add #pragma once directives in all our headers, for safety.
* Tell Travis to try to build on OS X, too.
* Add Travis build status to README.
* Move Travis builds to the container-based infrastructure.
* Tell Travis to bootstrap before running configure.
* Add a .travis.yml configuration file for CI.
* Disable the mmap regression test on OS X.
* Hopefully fix OS X compilation now. Fixes #5.
* Disable unnecessary weak symbol declaration.
* Merge pull request #4 from x9prototype/master
* Merge pull request #1 from x9prototype/x9prototype-patch-1
* Update libzzuf/lib-stream.c
* zzuf: set program version to 0.14 and prepare release.
* win32: using <stdint.h> instead of defining our own types.
* misc: fix a few minor issues found by static code analysis.
* sys: unsatisfying workaround for an issue with libasan.
* win32: clean up some Windows code.
* libzzuf: protect library initialisation with a mutex.
* build: remove spurious binary file.
* libzzuf: fix compiler warnings by adding declarations for functions that are unlikely to be exposed by system headers.
* Allow debug_str to be provided a negative length count for convenience.
* zzuf: fix a minor inconsistency between short and long options when compiled on a system with a useless rlimit().
* doc: group command line options by category in the man page.
* stream: fix a nasty bug that completely messed up with the streambuf structure tracking. Now when the new streambuf position is exactly at the end of the previous streambuf, we only fuzz the streambuf if new data is available (i.e. when streambuf_count != 0); otherwise, it just means that we?re at the end of the file, waiting for new read orders.
* debug: minor tweak to the debug string formatter.
* debug: refactor a lot of buffer debug functions using a shared formatter.
* test: use the -d flag in unit tests so that we can find potential errors in the debug() function calls.
* misc: rename a lot of _zz_-prefixed variables.
* test: add a regression test for a bug in our mmap function.
* zzuf: add a -X flag for hexadecimal dumps.
* debug: try to output as much debug output as possible and make debug() thread safe on Unix platforms.
* stream: rename a few functions for clarity.
* stream: fuzz the whole stream buffer upon opening.
* stream: refactor some streambuf getter functions.
* test: add a new regression test for a bug at stream EOF.
* stream: rename ?s? to ?stream? for consistency.
* mem: fix a buffer overflow bug in the mmap() replacement.
* misc: factor several common tests into one must_fuzz_fd() function.
* test: add a regression test for a bug in our mmap function.
* misc: C99 refactoring; put variable declarations closer to their first use
* misc: typo of the ass.
* win32: some compilation fixes introduced by refactoring for Linux.
* doc: update copyright and URLs.
* zzuf: replace a critical section with a simple spinlock.
* misc: move a lot of generic stuff to a new util/ source subdirectory.
* win32: some mingw32/mingw64 warning and compilation fixes.
* build: remove ChangeLog, as it?s convenient enough to have it in Git.
* misc: various compilation warning fixes and copyright updates.
* libzzuf: fix fseeko64 parameter type.
* fork: document more code and fix a bug reported by Will Newton.
* test: several fixes in the testsuite.
* misc: now that Visual Studio supports it some 15 years later, switch to C99.
* misc: minor fixes for compilation warnings.
* win32: Windows-specific compilation fixes.
* win32: add spinlock implementation for Windows.
* win32: update to newer mingw compiler version.
* build: remove the libcaca dependency and embed code instead.
* build: refresh build system.
* build: fix a few compilation warnings.
* core: add a lightweight spinlock to protect the list of file descriptors.
* sys: fix coding style.
* fix crash on windows 32-bit and compute_patch_size
* win32: add some console handling function diversions.
* win32: add more explicit error messages and add support for 0xb8 opcode.
* add relocate_hook to improve api hooking, fix dll name string comparison (no case sensitive), fix used after free on win32, add more hooks related to async file access
* build: fix compilation by including <wchar.h> and checking for regwexec.
* cosmetic: get rid of CRLF line endings.
* add new hook for windows (CreateFileMapping(A|W), MapViewOfFile, ReadFileEx), re-enable option -U, start to port network on windows
* port zzuf to win64 (amd64)
* add regex feature for win32
* change the method of hooking, now we disassemble the beginning of the targeted function and insert a jump to the new function.
* start to implement hotpatch hook on win32 port, but some API don't look to use it for some reason (e.g. kernel32!ReadFile)
* win32 port starts to fuzz executable (only few functions related to file handling are implemented)
* fix tmp file creation on win32, start to implement handling of win32 exception with GetExitCodeProcess
* on win32, use a named pipe and IOCP to read stdout, stderr and debugfd correctly.
*
* win32: add debug information to the function diversion code.
* linux: fix a few compilation warnings.
* Fix a weird problem with lib6 versioned symbols.
* osx: do not enforce flat namespace in copy mode on OS X.
* Win64 support in the VS solution.
* Fix wrong pointer types in the network range structures.
* Fix line endings.
* Get rid of the getopt reimplementation and depend on libcaca instead.
* Implement ReOpenFile and fix a few Win32 compilation warnings.
* Fix Win32 intermediate build directories.
* Fix missing ZZUF_DEBUGFD passing and debug function availability.
* Fix a bug in the %i formatting and implement %S.
* Get the debug channel to work on Win32.
* Treat %x arguments as unsigned in the printf reimplementation.
* Fix the printf reimplementation to properly handle INT_MIN.
* Disable select() on Win32. It is not supported on non-sockets.
* Remove useless PARENT_FD/CHILD_FD hack.
* Make it easier to dynamically allocate the debug filedescriptor later.
* Filedescriptor 0 is the debug channel, not stdin! Fix that.
* Proper child command line construction on Win32. There is no need to hardcode stuff for debugging purposes any longer.
* Inherit stdin/stdout/stderr in the child process under Win32.
* Remove useless code for Win32 diversions.
* Mark diverted Win32 functions as __stdcall, it's the correct calling convention.
* Divert ReadFile() and CloseHandle().
* Drop Visual Studio 2008 support and require the 2010 version. The 2010 express version is free to use and it's a lot better.
* Fix compilation warnings on Win32.
* Divert CreateFileW in addition to CreateFileA.
* Fix the Linux build to accomodate with the new Win32 features.
* CreateFile() diversion proof of concept.
* Add a mechanism for Win32 diversions.
* Fix a bug caused by undefined function call precedence.
* Fix zzat compilation on Win32 and create a .vcxproj file for it.
* Minor Win32 code simplification in sys.c.
* Divert AttachConsole() and AllocConsole() for debugging purposes.
* Full support for ASLR in the Win32 loader.
* Refactor the DLL initialisation code to allow several diversions.
* Improve the DLL injection code. Now seems to work rather well under Windows. But it needs a lot of polishing.
* Do not build ASLR binaries on Windows for now.
* Fix Win32 build.
* Add a few comments in the code for new Win32 strategies.
* Make check-zzuf-r-ratio slightly more tolerant.
* New operating mode "copy". It uses temporary files instead of preloading libzzuf into the process.
* Grammar.
* Add a regression test for our Gentoo __fread_chk() bug.
* Fix old typos in check-utils.
* Add fortify versions of libc calls to zzat.
* Fortify functions actually have extra arguments. Fix that.
* Update TODO list.
* Revert any potential overriding macro before declaring a new function.
* Add support for fortified glibc functions (__fgets_chk, __read_chk, etc.).
* Rename zzcat to zzat to avoid conflicts with zziplib.
* Clean up ChangeLog generation.
* Split check-build into check-source and check-win32.
* Add an OS X build script that generates fat binaries.
* Add missing svn:ignore properties.
* On OS X, resident_size is actually in bytes, not pages. Fixing memory check routine.

(khorben)

2017-04-16 20:27:09 UTC MAIN commitmail json YAML

Avoid a warning while generating config.h

No functional change intended.

(khorben)

2017-04-16 19:49:58 UTC MAIN commitmail json YAML

Updated misc/raspberrypi-userland to 20170109nb1

(skrll)

2017-04-16 19:25:25 UTC MAIN commitmail json YAML

2017-04-16 16:48:48 UTC MAIN commitmail json YAML

More consistent log output

(khorben)

2017-04-16 15:48:26 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Harness to 3.39
Updated devel/p5-Test-NoTabs to 2.00
Updated devel/p5-Test-Output to 1.03.1
Updated devel/p5-Test-Script to 1.18
Updated devel/p5-Test-Simple to 1.302083
Updated devel/p5-Test-Without-Module to 0.20
Updated devel/p5-Search-Elasticsearch to 5.02
Updated devel/p5-Sub-Identify to 0.14
Updated devel/p5-Sub-Uplevel to 0.2800
Updated devel/p5-Term-ProgressBar to 2.18
Updated devel/p5-PPI-XS to 0.904
Updated devel/p5-Parse-Method-Signatures to 1.003019
Updated devel/p5-PerlIO-utf8_strict to 0.007

(mef)

2017-04-16 15:44:34 UTC MAIN commitmail json YAML

Updated devel/p5-PerlIO-utf8_strict to 0.007
--------------------------------------------
0.007    2017-04-06 14:58:37+02:00 Europe/Amsterdam
          - Adapt to dot no longer being in @INC
          - Adapt to unicode syswrite being deprecated

(mef)

2017-04-16 15:42:10 UTC MAIN commitmail json YAML

Updated devel/p5-PPI-XS to 0.904
--------------------------------
0.904 Mon Apr 10 11:50:43 EDT 2017
        - Fix Makefile.PL for perls without '.' in @INC

0.903 Mon Apr 10 10:50:00 EDT 2017
        - bad tarball

(mef)

2017-04-16 15:40:57 UTC MAIN commitmail json YAML

Updated devel/p5-Term-ProgressBar to 2.18
-----------------------------------------
2.18  2016-12-06 MANWAR
      - Add MANIFEST file.
      - Removed META.yml file.
      - Updated .gitignore to exclude MANIFEST file.
      - General tidy up pod document.

(mef)

2017-04-16 15:40:01 UTC pkgsrc-2017Q1 commitmail json YAML

So, so many pullup tickets

(bsiegert)

2017-04-16 15:39:23 UTC MAIN commitmail json YAML

Updated devel/p5-Sub-Uplevel to 0.2800
--------------------------------------
0.2800    2017-04-01 13:31:22-04:00 America/New_York
    - No changes from 0.2700-TRIAL

0.2700    2017-03-30 10:09:46-04:00 America/New_York (TRIAL RELEASE)
    [Fixed]
    - Tests now work if '.' is not in @INC

(mef)

2017-04-16 15:38:10 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5288 - requested by sevan
wm/windowmaker: build fix

Revisions pulled up:
- wm/windowmaker/Makefile                                      1.118

---
  Module Name:    pkgsrc
  Committed By:  adam
  Date:          Fri Apr 14 17:16:50 UTC 2017

  Modified Files:
          pkgsrc/wm/windowmaker: Makefile

  Log Message:
  Explicitly disable ImageMagick support

(bsiegert)

2017-04-16 15:38:00 UTC MAIN commitmail json YAML

Updated devel/p5-Sub-Identify to 0.14
-------------------------------------
0.14 2017-04-11 RGARCIA
    - Make tests pass without . in @INC (actual fix, by James E Keenan)

(mef)

2017-04-16 15:36:47 UTC MAIN commitmail json YAML

Updated devel/p5-Search-Elasticsearch to 5.02
---------------------------------------------
5.02    2017-04-02

        * Boolean query params must be "true" or "false"
        * Added deprecation warnings
        * The scroll API requires a body with a named scroll_id parameter
        * Added support for pipeline parameter to bulk API, top level and metadata level
        * Added support for 413 HTTP status code - Request entity too large
        * Search::Elasticsearch::TestServer now takes an es_version parameter and
          works with 0.90, 1.0, 2.0, and 5.0
        * Added common parameters error_trace and human to all params

(mef)

2017-04-16 15:36:15 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5287 - requested by sevan
www/apache24: build fix

Revisions pulled up:
- www/apache24/Makefile                                        1.55

---
  Module Name:    pkgsrc
  Committed By:  adam
  Date:          Fri Apr 14 18:18:24 UTC 2017

  Modified Files:
          pkgsrc/www/apache24: Makefile

  Log Message:
  Removed these two substituions:
  SUBST_SED.confs+=      -e "s|logs/|${VARBASE}/log/httpd/|g"
  SUBST_SED.confs+=      -e 's|/var/log/httpd/foo\.log|logs/foo.log/|g'
  The first one only applied to an instrucion in the comment at the top of
  the configuration file and made it meaningless.
  The second one has been useless.

(bsiegert)

2017-04-16 15:34:47 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5286 - requested by sevan
www/py-mod_wsgi-metrics: update HOMEPAGE

Revisions pulled up:
- www/py-mod_wsgi-metrics/Makefile                              1.3

---
  Module Name:    pkgsrc
  Committed By:  adam
  Date:          Fri Apr 14 18:12:25 UTC 2017

  Modified Files:
          pkgsrc/www/py-mod_wsgi-metrics: Makefile

  Log Message:
  Updated HOMEPAGE

(bsiegert)

2017-04-16 15:34:47 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Without-Module to 0.20
--------------------------------------------
0.20 20170409
  - Make tests more resilient against old versions of Carp.pm (Paul Howarth)
    Also addresses
    https://rt.cpan.org/Public/Bug/Display.html?id=121002
  - Typo fixes (Paul Howarth)
  - Rework test suite, move author tests below xt/

0.19 20170330
  - Make error message more like the original Perl error message (haarg)
  - Makefile.PL overhaul (by Abzal Serekov)
  - Generate README.md

(mef)

2017-04-16 15:33:13 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Script to 1.302083
----------------------------------------
1.302083  2017-04-14 10:55:26-07:00 America/Los_Angeles

    - Update some breakage info for Test::More::Prefix and Test::DBIx::Class::Schema

1.302082  2017-04-11 12:56:24-07:00 America/Los_Angeles (TRIAL RELEASE)

    - Fix test that incorrectly called private function as method

1.302081  2017-04-06 10:39:37-07:00 America/Los_Angeles (TRIAL RELEASE)

    - Fix threads timeout for older perls (as best we can)

1.302080  2017-04-04 20:24:55-07:00 America/Los_Angeles (TRIAL RELEASE)

    - Timeout when waiting for child procs and threads (#765)
    - Fix SIGSYS localization issue (#758)
    - Fix outdated docs (#759, #754)
    - Fix bail-out in buffered subtest (#747)

1.302079  2017-04-03 12:12:02-07:00 America/Los_Angeles (TRIAL RELEASE)

    - Fixes for '. in @INC' changes (#768)

(mef)

2017-04-16 15:32:08 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5284 - requested by sevan
devel/js2-mode: bugfix

Revisions pulled up:
- devel/js2-mode/Makefile                                      1.8

---
  Module Name:    pkgsrc
  Committed By:  pho
  Date:          Fri Apr 14 00:31:41 UTC 2017

  Modified Files:
          pkgsrc/devel/js2-mode: Makefile

  Log Message:
  js2-mode works perfectly fine on emacs25

(bsiegert)

2017-04-16 15:31:26 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Script to 1.18
------------------------------------
1.18      2017-04-12 07:01:14 -0400
  - Production release identical to 1.17_02 release.

1.17_02  2017-04-10 08:39:46 -0400
  - Use three argument open

1.17_01  2017-04-10 06:51:38 -0400
  - Handle scripts with -T taint mode (gh#13)

(mef)

2017-04-16 15:30:57 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5282 - requested by sevan
sysutils/py-google-compute-engine: build fix

Revisions pulled up:
- sysutils/py-google-compute-engine/Makefile                    1.2

---
  Module Name:    pkgsrc
  Committed By:  joerg
  Date:          Thu Apr 13 18:43:34 UTC 2017

  Modified Files:
          pkgsrc/sysutils/py-google-compute-engine: Makefile

  Log Message:
  Fix bash use.

(bsiegert)

2017-04-16 15:29:44 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Output to 1.03.1
--------------------------------------
1.031 2017-03-29T21:30:57Z
        * Get rid of Sub::Exporter. That module has nice features that this
        module doesn't use and the prereq is causing problems with CPAN
        Testers. CPAN Grep didn't show anyone using advanced features for
        exports.

(mef)

2017-04-16 15:28:16 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5262 - requested by sevan
security/py-acme: build fix
security/py-certbot: build fix

Revisions pulled up:
- security/py-acme/Makefile                                    1.5-1.6
- security/py-certbot/Makefile                                  1.4

---
  Module Name:    pkgsrc
  Committed By:  fhajny
  Date:          Mon Apr 10 10:29:38 UTC 2017

  Modified Files:
          pkgsrc/security/py-acme: Makefile
          pkgsrc/security/py-certbot: Makefile

  Log Message:
  Fix stale and missing dependencies in py-acme and py-certbot. PKGREVISION++

---
  Module Name:    pkgsrc
  Committed By:  fhajny
  Date:          Tue Apr 11 06:32:32 UTC 2017

  Modified Files:
          pkgsrc/security/py-acme: Makefile

  Log Message:
  Fix py-requests dependency version

(bsiegert)

2017-04-16 15:28:00 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Harness 1.4 to 2.00
--------------------------------------
2.00      2017-04-11 19:06:44Z
    - migrated off of Module::Install, added META.json and other modern tooling

(pkgsrc changes)
- As noted above, following line dropped
  PERL5_MODULE_TYPE=    Module::Install

(mef)

2017-04-16 15:24:30 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Harness to 3.39
-------------------------------------
3.39    06-04-2017
        - Make tests pass when PERL_USE_UNSAFE_INC=0

(mef)

2017-04-16 15:17:54 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5281 - requested by sevan
lang/erlang: module build fix

Revisions pulled up:
- lang/erlang/module.mk                                        1.2

---
  Module Name:    pkgsrc
  Committed By:  fhajny
  Date:          Thu Apr 13 18:24:45 UTC 2017

  Modified Files:
          pkgsrc/lang/erlang: module.mk

  Log Message:
  Use USE_GLOBAL_DEPS that some Erlang packages seem to use to rely on
  system dependencies.

(bsiegert)

2017-04-16 15:15:50 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5279 - requested by sevan
math/fricas: build fix

Revisions pulled up:
- math/fricas/options.mk                                        1.7

---
  Module Name:    pkgsrc
  Committed By:  asau
  Date:          Thu Apr 13 13:00:43 UTC 2017

  Modified Files:
          pkgsrc/math/fricas: options.mk

  Log Message:
  Handle MACHINE_GNU_PLATFORM when generating PLIST.

(bsiegert)

2017-04-16 15:15:01 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5278 - requested by sevan
x11/mcookie: build fix

Revisions pulled up:
- x11/mcookie/distinfo                                          1.7
- x11/mcookie/patches/patch-include_ttyutils.h                  1.2

---
  Module Name:    pkgsrc
  Committed By:  jperkin
  Date:          Thu Apr 13 10:17:25 UTC 2017

  Modified Files:
          pkgsrc/x11/mcookie: distinfo
          pkgsrc/x11/mcookie/patches: patch-include_ttyutils.h

  Log Message:
  Add a bunch more compatibility defines.  Fixes SunOS.

(bsiegert)

2017-04-16 15:12:32 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5277 - requested by sevan
misc/rhash: build fix

Revisions pulled up:
- misc/rhash/distinfo                                          1.6
- misc/rhash/patches/patch-librhash_byte__order.h              1.4

---
  Module Name:    pkgsrc
  Committed By:  jperkin
  Date:          Thu Apr 13 09:40:37 UTC 2017

  Modified Files:
          pkgsrc/misc/rhash: distinfo
          pkgsrc/misc/rhash/patches: patch-librhash_byte__order.h

  Log Message:
  Don't assume _BIG_ENDIAN and _LITTLE_ENDIAN have values.  Fixes SunOS.

(bsiegert)

2017-04-16 15:11:12 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5271 - requested by sevan
textproc/p5-XML-Feed: build fix

Revisions pulled up:
- textproc/p5-XML-Feed/Makefile                                1.25

---
  Module Name:    pkgsrc
  Committed By:  schmonz
  Date:          Tue Apr 11 18:38:11 UTC 2017

  Modified Files:
          pkgsrc/textproc/p5-XML-Feed: Makefile

  Log Message:
  Promote p5-{HTML-Parser,libwww} to runtime DEPENDS to match META.json.
  Bump PKGREVISION.

(bsiegert)

2017-04-16 15:09:24 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5268 - requested by sevan
lang/libLLVM: build fix

Revisions pulled up:
- lang/libLLVM/Makefile                                        1.21

---
  Module Name:    pkgsrc
  Committed By:  maya
  Date:          Mon Apr 10 19:49:59 UTC 2017

  Modified Files:
          pkgsrc/lang/libLLVM: Makefile

  Log Message:
  libLLVM: use ln -sf, not ln -s. helps rebuilds, as the previous link
  already exists

(bsiegert)

2017-04-16 14:58:26 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5266 - requested by sevan
x11/modular-xorg-server: build fix

Revisions pulled up:
- x11/modular-xorg-server/Makefile.common                      1.17

---
  Module Name:    pkgsrc
  Committed By:  jperkin
  Date:          Mon Apr 10 13:10:19 UTC 2017

  Modified Files:
          pkgsrc/x11/modular-xorg-server: Makefile.common

  Log Message:
  Avoid picking up epoll on illumos.

(bsiegert)

2017-04-16 14:56:21 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5265 - requested by sevan
mk/compiler/gcc.mk: bugfix

Revisions pulled up:
- mk/compiler/gcc.mk                                            1.175

---
  Module Name:    pkgsrc
  Committed By:  jperkin
  Date:          Mon Apr 10 12:22:07 UTC 2017

  Modified Files:
          pkgsrc/mk/compiler: gcc.mk

  Log Message:
  Let GCC 4.4 handle requests for GCC 4.[0-4] to ensure we are consistent in
  using the closest match for each request, as well as fixing platforms where
  GCC 6 does not yet build or is unsupported.

(bsiegert)

2017-04-16 14:55:01 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5264 - requested by sevan
devel/boost-libs: build fix

Revisions pulled up:
- devel/boost-libs/Makefile                                    1.52

---
  Module Name:    pkgsrc
  Committed By:  jperkin
  Date:          Mon Apr 10 11:43:13 UTC 2017

  Modified Files:
          pkgsrc/devel/boost-libs: Makefile

  Log Message:
  Long double math libraries now build on older Darwin too.

(bsiegert)

2017-04-16 14:38:21 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5261 - requested by sevan
mk/defaults/mk.conf: bugfix

Revisions pulled up:
- mk/defaults/mk.conf                                          1.273

---
  Module Name:    pkgsrc
  Committed By:  joerg
  Date:          Sun Apr  9 20:44:41 UTC 2017

  Modified Files:
          pkgsrc/mk/defaults: mk.conf

  Log Message:
  xz is a valid compression algorithm.

(bsiegert)

2017-04-16 14:36:20 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5260 - requested by sevan
devel/p5-Contextual-Return: bugfix

Revisions pulled up:
- devel/p5-Contextual-Return/Makefile                          1.18
- devel/p5-Contextual-Return/distinfo                          1.8

---
  Module Name:    pkgsrc
  Committed By:  mef
  Date:          Sun Apr  9 11:45:51 UTC 2017

  Modified Files:
          pkgsrc/devel/p5-Contextual-Return: Makefile distinfo

  Log Message:
  Updated devel/p5-Contextual-Return to 0.004011
  ----------------------------------------------
  0.004011  Sat Apr  8 15:23:14 2017
      - Patched memory leak from use of @DB::args
        (thanks, Jay!)

(bsiegert)

2017-04-16 14:34:07 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5259 - requested by sevan
security/nacl: metadata update

Revisions pulled up:
- security/nacl/Makefile                                        1.2

---
  Module Name:    pkgsrc
  Committed By:  schmonz
  Date:          Sat Apr  8 18:36:51 UTC 2017

  Modified Files:
          pkgsrc/security/nacl: Makefile

  Log Message:
  Update HOMEPAGE.

(bsiegert)

2017-04-16 14:09:47 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5249 - requested by sevan
lang/nodejs4: bugfix

Revisions pulled up:
- lang/nodejs4/Makefile                                        1.30
- lang/nodejs4/distinfo                                        1.27

---
  Module Name:    pkgsrc
  Committed By:  fhajny
  Date:          Thu Apr  6 14:57:49 UTC 2017

  Modified Files:
          pkgsrc/lang/nodejs4: Makefile distinfo

  Log Message:
  Update lang/nodejs4 to 4.8.2.

  - crypto: fix memory leak if certificate is revoked
  - deps: upgrade zlib to 1.2.11

(bsiegert)

2017-04-16 14:09:39 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5248 - requested by sevan
lang/nodejs6: bugfix

Revisions pulled up:
- lang/nodejs6/Makefile                                        1.9
- lang/nodejs6/distinfo                                        1.9

---
  Module Name:    pkgsrc
  Committed By:  fhajny
  Date:          Thu Apr  6 14:59:22 UTC 2017

  Modified Files:
          pkgsrc/lang/nodejs6: Makefile distinfo

  Log Message:
  Update lang/nodejs6 to 6.10.2.

  - crypto: fix memory leak if certificate is revoked
  - upgrade zlib to 1.2.11
  - backport V8 fixes for spread syntax regression causing segfaults
  - repl: Revert commit that broke REPL display on Windows

(bsiegert)

2017-04-16 13:37:55 UTC MAIN commitmail json YAML

- Add BUILD_DEPENDS+=  p5-Package-DeprecationManager-[0-9]* for make test

(mef)

2017-04-16 13:37:07 UTC MAIN commitmail json YAML

- Add BUILD_DEPENDS+=  p5-Package-DeprecationManager-[0-9]* for make test

(mef)

2017-04-16 13:31:18 UTC MAIN commitmail json YAML

- Add BUILD_DEPENDS+=  p5-Package-DeprecationManager-[0-9]* for make test

(mef)

2017-04-16 13:14:05 UTC MAIN commitmail json YAML

- Add BUILD_DEPENDS+=  p5-Package-DeprecationManager-[0-9]* for make test

(mef)

2017-04-16 10:32:57 UTC MAIN commitmail json YAML

Updated textproc/jrep to 1.0.1

(cheusov)

2017-04-16 10:31:36 UTC MAIN commitmail json YAML

Update to version 1.0.1

  Documentation for option --exclude-from was added to man page.

  Fix escaping backslashes with modifier "n" of option -O.

(cheusov)

2017-04-16 09:20:30 UTC MAIN commitmail json YAML

+ afl-2.41b, calibre-2.83.0, cppunit-1.14.0, go-grpc-1.2.1,
  libdrm-2.4.80, libmicrohttpd-0.9.53, libva-1.8.1, miller-5.1.0,
  ocaml-4.04.1, p5-Clone-PP-1.07, p5-Data-Printer-0.39,
  p5-MIME-Charset-1.012.2, p5-Sub-Identify-0.14, p5-Template-Toolkit-2.27,
  p5-Test-Simple-1.302083, p5-Unicode-LineBreak-2017.004,
  p5-libwww-6.26, pari-2.9.2, py-chardet-3.0.2, py-pbr-2.1.0,
  py-setuptools-35.0.0, rspamd-1.5.5, vim-8.0.0566, vim-share-8.0.0566,
  wireshark-2.2.6, x264-devel-20170415.

(wiz)

2017-04-16 08:44:36 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5253 - requested by sevan
games/xpipeman: bugfix

Revisions pulled up:
- games/xpipeman/Makefile                                      1.21-1.22

---
  Module Name:    pkgsrc
  Committed By:  pgoyette
  Date:          Fri Apr  7 23:21:20 UTC 2017

  Modified Files:
          pkgsrc/games/xpipeman: Makefile

  Log Message:
  xpipeman fails to update the scores file with ASLR enabled.

  XXX does this require a rev bump?

---
  Module Name:    pkgsrc
  Committed By:  pgoyette
  Date:          Fri Apr  7 23:34:40 UTC 2017

  Modified Files:
          pkgsrc/games/xpipeman: Makefile

  Log Message:
  Bump PKGREVISION for previous

(bsiegert)

2017-04-16 08:13:11 UTC MAIN commitmail json YAML

Updated graphics/py-Pillow to 4.1.0; audio/mpg123 to 1.24.0

(adam)

2017-04-16 08:12:27 UTC MAIN commitmail json YAML

1.24.0
------
- Avoid repeating genre in metadata printout for specifications like
  (144)Thrash Metal.
- In remote control mode, only enforce --quiet if no verbosity was required.
- Prevent --loop and --shuffle or --random from messing with the remote
  control LOADLIST command (printout of the list would loop without reason).
- Fix the mpg123 command (esp. our provided binaries on Windows) to now find
  modules again relative to the executable directory, not the current working
  directory. This was a regression in 1.23 and might be security-relevant if
  you called mpg123 in working directories with untrusted content.
  Note that mpg123 1.23 looked for modules relative to the current working
  directory only if the installation prefix for modules did not exist.
  So, usage on an intact installation (with /usr/lib/mpg123 or the like) was
  safe. Nevertheless this new version fixes the search to be relative to the
  binary path as it was with 1.22 and before.
- At least consistent behaviour of playlist code in the face of looping.
  Looping is about individual tracks, always. They are looped also in random
  mode. Jumping (prev/next keys) is between tracks and resets the loop counter.
  The display of currently playing track in the playlist is fixed for random
  and looped play now (bug 198).
- Looping is now mentioned for a to-be-repeated track with --verbose.
- Move some compiler nagging from --enable-debug to --enable-nagging, fix up
  some new build failures by adding some pesky feature test macros.
- Try not to pollute the terminal buffer with old progress bars in inverse
  video. Only the currently live one shall be seen. That one is pretty. The
  others are not.
- Using plain dlopen()/LoadLibrary() for opening modules instead of libltdl.
  This also means that --with-module-suffix is gone in configure.
- Windows builds only work when Unicode support is there (older than Windows
  2000/XP will definitely not work anymore).
- The out123 tool now features tone generation, with a mix of differing
  wave patterns. Makes sense to be able to test the audio output by itself,
  and it's fun. See --wave-freq and related parameters.
- libmpg123 version 43:
-- Add flags MPG123_NO_PEEK_END and MPG123_FORCE_SEEKABLE, as suggested
  by Bent Bisballe Nyeng.
-- Build fix for MSVC (consistent definition of ssize_t, spotted by manx,
  bug 243).
-- Build fix for --with-cpu=ppc_nofpu (thanks to Michael Kostylev, bug 244).
-- Add asm optimized MSVC++ Win32|x64 and UWP|x64 builds
-- Remove old, broken MSVC++ builds
- libout123 version 2:
-- Added OUT123_BINDIR.
-- New search order for output plugin directory: MPG123_MODDIR, or (relative
  to executable directory OUT123_BINDIR) ../lib/mpg123, plugins
  libout123/modules/.libs, libout123/modules, ../libout123/modules/.libs,
  ../libout123/modules, and at last the installation prefix $libdir/mpg213/.
  This shall ensure that a build inside a source tree does not try to use old
  modules from the system prefix. The normal libtool wrapper deals with the
  shared libout123 or libmpg123 only, not modules.
  Note that if you set MPG123_MODDIR to a non-existing directory, no modules
  will be found (earlier versions fell back to other choices).
-- The OUT123_NAME parameter is now copied by out123_param_from(), as is
  the newly added OUT123_BINDIR.
-- Coreaudio: Use AudioComponents API on OSX >= 10.6 (thanks to Michael Weiser).
-- Coreaudio: Fix behaviour of out123_drop(), not killing the output anymore
  without re-opening the device (bug 236, thanks to Taihei for the fix).

(adam)

2017-04-16 08:11:17 UTC MAIN commitmail json YAML

Changes 4.1.0:
- Close files after loading if possible
- Fix Image Access to be reloadable when embedding the Python interpreter
- Fetch DPI from EXIF if not specified in JPEG header
- Removed winbuild checksum verification
- Git: Set ContainerIO test file as binary
- Remove superfluous import of FixTk
- Fix import of tkinter/Tkinter
- Pure Python Decoders, including Python decoder to fix for MSP images
- Reorganized GifImagePlugin
- Doc: Reordered operating systems in Compatibility Matrix
- Test: Additional tests for BurfStub, Eps, Container, GribStub, IPTC, Wmf, XVThumb, ImageDraw, ImageMorph ImageShow
- Health fixes
- Test: Correctness tests ContainerIO, XVThumbImagePlugin, BufrStubImagePlugin, GribStubImagePlugin, FitsStubImagePlugin, Hdf5StubImagePlugin, PixarImageFile, PsdImageFile
- Remove unused imports
- Replaced KeyError catch with dictionary get method
- Test: Removed unrunnable code in test_image_toqimage
- Removed use of spaces in TIFF kwargs names, deprecated in 2.7
- Removed deprecated ImageDraw setink, setfill, setfont methods
- Send unwanted subprocess output to /dev/null
- Fix division by zero when creating 0x0 image from numpy array
- Test: Added matrix convert tests
- Replaced broken URL to partners.adobe.com
- Removed unused private functions in setup.py and build_dep.py
- Test: Fixed Qt tests for QT5 and saving 1 bit PNG
- Test: docker builds for Arch and Debian Stretch
- Updated libwebp to 0.6.0 on appveyor
- More explicit error message when saving to a file with invalid extension
- Docs: Update some http urls to https
- Preserve aux/alpha channels when performing Imagecms transforms
- Test linear and radial gradient effects
- Test ImageDraw.Outline and and ImageDraw.Shape
- Added PySide to ImageQt documentation
- BUG: Empty image mode no longer causes a crash
- Exclude .travis and contents from manifest
- Remove 'MIT-like' from license
- Tests: Add tests for several Image operations
- PNG: Moved iCCP chunk before PLTE chunk when saving as PNG, restricted chunks known value/ordering
- Default to inch-interpretation for missing ResolutionUnit in TiffImagePlugin
- Bug: Fixed segfault when using ImagingTk on pypy
- Bug: Fixed Integer overflow using ImagingTk on 32 bit platforms
- Tests: Added docker images for testing alternate platforms. See also https://github.com/python-pillow/docker-images.
- Removed PIL 1.0 era TK readme that concerns Windows 95/NT
- Prevent `nose -v` printing docstrings
- Replaced absolute PIL imports with relative imports
- Added context managers for file handling
- Expose registered file extensions in Image
- Make mode descriptor cache initialization thread-safe.
- Updated Windows test dependencies: Freetype 2.7.1, zlib 1.2.11
- Followed upstream pngquant packaging reorg to libimagquant
- Fix invalid string escapes
- Add test for crop operation with no argument

(adam)

2017-04-16 07:22:00 UTC MAIN commitmail json YAML

Updated security/gnupg21 to 2.1.20

(wiz)

2017-04-16 07:21:48 UTC MAIN commitmail json YAML

Updated gnupg21 to 2.1.20.

Based on PR 52165 by Jonathan Schleifer.

Noteworthy changes in version 2.1.20 (2017-04-03)
-------------------------------------------------

  * gpg: New properties 'expired', 'revoked', and 'disbaled' for the
    import and export filters.

  * gpg: New command --quick-set-primary-uid.

  * gpg: New compliance field for the --with-colon key listing.

  * gpg: Changed the key parser to generalize the processing of local
    meta data packets.

  * gpg: Fixed assertion failure in the TOFU trust model.

  * gpg: Fixed exporting of zero length user ID packets.

  * scd: Improved support for multiple readers.

  * scd: Fixed timeout handling for key generation.

  * agent: New option --enable-extended-key-format.

  * dirmngr: Do not add a keyserver to a new dirmngr.conf.  Dirmngr
    uses a default keyserver.

  * dimngr: Do not treat TLS warning alerts as severe error when
    building with GNUTLS.

  * dirmngr: Actually take /etc/hosts in account.

  * wks: Fixed client problems on Windows.  Published keys are now set
    to world-readable.

  * tests: Fixed creation of temporary directories.

  * A socket directory for a non standard GNUGHOME is now created on
    the fly under /run/user.  Thus "gpgconf --create-socketdir" is now
    optional.  The use of "gpgconf --remove-socketdir" to clean up
    obsolete socket directories is however recommended to avoid
    cluttering /run/user with useless directories.

  * Fixed build problems on some platforms.

Noteworthy changes in version 2.1.19 (2017-03-01)
-------------------------------------------------

  * gpg: Print a warning if Tor mode is requested but the Tor daemon
    is not running.

  * gpg: New status code DECRYPTION_KEY to print the actual private
    key used for decryption.

  * gpgv: New options --log-file and --debug.

  * gpg-agent: Revamp the prompts to ask for card PINs.

  * scd: Support for multiple card readers.

  * scd: Removed option --debug-disable-ticker.  Ticker is used
    only when it is required to watch removal of device/card.

  * scd: Improved detection of card inserting and removal.

  * dirmngr: New option --disable-ipv4.

  * dirmngr: New option --no-use-tor to explicitly disable the use of
    Tor.

  * dirmngr: The option --allow-version-check is now required even if
    the option --use-tor is also used.

  * dirmngr: Handle a missing nsswitch.conf gracefully.

  * dirmngr: Avoid PTR lookups for keyserver pools.  The are only done
    for the debug command "keyserver --hosttable".

  * dirmngr: Rework the internal certificate cache to support classes
    of certificates.  Load system provided certificates on startup.
    Add options --tls, --no-crl, and --systrust to the "VALIDATE"
    command.

  * dirmngr: Add support for the ntbtls library.

  * wks: Create mails with a "WKS-Phase" header.  Fix detection of
    Draft-2 mode.

  * The Windows installer is now build with limited TLS support.

  * Many other bug fixes and new regression tests.

  See-also: gnupg-announce/2017q1/000402.html

(wiz)

2017-04-16 02:50:22 UTC MAIN commitmail json YAML

Updated sysutils/open-vm-tools to 10.1.5

(ryoon)

2017-04-16 02:49:50 UTC MAIN commitmail json YAML

Update to 10.1.5

Changelog:
Fixed:
* Authentication failure is reported as unknown general system error.
* Unable to backup virtual machines with active Docker containers.

(ryoon)

2017-04-15 22:32:08 UTC MAIN commitmail json YAML

Updated misc/screen to 4.5.1

(kim)

2017-04-15 22:31:49 UTC MAIN commitmail json YAML

Update to 4.5.1

Version 4.5.1 (25/02/2017):
  *Fixes:
  - logfile permissions problem (CVE-2017-5618)
  - SunOS build problem (bug #50089)
  - FreeBSD core dumps (bug #50143)

(kim)

2017-04-15 17:38:48 UTC MAIN commitmail json YAML

Restore @PREFIX@, not accidental personal /dist/pkg directory.

(riastradh)

2017-04-15 15:56:00 UTC MAIN commitmail json YAML

Missed the PKG_SUGGESTED_OPTIONS bit that was still in a vi process...

(kim)

2017-04-15 15:55:21 UTC MAIN commitmail json YAML

There is no reason to restrict PHP's version to 5.6.x.

(taca)

2017-04-15 15:50:42 UTC MAIN commitmail json YAML

Make tiff option when building gd, as tiff has many long-standing
vulnerabilities. Still enabled by default, as before. Ok by wiz@.

Fixes PR pkg/52148 and adds tiff to PKG_SUGGESTED_OPTIONS.

(kim)

2017-04-15 15:48:13 UTC MAIN commitmail json YAML

Make tiff option when building libwebp, as tiff has many long-standing
vulnerabilities. Still enabled by default, as before. Ok by wiz@.

Fixes PR pkg/52149 and adds tiff to PKG_SUGGESTED_OPTIONS.

(kim)

2017-04-15 15:46:57 UTC MAIN commitmail json YAML

Note update of www/wordpress package to 4.7.3nb1.

(taca)

2017-04-15 15:46:29 UTC MAIN commitmail json YAML

PKGREVISION was too high, 1 is enough.

(taca)

2017-04-15 15:44:50 UTC MAIN commitmail json YAML

Switch to use php-mysqli.

Bump PKGREVISION.

(taca)

2017-04-15 15:43:00 UTC MAIN commitmail json YAML

Note update of www/mediawiki package to 1.28.1nb1.

(taca)

2017-04-15 15:42:32 UTC MAIN commitmail json YAML

Switch to use php-mysqli and remove PHP version restriction.

Bump PKGREVISION.

(taca)

2017-04-15 15:16:42 UTC MAIN commitmail json YAML

Note update of misc/ruby-thread_safe package to 0.3.6.

(taca)

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

Update ruby-thread_safe to 0.3.6.

Notable chnages:
* Fix default block race condition.
* Add TS::Cache#fetch_or_store.

(taca)

2017-04-15 15:12:39 UTC MAIN commitmail json YAML

Note update of time/ruby-tzinfo-data package to 1.2017.2.

(taca)

2017-04-15 15:12:18 UTC MAIN commitmail json YAML

Update ruby-tzinfo-data to 1.2017.2.

v1.2017.2 2017/3/23

* Based on version 2017b of the IANA Time Zone Database
  (https://mm.icann.org/pipermail/tz-announce/2017-March/000046.html).

(taca)

2017-04-15 15:11:46 UTC MAIN commitmail json YAML

Note update of time/ruby-tzinfo package to 1.2.3.

(taca)

2017-04-15 15:11:23 UTC MAIN commitmail json YAML

Update ruby-tzinfo to 1.2.3.

v1.2.3 2017/3/25

* Reduce the number of String objects allocated when loading zoneinfo
  files. #54.
* Make Timezone#friendly_identifier compatible with frozen string literals.
* Improve the algorithm for deriving the utc_offset from zoneinfo files. This
  now correctly handles Pacific/Apia switching from one side of the
  International Date Line to the other whilst observing daylight savings
  time. #66.
* Fix an UnknownTimezone exception when calling transitions_up_to or
  offsets_up_to on a TimezoneProxy instance obtained from Timezone.get_proxy.
* Allow the Factory zone to be obtained from the Zoneinfo data source.
* Ignore the /usr/share/zoneinfo/timeconfig symlink included in Slackware
  distributions. #64.
* Fix Timezone#strftime handling of %Z expansion when %Z is prefixed with more
  than one percent. #31.
* Support expansion of %z, %:z, %::z and %:::z to the UTC offset of the time
  zone in Timezone#strftime. #31 and #67.

(taca)

2017-04-15 15:10:52 UTC MAIN commitmail json YAML

Note update of time/ruby-tzinfo03 package to 0.3.53.

(taca)

2017-04-15 15:10:27 UTC MAIN commitmail json YAML

2017-04-15 15:05:29 UTC MAIN commitmail json YAML

WordPress 4.7 suggests using PHP 7, so remove PHP's version restriction to
56 now.

(taca)

2017-04-15 12:30:07 UTC MAIN commitmail json YAML

This is not really Python 3.4 incompatible
(at least according the upstream commit:
<http://git.openstack.org/cgit/openstack/stevedore/commit/?id=292534789fac4d13aa1e1800bc860c005a6d065a>
this seems completely artificial and arbitrary)

Thanks to <wiz>!

(leot)

2017-04-15 09:50:28 UTC MAIN commitmail json YAML

Updated audio/opencore-amr to 0.1.5

(adam)

2017-04-15 09:49:53 UTC MAIN commitmail json YAML

0.1.5
- Fix an autotools issue with cross compiling from the 0.1.4 release

(adam)

2017-04-15 09:31:41 UTC MAIN commitmail json YAML

pytest-runner (devel/py-test-runner) is a setup_requires... Mark it accordingly
as BUILD_DEPENDS.

Thanks to <joerg>!

(leot)

2017-04-15 09:27:18 UTC MAIN commitmail json YAML

Updated multimedia/ffmpeg3 to 3.3

(adam)

2017-04-15 09:26:47 UTC MAIN commitmail json YAML

version 3.3:
- CrystalHD decoder moved to new decode API
- add internal ebur128 library, remove external libebur128 dependency
- Pro-MPEG CoP 3-R2 FEC protocol
- premultiply video filter
- Support for spherical videos
- configure now fails if autodetect-libraries are requested but not found
- PSD Decoder
- 16.8 floating point pcm decoder
- 24.0 floating point pcm decoder
- Apple Pixlet decoder
- QDMC audio decoder
- NewTek SpeedHQ decoder
- MIDI Sample Dump Standard demuxer
- readeia608 filter
- Sample Dump eXchange demuxer
- abitscope multimedia filter
- Scenarist Closed Captions demuxer and muxer
- threshold filter
- midequalizer filter
- Optimal Huffman tables for (M)JPEG encoding
- VAAPI-accelerated MPEG-2 and VP8 encoding
- FM Screen Capture Codec decoder
- native Opus encoder
- ScreenPressor decoder
- incomplete ClearVideo decoder
- Intel QSV video scaling and deinterlacing filters
- Support MOV with multiple sample description tables
- XPM decoder
- Removed the legacy X11 screen grabber, use XCB instead
- MPEG-7 Video Signature filter
- Removed asyncts filter (use af_aresample instead)
- Intel QSV-accelerated VP8 video decoding

(adam)

2017-04-15 06:32:34 UTC MAIN commitmail json YAML

perl is a default option, it will be selected even if using the old
option name, so no need for the legacy option rename.

(maya)

2017-04-15 06:26:51 UTC MAIN commitmail json YAML

Use PKG_OPTIONS_LEGACY_OPTS for renaming v2->http2

so existing users won't need to modify their configs

(maya)

2017-04-15 05:46:28 UTC MAIN commitmail json YAML

Change v2 option name to http2

http2 is defined in pkgsrc/mk/defaults/options.description

(ryoon)

2017-04-14 21:35:35 UTC MAIN commitmail json YAML

2017-04-14 21:17:19 UTC MAIN commitmail json YAML

Updated www/py-mod_wsgi to 4.5.15; textproc/py-defusedxml to 0.5.0

(adam)

2017-04-14 21:15:52 UTC MAIN commitmail json YAML

Changes 0.5.0:
Add compatibility with Python 3.6
Drop support for Python 2.6, 3.1, 3.2, 3.3
Fix lxml tests (XMLSyntaxError: Detected an entity reference loop)

(adam)

2017-04-14 19:10:36 UTC MAIN commitmail json YAML

Updated textproc/subliminal to 2.0.5nb1

(leot)

2017-04-14 19:10:23 UTC MAIN commitmail json YAML

2017-04-14 18:43:56 UTC MAIN commitmail json YAML

Fix a typo in recent opencpn-plugin-* entries.

(leot)

2017-04-14 18:18:24 UTC MAIN commitmail json YAML

Removed these two substituions:
SUBST_SED.confs+= -e "s|logs/|${VARBASE}/log/httpd/|g"
SUBST_SED.confs+= -e 's|/var/log/httpd/foo\.log|logs/foo.log/|g'
The first one only applied to an instrucion in the comment at the top of
the configuration file and made it meaningless.
The second one has been useless.

(adam)

2017-04-14 18:12:25 UTC MAIN commitmail json YAML

2017-04-14 18:11:50 UTC MAIN commitmail json YAML

Changes 4.5.15:
Bugs Fixed
* Incorrect version for mod_wsgi was being reported in server token.
* On 32 bit platforms, when reading from request content, all input would be returned and the chunk size would be ignored.

(adam)

2017-04-14 17:49:28 UTC MAIN commitmail json YAML

Build UTIL part as well. Bump revision.

(joerg)

2017-04-14 17:48:56 UTC MAIN commitmail json YAML

Avoid type conflicts with compiler builtins by including the correct
system header first before defining macros of the same name.

(joerg)

2017-04-14 17:16:50 UTC MAIN commitmail json YAML

Explicitly disable ImageMagick support

(adam)

2017-04-14 16:42:25 UTC MAIN commitmail json YAML

2017-04-14 16:40:26 UTC MAIN commitmail json YAML

Added geography/opencpn-plugin-statusbar version 20170414

(bouyer)

2017-04-14 16:39:42 UTC MAIN commitmail json YAML

Add opencpn-plugin-statusbar

(bouyer)

2017-04-14 16:38:54 UTC MAIN commitmail json YAML

Add opencpn-plugin-statusbar version 20170414

OpenCPN is a free software (GPLv2) project to create a concise chart plotter
and navigation software, for use underway or as a planning tool. OpenCPN is
developed by a team of active sailors using real world conditions for
program testing and refinement.

The status bar plugin provides customizable, easier to read output text
and lower cpu usage than the builtin statusbar.

(bouyer)

2017-04-14 16:36:22 UTC MAIN commitmail json YAML

Updated geography/opencpn to 4.6.1
Updated geography/opencpn-pluging-debugger to 20170414
Updated geography/opencpn-pluging-draw to 1.3.31
Updated geography/opencpn-pluging-watchdog to 20170414
Updated geography/opencpn-pluging-weather_routing to 20170414

(bouyer)

2017-04-14 16:35:21 UTC MAIN commitmail json YAML

Update to 20170414. Changes since last version:
update alberg35 polar, more descriptive error message and a few other
small fixes

(bouyer)

2017-04-14 16:32:01 UTC MAIN commitmail json YAML

Update to 20170414. Changes sinces last version:
Fix deadman alarm
Update to use state and type of boundary for AIS guard zones
Reorder boundary alarm dialog to make it simpler
Add time to AIS incursion message
Add Properties dialog box
Add new information handling in AIS message

(bouyer)

2017-04-14 16:28:41 UTC MAIN commitmail json YAML

Update to 1.3.31. Changes since 1.2.0:
Implement Parallel Index Lines (PILs)
Use an EBL to generate a perpendicular index line
Allow Ctrl-Left Mouse click to select multiple boundaries. Right click
  then allows Merge with keep and Merge with delete
Add ability to move boundaries and point using left click and drag. Ability
is set in general properties of plugin
Add ability to constrain boundary movement
Add ability to move a single boundary segment

(bouyer)

2017-04-14 16:22:51 UTC MAIN commitmail json YAML

2017-04-14 16:20:15 UTC MAIN commitmail json YAML

Update opencpn to 4.6.1. Changes since 4.4.0:
As a successor to OpenCPN version 4.4,  OpenCPN Version 4.6 contains several
new features and enhanced functions. Among them are:
    Substantial functional improvements and performance increases related to
ENC vector charts.
    User selectable InlandECS mode for increased safety and convenience while
navigating inland waters.
    Expanded User Manual bundled with Release download.

(bouyer)

2017-04-14 15:43:58 UTC MAIN commitmail json YAML

Note update of lang/php71 package to 7.1.4.

(taca)

2017-04-14 15:43:26 UTC MAIN commitmail json YAML

Update php71 to 7.1.4.

13 Apr 2017, PHP 7.1.4

- Core:
  . Fixed bug #74149 (static embed SAPI linkage error). (krakjoe)
  . Fixed bug #73370 (falsely exits with "Out of Memory" when using
    USE_ZEND_ALLOC=0). (Nikita)
  . Fixed bug #73960 (Leak with instance method calling static method with
    referenced return). (Nikita)
  . Fixed bug #69676 (Resolution of self::FOO in class constants not correct).
    (Nikita)
  . Fixed bug #74265 (Build problems after 7.0.17 release: undefined reference
    to `isfinite'). (Nikita)
  . Fixed bug #74302 (yield fromLABEL is over-greedy). (Sara)

- Apache:
  . Reverted patch for bug #61471, fixes bug #74318. (Anatol)

- Date:
  . Fixed bug #72096 (Swatch time value incorrect for dates before 1970). (mcq8)

- DOM:
  . Fixed bug #74004 (LIBXML_NOWARNING flag ingnored on loadHTML*).
    (somedaysummer)

- iconv:
  . Fixed bug #74230 (iconv fails to fail on surrogates). (Anatol)

- Opcache:
  . Fixed bug #74250 (OPcache compilation performance regression in PHP 5.6/7
    with huge classes). (Nikita)

- OpenSSL:
  . Fixed bug #72333 (fwrite() on non-blocking SSL sockets doesn't work).
    (Jakub Zelenka)

- PDO MySQL:
  . Fixed bug #71003 (Expose MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT to PDO
    interface). (Thomas Orozco)

- SPL:
  . Fixed bug #74058 (ArrayObject can not notice changes). (Andrew Nester)

- Sqlite:
  . Implemented FR #74217 (Allow creation of deterministic sqlite functions).
    (Andrew Nester)

- Streams:
  . Fixed bug #74216 (Correctly fail on invalid IP address ports). (Sara)

- Zlib:
  . Fixed bug #74240 (deflate_add can allocate too much memory). (Matt Bonneau)

(taca)

2017-04-14 15:17:22 UTC MAIN commitmail json YAML

- p5-File-HomeDir-1.002

(mef)

2017-04-14 15:15:03 UTC MAIN commitmail json YAML

Updated devel/p5-Class-Load to 0.24
Updated devel/p5-Class-Load-XS to 0.10
Updated devel/p5-Clone-PP to 1.07
Updated devel/p5-Config-AutoConf to 0.314
Updated devel/p5-Contextual-Return to 0.004.012
Updated devel/p5-File-HomeDir to 1.00.2
Updated devel/p5-List-MoreUtils to 0.419
Updated devel/p5-Module-Starter to 1.720
Updated devel/p5-Path-IsDev to 1.001003

(mef)

2017-04-14 15:11:46 UTC MAIN commitmail json YAML

Updated devel/p5-Path-IsDev to 1.001003
----------------------------------------
1.001003 2017-03-09T20:21:10Z 4dcd533
- Bugfix: Avoid -Ddefault_inc_excludes_dot failures ( also makes tests *much* faster )

[Dependencies::Stats]
- Dependencies changed since 1.001002, see misc/*.deps* for details
- configure: +1 (recommends: ↑1)
- develop: +14 ↑4 -3 (recommends: +1, suggests: ↑2)
- runtime: (recommends: +1)
- test: +1 ↓1 (recommends: ↑1 ↓1)

(mef)

2017-04-14 15:09:01 UTC MAIN commitmail json YAML

Updated devel/p5-Module-Starter to 1.720
---------------------------------------
1.72    Sat Mar 25 21:20:41 EDT 2017
        * Stable release containing previous fixes

1.71_01 Thu Mar 23 23:04:11 EDT 2017
        * GH#51: drop use of Module::Build::Compat in Build.PL (Karen
          Etheridge)
        * GH#56: Fix generated syntax errors when using --fatalize (Dan Book)
        * GH#57: Fix strange scoping issue in test on 5.8 (Dan Book)
        * GH#58: Typo and doc fixes (Tordek)
        * GH#59: Quote versions in generated Makefile.PL/Build.PL (Dan Book)
        * GH#61: Fix version comparison in test (Dan Book)
        * GH#63: Remove unneeded dependency Module::Install::AuthorTests (Dan
          Book)
        * GH#64: Replace usage of Path::Class with File::Spec (Dan Book)

(mef)

2017-04-14 15:07:09 UTC MAIN commitmail json YAML

Updated devel/p5-List-MoreUtils to 0.419
----------------------------------------
0.419 2017-04-06
    - Fix RT#120799: Makefile.PL fails due to unescaped paths interpolated
      in regex pattern (thanks, A. Sinan Unur)

(mef)

2017-04-14 15:05:45 UTC MAIN commitmail json YAML

Updated devel/p5-File-HomeDir to 1.00.2
---------------------------------------
1.002  2017-04-06
    - regenerate README.md with correct encoding settings

1.001_001      2017-03-29
    - switch to ExtUtils::MakeMaker
    - compatibility with blead

(mef)

2017-04-14 15:03:20 UTC MAIN commitmail json YAML

Updated devel/p5-Contextual-Return to 0.004012
----------------------------------------------
0.004012  Thu Apr 13 01:06:09 2017

    - Optimized previous patch for memory leak
      (thanks, Jay and Father C.)

    - Added missing test plan to t/fail.t

(mef)

2017-04-14 15:01:44 UTC MAIN commitmail json YAML

Updated devel/p5-Config-AutoCon to 0.314
----------------------------------------
0.314  2017-03-30
        - _get_extra_linker_flags: add library dirs

(mef)

2017-04-14 15:00:24 UTC MAIN commitmail json YAML

Updated devel/p5-Clone-PP to 1.07
---------------------------------
1.07 2017-04-10 NEILB
    - Update tests to cope with '.' not being in @INC, part of Perl 5.26.
      Thanks to Jim Keenan for the PR which fixed this.

(mef)

2017-04-14 14:59:11 UTC MAIN commitmail json YAML

Updated devel/p5-Class-Load-XS to 0.10
--------------------------------------
0.10    2017-04-11
  - fix test to handle altered Test::Without::Module exception message

(mef)

2017-04-14 14:58:08 UTC MAIN commitmail json YAML

Updated devel/p5-Class-Load to 0.24
-----------------------------------
0.24    2017-04-10 21:12:31Z
    - fix test to handle altered Test::Without::Module exception message
      (PR#2, Paul Howarth)

(mef)

2017-04-14 14:18:56 UTC MAIN commitmail json YAML

Added textproc/subliminal version 2.0.5

(leot)

2017-04-14 14:18:29 UTC MAIN commitmail json YAML

2017-04-14 14:17:45 UTC MAIN commitmail json YAML

2017-04-14 14:14:10 UTC MAIN commitmail json YAML

Added textproc/py-guessit version 2.1.2

(leot)

2017-04-14 14:13:49 UTC MAIN commitmail json YAML

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

Import py-guessit-2.1.2 as textproc/py-guessit

GuessIt is a python library that extracts as much information as possible
from a video filename.

It has a very powerful matcher that allows to guess properties from a video
using its filename only. This matcher works with both movies and tv shows
episodes.

(leot)

2017-04-14 14:09:56 UTC MAIN commitmail json YAML

Added textproc/py-rebulk version 0.8.2

(leot)

2017-04-14 14:09:40 UTC MAIN commitmail json YAML

2017-04-14 14:09:08 UTC MAIN commitmail json YAML

Import py-rebulk-0.8.2 as textproc/py-rebulk

ReBulk is a python library that performs advanced searches in strings that
would be hard to implement using re module or String methods only.

It includes some features like Patterns, Match, Rule that allows
developers to build a custom and complex string matcher using a readable
and extendable API.

(leot)

2017-04-14 14:07:24 UTC MAIN commitmail json YAML

Added devel/py-stevedore version 1.21.0

(leot)

2017-04-14 14:06:26 UTC MAIN commitmail json YAML

+ py-stevedore

(leot)

2017-04-14 14:05:56 UTC MAIN commitmail json YAML

Import py-stevedore-1.21.0 as devel/py-stevedore

Python makes loading code dynamically easy, allowing you to configure
and extend your application by discovering and loading extensions
("plugins") at runtime. Many applications implement their own
library for doing this, using __import__ or importlib. stevedore
avoids creating yet another extension mechanism by building on top
of setuptools entry points. The code for managing entry points
tends to be repetitive, though, so stevedore provides manager
classes for implementing common patterns for using dynamically
loaded extensions.

Packaged by Kamel Ibn Aziz Derouiche in pkgsrc-wip with some
adjustements by <wiz> and misc fixes and updates by myself.

(leot)

2017-04-14 14:05:41 UTC MAIN commitmail json YAML

Bump for the recent change to PHP bundling DOM.

(roy)

2017-04-14 14:01:47 UTC MAIN commitmail json YAML

Added archivers/py-rarfile version 3.0

(leot)

2017-04-14 14:01:30 UTC MAIN commitmail json YAML

2017-04-14 14:01:02 UTC MAIN commitmail json YAML

Import py-rarfile-3.0 as archivers/py-rarfile

This is Python module for RAR archive reading. The interface is made as zipfile
like as possible. Licensed under ISC license.

Features:

* Supports both RAR3 and RAR5 format archives.
* Supports multi volume archives.
* Supports Unicode filenames.
* Supports password-protected archives.
* Supports archive and file comments.
* Archive parsing and non-compressed files are handled in pure Python code.
* Compressed files are extracted by executing external tool: either unrar from
  RARLAB or bsdtar from libarchive.
* Works with both Python 2.7 and 3.x.

(leot)

2017-04-14 13:58:59 UTC MAIN commitmail json YAML

Added textproc/py-pysrt version 1.1.1

(leot)

2017-04-14 13:58:41 UTC MAIN commitmail json YAML

2017-04-14 13:57:52 UTC MAIN commitmail json YAML

2017-04-14 13:56:23 UTC MAIN commitmail json YAML

Added multimedia/py-enzyme version 0.4.1

(leot)

2017-04-14 13:56:07 UTC MAIN commitmail json YAML

2017-04-14 13:55:35 UTC MAIN commitmail json YAML

Import py-enzyme-0.4.1 as multimedia/py-enzyme

Enzyme is a Python module to parse video metadata.

(leot)

2017-04-14 13:54:10 UTC MAIN commitmail json YAML

Added devel/py-dogpile-cache version 0.6.2

(leot)

2017-04-14 13:53:54 UTC MAIN commitmail json YAML

+ py-dogpile-cache

(leot)

2017-04-14 13:53:25 UTC MAIN commitmail json YAML

Import py-dogpile-cache-0.6.2 as devel/py-dogpile-cache

Dogpile consists of two subsystems, one building on top of the other.

dogpile provides the concept of a "dogpile lock", a control structure which
allows a single thread of execution to be selected as the "creator" of some
resource, while allowing other threads of execution to refer to the previous
version of this resource as the creation proceeds; if there is no previous
version, then those threads block until the object is available.

dogpile.cache is a caching API which provides a generic interface to caching
backends of any variety, and additionally provides API hooks which integrate
these cache backends with the locking mechanism of dogpile.

Overall, dogpile.cache is intended as a replacement to the Beaker caching
system, the internals of which are written by the same author. All the ideas of
Beaker which "work" are re- implemented in dogpile.cache in a more efficient and
succinct manner, and all the cruft (Beaker's internals were first written in
2005) relegated to the trash heap.

(leot)

2017-04-14 13:52:01 UTC MAIN commitmail json YAML

Added textproc/py-babelfish version 0.5.5

(leot)

2017-04-14 13:50:10 UTC MAIN commitmail json YAML

2017-04-14 13:49:34 UTC MAIN commitmail json YAML

Import py-babelfish-0.5.5 as textproc/py-babelfish

BabelFish is a Python library to work with countries and languages.

(leot)

2017-04-14 13:25:11 UTC MAIN commitmail json YAML

Updated www/py-gunicorn to 19.7.1

(adam)

2017-04-14 13:24:30 UTC MAIN commitmail json YAML

19.7.1 / 2017/03/21
===================
- fix: continue if SO_REUSEPORT seems to be available but fails (:issue:`1480`)
- fix: support non-decimal values for the umask command line option (:issue:`1325`)

19.7.0 / 2017/03/01
===================
- The previously deprecated ``gunicorn_django`` command has been removed.
  Use the :ref:`gunicorn-cmd` command-line interface instead.
- The previously deprecated ``django_settings`` setting has been removed.
  Use the :ref:`raw-env` setting instead.
- The default value of :ref:`ssl-version` has been changed from
  ``ssl.PROTOCOL_TLSv1`` to ``ssl.PROTOCOL_SSLv23``.
- fix: initialize the group access list when initgroups is set (:issue:`1297`)
- add environment variables to gunicorn access log format (:issue:`1291`)
- add --paste-global-conf option (:issue:`1304`)
- fix: print access logs to STDOUT (:issue:`1184`)
- remove upper limit on max header size config (:issue:`1313`)
- fix: print original exception on AppImportError (:issue:`1334`)
- use SO_REUSEPORT if available (:issue:`1344`)
- `fix leak <https://github.com/benoitc/gunicorn/commit/b4c41481e2d5ef127199a4601417a6819053c3fd>`_ of duplicate file descriptor for bound sockets.
- add --reload-engine option, support inotify and other backends (:issue:`1368`, :issue:`1459`)
- fix: reject request with invalid HTTP versions
- add ``child_exit`` callback (:issue:`1394`)
- add support for eventlets _AlreadyHandled object (:issue:`1406`)
- format boot tracebacks properly with reloader (:issue:`1408`)
- refactor socket activation and fd inheritance for better support of SystemD (:issue:`1310`)
- fix: o fds are given by default in gunicorn (:issue:`1423`)
- add ability to pass settings to GUNICORN_CMD_ARGS environment variable which helps in container world (:issue:`1385`)
- fix: catch access denied to pid file (:issue:`1091`)
-  many additions and improvements to the documentation

(adam)

2017-04-14 13:15:19 UTC MAIN commitmail json YAML

Updated net/mitmproxy to 2.0.1

(leot)

2017-04-14 13:15:04 UTC MAIN commitmail json YAML

Update net/mitmproxy to 2.0.1

Changes:
15 March 2017: mitmproxy 2.0.1
    * bump cryptography dependency
    * bump pyparsing dependency
    * HTTP/2: use header normalization from hyper-h2

21 February 2017: mitmproxy 2.0
    * HTTP/2 is now enabled by default.
    * Image ContentView: Parse images with Kaitai Struct (kaitai.io) instead of Pillow.
      This simplifies installation, reduces binary size, and allows parsing in pure Python.
    * Web: Add missing flow filters.
    * Add transparent proxy support for OpenBSD.
    * Check the mitmproxy CA for expiration and warn the user to regenerate it if necessary.
    * Testing: Tremendous improvements, enforced 100% coverage for large parts of the
      codebase, increased overall coverage.
    * Enforce individual coverage: one source file -> one test file with 100% coverage.
    * A myriad of other small improvements throughout the project.
    * Numerous bugfixes.

26 December 2016: mitmproxy 1.0
    * All mitmproxy tools are now Python 3 only! We plan to support Python 3.5 and higher.
    * Web-Based User Interface: Mitmproxy now offically has a web-based user interface
      called mitmweb. We consider it stable for all features currently exposed
      in the UI, but it still misses a lot of mitmproxy窶冱 options.
    * Windows Compatibility: With mitmweb, mitmproxy is now useable on Windows.
      We are also introducing an installer (kindly sponsored by BitRock) that
      simplifies setup.
    * Configuration: The config file format is now a single YAML file. In most cases,
      converting to the new format should be trivial - please see the docs for
      more information.
    * Console: Significant UI improvements - including sorting of flows by
      size, type and url, status bar improvements, much faster indentation for
      HTTP views, and more.
    * HTTP/2: Significant improvements, but is temporarily disabled by default
      due to wide-spread protocol implementation errors on some large website
    * WebSocket: The protocol implementation is now mature, and is enabled by
      default. Complete UI support is coming in the next release. Hooks for
      message interception and manipulation are available.
    * A myriad of other small improvements throughout the project.

16 October 2016: mitmproxy 0.18
    * Python 3 Compatibility for mitmproxy and pathod (Shadab Zafar, GSoC 2016)
    * Major improvements to mitmweb (Clemens Brunner & Jason Hao, GSoC 2016)
    * Internal Core Refactor: Separation of most features into isolated Addons
    * Initial Support for WebSockets
    * Improved HTTP/2 Support
    * Reverse Proxy Mode now automatically adjusts host headers and TLS Server Name Indication
    * Improved HAR export
    * Improved export functionality for curl, python code, raw http etc.
    * Flow URLs are now truncated in the console for better visibility
    * New filters for TCP, HTTP and marked flows.
    * Mitmproxy now handles comma-separated Cookie headers
    * Merge mitmproxy and pathod documentation
    * Mitmdump now sanitizes its console output to not include control characters
    * Improved message body handling for HTTP messages:
      .raw_content provides the message body as seen on the wire
      .content provides the decompressed body (e.g. un-gzipped)
      .text provides the body decompressed and decoded body
    * New HTTP Message getters/setters for cookies and form contents.
    * Add ability to view only marked flows in mitmproxy
    * Improved Script Reloader (Always use polling, watch for whole directory)
    * Use tox for testing
    * Unicode support for tnetstrings
    * Add dumpfile converters for mitmproxy versions 0.11 and 0.12
    * Numerous bugfixes

(leot)

2017-04-14 13:10:13 UTC MAIN commitmail json YAML

Update www/py-h2 to 2.5.2

Changes:
2.5.2 (2017-01-27)
------------------
- Resolved issue where the ``HTTP2-Settings`` header value for plaintext
  upgrade that was emitted by ``initiate_upgrade_connection`` included the
  *entire* ``SETTINGS`` frame, instead of just the payload.
- Resolved issue where the ``HTTP2-Settings`` header value sent by a client for
  plaintext upgrade would be ignored by ``initiate_upgrade_connection``, rather
  than have those settings applied appropriately.

2.4.3 (2017-01-27)
------------------
- Resolved issue where the ``HTTP2-Settings`` header value for plaintext
  upgrade that was emitted by ``initiate_upgrade_connection`` included the
  *entire* ``SETTINGS`` frame, instead of just the payload.
- Resolved issue where the ``HTTP2-Settings`` header value sent by a client for
  plaintext upgrade would be ignored by ``initiate_upgrade_connection``, rather
  than have those settings applied appropriately.

2.3.4 (2017-01-27)
------------------
- Resolved issue where the ``HTTP2-Settings`` header value for plaintext
  upgrade that was emitted by ``initiate_upgrade_connection`` included the
  *entire* ``SETTINGS`` frame, instead of just the payload.
- Resolved issue where the ``HTTP2-Settings`` header value sent by a client for
  plaintext upgrade would be ignored by ``initiate_upgrade_connection``, rather
  than have those settings applied appropriately.

2.5.1 (2016-12-17)
------------------
Bugfixes
~~~~~~~~
- Remote peers are now allowed to send zero or any positive number as a value
  for ``SETTINGS_MAX_HEADER_LIST_SIZE``, where previously sending zero would
  raise a ``InvalidSettingsValueError``.

2.5.0 (2016-10-25)
------------------
API Changes (Backward-Compatible)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Added a new ``H2Configuration`` object that allows rich configuration of
  a ``H2Connection``. This object supersedes the prior keyword arguments to the
  ``H2Connection`` object, which are now deprecated and will be removed in 3.0.
- Added support for automated window management via the
  ``acknowledge_received_data`` method. See the documentation for more details.
- Added a ``DenialOfServiceError`` that is raised whenever a behaviour that
  looks like a DoS attempt is encountered: for example, an overly large
  decompressed header list. This is a subclass of ``ProtocolError``.
- Added support for setting and managing ``SETTINGS_MAX_HEADER_LIST_SIZE``.
  This setting is now defaulted to 64kB.
- Added ``h2.errors.ErrorCodes``, an enum that is used to store all the HTTP/2
  error codes. This allows us to use a better printed representation of the
  error code in most places that it is used.
- The ``error_code`` fields on ``ConnectionTerminated`` and ``StreamReset``
  events have been updated to be instances of ``ErrorCodes`` whenever they
  correspond to a known error code. When they are an unknown error code, they
  are instead ``int``. As ``ErrorCodes`` is a subclass of ``int``, this is
  non-breaking.
- Deprecated the other fields in ``h2.errors``. These will be removed in 3.0.0.

Bugfixes
~~~~~~~~
- Correctly reject request header blocks with neither :authority nor Host
  headers, or header blocks which contain mismatched :authority and Host
  headers, per RFC 7540 Section 8.1.2.3.
- Correctly expect that responses to HEAD requests will have no body regardless
  of the value of the Content-Length header, and reject those that do.
- Correctly refuse to send header blocks that contain neither :authority nor
  Host headers, or header blocks which contain mismatched :authority and Host
  headers, per RFC 7540 Section 8.1.2.3.
- Hyper-h2 will now reject header field names and values that contain leading
  or trailing whitespace.
- Correctly strip leading/trailing whitespace from header field names and
  values.
- Correctly refuse to send header blocks with a TE header whose value is not
  ``trailers``, per RFC 7540 Section 8.1.2.2.
- Correctly refuse to send header blocks with connection-specific headers,
  per RFC 7540 Section 8.1.2.2.
- Correctly refuse to send header blocks that contain duplicate pseudo-header
  fields, or with pseudo-header fields that appear after ordinary header fields,
  per RFC 7540 Section 8.1.2.1.
  This may cause passing a dictionary as the header block to ``send_headers``
  to throw a ``ProtocolError``, because dictionaries are unordered and so they
  may trip this check.  Passing dictionaries here is deprecated, and callers
  should change to using a sequence of 2-tuples as their header blocks.
- Correctly reject trailers that contain HTTP/2 pseudo-header fields, per RFC
  7540 Section 8.1.2.1.
- Correctly refuse to send trailers that contain HTTP/2 pseudo-header fields,
  per RFC 7540 Section 8.1.2.1.
- Correctly reject responses that do not contain the ``:status`` header field,
  per RFC 7540 Section 8.1.2.4.
- Correctly refuse to send responses that do not contain the ``:status`` header
  field, per RFC 7540 Section 8.1.2.4.
- Correctly update the maximum frame size when the user updates the value of
  that setting. Prior to this release, if the user updated the maximum frame
  size hyper-h2 would ignore the update, preventing the remote peer from using
  the higher frame sizes.

2.4.2 (2016-10-25)
------------------
Bugfixes
~~~~~~~~
- Correctly update the maximum frame size when the user updates the value of
  that setting. Prior to this release, if the user updated the maximum frame
  size hyper-h2 would ignore the update, preventing the remote peer from using
  the higher frame sizes.

2.3.3 (2016-10-25)
------------------
Bugfixes
~~~~~~~~
- Correctly update the maximum frame size when the user updates the value of
  that setting. Prior to this release, if the user updated the maximum frame
  size hyper-h2 would ignore the update, preventing the remote peer from using
  the higher frame sizes.

2.2.7 (2016-10-25)
------------------
*Final 2.2.X release*

Bugfixes
~~~~~~~~
- Correctly update the maximum frame size when the user updates the value of
  that setting. Prior to this release, if the user updated the maximum frame
  size hyper-h2 would ignore the update, preventing the remote peer from using
  the higher frame sizes.

2.4.1 (2016-08-23)
------------------
Bugfixes
~~~~~~~~
- Correctly expect that responses to HEAD requests will have no body regardless
  of the value of the Content-Length header, and reject those that do.

2.3.2 (2016-08-23)
------------------
Bugfixes
~~~~~~~~
- Correctly expect that responses to HEAD requests will have no body regardless
  of the value of the Content-Length header, and reject those that do.

2.4.0 (2016-07-01)
------------------
API Changes (Backward-Compatible)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Adds ``additional_data`` to ``H2Connection.close_connection``, allowing the
  user to send additional debug data on the GOAWAY frame.
- Adds ``last_stream_id`` to ``H2Connection.close_connection``, allowing the
  user to manually control what the reported last stream ID is.
- Add new method: ``prioritize``.
- Add support for emitting stream priority information when sending headers
  frames using three new keyword arguments: ``priority_weight``,
  ``priority_depends_on``, and ``priority_exclusive``.
- Add support for "related events": events that fire simultaneously on a single
  frame.

2.3.1 (2016-05-12)
------------------
Bugfixes
~~~~~~~~
- Resolved ``AttributeError`` encountered when receiving more than one sequence
  of CONTINUATION frames on a given connection.

2.2.5 (2016-05-12)
------------------
Bugfixes
~~~~~~~~
- Resolved ``AttributeError`` encountered when receiving more than one sequence
  of CONTINUATION frames on a given connection.

2.3.0 (2016-04-26)
------------------
API Changes (Backward-Compatible)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Added a new flag to the ``H2Connection`` constructor: ``header_encoding``,
  that controls what encoding is used (if any) to decode the headers from bytes
  to unicode. This defaults to UTF-8 for backward compatibility. To disable the
  decode and use bytes exclusively, set the field to False, None, or the empty
  string. This affects all headers, including those pushed by servers.
- Bumped the minimum version of HPACK allowed from 2.0 to 2.2.
- Added support for advertising RFC 7838 Alternative services.
- Allowed users to provide ``hpack.HeaderTuple`` and
  ``hpack.NeverIndexedHeaderTuple`` objects to all methods that send headers.
- Changed all events that carry headers to emit ``hpack.HeaderTuple`` and
  ``hpack.NeverIndexedHeaderTuple`` instead of plain tuples. This allows users
  to maintain header indexing state.
- Added support for plaintext upgrade with the ``initiate_upgrade_connection``
  method.

Bugfixes
~~~~~~~~
- Automatically ensure that all ``Authorization`` and ``Proxy-Authorization``
  headers, as well as short ``Cookie`` headers, are prevented from being added
  to encoding contexts.

2.2.4 (2016-04-25)
------------------
Bugfixes
~~~~~~~~
- Correctly forbid pseudo-headers that were not defined in RFC 7540.
- Ignore AltSvc frames, rather than exploding when receiving them.

2.1.5 (2016-04-25)
------------------
*Final 2.1.X release*

Bugfixes
~~~~~~~~
- Correctly forbid pseudo-headers that were not defined in RFC 7540.
- Ignore AltSvc frames, rather than exploding when receiving them.

(leot)

2017-04-14 13:09:20 UTC MAIN commitmail json YAML

Updated www/py-hyperframe to 5.0.0

(leot)

2017-04-14 13:09:08 UTC MAIN commitmail json YAML

Update www/py-hyperframe to 5.0.0

Changes:
5.0.0 (2017-03-07)
------------------
**Backwards Incompatible API Changes**
- Added support for unknown extension frames. These will be returned in the new
  ``ExtensionFrame`` object. The flag information for these frames is persisted
  in ``flag_byte`` if needed.

4.0.2 (2017-02-20)
------------------
**Bugfixes**
- Fixed AltSvc stream association, which was incorrectly set to ``'both'``:
  should have been ``'either'``.
- Fixed a bug where stream IDs on received frames were allowed to be 32-bit,
  instead of 31-bit.
- Fixed a bug with frames that had the ``PADDING`` flag set but zero-length
  padding, whose flow-controlled length was calculated wrongly.
- Miscellaneous performance improvements to serialization and parsing logic.

4.0.1 (2016-03-13)
------------------
**Bugfixes**
- Fixed bug with the repr of ``AltSvcFrame``, where building it could throw
  exceptions if the frame had been received from the network.

4.0.0 (2016-03-13)
------------------
**Backwards Incompatible API Changes**
- Updated old ALTSVC frame definition to match the newly specified RFC 7838.
- Remove BLOCKED frame, which was never actually specified.
- Removed previously deprecated ``SettingsFrame.SETTINGS_MAX_FRAME_SIZE`` and
  ``SettingsFrame.SETTINGS_MAX_HEADER_LIST_SIZE``.

(leot)

2017-04-14 13:08:28 UTC MAIN commitmail json YAML

Updated net/py-hpack to 3.0.0

(leot)

2017-04-14 13:08:16 UTC MAIN commitmail json YAML

Update net/py-hpack to 3.0.0

Changes:
3.0.0 (2017-03-29)
------------------
**API Changes (Backward Incompatible)**
- Removed nghttp2 support. This support had rotted and was essentially
  non-functional, so it has now been removed until someone has time to re-add
  the support in a functional form.
- Attempts by the encoder to exceed the maximum allowed header table size via
  dynamic table size updates (or the absence thereof) are now forbidden.

**API Changes (Backward Compatible)**
- Added a new ``InvalidTableSizeError`` thrown when the encoder does not
  respect the maximum table size set by the user.
- Added a ``Decoder.max_allowed_table_size`` field that sets the maximum
  allowed size of the decoder header table. See the documentation for an
  indication of how this should be used.

**Bugfixes**
- Up to 25% performance improvement decoding HPACK-packed integers, depending
  on the platform.
- HPACK now tolerates receiving multiple header table size changes in sequence,
  rather than only one.
- HPACK now forbids header table size changes anywhere but first in a header
  block, as required by RFC 7541 則 4.2.
- Other miscellaneous performance improvements.

2.3.0 (2016-08-04)
------------------
**Security Fixes**
- CVE-2016-6581: HPACK Bomb. This release now enforces a maximum value of the
  decompressed size of the header list. This is to avoid the so-called "HPACK
  Bomb" vulnerability, which is caused when a malicious peer sends a compressed
  HPACK body that decompresses to a gigantic header list size.
  This also adds a ``OversizedHeaderListError``, which is thrown by the
  ``decode`` method if the maximum header list size is being violated. This
  places the HPACK decoder into a broken state: it must not be used after this
  exception is thrown.
  This also adds a ``max_header_list_size`` to the ``Decoder`` object. This
  controls the maximum allowable decompressed size of the header list. By
  default this is set to 64kB.

2.2.0 (2016-04-20)
------------------
**API Changes (Backward Compatible)**
- Added ``HeaderTuple`` and ``NeverIndexedHeaderTuple`` classes that signal
  whether a given header field may ever be indexed in HTTP/2 header
  compression.
- Changed ``Decoder.decode()`` to return the newly added ``HeaderTuple`` class
  and subclass. These objects behave like two-tuples, so this change does not
  break working code.

**Bugfixes**
- Improve Huffman decoding speed by 4x using an approach borrowed from nghttp2.
- Improve HPACK decoding speed by 10% by caching header table sizes.

2.1.1 (2016-03-16)
------------------
**Bugfixes**
- When passing a dictionary or dictionary subclass to ``Encoder.encode``, HPACK
  now ensures that HTTP/2 special headers (headers whose names begin with
  ``:`` characters) appear first in the header block.

(leot)

2017-04-14 13:07:03 UTC MAIN commitmail json YAML

Updated textproc/py-cssutils to 1.0.2

(leot)

2017-04-14 13:06:49 UTC MAIN commitmail json YAML

Update textproc/py-cssutils to 1.0.2

pkgsrc changes:
- Use REPLACE_PYTHON instead of REPLACE_INTERPRETER (no functional changes
  intended)
- Use ALTERNATIVE and instruct PLIST and Makefile post-install target
  accordingly to permit coexistence of multi-pkgs py-cssutils

Changes:
1.0.2 170304
------------
- FIXED issue #61: Nesting of `@media` rules
- FIXED issue #51 and #56: Slow font-family regex
- FIXED issue #68: failing tests on Python 3
- FIXED issue #69: our DOM implementation now delegates unsupported methods
- FIXED issue #72: importing now faster since regexes are no longer pre-cached on import time

1.0.1 151008
------------
- Fixed Python 3.5 compatibility

(leot)

2017-04-14 13:05:16 UTC MAIN commitmail json YAML

Updated devel/py-ruamel-yaml to 0.14.6

(leot)

2017-04-14 13:05:06 UTC MAIN commitmail json YAML

Update devel/py-ruamel-yaml to 0.14.6

Changes:
[0, 14, 6]: 2017-04-14
  - binary, octal and hex integers are now preserved by default. This
    was a known deficiency. Working on this was prompted by the issue report (112)
    from devnoname120, as well as the additional experience with `.replace()`
    on `scalarstring` classes.
  - fix issues 114: cannot install on Buildozer (reported by mixmastamyk).
    Setting env. var ``RUAMEL_NO_PIP_INSTALL_CHECK`` will suppress ``pip``-check.

[0, 14, 5]: 2017-04-04
  - fix issue 109: None not dumping correctly at top level (reported by Andrea Censi)
  - fix issue 110: .replace on Preserved/DoubleQuoted/SingleQuoted ScalarString
    would give back "normal" string (reported by sandres23)

[0, 14, 4]: 2017-03-31
  - fix readme

[0, 14, 3]: 2017-03-31
  - fix for 0o52 not being a string in YAML 1.1 (reported on
    `StackOverflow Q&A 43138503><http://stackoverflow.com/a/43138503/1307905>`_ by
    `Frank D <http://stackoverflow.com/users/7796630/frank-d>`_

[0, 14, 2]: 2017-03-23
  - fix for old default pip on Ubuntu 14.04 (reported by S辿bastien Maccagnoni-Munch)

0.14.1: 2017-03-22
  - fix Text not available on 3.5.0 and 3.5.1 (reported by Charles Bouchard-L辿gar辿)

0.14.0: 2017-03-21
  - updates for mypy --strict
  - preparation for moving away from inheritance in Loader and Dumper, calls from e.g.
    the Representer to the Serializer.serialize() are now done via the attribute
    .serializer.serialize(). Usage of .serialize() outside of Serializer will be
    deprecated soon
  - some extra tests on main.py functions

0.13.14: 2017-02-12
  - fix for issue 97: clipped block scalar followed by empty lines and comment
    would result in two CommentTokens of which the first was dropped.
    (reported by Colm O'Connor)

0.13.13: 2017-01-28
  - fix for issue 96: prevent insertion of extra empty line if indented mapping entries
    are separated by an empty line (reported by Derrick Sawyer)

0.13.11: 2017-01-23
  - allow ':' in flow style scalars if not followed by space. Also don't
    quote such scalar as this is no longer necessary.
  - add python 3.6 manylinux wheel to PyPI

0.13.10: 2017-01-22
  - fix for issue 93, insert spurious blank line before single line comment
    between indented sequence elements (reported by Alex)

0.13.9: 2017-01-18
  - fix for issue 92, wrong import name reported by the-corinthian

0.13.8: 2017-01-18
  - fix for issue 91, when a compiler is unavailable reported by Maximilian Hils
  - fix for deepcopy issue with TimeStamps not preserving 'T', reported on
    `StackOverflow Q&A <http://stackoverflow.com/a/41577841/1307905>`_ by
    `Quuxplusone <http://stackoverflow.com/users/1424877/quuxplusone>`_

0.13.7: 2016-12-27
  - fix for issue 85, constructor.py importing unicode_literals caused mypy to fail
    on 2.7 (reported by Peter Amstutz)

0.13.6: 2016-12-27
  - fix for issue 83, collections.OrderedDict not representable by SafeRepresenter
    (reported by Frazer McLean)

0.13.5: 2016-12-25
  - fix for issue 84, deepcopy not properly working (reported by Peter Amstutz)

0.13.4: 2016-12-05
  - another fix for issue 82, change to non-global resolver data broke implicit type
    specification

0.13.3: 2016-12-05
  - fix for issue 82, deepcopy not working (reported by code monk)

0.13.2: 2016-11-28
  - fix for comments after empty (null) values  (reported by dsw2127 and cokelaer)

0.13.1: 2016-11-22
  - optimisations on memory usage when loading YAML from large files (py3: -50%, py2: -85%)

0.13.0: 2016-11-20
  - if ``load()`` or ``load_all()`` is called with only a single argument
    (stream or string)
    a UnsafeLoaderWarning will be issued once. If appropriate you can surpress this
    warning by filtering it. Explicitly supplying the ``Loader=ruamel.yaml.Loader``
    argument, will also prevent it from being issued. You should however consider
    using ``safe_load()``, ``safe_load_all()`` if your YAML input does not use tags.
  - allow adding comments before and after keys (based on
    `StackOveflow Q&A <http://stackoverflow.com/a/40705671/1307905>`_  by
    `msinn <http://stackoverflow.com/users/7185467/msinn>`_)

0.12.18: 2016-11-16
  - another fix for numpy (re-reported independently by PaulG & Nathanial Burdic)

0.12.17: 2016-11-15
  - only the RoundTripLoader included the Resolver that supports YAML 1.2
    now all loaders do (reported by mixmastamyk)

0.12.16: 2016-11-13
  - allow dot char (and many others) in anchor name
    Fix issue 72 (reported by Shalon Wood)
  - Slightly smarter behaviour dumping strings when no style is
    specified. Single string scalars that start with single quotes
    or have newlines now are dumped double quoted: "'abc\nklm'" instead of::

      '''abc

        klm'''

0.12.14: 2016-09-21
- preserve round-trip sequences that are mapping keys
  (prompted by stackoverflow question 39595807 from Nowox)

0.12.13: 2016-09-15
- Fix for issue #60 representation of CommentedMap with merge
  keys incorrect (reported by Tal Liron)

0.12.11: 2016-09-06
- Fix issue 58 endless loop in scanning tokens (reported by
  Christopher Lambert)

0.12.10: 2016-09-05
- Make previous fix depend on unicode char width (32 bit unicode support
  is a problem on MacOS reported by David Tagatac)

0.12.8: 2016-09-05
  - To be ignored Unicode characters were not properly regex matched
    (no specific tests, PR by Haraguroicha Hsu)

0.12.7: 2016-09-03
  - fixing issue 54 empty lines with spaces (reported by Alex Harvey)

0.12.6: 2016-09-03
  - fixing issue 46 empty lines between top-level keys were gobbled (but
    not between sequence elements, nor between keys in netsted mappings
    (reported by Alex Harvey)

0.12.5: 2016-08-20
  - fixing issue 45 preserving datetime formatting (submitted by altuin)
    Several formatting parameters are preserved with some normalisation:
  - preserve 'T', 't' is replaced by 'T', multiple spaces between date
    and time reduced to one.
  - optional space before timezone is removed
  - still using microseconds, but now rounded (.1234567 -> .123457)
  - Z/-5/+01:00 preserved

0.12.4: 2016-08-19
  - Fix for issue 44: missing preserve_quotes keyword argument (reported
    by M. Crusoe)

0.12.3: 2016-08-17
  - correct 'in' operation for merged CommentedMaps in round-trip mode
    (implementation inspired by J.Ngo, but original not working for merges)
  - iteration over round-trip loaded mappings, that contain merges. Also
    keys(), items(), values() (Py3/Py2) and iterkeys(), iteritems(),
    itervalues(), viewkeys(), viewitems(), viewvalues() (Py2)
  - reuse of anchor name now generates warning, not an error. Round-tripping such
    anchors works correctly. This inherited PyYAML issue was brought to attention
    by G. Coddut (and was long standing https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=515634)
    suppressing the warning::

        import warnings
        from ruamel.yaml.error import ReusedAnchorWarning
        warnings.simplefilter("ignore", ReusedAnchorWarning)

0.12.2: 2016-08-16
  - minor improvements based on feedback from M. Crusoe
    https://bitbucket.org/ruamel/yaml/issues/42/

0.12.0: 2016-08-16
  - drop support for Python 2.6
  - include initial Type information (inspired by M. Crusoe)

0.11.15: 2016-08-07
  - Change to prevent FutureWarning in NumPy, as reported by tgehring
    ("comparison to None will result in an elementwise object comparison in the future")

0.11.14: 2016-07-06
  - fix preserve_quotes missing on original Loaders (as reported
    by Leynos, bitbucket issue 38)

0.11.13: 2016-07-06
  - documentation only, automated linux wheels

0.11.12: 2016-07-06
  - added support for roundtrip of single/double quoted scalars using:
    ruamel.yaml.round_trip_load(stream, preserve_quotes=True)

0.11.10: 2016-05-02
  - added .insert(pos, key, value, comment=None) to CommentedMap

0.11.10: 2016-04-19
  - indent=2, block_seq_indent=2 works as expected

0.11.0: 2016-02-18
  - RoundTripLoader loads 1.2 by default (no sexagesimals, 012 octals nor
    yes/no/on/off booleans

(leot)

2017-04-14 13:04:21 UTC MAIN commitmail json YAML

Updated devel/py-construct to 2.8.11

(leot)

2017-04-14 13:04:08 UTC MAIN commitmail json YAML

Update devel/py-construct to py-construct-2.8.11

pkgsrc changes:
- Update HOMEPAGE

Changes:
Unfortunately no changelog is available.

(leot)

2017-04-14 12:31:56 UTC MAIN commitmail json YAML

Added devel/py-kaitaistruct version 0.7

(leot)

2017-04-14 12:31:38 UTC MAIN commitmail json YAML

+ py-kaitaistruct

(leot)

2017-04-14 12:31:06 UTC MAIN commitmail json YAML

Import py-kaitaistruct-0.7 as devel/py-kaitaistruct

Kaitai Struct is a declarative language used for describe various
binary data structures, laid out in files or in memory: i.e. binary
file formats, network stream packet formats, etc.

The main idea is that a particular format is described in Kaitai
Struct language (.ksy file) and then can be compiled with ksc into
source files in one of the supported programming languages. These
modules will include a generated code for a parser that can read
described data structure from a file / stream and give access to
it in a nice, easy-to-comprehend API.

(leot)

2017-04-14 12:23:42 UTC MAIN commitmail json YAML

Added textproc/py-jsbeautifier version 1.6.12

(leot)

2017-04-14 12:23:09 UTC MAIN commitmail json YAML

+ py-jsbeautifier

(leot)

2017-04-14 12:22:25 UTC MAIN commitmail json YAML

Import py-jsbeautifier-1.6.12 as textproc/py-jsbeautifier

Beautify, unpack or deobfuscate JavaScript. Handles popular online
obfuscators.

(leot)

2017-04-14 12:19:26 UTC MAIN commitmail json YAML

Added devel/py-editorconfig-core version 0.12.1

(leot)

2017-04-14 12:19:05 UTC MAIN commitmail json YAML

+ py-editorconfig-core

(leot)

2017-04-14 12:18:31 UTC MAIN commitmail json YAML

Import py-editorconfig-core-0.12.1 as devel/py-editorconfig-core

Editorconfig python library. This library is used by editorconfig
plugins written in python. Editorconfig reads .editorconfig files that
define a coding style for a project. This allows the coding style to be
set by the project instead of the developer. Then the developer does not
have to change style between each project, the editor knows the coding
style of a file that belongs to a certain project.

Packaged in pkgsrc-wip by <nros> with some adjustments by <tnn> and myself.

(leot)

2017-04-14 12:11:31 UTC MAIN commitmail json YAML

Added archivers/py-brotlipy version 0.6.0

(leot)

2017-04-14 12:11:02 UTC MAIN commitmail json YAML

2017-04-14 12:10:26 UTC MAIN commitmail json YAML

Import py-brotlipy-0.6.0 as archivers/py-brotlipy

Brotlipy is a collection of CFFI-based bindings to the Brotli
compression reference implementation as written by Google. This
enables Python software to easily and quickly work with the Brotli
compression algorithm, regardless of what interpreter is being
used.

(leot)

2017-04-14 11:15:38 UTC pkgsrc-2017Q1 commitmail json YAML

2017-04-14 11:14:48 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5245 - requested by sevan
security/p5-Authen-TacacsPlus: build fix

Revisions pulled up:
- security/p5-Authen-TacacsPlus/Makefile                        1.15
- security/p5-Authen-TacacsPlus/distinfo                        1.6

---
  Module Name:    pkgsrc
  Committed By:  mef
  Date:          Thu Apr  6 13:42:46 UTC 2017

  Modified Files:
          pkgsrc/security/p5-Authen-TacacsPlus: Makefile distinfo

  Log Message:
  Updated security/p5-Authen-TacacsPlus to 0.26
  ---------------------------------------------
  0.26 2015-12-08 Mike McCauley
        - pass CFLAGS and CPPFLAGS explicitly in the subdirectory to get all
        hardening flags, Patch from Florian Schlichting.

(bsiegert)

2017-04-14 10:05:41 UTC MAIN commitmail json YAML

Updated net/dhcpcd to 7.0.0beta3

(roy)

2017-04-14 10:05:26 UTC MAIN commitmail json YAML

Import dhcpcd-7.0.0-beta3 with the following changes:
  *  restored --logfile support as a few people complained it vanished
    The new logging code even makes the overall binary size smaller
    on most platforms.
  *  BPF filter now trims garbage trailing the payload
    OK, it's not garbage, but userland doesn't know some drivers append
    FCS to it.
  *  install udev.so on supported platforms to fix segfaults.
  *  support NetBSD's RO_MSGFILTER socket option to reduce avoid context
    switching for route(4) messages that don't interest us.
  *  support OpenBSD's ROUTE_MSGFILTER which does the same.
  *  Don't open sockets if just sending signals.
  *  HMAC-MD5 test's now check expectations in code rather than relying
    on visual confirmation.
  *  added eloop-bench to test performance of eloop with available
    polling mechanisms.

(roy)

2017-04-14 09:15:57 UTC MAIN commitmail json YAML

GC list of conflicts - the pkgsrc framework will detect PLIST
conflicts automajically, says wiz@

(hauke)

2017-04-14 08:02:06 UTC MAIN commitmail json YAML

Added devel/ruby-activesupport42 version 4.2.8

(minskim)

2017-04-14 08:01:48 UTC MAIN commitmail json YAML

Add ruby-activesupport42

(minskim)

2017-04-14 08:00:26 UTC MAIN commitmail json YAML

Import ruby-activesupport-4.2.8 as devel/ruby-activesupport42

Notable changes since 3.2:
- Replace deprecated memcache-client gem with dalli in
  ActiveSupport::Cache::MemCacheStore.
- Optimize ActiveSupport::Cache::Entry to reduce memory and processing
  overhead.
- Inflections can now be defined per locale. singularize and pluralize
  accept locale as an extra argument.
- Object#try will now return nil instead of raise a NoMethodError if
  the receiving object does not implement the method, but you can still
  get the old behavior by using the new Object#try!.
- String#to_date now raises ArgumentError: invalid date instead of
  NoMethodError: undefined method 'div' for nil:NilClass when given an
  invalid date. It is now the same as Date.parse, and it accepts more
  invalid dates than 3.x.

See the release notes of 4.0, 4.1, and 4.2 for the full list:
- http://edgeguides.rubyonrails.org/4_0_release_notes.html
- http://edgeguides.rubyonrails.org/4_1_release_notes.html
- http://edgeguides.rubyonrails.org/4_2_release_notes.html

(minskim)

2017-04-14 07:13:51 UTC MAIN commitmail json YAML

BUILD_DEPEND on setuptools_scm for joerg.

(wiz)

2017-04-14 07:03:51 UTC MAIN commitmail json YAML

Note update of the "mutt" package to version 1.8.1

(tron)

2017-04-14 07:00:45 UTC MAIN commitmail json YAML

Note update of the "mutt" package to version 1.8.0nb2

(tron)

2017-04-14 07:00:02 UTC MAIN commitmail json YAML

Update "mutt" package to version 1.8.1:
This is a bug fix release.  In particular, it has fixes for setenv,
sidebar_whitelist, some refresh issues, and a potential segfault.

(tron)

2017-04-14 05:34:33 UTC MAIN commitmail json YAML

Prepare for the import of Ruby on Rails 4.2

(minskim)

2017-04-14 00:40:29 UTC MAIN commitmail json YAML

2017-04-14 00:36:25 UTC MAIN commitmail json YAML

2017-04-14 00:31:41 UTC MAIN commitmail json YAML

js2-mode works perfectly fine on emacs25

(pho)

2017-04-13 19:05:01 UTC MAIN commitmail json YAML

Updated chat/ejabberd to 17.04

(fhajny)

2017-04-13 19:04:53 UTC MAIN commitmail json YAML

Update chat/ejabberd to 17.04.
Make the Redis support unconditional (no extra dependencies).

Changes in 17.04:

Admin
- Add more examples on config template
- Generate ejabberd lib dir when not available in code server
- Set default prefix to /usr/local
- Start supervisors after ext_mod
- Don't log warning on successful ping reply
- New muc_register_nick command

Core
- Deprecate jlib.erl in favor of misc.erl
- Add support for file-based queues
- ejabberd_sm: Fix routing of headline and groupchat messages
- Fix c2s connection close on demand
- Improve overloaded S2S queue processing

Databases
- Improve Redis related code
- Add Redis pool support
- Improve logging of Redis errors
- Add Redis and SQL as mod_proxy65 RAM backends
- Add Redis and SQL as mod_carboncopy RAM backends
- Add Redis and SQL as mod_bosh RAM backends
- Add Redis and SQL as router RAM backends
- Add SQL as mod_muc RAM backend
- Remove obsolete Pubsub mnesia migration calls

Miscellany
- ejabberd_http: Expand @VERSION@ in custom headers
- ejabberd_http: Add "custom_headers" option
- mod_client_state: Queue stanzas of each full JID
- mod_http_upload: Don't add "Server" header line
- Pubsub: Refactor pubsub's get_last_items
- Pubsub: Fix PEP issues

(fhajny)

2017-04-13 19:03:38 UTC MAIN commitmail json YAML

Updated misc/erlang-p1_utils to 1.0.8

(fhajny)

2017-04-13 19:03:28 UTC MAIN commitmail json YAML

Update misc/erlang-p1_utils to 1.0.8.

- Add p1_queue
- Only perform destructive operations in p1_file_queue:in/2
- Add garbage collector for file queues
- Add ram_to_file/1 and file_to_ram/1
- Improve exception names
- Implement limited queues
- Add ownership protection
- Add get_limit/1 and set_limit/2

(fhajny)

2017-04-13 18:43:34 UTC MAIN commitmail json YAML

2017-04-13 18:43:04 UTC MAIN commitmail json YAML

Python 3.x gets a different name for boost-numpy as well, so
conditionalize the entries accordingly.

(joerg)