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

2024-05-13 13:28:01 UTC Now

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

Updated www/ruby-unicorn to 5.3.0

(wen)

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

Update to 5.3.0

Upstream changes:
unicorn 5.3.0 / 2017-04-01 08:03 UTC

A couple of portability fixes from Dylan Thacker-Smith and
Jeremy Evans since 5.3.0.pre1 over a week ago, but this looks
ready for a stable release, today.

When I started this over 8 years ago, I wondered if this would
just end up being an April Fools' joke.  Guess not.  I guess I
somehow tricked people into using a terribly marketed web server
that cannot talk directly to untrusted clients :x  Anyways,
unicorn won't be able to handle slow clients 8 years from now,
either, or 80 years from now.  And I vow never to learn to use
new-fangled things like epoll, kqueue, or threads :P

Anyways, this is a largish release with several new features,
and no backwards incompatibilities.

Simon Eskildsen contributed heavily using TCP_INFO under Linux
to implement the (now 5 year old) check_client_connection feature:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-check_client_connection
  https://bogomips.org/unicorn-public/?q=s:check_client_connection&d:..20170401&x=t

This also led to FreeBSD and OpenBSD portability improvements in
one of our dependencies, raindrops:

  https://bogomips.org/raindrops-public/20170323024829.GA5190@dcvr/T/#u

Jeremy Evans contributed several new features.  First he
implemented after_worker_exit to aid debugging:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-after_worker_exit
  https://bogomips.org/unicorn-public/?q=s:after_worker_exit&d:..20170401&x=t#t

And then security-related features to isolate workers.  Workers
may now chroot to drop access to the master filesystem, and the
new after_worker_ready configuration hook now exists to aid with
chroot support in workers:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-after_worker_ready
  https://bogomips.org/unicorn/Unicorn/Worker.html#method-i-user
  https://bogomips.org/unicorn-public/?q=s:after_worker_ready&d:..20170401&x=t#t
  https://bogomips.org/unicorn-public/?q=s:chroot&d:..20170401&x=t#t

Additionally, workers may run in a completely different VM space
(nullifying preload_app and any CoW savings) with the new
worker_exec option:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-worker_exec
  https://bogomips.org/unicorn-public/?q=s:worker_exec&d:..20170401&x=t#t

There are also several improvements to FreeBSD and OpenBSD
support with the addition of these features.

shortlog of changes since v5.2.0 (2016-10-31):

Dylan Thacker-Smith (1):
      Check for Socket::TCP_INFO constant before trying to get TCP_INFO

Eric Wong (30):
      drop rb_str_set_len compatibility replacement
      TUNING: document THP caveat for Linux users
      tee_input: simplify condition for IO#write
      remove response_start_sent
      http_request: freeze constant strings passed IO#write
      Revert "remove response_start_sent"
      t/t0012-reload-empty-config.sh: access ivars directly if needed
      t0011-active-unix-socket.sh: fix race condition in test
      new test for check_client_connection
      revert signature change to HttpServer#process_client
      support "struct tcp_info" on non-Linux and Ruby 2.2+
      unicorn_http: reduce rb_global_variable calls
      oob_gc: rely on opt_aref_with optimization on Ruby 2.2+
      http_request: reduce insn size for check_client_connection
      freebsd: avoid EINVAL when setting accept filter
      test-lib: expr(1) portability fix
      tests: keep disabled tests defined
      test_exec: SO_KEEPALIVE value only needs to be true
      doc: fix links to raindrops project
      http_request: support proposed Raindrops::TCP states on non-Linux
      ISSUES: expand on mail archive info + subscription disclaimer
      test_ccc: use a pipe to synchronize test
      doc: remove private email support address
      input: update documentation and hide internals.
      http_server: initialize @pid ivar
      gemspec: remove olddoc from build dependency
      doc: add version annotations for new features
      unicorn 5.3.0.pre1
      doc: note after_worker_exit is also 5.3.0+
      test_exec: SO_KEEPALIVE value only needs to be true (take #2)

Jeremy Evans (7):
      Add after_worker_exit configuration option
      Fix code example in after_worker_exit documentation
      Add support for chroot to Worker#user
      Add after_worker_ready configuration option
      Add worker_exec configuration option
      Don't pass a block for fork when forking workers
      Check for SocketError on first ccc attempt

Simon Eskildsen (1):
      check_client_connection: use tcp state on linux

unicorn 5.3.0.pre1 / 2017-03-24 00:25 UTC

A largish release with several new features.

Simon Eskildsen contributed heavily using TCP_INFO under Linux
to implement the (now 5 year old) check_client_connection feature:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-check_client_connection
  https://bogomips.org/unicorn-public/?q=s:check_client_connection&d:..20170324&x=t

This also led to FreeBSD and OpenBSD portability improvements in
one of our dependencies, raindrops:

  https://bogomips.org/raindrops-public/20170323024829.GA5190@dcvr/T/#u

Jeremy Evans contributed several new features.  First he
implemented after_worker_exit to aid debugging:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-after_worker_exit
  https://bogomips.org/unicorn-public/?q=s:after_worker_exit&d:..20170324&x=t#t

And then security-related features to isolate workers.  Workers
may now chroot to drop access to the master filesystem, and the
new after_worker_ready configuration hook now exists to aid with
chroot support in workers:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-after_worker_ready
  https://bogomips.org/unicorn/Unicorn/Worker.html#method-i-user
  https://bogomips.org/unicorn-public/?q=s:after_worker_ready&d:..20170324&x=t#t
  https://bogomips.org/unicorn-public/?q=s:chroot&d:..20170324&x=t#t

Additionally, workers may run in a completely different VM space
(nullifying preload_app and any CoW savings) with the new
worker_exec option:

  https://bogomips.org/unicorn/Unicorn/Configurator.html#method-i-worker_exec
  https://bogomips.org/unicorn-public/?q=s:worker_exec&d:..20170324&x=t#t

There are also several improvements to FreeBSD and OpenBSD
support with the addition of these features.

34 changes since 5.2.0 (2016-10-31):

Eric Wong (27):
      drop rb_str_set_len compatibility replacement
      TUNING: document THP caveat for Linux users
      tee_input: simplify condition for IO#write
      remove response_start_sent
      http_request: freeze constant strings passed IO#write
      Revert "remove response_start_sent"
      t/t0012-reload-empty-config.sh: access ivars directly if needed
      t0011-active-unix-socket.sh: fix race condition in test
      new test for check_client_connection
      revert signature change to HttpServer#process_client
      support "struct tcp_info" on non-Linux and Ruby 2.2+
      unicorn_http: reduce rb_global_variable calls
      oob_gc: rely on opt_aref_with optimization on Ruby 2.2+
      http_request: reduce insn size for check_client_connection
      freebsd: avoid EINVAL when setting accept filter
      test-lib: expr(1) portability fix
      tests: keep disabled tests defined
      test_exec: SO_KEEPALIVE value only needs to be true
      doc: fix links to raindrops project
      http_request: support proposed Raindrops::TCP states on non-Linux
      ISSUES: expand on mail archive info + subscription disclaimer
      test_ccc: use a pipe to synchronize test
      doc: remove private email support address
      input: update documentation and hide internals.
      http_server: initialize @pid ivar
      gemspec: remove olddoc from build dependency
      doc: add version annotations for new features

Jeremy Evans (6):
      Add after_worker_exit configuration option
      Fix code example in after_worker_exit documentation
      Add support for chroot to Worker#user
      Add after_worker_ready configuration option
      Add worker_exec configuration option
      Don't pass a block for fork when forking workers

Simon Eskildsen (1):
      check_client_connection: use tcp state on linux

(wen)

2017-04-09 03:38:41 UTC MAIN commitmail json YAML

Updated devel/p5-Clone to 0.39
Updated devel/p5-Devel-CheckLib to 1.10
Updated devel/p5-App-cpanminus to 1.7043
Updated devel/p5-B-Hooks-Parser to 0.19
Updated devel/p5-Module-Install to 1.18
Updated devel/p5-Module-Build to 0.42220
Updated devel/p5-Log-Any to 1.04.9
Updated devel/p5-Devel-Declare to 0.006019
Updated devel/p5-POE-Component-Pluggable to 1.28

(mef)

2017-04-09 03:34:44 UTC MAIN commitmail json YAML

Updated devel/p5-POE-Component-Pluggable to 1.28
------------------------------------------------
version 1.28 at 2017-02-20 13:37:38 +0000
    Convert dist to Dist::Zilla

(mef)

2017-04-09 03:31:21 UTC MAIN commitmail json YAML

Updated devel/p5-Clone to 0.39
------------------------------
0.39 2017-04-07 13:06:00  garu
  - use explicit '.' in tests since it may not be in @INC
    anymore in newer perls (fixes RT120648) (PLICEASE, SIMCOP)

(mef)

2017-04-09 03:30:05 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-CheckLib to 1.10
---------------------------------------
1.10    2017-04-08      Remove link options from @ldflags.
                        Use Mock::Config.

(mef)

2017-04-09 03:28:11 UTC MAIN commitmail json YAML

Updated devel/p5-App-cpanminus to 1.7043
----------------------------------------
1.7043  2017-04-02 20:56:06 PDT
  [Improvements]
      - Set PERL_USE_UNSAFE_INC for 5.26+ (haarg) #521
      - Strictly match module NAME in Bundle

(mef)

2017-04-09 03:26:19 UTC MAIN commitmail json YAML

Updated devel/p5-B-Hooks-Parser to 0.19
---------------------------------------
0.19    2017-04-04 19:35:08Z
  - re-release 1.18 as stable (fixes compile issues on recent blead releases)

0.18    2016-08-30 00:24:10Z (TRIAL RELEASE)
  - avoid use of sub_inwhat (RT#116685; see also RT#102918 and perl RT#123865)

(mef)

2017-04-09 03:24:22 UTC MAIN commitmail json YAML

Updated devel/p5-Module-Install to 1.18
---------------------------------------
1.18  2017-04-04
  - fix tests to no longer rely on . being in @INC (Graham Ollis, PR#58)

(mef)

2017-04-09 03:22:37 UTC MAIN commitmail json YAML

Updated devel/p5-Module-Build to 0.42220
----------------------------------------
0.4222 - Thu Mar 30 15:40:10 CEST 2017
  - Released 0.42_21 as 0.4222

0.42_21 - Wed Mar 22 19:04:02 CET 2017
  - Include relative path for do in Build/Makefile.PL will function
    without . in @INC [Todd Rinaldo]
  - Remove use deprecate [Graham Knop]
0.42

(mef)

2017-04-09 03:19:27 UTC MAIN commitmail json YAML

Updated devel/p5-Log-Any from 1.04.5 to 1.04.9
----------------------------------------------
1.049    2017-03-28 16:02:10-05:00 America/Chicago
    [Fixed]
    - Fixed failing tests on Windows because of path separator
      interpolation. Thanks @nanis [Github #56]

    - Added explicit core dependency on Sys::Syslog in case of Perls
      with non-standard core libraries. Thanks @nanis [Github #57]

1.048    2017-03-27 15:16:12-05:00 America/Chicago
    - No changes since 1.047 trial release

1.047    2017-03-22 20:22:47-05:00 America/Chicago (TRIAL RELEASE)
    [Fixed]
    - Fixed backwards-compatibility with users using the Unix::Syslog
      macros in Log::Any::Adapter::Syslog. This requires that the user
      have Unix::Syslog installed (which Log::Any does not explicitly
      depend on).

    - Log level aliases are now case-insensitive to match the regular
      log levels. Prior to this, "WARNING", "Warning", and "warning"
      would all work, but "WARN", and "Warn" would not, only "warn".
      Thanks to @0x62ash for reporting this issue. [Github #55]

    - Invalid log levels for the File, Stderr, and Stdout adapters now
      result in a warning, and the default level of "trace" is used.
      Previously, no warning would be issued and no logs would be
      generated. Thanks to @0x62ash for reporting this issue. [Github
      #55]

1.046    2017-01-11 21:22:57-06:00 America/Chicago (TRIAL RELEASE)
    [Added]
    - The Syslog adapter is now part of the core distribution, since it
      relies only on core Perl modules.

(mef)

2017-04-09 03:03:46 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-Declare to 0.006019
------------------------------------------
0.006019 - 2017-03-28
  - added deprecated flag to metadata. No deprecation warning is given at
    runtime... for now...
  - added "WARNING" section in pod, advising the deprecated status of this
    module

(mef)

2017-04-09 02:59:26 UTC MAIN commitmail json YAML

+ BUILD_DEPENDS+= p5-Email-MIME-RFC2047-[0-9]*, for make test

(mef)

2017-04-09 02:57:38 UTC MAIN commitmail json YAML

Added mail/p5-Email-MIME-RFC2047 version 0.95

(mef)

2017-04-09 02:54:23 UTC MAIN commitmail json YAML

Import Email-MIME-RFC2047-0.95 as mail/p5-Email-MIME-RFC2047.

This module encodes non-ASCII text for MIME email message headers
according to RFC 2047.

(mef)

2017-04-09 01:28:54 UTC MAIN commitmail json YAML

Updated www/mediawiki to 1.18.1

(wen)

2017-04-09 01:26:46 UTC MAIN commitmail json YAML

Update to 1.18.1

Upstream changes:
MediaWiki 1.28.1
Changes since 1.28.0

    $wgRunJobsAsync is now false by default (T142751). This change only affects wikis with $wgJobRunRate > 0.
    Fix fatal from "WaitConditionLoop" not being found, experienced when a wiki has more than one database server setup.
    (T152717) Better escaping for PHP mail() command
    (T154670) A missing method causing the MySQL installer to fatal in rare circumstances was restored.
    (T154672) Un-deprecate ArticleAfterFetchContentObject hook.
    (T158766) Avoid SQL error on MSSQL when using selectRowCount()
    (T145635) Fix too long index error when installing with MSSQL
    (T156184) $wgRawHtml will no longer apply to internationalization messages.
    (T160519) CACHE_ANYTHING will not be CACHE_ACCEL if no accelerator is installed.
    (T154872) Fix incorrect ar_usertext_timestamp index names in new 1.28 installs.
    (T109140) (T122209) SECURITY: Special:UserLogin and Special:Search allow redirect to interwiki links.
    (T144845) SECURITY: XSS in SearchHighlighter::highlightText() when $wgAdvancedSearchHighlighting is true.
    (T125177) SECURITY: API parameters may now be marked as "sensitive" to keep their values out of the logs.
    (T150044) SECURITY: "Mark all pages visited" on the watchlist now requires a CSRF token.
    (T156184) SECURITY: Escape content model/format url parameter in message.
    (T151735) SECURITY: SVG filter evasion using default attribute values in DTD declaration.
    (T161453) SECURITY: LocalisationCache will no longer use the temporary directory in it's fallback chain when trying to work out where to write the cache.
    (T48143) SECURITY: Spam blacklist ineffective on encoded URLs inside file inclusion syntax's link parameter.

(wen)

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

+ eagle-8.1.0

(mef)

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

Updated cad/gtkwave to 3.3.80

(mef)

2017-04-09 01:09:03 UTC MAIN commitmail json YAML

Updated cad/gtkwave to 3.3.80
-----------------------------
3.3.80  17mar17 Added "/View/Mouseover Copies To Clipboard" menu option to
                allow copying values into the clipboard so they can be pasted
                into text editors, etc.

(mef)

2017-04-09 00:23:41 UTC MAIN commitmail json YAML

Updated cad/qcad to 3.16.7.0

(mef)

2017-04-09 00:23:26 UTC MAIN commitmail json YAML

Updated cad/qcad to 3.16.7.0
----------------------------
3.16.7 (2017/03/21)
    Bug fixes:
        FS#1560 - Main menu not selectable (Ubuntu 16.04, Unity)
        FS#1561 - Edit > Drawing Preferences: menu missing (macOS, French locale)

(mef)

2017-04-08 21:45:24 UTC MAIN commitmail json YAML

Updated devel/py-txaio to 2.6.2; www/py-autobahn to 0.18.1

(adam)

2017-04-08 21:44:55 UTC MAIN commitmail json YAML

2017-04-08 21:40:54 UTC MAIN commitmail json YAML

2017-04-08 21:30:14 UTC MAIN commitmail json YAML

Updated security/py-asn1-modules to 0.0.8

(adam)

2017-04-08 21:25:26 UTC MAIN commitmail json YAML

Revision 0.0.8
- Wheel distribution format now supported
- Fix to misspelled rfc2459.id_at_sutname variable
- Fix to misspelled rfc2459.NameConstraints component tag ID
- Fix to misspelled rfc2459.GeneralSubtree component default status

(adam)

2017-04-08 20:11:03 UTC MAIN commitmail json YAML

Updated www/py-urllib3 to 1.20

(adam)

2017-04-08 20:10:31 UTC MAIN commitmail json YAML

Changes 1.20:
Added support for waiting for I/O using selectors other than select, improving urllib3窶冱 behaviour with large numbers of concurrent connections. (Pull 1001)
Updated the date for the system clock check. (Issue 1005)
ConnectionPools now correctly consider hostnames to be case-insensitive. (Issue 1032)
Outdated versions of PyOpenSSL now cause the PyOpenSSL contrib module to fail when it is injected, rather than at first use. (Pull 1063)
Outdated versions of cryptography now cause the PyOpenSSL contrib module to fail when it is injected, rather than at first use. (Issue 1044)
Automatically attempt to rewind a file-like body object when a request is retried or redirected. (Pull 1039)
Fix some bugs that occur when modules incautiously patch the queue module. (Pull 1061)
Prevent retries from occuring on read timeouts for which the request method was not in the method whitelist. (Issue 1059)
Changed the PyOpenSSL contrib module to lazily load idna to avoid unnecessarily bloating the memory of programs that don窶冲 need it. (Pull 1076)
Add support for IPv6 literals with zone identifiers. (Pull 1013)
Added support for socks5h:// and socks4a:// schemes when working with SOCKS proxies, and controlled remote DNS appropriately. (Issue 1035)

(adam)

2017-04-08 19:28:31 UTC pkgsrc-2017Q1 commitmail json YAML

pullups 5246, 5250, 5251 (=5239) and 5253

(spz)

2017-04-08 19:25:56 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5252 - requested by joerg
www/py-django: security update

Revisions pulled up:
- www/py-django/Makefile                                      patch
- www/py-django/distinfo                                      patch

(spz)

2017-04-08 19:18:47 UTC MAIN commitmail json YAML

Removed misc/ruby-descendants_tracker

(tsutsui)

2017-04-08 19:17:40 UTC MAIN commitmail json YAML

Remove ruby-descendants_tracker package.

The upstream github has not been updated for three years and
the only user net/ruby-twitter gem no longer requires this one.
Ok by @taca.

(tsutsui)

2017-04-08 19:10:47 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5251 - requested by bsiegert
devel/golint: build fix

Revisions pulled up:
- devel/golint/Makefile                                        1.7
- devel/golint/PLIST                                            1.2
- devel/golint/distinfo                                        1.2

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: bsiegert
  Date: Tue Apr  4 16:16:20 UTC 2017

  Modified Files:
  pkgsrc/devel/golint: Makefile PLIST distinfo

  Log Message:
  Update golint to 20170228.

  Fix build with go-tools-1.8. The previous version of the package depended
  on a Go package that was removed from go-tools a year ago:

  https://groups.google.com/forum/#!topic/golang-announce/qu_rAphYdxY

  To generate a diff of this commit:
  cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/golint/Makefile
  cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/golint/PLIST \
      pkgsrc/devel/golint/distinfo

(spz)

2017-04-08 18:36:51 UTC MAIN commitmail json YAML

2017-04-08 18:22:51 UTC MAIN commitmail json YAML

Remove dependency on sysutils/checkpassword. In the default install it's
used only for qmail-pop3d, which is likely not being used much anymore.
Other installs might need a different implementation of checkpassword
anyhow. And this implementation is not (yet?) in the public domain, so
it's blocking us from publishing binary packages of qmail.

Unless (until?) sysutils/checkpassword becomes "public-domain", it
remains under "djb-nonlicense". If you continue to need it, since you've
already accepted the nonlicense, simply install it directly.

I believe this package and all its remaining dependencies are now in
DEFAULT_ACCEPTABLE_LICENSES. Bump PKGREVISION.

(schmonz)

2017-04-08 18:08:53 UTC MAIN commitmail json YAML

2017-04-08 18:06:51 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5250 - requested by bsiegert
net/rabbitmq: security update

Revisions pulled up:
- net/rabbitmq/Makefile                                        1.29
- net/rabbitmq/distinfo                                        1.33

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: fhajny
  Date: Thu Mar 30 15:19:04 UTC 2017

  Modified Files:
  pkgsrc/net/rabbitmq: Makefile distinfo

  Log Message:
  Update net/rabbitmq to 3.6.9.

  Management and Management Agent Plugins
  - Security Vulnerability Patches
    - CVE-2017-4965: XSS vulnerabilities in management UI
    - CVE-2017-4966: authentication details are stored in browser-local
      storage without expiration
    - CVE-2017-4967: XSS vulnerabilities in management UI
  - Bug Fixes
    - Certain TCP and TLS listener configuration settings could break
      JSON serialisation of GET /api/overview responses.

  Federation Plugin
  - More numerical types are now handled for the "hops" property.

  .NET Client
  - Calling ExchangeBind more than once with the same arguments threw an
    exception.

  To generate a diff of this commit:
  cvs rdiff -u -r1.28 -r1.29 pkgsrc/net/rabbitmq/Makefile
  cvs rdiff -u -r1.32 -r1.33 pkgsrc/net/rabbitmq/distinfo

(spz)

2017-04-08 17:50:33 UTC MAIN commitmail json YAML

When DJB_RESTRICTED=YES (true by default in djbware.mk), LICENSE=djb-nonlicense.

(schmonz)

2017-04-08 17:34:36 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5246 - requested by sevan
sysutils/collectd: security update

Revisions pulled up:
- sysutils/collectd/Makefile                                    1.21
- sysutils/collectd/distinfo                                    1.35
- sysutils/collectd/patches/patch-src_network.c                1.5

-------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  fhajny
  Date:          Thu Apr  6 09:12:02 UTC 2017

  Modified Files:
          pkgsrc/sysutils/collectd: Makefile distinfo
  Added Files:
          pkgsrc/sysutils/collectd/patches: patch-src_network.c

  Log Message:
  Backport fix for CVE-2017-7401. Bump PKGREVISION.

  To generate a diff of this commit:
  cvs rdiff -u -r1.20 -r1.21 pkgsrc/sysutils/collectd/Makefile
  cvs rdiff -u -r1.34 -r1.35 pkgsrc/sysutils/collectd/distinfo
  cvs rdiff -u -r0 -r1.5 pkgsrc/sysutils/collectd/patches/patch-src_network.c

(spz)

2017-04-08 14:11:42 UTC MAIN commitmail json YAML

Updated cad/klayout to 0.24.10

(mef)

2017-04-08 13:48:52 UTC MAIN commitmail json YAML



(mef)

2017-04-08 13:37:47 UTC MAIN commitmail json YAML

Remove variables that have default values.

(wiz)

2017-04-08 13:35:26 UTC MAIN commitmail json YAML

+ ng-spice-26

(mef)

2017-04-08 12:45:00 UTC MAIN commitmail json YAML

Updated cad/py-gds to 1.1.2

(mef)

2017-04-08 12:44:49 UTC MAIN commitmail json YAML

Updated cad/py-gds to 1.1.2
---------------------------
### Version 1.1.2 (Mar 19, 2017)
* Update clipper library to 6.4.2 to fix bugs introduced in the last update.
* License change to Boost Software License v1.0.

(pkgsrc changes)
- LICENSE converted to boost-license as noted above

(mef)

2017-04-08 12:30:43 UTC MAIN commitmail json YAML

2017-04-08 12:17:58 UTC MAIN commitmail json YAML

2017-04-08 12:04:54 UTC MAIN commitmail json YAML

Updated security/py-asn1 to 0.2.3; www/py-uwsgi to 2.0.15

(adam)

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

uWSGI 2.0.15
Maintenance release

Issues
Unfortunately there are still 2 unfixed long standing bugs in this release:
* suwsgi protocol behind nginx does not work reliably when a request body is sent by the client (https://github.com/unbit/uwsgi/issues/1490). As we cannot reproduce it in uWSGI itself, we will start checking in the nginx module too
* There are reports of the 窶徂oly窶� wsgi env allocator crashing on specific conditions, this release includes a bunch of workarounds but they could not be enough

Changes
* workaround for the holy allocator for avoiding crashes with newrelic (see Issues notes)
* avoid time overflow in request logs during (even minimal) clock skew
* fixed python logger with python3
* fixed catch-exceptions with python3
* backported 窶彭on窶冲 clone $env->{窶湾sgix.io窶凩 on 窶榔SGI cancel窶吮��
* added support for authentication in the redis logger
* added the spinningfifo action hook to the core
* fixed compilation with php 7.1
* correctly returns error code 22 in lazy_apps + master_mode
* fixed compilation for OpenSSL 1.1
* Add a 窶都kip-atexit-teardown option to skip perl/python teardown
* fixed static file serving over https-socket

(adam)

2017-04-08 11:47:34 UTC MAIN commitmail json YAML

2017-04-08 11:25:11 UTC MAIN commitmail json YAML

Revision 0.2.3, released 25-02-2017
-----------------------------------
- Improved SEQUENCE/SET/CHOICE decoding performance by maintaining a single shared
  NamedType object for all instances of SEQUENCE/SET object.
- Improved INTEGER encoding/decoding by switching to Python's built-in
  integer serialization functions.
- Improved BitString performance by rebasing it onto Python int type and leveraging
  fast Integer serialization functions.
- BitString type usability improved in many ways: for example bitshifting and
  numeric operation on BitString is now possible.
- Minor ObjectIdentifier type performance optimization.
- ASN.1 character types refactored to keep unicode contents internally
  (rather than serialized octet stream) and duck-type it directly.
- ASN.1 OctetString initialized from a Python object performs bytes()
  on it when running on Python 3 (used to do str() which is probably
  less logical).
- Missing support for NoValue.__sizeof__ added.
- Added checks to make sure SEQUENCE/SET components being assigned
  match the prototypes.
- Setter methods for constructed types consistently accept matchTags
  and matchConstraints flags to control the strictness of inner
  components compatibility verification. Previously, these checks
  were tied to verifyConstraints flag, now they are all independent.
- General documentation improvements here and there.
- Fix to __reversed__() magic to make it returning an iterator.
- Test suite simplified and unified.
- The __all__ variable added to most of the Python modules.
- The "test" directory renamed into "tests" not to collide with
  the "test" module.

(adam)

2017-04-08 08:56:52 UTC MAIN commitmail json YAML

2017-04-08 08:56:27 UTC MAIN commitmail json YAML

Update to 4.6.2

* Use internal heimdal

Changelog:
Changes since 4.6.1:
--------------------

o  Jeremy Allison <jra@samba.org>
  * BUG 12721: Fix regression with "follow symlinks = no".

Changes since 4.6.0:
--------------------

o  Jeremy Allison <jra@samba.org>
  * BUG 12496: CVE-2017-2619: Symlink race permits opening files outside share
    directory.

o  Ralph Boehme <slow@samba.org>
  * BUG 12496: CVE-2017-2619: Symlink race permits opening files outside share
    directory.

CHANGES SINCE 4.6.0rc4
======================

o  Jeremy Allison <jra@samba.org>
  * BUG 12592: Fix several issues found by covscan.
  * BUG 12608: s3: smbd: Restart reading the incoming SMB2 fd when the send
    queue is drained.

o  Ralph Boehme <slow@samba.org>
  * BUG 12427: vfs_fruit doesn't work with fruit:metadata=stream.
  * BUG 12526: vfs_fruit: Only veto AppleDouble files if "fruit:resource" is
    set to "file".
  * BUG 12604: vfs_fruit: Enabling AAPL extensions must be a global switch.

o  Volker Lendecke <vl@samba.org>
  * BUG 12612: Re-enable token groups fallback.

o  Stefan Metzmacher <metze@samba.org>
  * BUG 9048: Samba4 ldap error codes.
  * BUG 12557: gensec:spnego: Add debug message for the failed principal.
  * BUG 12605: s3:winbindd: Fix endless forest trust scan.
  * BUG 12612: winbindd: Find the domain based on the sid within
    wb_lookupusergroups_send().

o  Andreas Schneider <asn@samba.org>
  * BUG 12557: s3:librpc: Handle gss_min in gse_get_client_auth_token()
    correctly.
  * BUG 12582: idmap_hash: Add a deprecation message, improve the idmap_hash
    manpage.
  * BUG 12592: Fix several issues found by covscan.

o  Martin Schwenke <martin@meltin.net>
  * BUG 12592: ctdb-logging: CID 1396883 Dereference null return value
    (NULL_RETURNS).

CHANGES SINCE 4.6.0rc3
======================

o  Jeremy Allison <jra@samba.org>
  * BUG 12545: s3: rpc_server/mdssvc: Add attribute "kMDItemContentType".
  * BUG 12572: s3: smbd: Don't loop infinitely on bad-symlink resolution.

o  Ralph Boehme <slow@samba.org>
  * BUG 12490: vfs_fruit: Correct Netatalk metadata xattr on FreeBSD.
  * BUG 12536: s3/smbd: Check for invalid access_mask
    smbd_calculate_access_mask().
  * BUG 12591: vfs_streams_xattr: use fsp, not base_fsp.

o  Amitay Isaacs <amitay@gmail.com>
  * BUG 12580: ctdb-common: Fix use-after-free error in comm_fd_handler().
  * BUG 12595: build: Fix generation of CTDB manpages while creating tarball.

o  Bryan Mason <bmason@redhat.com>
  * BUG 12575: Modify smbspool_krb5_wrapper to just fall through to smbspool if
    AUTH_INFO_REQUIRED is not set or is not "negotiate".

o  Stefan Metzmacher <metze@samba.org>
  * BUG 11830: s3:winbindd: Try a NETLOGON connection with noauth over NCACN_NP
    against trusted domains.
  * BUG 12262: 'net ads testjoin' and smb access fails after winbindd changed the
    trust password.
  * BUG 12585: librpc/rpc: fix regression in
    NT_STATUS_RPC_ENUM_VALUE_OUT_OF_RANGE error mapping.
  * BUG 12586: netlogon_creds_cli_LogonSamLogon doesn't work without
    netr_LogonSamLogonEx.
  * BUG 12587: winbindd child segfaults on connect to an NT4 domain.
  * BUG 12588: s3:winbindd: Make sure cm_prepare_connection() only returns OK
    with a valid tree connect.
  * BUG 12598: winbindd (as member) requires kerberos against trusted ad domain,
    while it shouldn't.
  * BUG 12601: Backport pytalloc_GenericObject_reference() related changes to
    4.6.

o  Garming Sam <garming@catalyst.net.nz>
  * BUG 12600: dbchecker: Stop ignoring linked cases where both objects are
    alive.

o  Andreas Schneider <asn@samba.org>
  * BUG 12571: s3-vfs: Only walk the directory once in open_and_sort_dir().

o  Martin Schwenke <martin@meltin.net>
  * BUG 12589: CTDB statd-callout does not cause grace period when
    CTDB_NFS_CALLOUT="".
  * BUG 12595: ctdb-build: Fix RPM build.

CHANGES SINCE 4.6.0rc2
======================

o  Jeremy Allison <jra@samba.org>
  * BUG 12499: s3: vfs: dirsort doesn't handle opendir of "." correctly.
  * BUG 12546: s3: VFS: vfs_streams_xattr.c: Make streams_xattr_open() store
    the same path as streams_xattr_recheck().
  * BUG 12531: Make vfs_shadow_copy2 cope with server changing directories.

o  Andrew Bartlett <abartlet@samba.org>
  * BUG 12543: samba-tool: Correct handling of default value for use_ntvfs and
    use_xattrs.
  * BUG 12573: Samba < 4.7 does not know about compatibleFeatures and
    requiredFeatures.
  * BUG 12577: 'samba-tool dbcheck' gives errors on one-way links after a
    rename.

o  Ralph Boehme <slow@samba.org>
  * BUG 12184: s3/rpc_server: Shared rpc modules loading.
  * BUG 12520: Ensure global "smb encrypt = off" is effective.
  * BUG 12524: s3/rpc_server: Move rpc_modules.c to its own subsystem.
  * BUG 12541: vfs_fruit: checks wrong AAPL config state and so always uses
    readdirattr.

o  Volker Lendecke <vl@samba.org>
  * BUG 12551: smbd: Fix "map acl inherit" = yes.

o  Stefan Metzmacher <metze@samba.org>
  * BUG 12398: Replication with DRSUAPI_DRS_CRITICAL_ONLY and
    DRSUAPI_DRS_GET_ANC results in WERR_DS_DRA_MISSING_PARENT S
  * BUG 12540: s3:smbd: allow "server min protocol = SMB3_00" to go via "SMB
    2.???" negprot.

o  John Mulligan <jmulligan@nasuni.com>
  * BUG 12542: docs: Improve description of "unix_primary_group" parameter in
    idmap_ad manpage.

o  Andreas Schneider <asn@samba.org>
  * BUG 12552: waf: Do not install the unit test binary for krb5samba.

o  Amitay Isaacs <amitay@gmail.com>
  * BUG 12547: ctdb-build: Install CTDB tests correctly from toplevel.
  * BUG 12549: ctdb-common: ioctl(.. FIONREAD ..) returns an int value.

o  Garming Sam <garming@catalyst.net.nz>
  * BUG 12577: 'samba-tool dbcheck' gives errors on one-way links after a
    rename.

o  Uri Simchoni <uri@samba.org>
  * BUG 12529: waf: Backport finding of pkg-config.

CHANGES SINCE 4.6.0rc1
======================

o  Amitay Isaacs <amitay@gmail.com>
  * BUG 12469: CTDB lock helper getting stuck trying to lock a record.
  * BUG 12500: ctdb-common: Fix a bug in packet reading code for generic socket
    I/O.
  * BUG 12510: sock_daemon_test 4 crashes with SEGV.
  * BUG 12513: ctdb-daemon: Remove stale eventd socket.

o  Bj旦rn Jacke <bj@sernet.de>
  * BUG 12535: vfs_default: Unlock the right file in copy chunk.

o  Volker Lendecke <vl@samba.org>
  * BUG 12509: messaging: Fix dead but not cleaned-up-yet destination sockets.
  * BUG 12538: Backport winbind fixes.

o  Stefan Metzmacher <metze@samba.org>
  * BUG 12501: s3:winbindd: talloc_steal the extra_data in
    winbindd_list_users_recv().

o  Martin Schwenke <martin@meltin.net>
  * BUG 12511: ctdb-takeover: Handle case where there are no RELEASE_IPs to
    send.
  * BUG 12512: ctdb-scripts: Fix remaining uses of "ctdb gratiousarp".
  * BUG 12516: ctdb-scripts: /etc/iproute2/rt_tables gets populated with multiple
    'default' entries.

(ryoon)

2017-04-08 07:45:29 UTC MAIN commitmail json YAML

Updated net/mikutter to 3.5.7

(tsutsui)

2017-04-08 07:44:23 UTC MAIN commitmail json YAML

Update mikutter to 3.5.7.

Upstream changes:

mikutter 3.5.7

* support Ayanoniwa's icecream image (thanks @ahiru3net)
* associations against (undefined) was not invoked (thanks @moguno)
* custom Model :modified key which included MessageMixin was ignored
  (thanks @moguno)

(tsutsui)

2017-04-08 07:28:29 UTC MAIN commitmail json YAML

Updated print/cups to 2.2.3; devel/py-wheel to 0.29.0

(adam)

2017-04-08 07:27:33 UTC MAIN commitmail json YAML

Changes 0.29.0:
Fix compression type of files in archive

(adam)

2017-04-08 07:27:09 UTC MAIN commitmail json YAML

CHANGES IN CUPS V2.2.3
- The IPP backend could get into an infinite loop for certain errors,
  causing a hung queue (<rdar://problem/28008717>)
- The scheduler could pause responding to client requests in order to
  save state changes to disk (<rdar://problem/28690656>)
- Added support for PPD finishing keywords (Issue 4960, Issue 4961,
  Issue 4962)
- The IPP backend did not send a media-col attribute for just the source
  or type (Issue 4963)
- IPP Everywhere print queues did not always support all print qualities
  supported by the printer (Issue 4953)
- IPP Everywhere print queues did not always support all media types
  supported by the printer (Issue 4953)
- The IPP Everywhere PPD generator did not return useful error messages
  (Issue 4954)
- The IPP Everywhere finishings support did not work correctly with
  common UI or command-line options (Issue 4976)
- Fixed an error handling issue for the network backends (Issue 4979)
- The default cupsd.conf file did not work on systems compiled without
  Kerberos support (Issue 4947)
- The "reprint job" option was not available for some canceled jobs
  (Issue 4915)
- Updated the job listing in the web interface (Issue 4978)
- Fixed some localization issues on macOS

(adam)

2017-04-07 23:34:40 UTC MAIN commitmail json YAML

Bump PKGREVISION for previous

(pgoyette)

2017-04-07 23:21:20 UTC MAIN commitmail json YAML

xpipeman fails to update the scores file with ASLR enabled.

XXX does this require a rev bump?

(pgoyette)

2017-04-07 13:41:44 UTC MAIN commitmail json YAML

Updated misc/libreoffice to 5.3.2.2

(ryoon)

2017-04-07 13:41:07 UTC MAIN commitmail json YAML

Update to 5.3.2.2

Changelog:
5.3.2.2
Bugs fixed compared to 5.3.2 rc1):

    tdf#80731 revert "Closing parenthesis is now detected" [Katarina Behrens]
    tdf#103591 convert bmps to png [Caol叩n McNamara]
    tdf#104447 sw: make lcl_DebugMarks output more readable, pos. at the start [Michael Stahl]
    tdf#105463 convert bmps to png [Caol叩n McNamara]
    tdf#105843 restore Application Start and Stop events [Jean-Baptiste Faure]
    tdf#106529 revert "Closing parenthesis is now detected" [Katarina Behrens]

5.3.2.1
Bugs fixed compared to 5.3.1 final (rc2):

    i#92948 sw: WW8 import: fix table in Apo in header [Michael Stahl]
    i#101009 sw: compare document: tweak special handling of EndOfContent [Michael Stahl]
    rhbz#1431476 Impress: Moving slides copies instead of moving [Caol叩n McNamara]
    rhbz#1431540 crash in SwDBManager::releaseRevokeListener [Caol叩n McNamara]
    tdf#54443 list only matching JREs [Samuel Mehrbrodt]
    tdf#71409 revert my fix for to hopefully fix . [Kohei Yoshida]
    tdf#77111 sw: fix page number offset on table dialog "Text Flow" [Michael Stahl]
    tdf#90407 export Text AutoFit to .pptx [Tor Lillqvist]
    tdf#91306 cui,sw: fix page number offset on paragraph dialog "Text Flow" [Michael Stahl]
    tdf#94435 RTF import: \ltrpar should not override \qc from style [Miklos Vajna]
    tdf#95206 print preview: page numbering starts with 1 (not 0) [Katarina Behrens]
    tdf#95612 print preview: page numbering starts with 1 (not 0) [Katarina Behrens]
    tdf#96275 RTF import: handle bitmap shapes inside tables [Miklos Vajna]
    tdf#96685 gtk findfocus return only if focused [Justin Luth]
    tdf#97731 allow status bar to adapt to its own preferred size [Caol叩n McNamara]
    tdf#99120 doc/docx: make unit test for round-tripable [Justin Luth]
    tdf#99908 ensure non-empty unique gradient names [Katarina Behrens]
    tdf#100903 gtk findfocus return only if focused [Justin Luth]
    tdf#100986 force using GDI when needed [Khaled Hosny]
    tdf#101178 sw: DOCX export: fix crash [Michael Stahl]
    tdf#101904 fix Date deleting in SCalc [Jean-Sebastien Bevilacqua]
    tdf#102777 broadcast SC_TAB_INSERTED when inserting scenario [Eike Rathke]
    tdf#103830 form field names not update in python macro [Noel Grandin]
    tdf#103831 force using GDI when needed [Khaled Hosny]
    tdf#103931 DOCX import: fix lost section break [Miklos Vajna]
    tdf#104026 the range should be updated after the references, [Markus Mohrhard]
    tdf#104081 RTF import: handle \htmautsp [Miklos Vajna]
    tdf#104117 set template parameter sal_Int64 for random [Toma転 Vajngerl]
    tdf#104222 put expensive debug code behind #if again [Mat炭邸 Kukan]
    tdf#104287 RTF import: handle bitmap shapes inside tables [Miklos Vajna]
    tdf#104381 revert my fix for to hopefully fix . [Kohei Yoshida]
    tdf#104482 force updating progress bar on safe [Jan-Marek Glogowski]
    tdf#105256 gtk findfocus return only if focused [Justin Luth]
    tdf#105486 fix conditional format import from XLSB, [Markus Mohrhard]
    tdf#105544 don't forget to set the managed flag, [Markus Mohrhard]
    tdf#105656 only delete path if less than 2 points [Regina Henschel]
    tdf#105729 RTF import: \ltrpar should not override \qc from style [Miklos Vajna]
    tdf#105854 retain popover if it has the same pos, size and settings [Caol叩n McNamara]
    tdf#106001 treat CharScaleWidth outliers as 100 in DOCX import [Aron Budea]
    tdf#106099 tweak to restore old behaviour [Caol叩n McNamara]
    tdf#106116 "Previous Marker" changes selection only when needed [Takeshi Abe]
    tdf#106123 store and restore the PaM around the menu Execute [Caol叩n McNamara]
    tdf#106190 following Treat blank after fraction bar [Laurent Balland-Poirier]
    tdf#106217 wrong size and position of a shape inside chart [Tam叩s Zolnai]
    tdf#106218 sw: compare document: tweak special handling of EndOfContent [Michael Stahl]
    tdf#106261 throw away old node map for table [Caol叩n McNamara]
    tdf#106271 cannot disable Menubar under Unity [Samuel Mehrbrodt]
    tdf#106283 registry settings are not read properly on Windows [Tam叩s Zolnai]
    tdf#106304 fix newline and empty paragraph font size issues in .pptx export [Tor Lillqvist]
    tdf#106456 don't try to use invalid ranges in external ref code [Markus Mohrhard]
    tdf#106459 3D reference can't be handled as vector reference [Eike Rathke]
    tdf#106462 old value and new value were swapped [Lionel Elie Mamane]
    tdf#106466 use graphite2 shaper first [Khaled Hosny]
    tdf#106557 don't crash on missing line spacing argument [Caol叩n McNamara]

(ryoon)

2017-04-07 13:33:17 UTC MAIN commitmail json YAML

Updated emulators/qemu to 2.8.1

(ryoon)

2017-04-07 13:32:52 UTC MAIN commitmail json YAML

2017-04-07 13:30:33 UTC MAIN commitmail json YAML

Updated emulators/simh to 4.0.0.20170406

(ryoon)

2017-04-07 13:30:01 UTC MAIN commitmail json YAML

Update to 4.0.0.20140406

* Use SDL2 instead of SDL
* Build and install BESM-6 simulator

Changelog:
* Add MDS-225 simulator

(ryoon)

2017-04-07 08:53:39 UTC MAIN commitmail json YAML

Updated sysutils/libpciaccess to 0.13.5

(wiz)

2017-04-07 08:53:29 UTC MAIN commitmail json YAML

This release includes musl build fixes, improvements to the Solaris backend
and allows parsing separate sysfs files rather than reading the config file
on newer kernels.

Adam Jackson (1):
      chmod a-x README.cygwin

Chuck Tuffli (1):
      libpciaccess: Fix incorrect format specification

Emil Velikov (7):
      autogen.sh: pass --force to autoreconf, quote string variables
      linux sysfs: retrieve vendor, device... info via separate sysfs files
      autogen.sh: use quoted string variables
      Revert "linux_sysfs: include <limits.h> for PATH_MAX"
      configure.ac: remove AC_CONFIG_SRCDIR macro
      configure.ac: set AC_CONFIG_AUX_DIR
      libpciaccess 0.13.5

Felix Janda (2):
      linux_sysfs.c: Include <limits.h> for PATH_MAX
      linux_sysfs: include <limits.h> for PATH_MAX

Henry Zhao (2):
      probe should not hold pci nexus drivers open
      use cached devinfo snapshots, remove unnecessary di_init()

Julien Cristau (1):
      Include config.h before anything else in *.c

Keith Busch (1):
      Ignore 32-bit domains

Mihail Konev (1):
      autogen: add default patch prefix

Peter Hutterer (1):
      autogen.sh: use exec instead of waiting for configure to finish

Thomas Klausner (1):
      Fix quoting issue.

arsharma (2):
      vgaarb: add a the trailing NULL character on read(vgaarb_fd)
      device-name: handle calloc failure in insert()

(wiz)

2017-04-07 08:52:15 UTC MAIN commitmail json YAML

Updated x11/libdrm to 2.4.77

(wiz)

2017-04-07 08:52:04 UTC MAIN commitmail json YAML

Bernd Kuhls (1):
      tests/etnaviv: link against libdrm

Christian Gmeiner (1):
      etnaviv: remove struct etna_specs

Emil Velikov (2):
      amdgpu: add amdgpu_bo_va_op_raw to the symbol check
      configure.ac: bring back pthread-stubs check

Erik Faye-Lund (1):
      tegra: update symbol-check

Junwei Zhang (1):
      amdgpu: add REPLACE and CLEAR checking for VA op (v2)

Marek Ol邸叩k (1):
      configure.ac: bump the version to 2.4.77

Nicolai H辰hnle (3):
      amdgpu: add amdgpu_bo_va_op_raw
      headers: sync amdgpu_drm.h from airlied/drm-next
      headers: the uint*_t vs. __u* discrepancy in amdgpu_drm is fixed

Rob Herring (2):
      Android: fix building of modetest and proptest
      Android: disable pointer-arith and enum-conversion

Seung-Woo Kim (5):
      exynos: fix type-punned pointer build warning
      exynos/fimg2d: remove unused-function build warning
      tests/exynos: remove unused-function build warning
      tests/exynos: fix invalid code of error path in g2d test
      xf86drm: remove memory leaks in drmGetBusid/drmGetReservedContextList

(wiz)

2017-04-07 03:46:37 UTC MAIN commitmail json YAML

Updated devel/py-appdirs to 1.4.3; devel/py-pyparsing to 2.2.0; net/py-Socks to 1.6.7; security/py-certifi to 2017.1.23

(adam)

2017-04-07 03:45:57 UTC MAIN commitmail json YAML

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

2017-04-07 03:35:12 UTC MAIN commitmail json YAML

Version 2.2.0 - March, 2017
---------------------------
- Bumped minor version number to reflect compatibility issues with
  OneOrMore and ZeroOrMore bugfixes in 2.1.10. (2.1.10 fixed a bug
  that was introduced in 2.1.4, but the fix could break code
  written against 2.1.4 - 2.1.9.)

- Updated setup.py to address recursive import problems now
  that pyparsing is part of 'packaging' (used by setuptools).

- Fixed KeyError issue reported by Yann Bizeul when using packrat
  parsing in the Graphite time series database, thanks Yann!

- Fixed incorrect usages of '\' in literals.

- Minor internal change when using '-' operator, to be compatible
  with ParserElement.streamline() method.

- Expanded infixNotation to accept a list or tuple of parse actions
  to attach to an operation.

- New unit test added for dill support for storing pyparsing parsers.
  Ordinary Python pickle can be used to pickle pyparsing parsers as
  long as they do not use any parse actions. The 'dill' module is an
  extension to pickle which *does* support pickling of attached
  parse actions.

(adam)

2017-04-07 03:31:06 UTC MAIN commitmail json YAML

appdirs 1.4.3
Python 3.6 invalid escape sequence deprecation fixes
Fix for Python 3.6 support

(adam)

2017-04-07 00:42:13 UTC MAIN commitmail json YAML

Updated security/p5-Net-SSH to 2.09.01

(mef)

2017-04-07 00:41:59 UTC MAIN commitmail json YAML

Updated security/p5-Net-SSH to 2.09.01
--------------------------------------
2.09 2016.10.26
    - Fix creation of keys in ecdsa, ed25519 key classes
    - Update eg/pssh-keygen to create ecdsa, ed25519 keys
    - Handle hostkeys-00@openssh.com global requests
    - Add support for 'CheckHostIP' and 'UpdateHostKeys' config options
    - Refactor handling of '+' syntax in options
    - Key fingerprints now output sha256-base64 by default.
      (md5 can be specified with FingerprintHash config option)
    - Add id_ed25519, id_ecdsa to default identity files
    - Documentation updates in Perl.pm to reflect new functionality in 2.XX

2.08 2016.10.14
    - Use sha512 instead of md5 in Net::SSH::Perl::Cipher->new_from_key_str()
      to provide ChachaPoly with enough key material
      Tests in t/05-cipher.t should now pass on all platforms [ CPAN bug #114077 ]
    - Add AES128_CBC to cipher tests
    - Info on using features not enabled by default added to README

2.07 2016.10.13

    - Fix blowfish compilation on SunOS [CPAN bug #116323]
    - Fix bug in Packet [CPAN bug #118335]
    - Add support for '+' syntax in MACs option
    - Remove hmac-sha1 from default MACs. It can re-enabled
      by passing the option: 'MACs +hmac-sha1'

2.06 2016.10.04

    - Add support for additional fixed Diffie-Hellman 2K, 4K and 8K groups
      from OpenSSH 7.3 (draft-ietf-curdle-ssh-kex-sha2-03)
    - Kex defaults now updated to draft-ietf-curdle-ssh-kex-sha2-03
      recommendations (diffie-hellman-group-exchange-sha1 removed)
      It can re-enabled by passing the option:
      'KexAlgorithms +diffie-hellman-group-exchange-sha1'

2.05 2016.10.03

    - Add support for '+' syntax in Ciphers, KexAlgorithms, HostKeyAlgorithms
      options as in OpenSSH

2.04 2016.05.11

    - Add ECDSA key support
    - Improve extract_public() in Key.pm inspired by
      https://github.com/renormalist/Net-SSH-Perl/pull/12
      but implement comment with backwards compat with RSA/DSA datafellows
    - Fix XS from being loaded more than once (warnings from Net::SFTP)

2.03 2016.05.06

    - Fixes so that "make test" passes

2.02 2016.05.04

    - Use CryptX to further reduce module depedencies
      This eliminates the need for:
        Math::Pari
        Crypt::DH
        Crypt::RSA
        Crypt::DSA
        Crypt::DES
        Crypt::Blowfish
        MIME::Base64
    - Add support for rsa-sha2-512,rsa-sha2-256 signing with RSA keys
    - Implement HashKnownHosts, KexAlgorithms, MACs config directives
    - Add XS code for Chacha20, BSD Blowfish, Ed25519 routines
    - Properly handle and create known_hosts entries when port is specified
    - Remove obsolete ciphers, MACs, Kex from default list to duplicate
      upcoming OpenSSH behavior
    - Bug fixes

2.01 2016.02.19

    - Use CryptX to reduce module depedencies
      This eliminates the need for:
        BSD::arc4random
        Digest::MD5
        Digest::SHA
        Digest::HMAC_MD5
        Crypt::OpenSSL::AES

2.00 2015.12.07

    - Add Chacha20-Poly1305 cipher support for best security
      (Requires Crypt::OpenSSH::ChachaPoly, see README)
    - Add AES Cipher support in CTR mode (CBC mode supported in Ed25519
      keys only)
    - Add Group Exchange (RFC4523) Diffie-Hellman Key Exchange
    - Add Curve25519 (curve25519-sha256@libssh.org) Key Exchange support
      (Requires Crypt::Curve25519)
    - Add hmac-sha2-256,hmac-sha2-512 MAC support
    - Add hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com
      Encrypt-then-MAC (ETM) MAC support
    - Use BSD::arc4random for encrypted packet padding
    - Add support for Ed25519 ssh/host keys (Requires Crypt::Ed25519)
      Encrypted Ed25519 key support requires Crypt::OpenBSD::Blowfish
      (See README for info)
    - Default ciphers order is now chacha,aes,3des,blowfish,arcfour
    - Default KEX order is now Curve25519, DHGEXSHA256, DHGEXSHA1, DH14, DH1
    - Default MAC order is now hmac-sha2-512-etm@openssh.com,
      hmac-sha2-256-etm@openssh.com, sha2-512, sha2-256, sha1, md5
    - SSH Keys can now be in DOS format (no need to remove CR/LF)
    - SOCKS proxy support via sub class Net::SSH:Perl::Proxy
    - Now does not abort due to OpenSSH 6.8+ server
      SSH2_MSG_GLOBAL_REQUEST messages for host key rotation

(pkgsrc changes)
    - Adjust DEPENDS base upon above note (p5-CryptX related)

(mef)

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

2017-04-06 20:08:58 UTC MAIN commitmail json YAML

Updated sysutils/rsyslog to 8.26.0

(fhajny)

2017-04-06 20:08:38 UTC MAIN commitmail json YAML

Update sysutils/rsyslog* to 8.26.0.

- enable internal error messages at all times
- core: added logging name of source of rate-limited messages
- omfwd: omfwd: add support for network namespaces
- imrelp: honor input name if provided when submitting to impstats
- imptcp: add ability to set owner/group/access perms for uds
- mmnormalize: add ability to load a rulebase from action() parameter
- pmrfc3164 improvements
  - permit to ignore leading space in MSG
  - permit to use at-sign in host names
  - permit to require tag to end in colon
- add new global parameter "umask"
- core: make use of -T command line option more secure
- omfile: add error if both file and dynafile are set
- bugfix: build problem on MacOS (not a supported platform)
- regression fix: in 8.25, str2num() returned error on empty string
- bugfix omsnmp: improper handling of new-style configuration
  parameters
- bugfix: rsyslog identifies itself as "liblogging-stdlog" in internal
  messages
- bugfix imfile: wrong files were monitored when using multiple imfile
  inputs
- bugfix: setting net.aclResolveHostname/net.acladdhostnameonfail
  segfaults
- bugfix: immark emitted error messages with text "imuxsock"
- bugfix tcpflood: build failed if RELP was disabled
- fix gcc6 compiler warnings
- the output module array passing interface has been removed

(fhajny)

2017-04-06 20:00:58 UTC MAIN commitmail json YAML

Updated sysutils/liblognorm to 2.0.3

(fhajny)

2017-04-06 20:00:49 UTC MAIN commitmail json YAML

Update sysutils/liblognorm to 2.0.3.

Version 2.0.3, 2017-03-22

- add ability to load rulebase from a string
- bugfix: string parser did not correctly parse word at end of line
- bugfix: literal parser does not always store value if name is specified

Version 2.0.2, 2016-11-15

- bugfix: no error was emitted on invalid "annotate" line
- "annnotate": permit inline comments
- fix a problem with cross-compilation
- bugfix: abort in literal path compaction when useing "alternative" parser
- bugfix: lognormalizer could loop
- fix misleading compiler warning
- testbench: add test for "annotate" functionality

(fhajny)

2017-04-06 19:51:25 UTC MAIN commitmail json YAML

Updated security/py-certbot to 0.13.0

(fhajny)

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

Update security/py-certbot and security/py-acme to 0.13.0.

0.13.0 - 2017-04-06

Added
- --debug-challenges pauses Certbot after setting up challenges for
  debugging.
- The Nginx parser can handle all valid directives in configuration
  files.
- Nginx ciphersuites changed to Mozilla Intermediate.
- certbot-auto --no-bootstrap won't install OS dependencies.

Fixed
- --register-unsafely-without-email respects --quiet.
- Hyphenated renewalparams are now saved in renewal config files.
- --dry-run no longer persists keys and csrs.
- No longer hangs when trying to start Nginx in Arch Linux.
- Apache rewrite rules no longer double-encode characters.

0.12.0 - 2017-03-02

Added
- Allow non-camelcase Apache VirtualHost names
- Allow more log messages to be silenced

Fixed
- Fix a regression around using --cert-name when getting new
  certificates

(fhajny)

2017-04-06 19:25:27 UTC MAIN commitmail json YAML

Updated sysutils/consul to 0.8.0

(fhajny)

2017-04-06 19:25:18 UTC MAIN commitmail json YAML

Update sysutils/consul to 0.8.0

BREAKING CHANGES:

- Command-Line Interface RPC Deprecation: The RPC client interface has
  been removed.
- Version 8 ACLs Are Now Opt-Out: The acl_enforce_version_8
  configuration now defaults to true to enable full version 8 ACL
  support by default.
- Remote Exec Is Now Opt-In: The default for disable_remote_exec was
  changed to "true", so now operators need to opt-in to having agents
  support running commands remotely via consul exec.
- Raft Protocol Compatibility: When upgrading to Consul 0.8.0 from a
  version lower than 0.7.0, users will need to set the -raft-protocol
  option to 1 in order to maintain backwards compatibility with the old
  servers during the upgrade.

FEATURES:

- Autopilot: A set of features has been added to allow for automatic
  operator-friendly management of Consul servers.
- Dead Server Cleanup: Dead servers will periodically be cleaned up and
  removed from the Raft peer set
- Server Health Checking: An internal health check has been added to
  track the stability of servers.
- New Server Stabilization: When a new server is added to the cluster,
  there will be a waiting period where it must be healthy and stable for
  a certain amount of time before being promoted to a full, voting member.
- Advanced Redundancy: (Consul Enterprise) A new -non-voting-server
  option flag has been added for Consul servers to configure a server
  that does not participate in the Raft quorum.
- Upgrade Orchestration: (Consul Enterprise) Autopilot will
  automatically orchestrate an upgrade strategy for Consul servers
- Network Areas: (Consul Enterprise) A new capability has been added
  which allows operators to define network areas that join together two
  Consul datacenters.
- WAN Soft Fail: Request routing between servers in the WAN is now more
  robust by treating Serf failures as advisory but not final.
- WAN Join Flooding: A new routine was added that looks for Consul
  servers in the LAN and makes sure that they are joined into the WAN as
  well.
- Validate command: To provide consistency across our products, the
  configtest command has been deprecated and replaced with the validate
  command

IMPROVEMENTS:

- agent: Fixed a missing case where gossip would stop flowing to dead
  nodes for a short while.
- agent: Changed agent to seed Go's random number generator.
- agent: Serf snapshots no longer have the executable bit set on the
  file.
- agent: Consul is now built with Go 1.8.
- agent: Updated aws-sdk-go version (used for EC2 auto join) for Go 1.8
  compatibility.
- agent: User-supplied node IDs are now normalized to lower-case.
- agent: Added checks to enforce uniqueness of agent node IDs at cluster
  join time and when registering with the catalog.
- cli: Standardized handling of CLI options for connecting to the Consul
  agent.
- cli: Updated go-cleanhttp library for better HTTP connection handling
  between CLI commands and the Consul agent
- cli: The operator raft subcommand has had its two modes split into the
  list-peers and remove-peer subcommands.
- cli: Added an -id flag to the operator raft remove-peer command to
  allow removing a peer by ID.
- dns: Allows the .service tag to be optional in RFC 2782 lookups.
- server: Changed the internal EnsureRegistration RPC endpoint to
  prevent registering checks that aren't associated with the top-level
  node being registered.

BUG FIXES:

- agent: Fixed an issue with consul watch not working when http was
  listening on a unix socket.
- agent: Fixed an issue where checks and services could not sync
  deregister operations back to the catalog when version 8 ACL support
  is enabled.
- agent: Fixed an issue where agents could use the ACL token registered
  with a service when registering checks for the same service that were
  registered with a different ACL token.
- cli: Fixed consul kv commands not reading the CONSUL_HTTP_TOKEN
  environment variable.
- cli: Fixed an issue where prefixing an address with a protocol (such
  as 'http://' or 'https://') in -http-addr or CONSUL_HTTP_ADDR would
  give an error.
- cli: Fixed an issue where error messages would get printed to stdout
  instead of stderr.
- server: Fixed an issue with version 8 ACLs where servers couldn't
  deregister nodes from the catalog during reconciliation.
- server: Fixed an issue where servers could temporarily roll back
  changes to a node's metadata or tagged addresses when making updates
  to the node's health checks.
- server: Fixed an issue where the service name consul was not subject
  to service ACL policies with version 8 ACLs enabled.

(fhajny)

2017-04-06 15:01:15 UTC MAIN commitmail json YAML

Updated net/py-lexicon to 2.0.6

(fhajny)

2017-04-06 15:01:06 UTC MAIN commitmail json YAML

Update net/py-lexicon to 2.0.6.

- Removed unnecessary import of pprint

(fhajny)

2017-04-06 14:59:32 UTC MAIN commitmail json YAML

Updated lang/nodejs6 to 6.10.2

(fhajny)

2017-04-06 14:59:22 UTC MAIN commitmail json YAML

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

(fhajny)

2017-04-06 14:58:00 UTC MAIN commitmail json YAML

Updated lang/nodejs4 to 4.8.2

(fhajny)

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

Update lang/nodejs4 to 4.8.2.

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

(fhajny)

2017-04-06 14:19:18 UTC MAIN commitmail json YAML

Updated security/p5-Crypt-OpenSSL-DSA to 0.19
Updated security/p5-Crypt-OpenSSL-Bignum to 0.08

(mef)

2017-04-06 14:18:38 UTC MAIN commitmail json YAML

Note eol

Note that dovecot 1.2 is eol, and why it isn't being deleted.

(gdt)

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

Updated security/p5-Crypt-OpenSSL-DSA to 0.19
---------------------------------------------
0.19    2017/01/13
        - fix building against openssl 1.1.0 without compat modes (eroen)

(mef)

2017-04-06 14:15:48 UTC MAIN commitmail json YAML

Updated security/p5-Crypt-OpenSSL-Bignum to 0.08
------------------------------------------------
0.08    2017/02/08
        - Makefile.PL MSWin32 fix

0.07    2016/10/25
        - Makefile.PL supports OPENSSL_PREFIX or OPENSSL_LIB+OPENSSL_INCLUDE env variables
        - Makefile.PL tries to find libcrypto via pkg-config

(mef)

2017-04-06 13:56:38 UTC MAIN commitmail json YAML

Updated security/p5-pcsc to 1.4.14
Updated security/p5-Net-OpenSSH to 0.74
Updated security/p5-Net-DNS-SEC to 1.03
Updated security/p5-Authen-CAS-Client to 0.08
Updated security/p5-Authen-TacacsPlus to 0.26

(mef)

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

Updated security/p5-pcsc to 1.4.14
----------------------------------
2015-11-19  author  <author@debian>
        * README: Release 1.4.14

        * PCSC.xs: Update copyright date

        * PCSC.xs: _StringifyError(): cast Error in a (DWORD)

        On Mac OS X El Capitan (at least) the value is extended to 64 bits and
        is then wrong.

        We get 0xFFFFFFFF80100068 instead of 0x80100068 and all the error codes
        are all converted to the default error: "Unknown (reader specific ?) error..."

(mef)

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

Updated security/p5-Net-OpenSSH to 0.74
---------------------------------------
0.74  Feb 10, 2017
        - Update list of options accepted by method "sftp" (bug report
          by Mirror).

(mef)

2017-04-06 13:47:45 UTC MAIN commitmail json YAML

Updated security/p5-Net-DNS-SEC to 1.03
---------------------------------------
**** 1.03 August 26, 2016
Fix: rt.cpan.org #108908
        Tests break when Net::DNS gets shadowed by existing pre-1.01 version.

(mef)

2017-04-06 13:45:24 UTC MAIN commitmail json YAML

Updated security/p5-Authen-CAS-Client to 0.08
---------------------------------------------
changes from 0.07 to 0.08
=========================
  * updated Makefile.PL to reflect changes in default @INC handling v5.25+.
  * fleshed README with documentation
  * added README.md for GitHub
  * updated to 'Nil' license

(mef)

2017-04-06 13:42:46 UTC MAIN commitmail json YAML

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.

(mef)

2017-04-06 09:12:02 UTC MAIN commitmail json YAML

2017-04-06 08:59:06 UTC MAIN commitmail json YAML

Updated devel/py-argparse to 1.4.0; devel/py-babel to 2.4.0; textproc/py-sphinx to 1.5.5

(adam)

2017-04-06 08:51:43 UTC MAIN commitmail json YAML

Release 1.5.5

Bugs fixed
* 3597: python domain raises UnboundLocalError if invalid name given
* 3599: Move to new Mathjax CDN

(adam)

2017-04-06 06:49:18 UTC MAIN commitmail json YAML

Version 2.4.0

New Features
~~~~~~~~~~~~
Some of these changes might break your current code and/or tests.

* CLDR: CLDR 29 is now used instead of CLDR 28
* Messages: Add option 'add_location' for location line formatting
* Numbers: Allow full control of decimal behavior

Minor Improvements and bugfixes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Documentation: Improve Date Fields descriptions
* Documentation: Typo fixes and documentation improvementscs10)
* Messages: Default to UTF-8 source encoding instead of ISO-8859-1
* Messages: Ensure messages are extracted in the order they were passed in
* Messages: Message extraction for JSX files is improved
* Messages: PO file reading supports multi-line obsolete units
* Messages: Python message extractor respects unicode_literals in __future__
* Messages: Roundtrip Language headers
* Messages: units before obsolete units are no longer erroneously marked obsolete
* Numbers: `parse_pattern` now preserves the full original pattern
* Numbers: Fix float conversion in `extract_operands`
* Plurals: Fix plural forms for Czech and Slovak locales
* Plurals: More plural form fixes based on Mozilla and CLDR references

Internal improvements
~~~~~~~~~~~~~~~~~~~~~
* Local times are constructed correctly in tests
* Miscellaneous small improvements
* Regex flags are extracted from the regex strings
* The PO file reader is now a class and has seen some refactoring

(adam)

2017-04-06 06:33:58 UTC MAIN commitmail json YAML

argparse 1.4.0
- make argparse behave for default args aka
  issue 12776, 11839: call argparse type function only once.
- move to github:ThomasWaldmann/argparse
- add TW as maintainer / give TW's email
- add some usecase to README, clarify issue tracking
- add a note to tox.ini about testing on dead snakes

(adam)

2017-04-06 05:20:11 UTC MAIN commitmail json YAML

add and enable py-bugzilla

(jnemeth)

2017-04-06 03:12:21 UTC MAIN commitmail json YAML

Added www/ruby-loofah version 2.0.3

(minskim)

2017-04-06 03:11:38 UTC MAIN commitmail json YAML

Add ruby-loofah

(minskim)

2017-04-06 03:10:52 UTC MAIN commitmail json YAML

Import ruby-loofah-2.0.3 as www/ruby-loofah

Loofah is a general library for manipulating and transforming HTML/XML
documents and fragments. It's built on top of Nokogiri and libxml2, so
it's fast and has a nice API. Loofah excels at HTML sanitization (XSS
prevention). It includes some nice HTML sanitizers, which are based on
HTML5lib's whitelist, so it most likely won't make your codes less
secure.

(minskim)

2017-04-05 21:59:35 UTC pkgsrc-2017Q1 commitmail json YAML

tickets 5242 amd 5244; fix fumble in changes file with 5232 and 5233

(spz)

2017-04-05 21:54:27 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5244 - requested by kim
net/proftpd-postgresql: security update
net/proftpd-sqlite; security update
net/proftpd: security update

Revisions pulled up:
- net/proftpd-postgresql/Makefile                              1.3
- net/proftpd-sqlite/Makefile                                  1.6
- net/proftpd/Makefile                                          1.85
- net/proftpd/Makefile.common                                  1.5
- net/proftpd/distinfo                                          1.46

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: kim
  Date: Wed Apr  5 17:36:00 UTC 2017

  Modified Files:
  pkgsrc/net/proftpd: Makefile Makefile.common distinfo
  pkgsrc/net/proftpd-postgresql: Makefile
  pkgsrc/net/proftpd-sqlite: Makefile

  Log Message:
  Update net/proftpd (and modules) to 1.3.5d with a fix for CVE-2017-7418

  1.3.5d - Released 15-Jan-2017
  --------------------------------
  - Bug 4283 - All FTP logins treated as anonymous logins again.  This is a
    regression of Bug#3307.

  1.3.5c - Released 14-Jan-2017
  --------------------------------
  - Bug 4254 - SSH rekey during authentication can cause issues with clients.
  - Bug 4257 - Recursive SCP uploads of multiple directories not handled properly.
  - Bug 4259 - LIST returns different results for file, depending on path syntax.
  - Bug 4255 - "AuthAliasOnly on" in server config breaks anonymous logins.
  - Bug 4272 - CapabilitiesEngine directive not honored for <IfUser>/<IfGroup>
    sections.
  - Bug 4275 - Support OpenSSL 1.1.x API.
  - Bug 4278 - Memory leak when mod_facl is used.

  To generate a diff of this commit:
  cvs rdiff -u -r1.84 -r1.85 pkgsrc/net/proftpd/Makefile
  cvs rdiff -u -r1.4 -r1.5 pkgsrc/net/proftpd/Makefile.common
  cvs rdiff -u -r1.45 -r1.46 pkgsrc/net/proftpd/distinfo
  cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/proftpd-postgresql/Makefile
  cvs rdiff -u -r1.5 -r1.6 pkgsrc/net/proftpd-sqlite/Makefile

(spz)

2017-04-05 21:16:45 UTC pkgsrc-2017Q1 commitmail json YAML

Pullup ticket #5242 - requested by wiz
www/curl: security patch

Revisions pulled up:
- www/curl/Makefile                                            1.179
- www/curl/distinfo                                            1.129

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: wiz
  Date: Wed Apr  5 12:12:58 UTC 2017

  Modified Files:
  pkgsrc/www/curl: Makefile distinfo

  Log Message:
  Updated curl to 7.53.1nb1.

  Add upstream patch fixing CVE-2017-7407.

  To generate a diff of this commit:
  cvs rdiff -u -r1.178 -r1.179 pkgsrc/www/curl/Makefile
  cvs rdiff -u -r1.128 -r1.129 pkgsrc/www/curl/distinfo

(spz)

2017-04-05 20:11:35 UTC MAIN commitmail json YAML

Fix for CVE-2017-7207

(tez)

2017-04-05 20:11:01 UTC MAIN commitmail json YAML

2017-04-05 19:49:29 UTC pkgsrc-2017Q1 commitmail json YAML

tickets 5230, 5231, 5232 and 5235

(spz)

2017-04-05 19:17:30 UTC MAIN commitmail json YAML

Updated pkgtools/pkglint to 5.4.20

(rillig)

2017-04-05 19:17:19 UTC MAIN commitmail json YAML

Updated pkglint to 5.4.20.

Changes since 5.4.19:
* Updated allowed Python versions to include py36.

(rillig)

2017-04-05 18:26:28 UTC MAIN commitmail json YAML

Updated time/py-pytz to 2017.2; www/py-django to 1.11; archivers/gsharutils to 4.15.2; archivers/lrzip to 0.631; www/py-curl to 7.43.0; devel/py-backports_abc to 0.5; www/py-tornado to 4.4.3

(adam)

2017-04-05 18:23:26 UTC MAIN commitmail json YAML

Changes 4.4.3:
Bug fixes
The tornado.auth module has been updated for compatibility with a change to Facebook窶冱 access_token endpoint.

(adam)

2017-04-05 17:58:26 UTC MAIN commitmail json YAML

Changes 0.5:
* support old-style (mro-missing) classes

(adam)

2017-04-05 17:56:18 UTC MAIN commitmail json YAML

PycURL 7.43.0:

Highlights of this release:

1. Binary wheels are now built for Windows systems.

2. setopt_string method added to Curl objects to permit setting string libcurl
  options that PycURL does not know about.

3. curl module can now be imported on Windows again.

4. OPENSOCKETFUNCTION callback is now invoked with the address as bytes on
  Python 3 as was documented.

5. Support for many libcurl options and constants was added.

(adam)

2017-04-05 17:38:25 UTC MAIN commitmail json YAML

Updated net/proftpd to 1.3.5d

(kim)

2017-04-05 17:36:00 UTC MAIN commitmail json YAML

Update net/proftpd (and modules) to 1.3.5d with a fix for CVE-2017-7418

1.3.5d - Released 15-Jan-2017
--------------------------------
- Bug 4283 - All FTP logins treated as anonymous logins again.  This is a
  regression of Bug#3307.

1.3.5c - Released 14-Jan-2017
--------------------------------
- Bug 4254 - SSH rekey during authentication can cause issues with clients.
- Bug 4257 - Recursive SCP uploads of multiple directories not handled properly.
- Bug 4259 - LIST returns different results for file, depending on path syntax.
- Bug 4255 - "AuthAliasOnly on" in server config breaks anonymous logins.
- Bug 4272 - CapabilitiesEngine directive not honored for <IfUser>/<IfGroup>
  sections.
- Bug 4275 - Support OpenSSL 1.1.x API.
- Bug 4278 - Memory leak when mod_facl is used.

(kim)

2017-04-05 17:34:39 UTC MAIN commitmail json YAML

version 0.630
* checksum.buf should only be changed after the semaphore wait
* Update README
* Add documentation for recursive mode
* Implement gzip compatible -r recursive option
* Add initial argument processing for recursive option
* Tidy
* Add one more verbose for compat mode
* Add support for various combinations in compat mode
* models is array of chars. char's signess is implementation specific. It's
unsigned on ARMv7. Unsigned char cannot represent negative values. GCC 6
complains about it:
* Fix decompression of multiple chunk encrypted archives
* Tidy gotos
* Show correct lengths during testing on big endian and compressed archives
* Update copyright dates
* Allow less than maxram to be malloced for checksum to fix Failed to malloc
ckbuf in hash_search2
* Base temporary output buffer on maximum mallocable, not maxram
* Enable subdir objects for future automake compatibility
* Add support for -m option in lrztar
* Big endian fix for Solaris Sparc courtesy of joelfredrikson.
* Fixed typographical error, changed accomodate to accommodate in README.
* A whitespace fix on lrztar.
* Add sanity check to prevent trying to malloc more ram than a
system/environment is capable of
* Cosmetic help change for compat
* Add rudimentary manpage for lrz
* Fix lrz symbolic linkage
* Do not fail if we are unable to write temporary files, giving a warning only
that it might fail if we don't have enough ram
* Try /tmp/ if none of the temporary environment directories or the current
directory are writeable
* Set STDOUT correctly in compat mode
* Style police
* Fix false warning on decompressing from stdin without keep files
* Fix false warning on compressing from stdin without keep files
* Don't show extra message in compat mode decompress
* Show correct appname when called in compat mode
* Add support for progress, fast and best flags in compat mode
* Add compatibility mode with gzip when called as lrz
* Correct adding slash to control->tmpdir. off-by-one error.
* Update manpage for long options

(adam)

2017-04-05 17:23:07 UTC MAIN commitmail json YAML

Version 4.15.2:
* updates to fix cross platform build issues
* fixed problem where contrived uuencoded file caused seg fault

(adam)

2017-04-05 17:08:49 UTC MAIN commitmail json YAML

Changes 1.11:
As always, the release notes cover the medley of new features in detail, but a few highlights are:
* Class-based model indexes for creating database indexes.
* Template-based widget rendering to ease customizing form widgets.
* Subquery expressions to create explicit subqueries using the ORM.

(adam)

2017-04-05 17:07:35 UTC MAIN commitmail json YAML

2017-04-05 16:45:59 UTC MAIN commitmail json YAML

Updated finance/gnucash to 2.6.16

(wiz)

2017-04-05 16:45:47 UTC MAIN commitmail json YAML

Updated gnucash to 2.6.16.

2.6.16 - 26 March 2017

The following bugs are fixed:
      Bug 516920 - Calendar Pop up disappears of the left side.
      Bug 603379 - Prevent changing some Account Options if it has transactions
      Bug 670731 - Future Value not working with Loan Scheduled transaction
      Bug 739571 - Matching imported transactions doesn't indicate previously
                  matched entries
      Bug 759934 - Tiny reports in HiDPI (workaround).
      Bug 766630 - gui dialog for sorting transactions to accounts after aqbanking
                  import broken
      Bug 767032 - Bad invoices from importing "posted" needing currency conversion
                  Only auto-post if the posted_to account name is valid, there's
  no currency conversion, or the invoice customer's currency
  matches the A/R account currency. Tell the user what happened
  with a dialog.
      Bug 773945 - Select Security Dialog Not User Friendly:
                  Add a new namespace ���ALL NON-CURRENCY��� to the namespace (type)
  selector lists on the security picker and price editor which
  causes the commodity list to include all non-security
  commodities.
      Bug 776247 - PriceEditor thinks Currency XXX is an actual currency and
                  tries to retrieve prices for it.
      Bug 776380 - Gross value of bills charged back instead of net value
      Bug 776494 - Wrong menu entry in Tip of the day
      Bug 776517 - Trial Balance Report: Total Debits Issue re $0 Commodity
                  Accounts and Price Source Mode Set to "Nearest in Time" or
  "Most Recent"
      Bug 776564 - Creating a scheduled transaction from an existing transaction
                  does not include the notes field.
      Bug 778208 - Scheduling 2nd, 3rd or 4th Wed doesn't seem to work.
      Bug 779217 - Transactions rounded to 5 decimal places when opening file.
      Bug 779411 - jqplot fixes for piechart and syntax error.
      Bug 777875 - Reports with charts are flickering in certain circumstances
      Bug 777949 - Accounts implicitly created in ledger attempt creation twice

Other repairs not marked as bugs in git:
      Use "Billing Information" as in other biz modules
      Update local symbol for MUR.
      Online banking: Add output of bank messages that might occasionally be
            received.
      Allow only date entry for opening balances on new accounts.
      Enable taxinvoice to show net price: Add gncEntryGetNetPrice. Create an
            option in taxinvoice to either use gncEntryGetNetPrice or
            gncEntryGetPrice
      Make SQL full-DB sync safer and clean up automatically if it's interrupted
            by a system or network failure.
      Extend account color to all columns in the account hierarchy page
      Localize the word ���CURRENCY��� used in the commodity namespace selectors.

The following translations have been updated: Catalan, Dutch, Finnish, German. Portuguese, Russian, Serbian.

(wiz)

2017-04-05 16:07:27 UTC MAIN commitmail json YAML

Updated graphics/gifsicle to 1.88

(wiz)

2017-04-05 16:07:17 UTC MAIN commitmail json YAML

Updated gifsicle to 1.88.

Version 1.88  1.Jul.2015

* Fix bug where long comments were read incorrectly. Reported by
  kazarny.

* Add --no-ignore-errors option.

Version 1.87  9.Dec.2014

* Always optimize as if the background is transparent. This fixes some
  rare bugs reported by Lars Dieckow.

* Fix --crop issue with must-be-preserved frames that are out of the
  crop window.

Version 1.86  14.Oct.2014

* Further fix --rotate + --crop.

Version 1.85  14.Oct.2014

* Greatly improve optimization time for images with many colors.

* Add --no-extensions (with the s) and document those options more.

* Fix bug in interaction of --resize and --rotate reported by Michał
  Ziemba.

Version 1.84  29.Jun.2014

* Correct optimizer bug that affected GIFs with 65535 or more total
  colors. Reported by Jernej Simončič.

Version 1.83  21.Apr.2014

* Correct bug in custom gamma values reported by Kornel Lesiński.

* Update Windows build.

Version 1.82  27.Mar.2014

* Correct bug in `mix` sampling method reported by Bryan Stillwell.

Version 1.81  24.Mar.2014

* Correct bug in `mix` sampling method reported by Bryan Stillwell.

Version 1.80  18.Mar.2014

* Bug fixes and improved error messages.

Version 1.79  17.Mar.2014

* Major improvements in image scaling. Work sponsored by Tumblr via
  Mike Hurwitz.

** Add new resize sampling methods `mix`, `box`, `catrom`, `mitchell`,
  `lanczos2`, and `lanczos3`, selectable by `--resize-method`. The
  `catrom` filter often gives good results; the slightly faster `mix`
  method (a bilinear interpolator) is now the default. These new
  sampling methods consider all of the image's input colors when
  shrinking the image, producing better, less noisy output for most
  images.

** Add `--resize-colors`, which allows Gifsicle to enlarge the palette
  when resizing images. This is particularly important when shrinking
  images with small colormaps---e.g., shrinking a black-and-white
  image should probably introduce shades of gray.

* Support extensions such as XMP4 in which extension packet boundaries
  matter. Reported by `ata4`.

* Many bug fixes, especially to cropping. Thanks to Tumblr and to
  Bryan Stillwell, Tal Lev-Ami, "Marco," and others.

(wiz)

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

Updated editors/Sigil to 0.9.8

(wiz)

2017-04-05 16:05:38 UTC MAIN commitmail json YAML

Updated Sigil to 0.9.8.

Sigil-0.9.8
  Bug Fixes
    - Make sure when new empty epub3's are created that the toc does not use a doctype (Issue # 250)
    - Make GetUniqueFilenameVersion work even on Case-Insensitive filesystems (Issue #247)
    - Properly urlencode/decode all hrefs in plugin's ResultXML in launcher/PluginRunner to prevent parse errors
    - Enable Basic Cut Copy Paste Icons/Actions in OPF, NCX, XML, SVG, and other Misc Text Tabs
    - Add proper detection for minimum service pack requirements in Windows installer
    - Include workaround for bug in KDE Qt5 plugin on Linux that keep plugins from launching from menu
    - Prevent splitting Section0001.xhtml (Split at Cursor) needlessly rewrite the file's manifest id with a uuid
    - Fix issue where merging files when non-xhtml tabs were open was causing Python errors or crashes
    - Fix segfault in Image Reports when deleting unused image files
    - Fix bug in prettyprint_xhtml in sigil_bs4 (put back inadvertently dropped is_void_tag routine)
    - Fix gumbo serialize to better handle injected newlines
    - Harden bundled Python isolation on Windows and add subset of PyQt5 to bundled modules
    - Harden plugin interface code to properly unquote/quote hrefs
    - Stop Sigil from nagging about unsupported mimetypes when epubs with Adobe xpgt page-templates are opened
    - Fix Book Browser highlighting issue when editable XML files from the "Misc" folder are opened
    - Pull upstream bug fixes from google's gumbo parser for Sigil
    - Force formatting buttons in BookView to generate inline-styled spans instead of "strike", "b", etc
    - Fix bug from deprecated use of jquery $.browser.msie introduced when jQuery was updated
    - Fix temp folder specification on Windows systems that delete the system temp folder for every login (Issue #285)
    - Fix typos in metadata descriptions to allow better translations

  New Features
    - New preference setting (Appearance section) which allows user to adjust the size of the main menu icons
    - Add manifest properties to Book Browser tooltips and to All Files Reports Widget for epub3
    - Make Sigil's UI and spellchecker language settings available to plugins
    - Add support for PyQt5 for plugin gui widgets
    - Internal builds now use Qt 5.6.2 with Webkit added back
    - Major compiler tool change and update for Windows build to sync Qt/Python/Sigil on Windows
    - Update all build it yourself from source documentation for new requirements

(wiz)

2017-04-05 15:59:13 UTC MAIN commitmail json YAML

Updated archivers/dact to 0.8.42

(adam)

2017-04-05 15:58:32 UTC MAIN commitmail json YAML

2017-04-05 15:56:40 UTC MAIN commitmail json YAML

Updated devel/py-setuptools to 34.3.3

(wiz)

2017-04-05 15:56:31 UTC MAIN commitmail json YAML

Updated py-setuptools to 34.3.3.

v34.3.3
-------

* #967 (and #997): Explicitly import submodules of
  packaging to account for environments where the imports
  of those submodules is not implied by other behavior.

(wiz)

2017-04-05 15:55:48 UTC MAIN commitmail json YAML

Updated security/py-oauthlib to 2.0.2

(wiz)

2017-04-05 15:55:38 UTC MAIN commitmail json YAML

Updated py-oauthlib to 2.0.2.

2.0.2 (2017-03-19)
------------------
* Dropped support for Python 2.6, 3.2 & 3.3.
* (FIX) `OpenIDConnector` will no longer raise an AttributeError when calling `openid_authorization_validator()` twice.

(wiz)

2017-04-05 15:54:36 UTC MAIN commitmail json YAML

Updated devel/py-cffi to 1.10.0

(wiz)

2017-04-05 15:54:26 UTC MAIN commitmail json YAML

Updated py-cffi to 1.10.0.

v1.10

    Issue #295: use calloc() directly instead of PyObject_Malloc()+memset()
    to handle ffi.new() with a default allocator. Speeds up
    ffi.new(large-array) where most of the time you never touch
    most of the array.
    Some OS/X build fixes (窶徙nly with Xcode but without CLT窶�).
    Improve a couple of error messages: when getting mismatched
    versions of cffi and its backend; and when calling functions
    which cannot be called with libffi because an argument is a
    struct that is 窶徼oo complicated窶� (and not a struct pointer,
    which always works).
    Add support for some unusual compilers (non-msvc, non-gcc,
    non-icc, non-clang)
    Implemented the remaining cases for ffi.from_buffer. Now all
    buffer/memoryview objects can be passed. The one remaining check
    is against passing unicode strings in Python 2. (They support
    the buffer interface, but that gives the raw bytes behind the
    UTF16/UCS4 storage, which is most of the times not what you
    expect. In Python 3 this has been fixed and the unicode strings
    don窶冲 support the memoryview interface any more.)
    The C type _Bool or bool now converts to a Python boolean when
    reading, instead of the content of the byte as an integer. The
    potential incompatibility here is what occurs if the byte
    contains a value different from 0 and 1. Previously, it would
    just return it; with this change, CFFI raises an exception in
    this case. But this case means 窶忖ndefined behavior窶� in C; if
    you really have to interface with a library relying on this,
    don窶冲 use bool in the CFFI side. Also, it is still valid to use
    a byte string as initializer for a bool[], but now it must only
    contain \x00 or \x01. As an aside, ffi.string() no longer works
    on bool[] (but it never made much sense, as this function stops
    at the first zero).
    ffi.buffer is now the name of cffi窶冱 buffer type, and ffi.buffer()
    works like before but is the constructor of that type.
    ffi.addressof(lib, "name") now works also in in-line mode, not
    only in out-of-line mode. This is useful for taking the address
    of global variables.
    Issue #255: cdata objects of a primitive type (integers, floats,
    char) are now compared and ordered by value. For example, <cdata
    'int' 42> compares equal to 42 and <cdata 'char' b'A'> compares
    equal to b'A'. Unlike C, <cdata 'int' -1> does not compare equal
    to ffi.cast("unsigned int", -1): it compares smaller, because
    -1 < 4294967295.
    PyPy: ffi.new() and ffi.new_allocator()() did not record 窶徇emory
    pressure窶�, causing the GC to run too infrequently if you call
    ffi.new() very often and/or with large arrays. Fixed in PyPy
    5.7.
    Support in ffi.cdef() for numeric expressions with + or -.
    Assumes that there is no overflow; it should be fixed first
    before we add more general support for arbitrary arithmetic on
    constants.

(wiz)

2017-04-05 15:50:20 UTC MAIN commitmail json YAML

Updated misc/py-anki2 to 2.0.45

(wiz)

2017-04-05 15:50:10 UTC MAIN commitmail json YAML

Updated py-anki2 to 2.0.45.

A Linux-only release that fixes recording in the compiled packages.

(wiz)

2017-04-05 15:48:08 UTC MAIN commitmail json YAML

Updated databases/py-sqlalchemy to 1.1.9

(adam)

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

Changes 1.1.9:
A continuing stream of small regressions is leading us to have to put out releases every few days at the moment. This release includes a fix to a regression that was caused by a fix to a regression :), specifically the sqlalchemy.ext.mutable fix put out in 1.1.8. It also fixes a different regression in the typing system introduced in 1.1.5, and also has a regular bug fix for another issue regarding "connectionless" execution.

(adam)

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

Updated www/p5-libwww to 6.25

(wiz)

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

Updated p5-libwww to 6.25.

6.25      2017-04-03
    - Fix LWP::UserAgent docs for request and request_simple that pointed to
      functions in LWP::Simple rather than LWP::UserAgent
    - Moved the official bug tracker to GitHub rather than RT.

(wiz)

2017-04-05 15:43:32 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-SAX-Base to 1.09

(wiz)

2017-04-05 15:43:19 UTC MAIN commitmail json YAML

Updated p5-XML-SAX-Base to 1.09.

1.09      2017-04-03 21:00:06+12:00 Pacific/Auckland
        - fix test suite to work without '.' in @INC (RT#120435, pull request
          from James E Keenan)

(wiz)

2017-04-05 15:42:37 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-NamespaceSupport to 1.12

(wiz)

2017-04-05 15:42:26 UTC MAIN commitmail json YAML

Updated p5-XML-NamespaceSupport to 1.12.

1.12      2017-03-30 15:46:34-05:00 America/Chicago
    - Dzilify and re-release

(wiz)

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

Updated textproc/p5-Text-BibTeX to 0.80

(wiz)

2017-04-05 15:39:30 UTC MAIN commitmail json YAML

Updated p5-Text-BibTeX to 0.80.

0.80 2017-03-25
* Fix tests in order to work without dot in @INC (thanks Kent Fredric for the bug report)

(wiz)

2017-04-05 15:35:19 UTC MAIN commitmail json YAML

Updated devel/p5-Sub-Identify to 0.13

(wiz)

2017-04-05 15:35:09 UTC MAIN commitmail json YAML

Updated p5-Sub-Identify to 0.13.

0.13 2017-04-02 RGARCIA
    - Reformatted Changes to follow basic format in CPAN::Changes::Spec
    - Make tests pass without . in @INC

(wiz)

2017-04-05 15:34:13 UTC MAIN commitmail json YAML

Updated textproc/p5-Regexp-Common to 2017040401

(wiz)

2017-04-05 15:34:03 UTC MAIN commitmail json YAML

Updated p5-Regexp-Common to 2017040401.

Version 2017040401 Tue Apr  4 11:20:45 CEST 2017
+ Prepare for 5.26: don't rely on '.' being present in @INC when testing.

(wiz)

2017-04-05 15:32:35 UTC MAIN commitmail json YAML

Updated devel/p5-Parse-RecDescent to 1.967.15

(wiz)

2017-04-05 15:32:25 UTC MAIN commitmail json YAML

Updated p5-Parse-RecDescent to 1.967.15.

1.967014      Sat Apr  1 10:33:29 2017

    - Add a newline to package declaration lines in precompiled
      parsers, to keep CPAN from indexing them. (RT.cpan.org #110404,
      thanks Martin!)

    - Provide repository and bugtracker entries in
      MYMETA.*. (RT.cpan.org #110403, thanks Martin!)

    - Update tests to handle '.' no longer being part of @INC in
      perl-5.26.0. (RT.cpan.org #120415, thanks Jim!)

1.967015      Tue Apr  4 07:38:07 2017

    - Fix misuse of require to include MYMETA.pl, data is just
      included in both Makefile.PL and Build.PL nowB. (RT.cpan.org
      #120922, thanks Kent!)

(wiz)

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

Updated security/p5-Net-SSLeay to 1.81

(wiz)

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

Updated p5-Net-SSLeay to 1.81.

1.81
Patch from Alexander Bluhm to enable RSA_get_key_parameters with
LibreSSL. Again.
Fixed memory leak in X509_get_subjectAltNames. Reported and patched by Jim Westfall.
Added . to lib path in Makefile.PL to accommodate people who are using a perl with -Ddefault_inc_excludes_dot.
Fixed build failure if engine support not present. Patch from Paul Green.
Improvements to  get_my_thread_id to work around possibility of ERRSV not being defined eg on OpenWRT.

(wiz)

2017-04-05 15:30:39 UTC MAIN commitmail json YAML

Updated www/p5-Mojolicious to 7.29

(wiz)

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

Updated net/p5-Net-DNS to 1.09

(wiz)

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

Updated p5-Net-DNS to 1.09.

**** 1.09 March 24, 2017

Fix rt.cpan.org #120542

Fails tests when no "." in @INC

Feature rt.cpan.org #75357

Add mechanism to encode/decode EDNS option octet strings

(wiz)

2017-04-05 15:25:49 UTC MAIN commitmail json YAML

Updated devel/p5-Moo to 2.003002

(wiz)

2017-04-05 15:25:40 UTC MAIN commitmail json YAML

Updated p5-Moo to 2.003002.

2.003002 - 2017-03-28
    - ensure tarball does not contain SCHILY headers

(wiz)

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

Updated p5-Mojolicious to 7.29.

7.29  2017-03-12
  - Added support for overriding configuration files in applications tested with
    Test::Mojo.
  - Added html_attr_unescape function to Mojo::Util.
  - Fixed unescaping of HTML5 attribute values in Mojo::DOM::HTML.

7.28  2017-03-07
  - Added copy_to, realpath and sibling methods to Mojo::File.
  - Added dir option to list_tree method in Mojo::File.
  - Improved app generator command to generate a config file.
    (tudorconstantin)

7.27  2017-02-27
  - Added support for UNIX domain sockets. (sri, salva)
  - Improved Mojo::UserAgent to complain about unsupported protocols.
  - Fixed a bug in Mojo::URL where invalid host strings could be generated.
  - Fixed blib handling in Mojo::Home.

(wiz)

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

Updated devel/p5-MRO-Compat to 0.13

(wiz)

2017-04-05 15:18:36 UTC MAIN commitmail json YAML

Updated p5-MRO-Compat to 0.13.

0.13 - 2017-03-28
    - don't run pod tests on user installs
    - stop using Module::Install to fix installation when @INC doesn't have
      the current directory (RT#119016)
    - repository migrated to the github moose organization

(wiz)

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

Updated devel/p5-List-MoreUtils to 0.418

(wiz)

2017-04-05 15:17:06 UTC MAIN commitmail json YAML

Updated p5-List-MoreUtils to 0.418.

0.418 2017-03-29
    - Clarify license conditions
    - fix Changes version/date of 0.417_001

0.417_001 2017-03-21
    - Divorce List::MoreUtils and List::MoreUtils::XS
    - Change license to Apache 2.0 to avoid code stealing without credits
    - Don't support Perl 5.6 out of the box anymore
    - fix RT#120235 - uniq examples are incorrect
    - remove things which will be never done from TODO list as suggested
      by Mark Aufflick in PR#18
    - Apply patch from Yanick Champoux to avoid spelling checker complains

(wiz)

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

Updated www/p5-HTTP-Cookies to 6.03

(wiz)

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

Updated p5-HTTP-Cookies to 6.03.

6.03      2017-04-03 11:35:35-04:00 America/Toronto
    - No changes since TRIAL release 6.02

6.02      2017-01-12 18:02:49-05:00 America/Toronto (TRIAL RELEASE)
    - Document the lack of Public Suffix https://publicsuffix.org/ support
    - Add TODO tests for lack of Public Suffix support
    - Improve "maxage" documentation
    - Update the GitHub repository location
    - Use GitHub Issues instead of RT
    - Stop using bareword filehandles
    - Various internal distribution management and testing changes

(wiz)

2017-04-05 14:22:20 UTC MAIN commitmail json YAML

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

Updated textproc/p5-Text-CSV_XS to 1.28

(wen)

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

Update to 1.28

Upstream changes:
1.28 - 2017-03-22, H.Merijn Brand
    * Fix length problem with bound empty fields and UTF-8 (RT#120655)

(wen)

2017-04-05 13:57:26 UTC MAIN commitmail json YAML

Updated textproc/p5-Text-CSV to 1.93

(wen)

2017-04-05 13:55:58 UTC MAIN commitmail json YAML

Update to 1.93

Upstream changes:
1.93  2017-04-04
    - Fix a test for perl without doc in @INC (kentnl++)

1.92  2017-04-01
    - Imported tests/fixes from Text::CSV_XS 1.28
      - Fix crlf issue for csv () on Windows (RT#120466)
      - New error code for illegal argument(s)/parameter(s)
      - Fix tests for perl without dot in @INC

(wen)

2017-04-05 13:44:33 UTC MAIN commitmail json YAML

Updated mail/p5-Email-Sender to 1.300031

(wen)

2017-04-05 13:43:20 UTC MAIN commitmail json YAML

Update to 1.300031

Upstream changes:
1.300031  2017-04-04 14:35:42-04:00 America/New_York
        - EMAIL_SENDER_TRANSPORT did not properly handle the =-prefix case
          Now: =Foo::Bar expands to Foo::Bar, Foo::Bar expands to Foo::Bar,
          and FooBar expands to Email::Sender::Transport::FooBar, as intended.

          Previously, =Foo::Bar expanded to Email::Sender::Transport::Foo::Bar

(wen)

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

Update MASTER_SITES. The newone does not have current (0.9.*) DISTFILE,
but old SITE (before updates) only has wrong checksum one and NetBSD mirror
holds proper DISTFILE anyway.

(mef)

2017-04-05 12:36:03 UTC MAIN commitmail json YAML

Mark removal of textproc/php-dom

(fhajny)

2017-04-05 12:34:47 UTC MAIN commitmail json YAML

Remove textproc/php-dom, the module is now built into the resp. PHP packages.

(fhajny)

2017-04-05 12:33:49 UTC MAIN commitmail json YAML

2017-04-05 12:29:34 UTC MAIN commitmail json YAML

Add (Update) MASTER_SITES=, with previous line left out

(mef)

2017-04-05 12:28:59 UTC MAIN commitmail json YAML

2017-04-05 12:13:08 UTC MAIN commitmail json YAML

Updated www/curl to 7.53.1nb1

(wiz)

2017-04-05 12:12:58 UTC MAIN commitmail json YAML

Updated curl to 7.53.1nb1.

Add upstream patch fixing CVE-2017-7407.

(wiz)

2017-04-05 11:18:43 UTC MAIN commitmail json YAML

Updated devel/py-test-mock to 1.6.0nb1

(wiz)

2017-04-05 11:18:33 UTC MAIN commitmail json YAML

Only on python-2.x does this module need py-mock as dependency.

Bump PKGREVISION.

(wiz)

2017-04-05 09:45:50 UTC MAIN commitmail json YAML

Reduce dependencies to actually used ones (make test still passes).
Ride update.

(wiz)

2017-04-05 09:42:18 UTC MAIN commitmail json YAML

Updated net/p5-WebService-MusicBrainz to 1.0.1

(wiz)

2017-04-05 09:42:07 UTC MAIN commitmail json YAML

Updated p5-WebService-MusicBrainz to 1.0.1.

1.0.1 Sunday March 26th 2017
- More tests
- Fix minimum Mojolicious version

(wiz)

2017-04-05 09:31:18 UTC MAIN commitmail json YAML

Add swig bug report URL.

(wiz)

2017-04-05 09:28:27 UTC MAIN commitmail json YAML

Turn off swig/python detection the hard way.
Add comment about test failures.

(wiz)

2017-04-05 08:58:24 UTC MAIN commitmail json YAML

Remove unrecognized configure arguments. Set gpg binary name for tests.

(wiz)

2017-04-05 06:55:34 UTC MAIN commitmail json YAML

+ mame-0.184, p5-HTTP-Cookies-6.03, p5-List-MoreUtils-0.418,
  p5-Mojolicious-7.29, p5-Parse-RecDescent-1.967015,
  p5-Regexp-Common-2017040401, p5-Sub-Identify-0.13,
  p5-XML-NamespaceSupport-1.12, p5-XML-SAX-Base-1.09, p5-libwww-6.25.

(wiz)