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 (52m)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (41d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (153d) 

2024-05-12 13:34:22 UTC Now

2018-08-21 11:19:39 UTC MAIN commitmail json YAML

p5-Parallel-ForkManager: update to 1.20.

1.20 2018-07-18
  [ DOCUMENTATION ]
    - Add section about rand() and forked processes. (GH#22)

  [ ENHANCEMENTS ]
    - Expand abbreviations in error messages. (GH#14, Ricardo Signes)
    - Rename variables and simplify `_waitpid` signature. (GH#14, Ricardo
      Signes)

  [ STATISTICS ]
    - code churn: 6 files changed, 80 insertions(+), 33 deletions(-)

(wiz)

2018-08-21 11:13:35 UTC MAIN commitmail json YAML

doc: Updated devel/p5-PPIx-Regexp to 0.062

(wiz)

2018-08-21 11:13:27 UTC MAIN commitmail json YAML

p5-PPIx-Regexp: update to 0.062.

0.062 2018-08-12 T. R. Wyant
    Remove tokenizer method prior(). This is the last step in its
    deprecation.

0.061 2018-07-09 T. R. Wyant
    Only standalone graphemes and non-characters allowed as delimiters
    starting with Perl 5.29.0.

    Non-ASCII delimiters started working in 5.8.3, so that is what
    perl_version_introduced() returns for them.

    Collateral with all this, accept word characters as delimiters, but
    only with at least one space between the operator and the expression
    -- that is, 'qr xyx' is OK, but 'qrxyx' is not.

(wiz)

2018-08-21 11:11:44 UTC MAIN commitmail json YAML

doc: Updated devel/p5-MooseX-Getopt to 0.72

(wiz)

2018-08-21 11:11:36 UTC MAIN commitmail json YAML

p5-MooseX-Getopt: update to 0.72.

Use TEST_DEPENDS.

0.72      2018-08-04 04:45:57Z
- fix tests that broke with Getopt::Long::Descriptive 0.103 (RT#125992,
  Damyan Ivanov, debian-perl group)

(wiz)

2018-08-21 11:02:41 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Module-ScanDeps to 1.25

(wiz)

2018-08-21 11:02:33 UTC MAIN commitmail json YAML

p5-Module-ScanDeps: update to 1.25.

1.25  2018-08-18

- Merge pull request #2 from shawnlaffan/master, thanx Shawn!

  continue scanning one-liners when use if, autouse or >5.010 found

- Fix how data obtained from compiling or executing a file
  is incorporated (_info2rv).

  Sanitize all pathnames to use slash (instead of backslash):
  - members of @INC
  - keys and values of %INC
  - members of @dl_shared_objects
  This should make stripping @INC prefixes finally work.

- Add %Preload rule for FFI::Platypus

- Add bugtracker to META.yml

(wiz)

2018-08-21 11:00:14 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Module-CoreList to 5.20180720

(wiz)

2018-08-21 11:00:05 UTC MAIN commitmail json YAML

p5-Module-CoreList: update to 5.20180720.

5.20180720
  - Updated for v5.29.1

(wiz)

2018-08-21 10:59:26 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Coro to 6.52

(wiz)

2018-08-21 10:59:18 UTC MAIN commitmail json YAML

p5-Coro: update to 6.52.

6.52  Tue Aug 14 18:49:43 CEST 2018
- libcoro update: allow sharing of coro threads using the pthreads
          backend among different pthreads, as is required by Coro::Multicore.
- always allow ->call and ->eval when the coro is the current coroutine. this
          makes it possible, among other things, to call these on $Coro::main.
- minor code cleanups.

(wiz)

2018-08-21 10:55:31 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Carp-Always to 0.16

(wiz)

2018-08-21 10:55:22 UTC MAIN commitmail json YAML

p5-Carp-Always: update to 0.16.

0.16  Fri Aug 10 2018

        - Promoted to stable release

0.15_02  Fri Aug 10 2018  TRIAL RELEASE

        [Compatibility fixes]
        - Disable bogus warnings on perl ≤ 5.8.8
        - Restore compatibility with Carp < 1.25

0.15_01  Fri Aug 10 2018  TRIAL RELEASE

        - Fix long standing bug with duplicate tracebacks
          (when carp / croak / cluck / confess were used) RT#123354
        - Fix long standing bug when message ended at " at WHATEVER"
          RT#96561 GH#2

0.15  Thu Aug 9 2018

        - Promoted to stable release

0.14_05  Thu Aug 9 2018  TRIAL RELEASE

        - Fix one test for the sake of Carp ≤ 1.25

0.14_04  Thu Aug 9 2018  TRIAL RELEASE

        - [EXPERIMENTAL] Prepare for extensions
        - Fix switching off and on

0.14_03  Thu Aug 9 2018  TRIAL RELEASE

        - Document import() and unimport()
        - Internal refactoring: Carp::Always::_longmess()

0.14_02  Thu Aug 9 2018  TRIAL RELEASE

        [BREAKING CHANGES]
        - Carp::Always enabling via import() -
          that means "use Carp::Always" works, but not "use Carp::Always ()"
        - Carp::Always disabling via unimport() -
          That means disabling can be done with "no Carp::Always"
        - Carp::Always doesn't use BEGIN and END blocks anymore

0.14_01  Thu Aug 9 2018  TRIAL RELEASE

        - Tighter regex to suppress " at FILE line LINE.\n" RT#96561
        - Tests for edge cases of warn () and die ()

0.14  Wed Aug 8 2018

        - Promoted to stable release

0.13_03  Wed Aug 8 2018  TRIAL RELEASE

        - t/010simple.t is a required test
        - Pruning docs of old cruft

0.13_02  Wed Aug 8 2018  TRIAL RELEASE

        - Add Devel::Confess to See Also
          (https://github.com/aferreira/cpan-Carp-Always/issues/7)
        - Change bugtracker to GitHub
        - Fine tuning to POD test

0.13_01  Wed Aug 8 2018  TRIAL RELEASE
        - No code change
        - Fine-tuning of prereqs

        [thanks Shawn Carroll]
        - Test::Pod and Test::Pod::Coverage as author tests again
        - Added LICENSE file

(wiz)

2018-08-21 10:50:20 UTC MAIN commitmail json YAML

doc: Updated devel/p5-CPAN-Perl-Releases to 3.72

(wiz)

2018-08-21 10:50:11 UTC MAIN commitmail json YAML

p5-CPAN-Perl-Releases: update to 3.72.

-----------------------------------------
version 3.72 at 2018-07-27 08:47:42 +0000
-----------------------------------------

  Change: 49f835ce9fbc5a4b72872222e8245dbf8adc9200
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2018-07-27 09:47:42 +0000

    Remove s.c.o link from POD

-----------------------------------------
version 3.70 at 2018-07-20 15:43:02 +0000
-----------------------------------------

  Change: 3f7ac83c576223149a15803c0778b3bd7679eb51
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2018-07-20 16:43:02 +0000

    Updated for v5.29.1

(wiz)

2018-08-21 09:55:49 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Alien-Role-Alt to 0.04

(wiz)

2018-08-21 09:55:41 UTC MAIN commitmail json YAML

p5-Alien-Role-Alt: update to 0.04.

0.04      2018-06-25 05:38:15 -0400
  - Alien::Role::Alt is now an empty role;
    alt capability is now in Alien::Build core
    this role remains for compatibility

(wiz)

2018-08-21 09:54:13 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Alien-Build to 1.48

(wiz)

2018-08-21 09:54:04 UTC MAIN commitmail json YAML

p5-Alien-Build: update to 1.48.

1.48      2018-07-04 20:33:29 -0400

1.47_01  2018-07-03 23:17:09 -0400
  - Fixed bug where Alien::Base was capturing stderr and stdout
    from pkg-config, instead of just stdout which is what it should
    be doing.
  - Additional diagnostics for xz fail

1.46      2018-06-25 03:08:25 +0000
  - Production release identical to 1.45_01

1.45_01  2018-06-24 08:13:08 -0400
  - Add alt method to Alien::Base.  This merges the capabilities from
    Alien::Role::Alt into core, making that role now obsolete.
  - Add alt_names and alt_exists methods to Alien::Base.  This was a
    capability missing from Alien::Role::Alt
  - Fix bug in Alien::Build::MM where 'make alien_prop_runtime' printed
    install instead of runtime properties

1.44_01  2018-06-20 06:36:57 -0600
  - Added Alien::Build::Plugin::Prefer::GoodVersion

(wiz)

2018-08-21 09:48:53 UTC MAIN commitmail json YAML

doc: Updated databases/p5-DB_File to 1.842

(wiz)

2018-08-21 09:48:44 UTC MAIN commitmail json YAML

p5-DB_File: update to 1.842.

1.842 14 July 2018

  * Document the MaocOS build failures & how MacPort can work around th eissue.
    # 125238
    # 125585
    # RT 133280

  * Write all test db files into a directory created by File::Temp
    Protects against any possible races if running a parallel build.

  * #96357: DB_File destructor is not thread-safe
    Added CLONE_SKIP to DB_File.pm and included the test db-threads.t from the patch.
    Note - This only works with perl >= 5.8.7

(wiz)

2018-08-21 09:47:24 UTC MAIN commitmail json YAML

doc: Updated databases/p5-DBD-ODBC to 1.59

(wiz)

2018-08-21 09:47:16 UTC MAIN commitmail json YAML

p5-DBD-ODBC: update to 1.59.

1.59 2018-08-10

  [BUG FIXES]

  git issue 8. Setting odbc_utf8_on didn't work properly. Thanks to David Wheeler for
  reporting and helping to debug.

(wiz)

2018-08-21 09:44:47 UTC MAIN commitmail json YAML

doc: Updated archivers/p5-Archive-Zip to 1.61

(wiz)

2018-08-21 09:44:35 UTC MAIN commitmail json YAML

p5-Archive-Zip: update to 1.61.

1.61 Sat 18 Aug 2018
    - File::Find will not untaint [github/ThisUsedToBeAnEmail]
    - Prevent from traversing symlinks and parent directories when extracting [github/ppisar]

(wiz)

2018-08-21 09:41:24 UTC MAIN commitmail json YAML

doc: Updated archivers/p5-Archive-Tar-Wrapper to 0.33

(wiz)

2018-08-21 09:39:41 UTC MAIN commitmail json YAML

p5-Archive-Tar-Wrapper: update to 0.33.

0.33 (2018/07/10):
    Skipping bzip2 testing if the program is not available
    (https://github.com/glasswalk3r/archive-tar-wrapper-perl/issues/11).
    Undeclared dependency of Dumbbench
    (https://github.com/glasswalk3r/archive-tar-wrapper-perl/issues/12).

0.32 (2018/07/10):
    Typo fixed by Mohammad S Anwar
    (https://github.com/glasswalk3r/archive-tar-wrapper-perl/pull/10).
    Refactored performance tests, and now they will run as TODO to test the
    hypotesis that there is a better algorithm to write() method.

0.31 (2018/07/03):
    Enabled performance testing to acquire from different setups which scheme is
    faster to remove dots when reading directories.
    Disabled Solaris OS until issues are fixed.
    Fixed bug introduced in Makefile.PL due changes of release 0.30 (thanks to
    David Cantrell <david@cantrell.org.uk>).
    Updated documentation.

0.30 (2018/06):
    Keeping track of changes per request
    https://github.com/glasswalk3r/archive-tar-wrapper-perl/issues/7.
    Fixing proper handling of File::Which when checking on Microsoft Windows.
    Refactored troubleshooting messages on Microsoft Windows.
    Bug fixes provided by Shoichi Kaji (skaji at cpan.org) in PRs
    https://github.com/glasswalk3r/archive-tar-wrapper-perl/pull/9
    and https://github.com/glasswalk3r/archive-tar-wrapper-perl/pull/8

0.29 (2018/06/25):
    Added Microsoft Windows support with the help of Ingram Braun M.A.
    <me@ingram-braun.net>.

(wiz)

2018-08-21 09:36:01 UTC MAIN commitmail json YAML

doc: Added benchmarks/p5-Dumbbench version 0.111

(wiz)

2018-08-21 09:35:52 UTC MAIN commitmail json YAML

benchmarks/Makefile: p5-Dumbbench

(wiz)

2018-08-21 09:35:31 UTC MAIN commitmail json YAML

benchmarks/p5-Dumbbench: import p5-Dumbbench-0.111

This perl module attempts to implement reasonably robust benchmarking
with little extra effort and expertise required from the user.

(wiz)

2018-08-21 09:30:22 UTC MAIN commitmail json YAML

doc: Added math/p5-Statistics-CaseResampling version 0.15

(wiz)

2018-08-21 09:30:13 UTC MAIN commitmail json YAML

math/Makefile: + p5-Statistics-CaseResampling

(wiz)

2018-08-21 09:29:56 UTC MAIN commitmail json YAML

math/p5-Statistics-CaseResampling: import p5-Statistics-CaseResampling-0.15

The purpose of this perl module is to calculate the median (or in
principle also other statistics) with confidence intervals on a sample.
To do that, it uses a technique called bootstrapping. In a nutshell, it
resamples the sample a lot of times and for each resample, it calculates
the median. From the distribution of medians, it then calculates the
confidence limits.

(wiz)

2018-08-21 09:25:08 UTC MAIN commitmail json YAML

doc: Added math/p5-Number-WithError version 1.01

(wiz)

2018-08-21 09:24:59 UTC MAIN commitmail json YAML

math/Makefile: + p5-Number-WithError

(wiz)

2018-08-21 09:24:41 UTC MAIN commitmail json YAML

math/p5-Number-WithError: import p5-Number-WithError-1.01

This perl class is a container class for numbers with a number of
associated symmetric and asymmetric errors. It overloads practically
all common arithmetic operations and trigonometric functions to
propagate the errors. It can do proper scientific rounding.

(wiz)

2018-08-21 09:23:13 UTC MAIN commitmail json YAML

devel/Makefile: + p5-Test-LectroTest

(wiz)

2018-08-21 09:22:30 UTC MAIN commitmail json YAML

doc: Added devel/p5-Test-LectroTest version 0.5001

(wiz)

2018-08-21 09:22:00 UTC MAIN commitmail json YAML

devel/p5-Test-LectroTest: import p5-Test-LectroTest-0.5001

A simple (yet full featured) interface to LectroTest, an automated,
specification-based testing system for Perl. To use it, declare
properties that specify the expected behavior of your software.
LectroTest then checks your software to see whether those properties
hold.

(wiz)

2018-08-21 08:36:36 UTC MAIN commitmail json YAML

Updated databases/py-sqlalchemy, databases/py-sqlalchemy-utils

(adam)

2018-08-21 08:36:19 UTC MAIN commitmail json YAML

py-sqlalchemy-utils: updated to 0.33.3

0.33.3:
- Added new AesGcmEngine

(adam)

2018-08-21 08:35:09 UTC MAIN commitmail json YAML

py-sqlalchemy: updated to 1.2.11

SQLAlchemy release 1.2.11:
This release includes a short list of minor bug fixes that have accumulated over the past month.

(adam)

2018-08-21 07:02:36 UTC MAIN commitmail json YAML

Updated devel/py-archinfo, textproc/py-sphinx

(adam)

2018-08-21 07:02:09 UTC MAIN commitmail json YAML

py-sphinx: updated to 1.7.7

Release 1.7.7:

Bugs fixed
* document not in toctree warning when including files only for parallel
  builds
* LaTeX: reduce "Token not allowed in a PDF string" hyperref warnings in latex
  console output
* LaTeX: suppress "remreset Warning: The remreset package is obsolete" in latex
  console output with recent LaTeX
* PDF output: usage of PAPER environment variable is broken since Sphinx
  1.5
* LaTeX: fix the :confval:`latex_engine` documentation regarding Latin Modern
  font with XeLaTeX/LuaLateX
* autodoc: Fix wrong type annotations for complex typing
* autodoc: Optional types are wrongly rendered
* autodoc crashed by ForwardRef types
* autodoc: No docs generated for functools.partial functions
* autodoc: ``getargspec()`` raises NameError for invalid typehints
* imgmath: math_number_all causes equations to have two numbers in html
* sphinx-quickstart blank prompts in PowerShell

(adam)

2018-08-21 06:59:08 UTC MAIN commitmail json YAML

py-archinfo: updated to 7.8.8.1

7.8.8.1:
Unknown changes.

(adam)

2018-08-21 06:52:38 UTC MAIN commitmail json YAML

Updated databases/slony1, net/tcpflow

(adam)

2018-08-21 06:52:12 UTC MAIN commitmail json YAML

tcpflow: updated to 1.5.0

1.5.0:
* updated to work with Fedora 26 compilers
* Found bug in sbuf.cpp
* Fixed C++ warnings in hash
* Now works with OpenSSL 1.1.0f-fips

(adam)

2018-08-21 06:19:15 UTC MAIN commitmail json YAML

slony1: updated to 2.2.7

2.2.7
- Fix warning with flex 2.6+
- Fix compile errors with PG11
- Fix bug in with regex in 'set add sequence' when
  specifying the sequence as a regular expression.
  It was not being escaped properly
- Add support to Slonik to specify the share direcotry
  using the environment variable SLONY_SHARE_DIR
- Add slon config setting remote_listen_serializable_transactions
  to use read committed instead of read-only-serializable deferable
  transactions(default true)
- Add slon config setting enable_version_check to disable
  the slony version check that ensures all nodes run the
  same slony version (default true, version check enabled)

(adam)

2018-08-20 22:36:21 UTC MAIN commitmail json YAML

2018-08-20 21:25:56 UTC MAIN commitmail json YAML

doc: Updated net/unifi to 5.8.28

(tnn)

2018-08-20 21:25:10 UTC MAIN commitmail json YAML

unifi: update to unifi-5.8.28

New features (omitting bugfixes) since ~5.5.28:

-Add BaseStationXG LED bar color control to the device properties panel.
-Local SSO login.
-Add app switcher.
-Add speed and duplex config for USG interfaces.
-Add WiFi Happiness to client STA statistics.
-Allow users to opt-out wireless uplinking/meshing on per-radio basis.
-Assign USG Physical Ports to Logical Networks.
-Add netconsole logging to site config.
-Allow setting Management VLAN at Access Points.
-Property Panel: Show images of most popular client devices.
-Added support for USC8 switch.
-Add WeChat authentication to Hotspot.
-Add Elite Device service.
-Allow setting opacity on Image-type maps.
-New Channel Distribution widget.
-Add Scheduled Upgrades support (Beta).
-Add site VPN route distance.
-Add app switcher.
-Allow users to opt-out wireless uplinking/meshing on per-radio basis.
-Support Antenna selection for internal antenna.
-Add Intrusion Prevention System (IPS) [beta].
-Link to property panel from Location on Neighboring Access Points page.
-Add IPv6 support (Beta).
-Add restart devices permission.
-Add support for new Elite Device service.
-Add Bulgarian translations to the Hotspot Portal.
-Batch remove vouchers.
-Customize voucher columns.
-Ability to display historical statistics per Client (traffic, packets, signal power etc.).
-Add support for SNMPv3.
-Add GeoIP Filtering options to settings [Beta].
-Add Virtual devices on Maps to plan coverage.
-Add SSH keys to authenticate to device.
-Add Auto Channel feature on Maps.
-Add Release Notes.
-Add ability to create and set user defined DHCP options.
-Add Wireless Uplink priority.
-Add support for new Elite Device service.
-Add RADIUS MAC Authentication.
-Add Firmware Manager to cache locally firmwares.
-Add AirView (SHD exclusive).
-Add Switch Port Profiles.
-Add USG Performance Graphs.
-Add AirTime for UAP-SHD [alpha].
-Add temperatures to USG-Pro properties window.
-Add Facebook Wi-Fi Authentication [Alpha].
-Add DPI blocking per categories [Alpha].
-Add Insights / Controller Logs page.
-Add LAN traffic statistics for client in Property Panel.
-Add Debug Dashboard to Statistics section (Beta).
-Batch add and remove device tags.
-Add Arabic language to Hotspot Portal.
-Add permissions options when inviting a site admin (device adoption, etc.).
-Allow configure 8 SSIDs per radio (on supported devices).
-Add Finnish and Hungarian to the languages supported by Hotspot Portal.
-Add LLDP MED configuration.
-Add Outdoor / Indoor Switch.
-Add NTP server fields.
-Add batch device provision.
-Add DB migration page and show upgrade progress.
-Add date header to email notifications.
-Install and run service as `unifi` user instead of as root on Debian/Ubuntu.
-Add Logging settings.
-Add batch edit switches.
-Add UPnP service (moved from config.properties).
-Add Multicast DNS Service (moved from config.properties).
-Add RADIUS-based authorization in Hotspot [BETA].
-Add new type of map with predictive coverage [BETA].
-Add Ubiquiti store (buy devices directly from the controller) [BETA].
-Add EDU SIP settings.
-Add Greek translations.

(tnn)

2018-08-20 20:45:26 UTC MAIN commitmail json YAML

2018-08-20 20:23:29 UTC MAIN commitmail json YAML

Reinsert uses of ${PLIST.ocaml-spacetime} in PLIST, apparently lost
in last update.

(dholland)

2018-08-20 17:24:01 UTC MAIN commitmail json YAML

2018-08-20 16:59:34 UTC MAIN commitmail json YAML

2018-08-20 16:27:22 UTC MAIN commitmail json YAML

doc: Updated net/dhcpcd to 7.0.8

(roy)

2018-08-20 16:27:13 UTC MAIN commitmail json YAML

Import dhcpcd-7.0.8 with the following changes:
  *  Don't use IP_PKTINFO on NetBSD-7 as it's incomplete.
  *  Workaround RTM_NEWADDR sending the wrong broadcast address
    on NetBSD-7.
  *  Silence diagnostics if an address vanishes when reading
    it's flags on all BSD's.
  *  Misc compiler warnings fixed.

(roy)

2018-08-20 13:18:31 UTC MAIN commitmail json YAML

Updated textproc/p5-Text-CSV to 1.97

(wen)

2018-08-20 13:17:38 UTC MAIN commitmail json YAML

Update to 1.97

Upstream changes:
1.97  2018-08-17
    - Fix/add minimum perl version (GH-38, Kivanc Yazan++)
    - Updated MANIFEST

(wen)

2018-08-20 13:11:56 UTC MAIN commitmail json YAML

Updated mail/p5-Parse-MIME to 1.005

(wen)

2018-08-20 13:10:16 UTC MAIN commitmail json YAML

Update to 1.005

Upstream changes:
1.005 Mon 20 Aug 2018
        - No functional changes
        - Actual 5.6 compatibility

(wen)

2018-08-20 13:01:49 UTC MAIN commitmail json YAML

Added devel/py-zope.testing, devel/py-zc.lockfile

(adam)

2018-08-20 12:59:08 UTC MAIN commitmail json YAML

py-cherrypy: fix DEPENDS

(adam)

2018-08-20 12:58:06 UTC MAIN commitmail json YAML

py-zc.lockfile: added version 1.3.0

The zc.lockfile package provides a basic portable implementation of
interprocess locks using lock files. The purpose if not specifically to lock
files, but to simply provide locks with an implementation based on file-locking
primitives. Of course, these locks could be used to mediate access to other
files. For example, the ZODB file storage implementation uses file locks to
mediate access to file-storage database files. The database files and lock file
files are separate files.

(adam)

2018-08-20 12:58:05 UTC MAIN commitmail json YAML

doc: Added news/flnews version 0.15

(wiz)

2018-08-20 12:57:57 UTC MAIN commitmail json YAML

news/Makefile: + flnews

(wiz)

2018-08-20 12:57:43 UTC MAIN commitmail json YAML

options.description: add descriptions for flnews options.

(wiz)

2018-08-20 12:57:34 UTC MAIN commitmail json YAML

news/flnews: import flnews-0.15

flnews is a client with graphical user interface to read USENET newsgroups.
It is intended for POSIX compliant operating systems running the X window
system.

The main development goals are (in order of importance):
- No bloat
- Support for old workstations
- Standard compliance
- Be conservative in what you do, be liberal in what you accept from others
- Compatibility with other newsreaders
- Usable X display redirection via network (or ssh tunnel)
- Warn users about things that are not forbidden but considered "bad practice"

Features that are currently not implemented (or not usable yet):
- UUCP
- Multiple servers
- Offline mode (for network connection via dialup line)

Packaged for wip by Michael Bè¾°uerle.

(wiz)

2018-08-20 12:57:02 UTC MAIN commitmail json YAML

2018-08-20 11:43:42 UTC MAIN commitmail json YAML

gnucash: disable -Werror to fix build with latest boost

Idea from adam@, thanks!

(wiz)

2018-08-20 10:56:57 UTC MAIN commitmail json YAML

py-mock: updated CATEGORIES and HOMEPAGE

(adam)

2018-08-20 07:31:52 UTC MAIN commitmail json YAML

py-curl: only use distutils (used to import setuptools when wheels were installed)

(adam)

2018-08-20 06:01:34 UTC MAIN commitmail json YAML

doc: Updated security/gnutls to 3.6.3nb1

(wiz)

2018-08-20 06:01:26 UTC MAIN commitmail json YAML

gnutls: Fix path to bash in installed files.

Bump PKGREVISION.

(wiz)

2018-08-20 05:24:59 UTC MAIN commitmail json YAML

doc: Updated textproc/expat to 2.2.6

(wiz)

2018-08-20 05:24:49 UTC MAIN commitmail json YAML

expat: update to 2.2.6.

Release 2.2.6 Sun August 12 2018
        Bug fixes:
      #170 #206  Avoid doing arithmetic with NULL pointers in XML_GetBuffer
      #204 #205  Fix 2.2.5 regression with suspend-resume while parsing
                    a document like '<root/>'

        Other changes:
      #165 #168  Autotools: Fix docbook-related configure syntax error
            #166  Autotools: Avoid grep option `-q` for Solaris
            #167  Autotools: Support
                    ./configure DOCBOOK_TO_MAN="xmlto man --skip-validation"
      #159 #167  Autotools: Support DOCBOOK_TO_MAN command which produces
                    xmlwf.1 rather than XMLWF.1; also covers case insensitive
                    file systems
            #181  Autotools: Drop -rpath option passed to libtool
            #188  Autotools: Detect and deny SGML docbook2man as ours is XML
            #188  Autotools/CMake: Support command db2x_docbook2man as well
            #174  CMake: Introduce option WARNINGS_AS_ERRORS, defaults to OFF
      #184 #185  CMake: Introduce option MSVC_USE_STATIC_CRT, defaults to OFF
      #207 #208  CMake: Introduce option XML_UNICODE and XML_UNICODE_WCHAR_T,
                    both defaulting to OFF
            #175  CMake: Prefer check_symbol_exists over check_function_exists
            #176  CMake: Create the same pkg-config file as with GNU Autotools
      #178 #179  CMake: Use GNUInstallDirs module to set proper defaults for
                    install directories
            #208  CMake: Utilize expat_config.h.cmake for XML_DEV_URANDOM
            #180  Windows: Fix compilation of test suite for Visual Studio 2008
  #131 #173 #202  Address compiler warnings
  #187 #190 #200  Fix miscellaneous typos
                  Version info bumped from 7:7:6 to 7:8:6

Release 2.2.5 Tue October 31 2017
        Bug fixes:
              #8  If the parser runs out of memory, make sure its internal
                    state reflects the memory it actually has, not the memory
                    it wanted to have.
            #11  The default handler wasn't being called when it should for
                    a SYSTEM or PUBLIC doctype if an entity declaration handler
                    was registered.
      #137 #138  Fix a case of mistakenly reported parsing success where
                    XML_StopParser was called from an element handler
            #162  Function XML_ErrorString was returning NULL rather than
                    a message for code XML_ERROR_INVALID_ARGUMENT
                    introduced with release 2.2.1

        Other changes:
            #106  xmlwf: Add argument -N adding notation declarations
        #75 #106  Test suite: Resolve expected failure cases where xmlwf
                    output was incomplete
            #127  Windows: Fix test suite compilation
      #126 #127  Windows: Fix compilation for Visual Studio 2012
                  Windows: Upgrade shipped project files to Visual Studio 2017
        #33 #132  tests: Mass-fix compilation for XML_UNICODE_WCHAR_T
            #129  examples: Fix compilation for XML_UNICODE_WCHAR_T
            #130  benchmark: Fix compilation for XML_UNICODE_WCHAR_T
            #144  xmlwf: Fix compilation for XML_UNICODE_WCHAR_T; still needs
                    Windows or MinGW for 2-byte wchar_t
              #9  Address two Clang Static Analyzer false positives
            #59  Resolve troublesome macros hiding parser struct membership
                    and dereferencing that pointer
              #6  Resolve superfluous internal malloc/realloc switch
      #153 #155  Improve docbook2x-man detection
            #160  Undefine NDEBUG in the test suite (rather than rejecting it)
            #161  Address compiler warnings
                  Version info bumped from 7:6:6 to 7:7:6

(wiz)

2018-08-20 05:23:18 UTC MAIN commitmail json YAML

doc: Updated textproc/uriparser to 0.8.6

(wiz)

2018-08-20 05:23:09 UTC MAIN commitmail json YAML

uriparser: update to 0.8.6.

2018-08-18 -- 0.8.6

  * Fixed: Bad/NULL .hostText.afterLast when parsing certain rather pathologic
      but well-formed URIs with empty host (e.g. "//:%aa@") (GitHub #15)
      Thanks to Kurt Schwehr for the report!
  * Fixed: Fix uriRemoveBaseUri for case where scheme, host name,
      IPvFuture address or path segments of the source address were
      string prefixes of the related counterpart in the base URI.
      Thanks to Yang Yu for the patch! (GitHub #19, #20)
  * Fixed: Make UriStringToUnixFilename and UriStringToWindowsFilename
      support minimal representation a la RFC 8089, e.g. file:/bin/bash
      (compare to file:///bin/bash with three slashes) (GitHub #12, #14)
      Thanks to Zane van Iperen for the report!
  * Fixed: Documentation typos (GitHub #10, #11)
      Thanks to Graham Percival!
  * Improved: Made API docs of uriRemoveBaseUri more clear
      (related to GitHub #19)
  * Soname: 1:22:0

(wiz)

2018-08-20 05:21:05 UTC MAIN commitmail json YAML

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

Updated net/p5-Net-Amazon-S3 to 0.84

(wen)

2018-08-20 03:10:15 UTC MAIN commitmail json YAML

Update to 0.84
Add missing DEPENDS

Upstream changes:
0.84 Mon 16 Jul 2018 17:49:10 BST
    - Put back credential cache code lost in Signature 4 patch (Branislav Zahradn鱈k)

0.83 Tue 10 Jul 2018 22:30:23 BST
    - All patches by Branislav Zahradn鱈k
    - Use Signature 4 by default only for amazonaws host (issue #29)
    - Relaxing constraint on owner id, accepting any string (issue #18)
    - Enable secure by default (issue #23)
    - Sanity object uris to avoid invalid signature (issue #28)

0.82 Sat  7 Jul 2018 14:28:06 BST
    - Use HEAD request to determine bucket region (patch by Branislav Zahradn鱈k)

0.81 Thu 28 Jun 2018 20:27:44 GMT (TRIAL RELEASE)
    - Restore CHANGES files format
    - Change path to new github repo
    - Add optional delimiter parameter to
      Net::Amazon::S3::Client::Bucket->list (patch by Christian
      Lackas)
    - Add expected and received ETag value if upload is detected as
      being incorrect.
    - Add support for all location constraints when creating buckets
    - making DateTime coercion optional for last_modified (something that
      might happen million of times without ever been used, in a rather
      expensive operation) (patch by Christian Lackas)
    - avoiding MD5 calculation of large files (chunked uploads) that
      are then never used (patch by Christian Lackas)
    - add ability to set use_virtual_host to use virtual host method
      of making requests which eliminate having to set the region
      endpoint of a bucket. (patch by Christian Lackas)
    - Add V4 support (patch by Branislav Zahradn鱈k)

(wen)

2018-08-20 03:06:28 UTC MAIN commitmail json YAML

Added time/p5-MooseX-Types-DateTime-MoreCoercions version 0.15

(wen)

2018-08-20 03:05:15 UTC MAIN commitmail json YAML

Add p5-MooseX-Types-DateTime-MoreCoercions

(wen)

2018-08-20 03:03:53 UTC MAIN commitmail json YAML

Import MooseX-Types-DateTime-MoreCoercions-0.15 as time/p5-MooseX-Types-DateTime-MoreCoercions.

MooseX::Types::DateTime::MoreCoercions builds on MooseX::Types::DateTime to add
additional custom types and coercions. Since it builds on an existing type, all
coercions and constraints are inherited.

(wen)

2018-08-20 02:33:04 UTC MAIN commitmail json YAML

Updated math/p5-Math-Utils to 1.12

(wen)

2018-08-20 02:32:21 UTC MAIN commitmail json YAML

Update to 1.12

Upstream changes:
1.12
        26 Jun 2018
        - Typo found by Florian Schlichting fixed.
        - Add gcd() and lcm() functions.
        - New example scripts (a couple transferred over from
          Math::Polynomial::Solve) in the new eg/ directory.

(wen)

2018-08-20 02:28:45 UTC MAIN commitmail json YAML

Updated mail/p5-Parse-MIME to 1.004

(wen)

2018-08-20 02:27:53 UTC MAIN commitmail json YAML

Update to 1.004
Update DEPENDS

Upstream changes:
1.004 Sun 19 Aug 2018
        - No functional changes
        - Tests powered by JSON::PP instead of JSON::XS
        - Simplified tests with fewer dependencies

(wen)

2018-08-20 02:21:08 UTC MAIN commitmail json YAML

Updated fonts/p5-Font-FreeType to 0.12

(wen)

2018-08-20 02:20:19 UTC MAIN commitmail json YAML

Update to 0.12

Upstream changes:
0.12 2018-08-12 dmol@cpan.org
- Fix MANIFEST

0.11 2018-08-11 dmol@cpan.org
- Added FT_LOAD_COMPUTE_METRICS load flag (HinTak)
- Added face->foreach_glyph method for iterating over all glyphs
  (some of them don't necessarily have a unicode point) (HinTak)

(wen)

2018-08-20 02:15:05 UTC MAIN commitmail json YAML

Updated filesystems/p5-Path-Tiny to 0.108

(wen)

2018-08-20 02:13:07 UTC MAIN commitmail json YAML

Update to 0.108

Upstream changes:

0.108    2018-07-30 15:35:23-04:00 America/New_York

    - No changes from 0.107-TRIAL.

0.107    2018-07-24 15:10:36-04:00 America/New_York (TRIAL RELEASE)

    [Fixes]

    - Fixed a bug where failure to load optional modules would trigger
      an external $SIG{__DIE__} handler.

0.106    2018-07-14 09:37:00-04:00 America/New_York

    [Tests]

    - Protected t/locking.t from PERL_PATH_TINY_NO_FLOCK already
      in the environment.

0.105    2018-07-07 10:09:04-04:00 America/New_York (TRIAL RELEASE)

    [Additions]

    - The PERL_PATH_TINY_NO_FLOCK environment variable has been added to
      allow users to disable file locking (and any associated warnings).

    [Changes]

    - Detection of unsupported 'flock' is no longer BSD-specific.  This
      allows detecting and warning, for example, with the Luster filesystem
      on Linux.

    [Tests]

    - Improve reliability and diagnostics of tests run via 'do'.

(wen)

2018-08-20 00:43:49 UTC MAIN commitmail json YAML

doc: Updated misc/xdg-utils to 1.1.3nb1

(leot)

2018-08-20 00:43:33 UTC MAIN commitmail json YAML

xdg-utils: Avoid hardcoded paths via a SUBST

Previously all xdg-utils scripts just honored system /usr/local and /etc, fix
that by substitute them via SUBST framework.

Bump PKGREVISION

(leot)

2018-08-19 20:30:22 UTC MAIN commitmail json YAML

doc/TODO: mention json-glib-1.4.2 package in wip (incomplete)

(wiz)

2018-08-19 20:16:42 UTC MAIN commitmail json YAML

2018-08-19 20:13:03 UTC pkgsrc-2018Q2 commitmail json YAML

2018-08-19 19:59:25 UTC MAIN commitmail json YAML

doc: Updated www/webkit-gtk to 2.20.5

(wiz)

2018-08-19 19:59:12 UTC MAIN commitmail json YAML

webkit-gtk: update to 2.20.5.

==================
WebKitGTK+  2.20.5
==================

What's new in WebKitGTK+ 2.20.5?

  - Fix rendering artifacts in some web sites due to a bug introduced in 2.20.4.

(wiz)

2018-08-19 18:32:47 UTC MAIN commitmail json YAML

doc: Updated devel/glib2 to 2.56.2

(wiz)

2018-08-19 18:32:27 UTC MAIN commitmail json YAML

glib2: update to 2.56.2.

Overview of changes in GLib 2.56.2
==================================

* Support version 2 of the NetworkMonitor portal interface

* Bug fixes:
740791 gio: cannot specify the source when joining a multicast group...
755721 g_inotify_file_monitor_start called with nullpointer for dirn...
773435 After g_get_home_dir() fails, a second use deadlocks
793727 Use-after-free in emit_network_changed() of gnetworkmonitorba...
794380 Build failure of gcocoanotificationbackend.c on OS X < 10.9
794801 /network-monitor/add_networks fails if there is a proxy and g...
795138 gobject build failure with gcc <= 4.7
795234 Fix Jenkins CI build failures for network tests
795406 Glib fails to build for Android
795429 glib-genmarshal shows redundant "time" warning message agains...
795711 gitlab-ci: update meson
795735 Fix comparison for GVariant property values
795802 gdbus-codegen doesn't accept --output-directory with --output...
#1240 W32: g_get_system_data_dirs() works differently for C++ applic...
#1401 g_clear_handle_id: clear_func is nullable, despite documentatin...
#1452 GFileInfo: unable to retrieve correct modification time of link...
#1458 g_volume_get_mount returns NULL value after g_volume_mount_fini...

* Translation updates
Russian
Slovenian

(wiz)

2018-08-19 18:13:58 UTC MAIN commitmail json YAML

doc: Updated security/py-certifi to 2018.8.13

(wiz)

2018-08-19 18:13:49 UTC MAIN commitmail json YAML

py-certifi: update to 2018.8.13.

Changes not found.

(wiz)

2018-08-19 18:12:31 UTC MAIN commitmail json YAML

doc: Updated devel/libuv to 1.23.0

(wiz)

2018-08-19 18:12:22 UTC MAIN commitmail json YAML

libuv: update to 1.23.0.

2018.08.18, Version 1.23.0 (Stable)

Changes since version 1.22.0:

* win,pipe: restore compatibility with the old IPC framing protocol (Bert
  Belder)

* fs: add uv_open_osfhandle (Bartosz Sosnowski)

* doc: update Visual C++ Build Tools URL (Michał Kozakiewicz)

* unix: loop starvation on successful write complete (jBarz)

* win: add uv__getnameinfo_work() error handling (A. Hauptmann)

* win: return UV_ENOMEM from uv_loop_init() (cjihrig)

* unix,win: add uv_os_{get,set}priority() (cjihrig)

* test: fix warning in test-tcp-open (Santiago Gimeno)

(wiz)

2018-08-19 18:09:53 UTC MAIN commitmail json YAML

doc: Updated net/filezilla to 3.35.2

(wiz)

2018-08-19 18:09:42 UTC MAIN commitmail json YAML

filezilla: update to 3.35.2.

3.35.2 (2018-08-06)

- Fix functionality of --site and --local command-line options
- MSW: Fix local rename not updating file list
- OS X: Fix compatibility with old CPUs not supporting SSE4

(wiz)

2018-08-19 18:08:39 UTC MAIN commitmail json YAML

doc: Updated devel/jq to 1.5nb5

(leot)

2018-08-19 18:08:06 UTC MAIN commitmail json YAML

jq: Avoid SIGSEGVs when using date builtins

Apply patch written by <soda> and shared with upstream as part of
<https://github.com/stedolan/jq/pull/1458> in order to fix crashes of jq when
using date builtin functions.

Also add a SUBST class intended to avoid invoking git as part of pre-configure
phase when invoking autoreconf.

While here take the MAINTAINERship and reformat a bit the Makefile
(NFCI).

Thanks a lot to <soda>, Takehiko NOZAKI and <nonaka> for investigating
the issue, writing the patches, sharing them with upstream and as
part of PR pkg/52460!

Bump PKGREVISION

(leot)

2018-08-19 18:04:30 UTC MAIN commitmail json YAML

Remove latex2html-2015, since latex2html is currently at version 2016.
(found by make changes-entry)

(dholland)

2018-08-19 18:03:55 UTC MAIN commitmail json YAML

2018-08-19 18:03:30 UTC MAIN commitmail json YAML

2018-08-19 17:31:52 UTC MAIN commitmail json YAML

doc: Updated audio/musicpd to 0.20.21

(wiz)

2018-08-19 17:31:43 UTC MAIN commitmail json YAML

musicpd: update to 0.20.21.

ver 0.20.21 (2018/08/17)
* database
  - proxy: add "password" setting
  - proxy: support tags "ArtistSort", "AlbumArtistSort", "AlbumSort"
  - simple: allow .mpdignore comments only at start of line
* output
  - httpd: remove broken DLNA support code
* playlist
  - cue: support file type declaration "FLAC" (non-standard)
* URI schemes are case insensitive
* Android, Windows
  - enable the "curl" storage plugin

(wiz)

2018-08-19 17:25:07 UTC MAIN commitmail json YAML

doc: Updated fonts/harfbuzz to 1.8.8

(wiz)

2018-08-19 17:24:55 UTC MAIN commitmail json YAML

harfbuzz: update to 1.8.8.

Overview of changes leading to 1.8.8
Tuesday, August 14, 2018
====================================
- Fix hb-icu crash on architectures where compare_exchange_weak() can
  fail falsely.  This bug was introduced in 1.8.4.
  https://bugs.chromium.org/p/chromium/issues/detail?id=873568
- More internal refactoring of atomic operations and singletons.
- API changes:
  The following functions do NOT reference their return value before
  returning:
  * hb_unicode_funcs_get_default()
  * hb_glib_get_unicode_funcs()
  * hb_icu_get_unicode_funcs()
  This is consistent with their naming ("get", instead of "reference")
  as well as how they are used in the wild (ie. no one calls destroy()
  on their return value.)

(wiz)

2018-08-19 14:37:17 UTC MAIN commitmail json YAML

pulseaudio: Check for soundcard.h on Linux.

Hopefully fixes the build on linux systems with OSS headers.

(nia)

2018-08-19 13:57:25 UTC MAIN commitmail json YAML

doc: Updated lang/php72 to 7.2.9

(taca)

2018-08-19 13:56:59 UTC MAIN commitmail json YAML

lang/php72: update to 7.2.9

16 Aug 2018, PHP 7.2.9

- Calendar:
  . Fixed bug #52974 (jewish.c: compile error under Windows with GBK charset).
    (cmb)

- Filter:
  . Fixed bug #76366 (References in sub-array for filtering breaks the filter).
    (ZiHang Gao)

- PDO_Firebird:
  . Fixed bug #76488 (Memory leak when fetching a BLOB field). (Simonov Denis)

- PDO_PgSQL:
  . Fixed bug #75402 (Possible Memory Leak using PDO::CURSOR_SCROLL option).
    (Anatol)

- SQLite3:
  . Fixed #76665 (SQLite3Stmt::bindValue() with SQLITE3_FLOAT doesn't juggle).
    (cmb)

- Standard:
  . Fixed bug #73817 (Incorrect entries in get_html_translation_table). (cmb)
  . Fixed bug #68553 (array_column: null values in $index_key become incrementing
    keys in result). (Laruence)
  . Fixed bug #76643 (Segmentation fault when using `output_add_rewrite_var`).
    (cmb)

- Zip:
  . Fixed bug #76524 (ZipArchive memory leak (OVERWRITE flag and empty archive)).
    (Timur Ibragimov)

(taca)

2018-08-19 13:56:01 UTC MAIN commitmail json YAML

doc:  Updated lang/php71 to 7.1.21

(taca)

2018-08-19 13:55:24 UTC MAIN commitmail json YAML

lang/php71: Update to 7.1.21

PHP                                                                        NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 Aug 2018, PHP 7.1.21

- Calendar:
  . Fixed bug #52974 (jewish.c: compile error under Windows with GBK charset).
    (cmb)

- Filter:
  . Fixed bug #76366 (References in sub-array for filtering breaks the filter).
    (ZiHang Gao)

- PDO_Firebird:
  . Fixed bug #76488 (Memory leak when fetching a BLOB field). (Simonov Denis)

- PDO_PgSQL:
  . Fixed bug #75402 (Possible Memory Leak using PDO::CURSOR_SCROLL option).
    (Anatol)

- SQLite3:
  . Fixed #76665 (SQLite3Stmt::bindValue() with SQLITE3_FLOAT doesn't juggle).
    (cmb)

- Standard:
  . Fixed bug #68553 (array_column: null values in $index_key become incrementing
    keys in result). (Laruence)
  . Fixed bug #73817 (Incorrect entries in get_html_translation_table). (cmb)
  . Fixed bug #76643 (Segmentation fault when using `output_add_rewrite_var`).
    (cmb)

- Zip:
  . Fixed bug #76524 (ZipArchive memory leak (OVERWRITE flag and empty archive)).
    (Timur Ibragimov)

(taca)

2018-08-19 12:37:34 UTC pkgsrc-2018Q2 commitmail json YAML

Pullup ticket #5812 - requested by maya
chat/line-purple: mark as broken

Revisions pulled up:
- chat/line-purple/Makefile                                    1.6

---
  Module Name: pkgsrc
  Committed By: maya
  Date: Wed Aug 15 09:10:58 UTC 2018

  Modified Files:
  pkgsrc/chat/line-purple: Makefile

  Log Message:
  line-purple: mark BROKEN, using this program will get your account banned
  Upstream intentionally broke the build, follow the same policy for pkgsrc:
  http://altrepo.eu/git/purple-line/commit/1a07012f75d8e86077690d73917b3759fbe9b52c

  Reported by scole in PR pkg/53526

(bsiegert)

2018-08-19 11:24:21 UTC MAIN commitmail json YAML

Updated devel/py-aiofiles, graphics/py-seqdiag

(adam)

2018-08-19 11:23:52 UTC MAIN commitmail json YAML

py-seqdiag: updated to 0.9.6

0.9.6:
* Fix a bug
  - Fix Python 3.7 compatibility

(adam)

2018-08-19 11:16:26 UTC MAIN commitmail json YAML

py-aiofiles: updated to 0.4.0

0.4.0:
Python 3.7 support.
Removed Python 3.3/3.4 support. If you use these versions, stick to aiofiles 0.3.x.

(adam)

2018-08-19 10:55:04 UTC MAIN commitmail json YAML

Updated www/py-autobahn, www/py-daphne, www/py-channels

(adam)

2018-08-19 10:54:37 UTC MAIN commitmail json YAML

py-channels: updated to 2.1.3

2.1.3:
* An ALLOWED_ORIGINS value of "*" will now also allow requests without a Host
  header at all (especially important for tests)
* The request.path value is now correct in cases when a server has SCRIPT_NAME
  set
* Errors that happen inside channel listeners inside a runworker or Worker
  class are now raised rather than suppressed

(adam)

2018-08-19 10:53:11 UTC MAIN commitmail json YAML

py-daphne: updated to 2.2.2

2.2.2:
* X-Forwarded-Proto support is now present and enabled if you turn on the
  --proxy-headers flag
* ASGI applications are no longer instantiated in a thread (the ASGI spec
  was finalised to say all constructors must be non-blocking on the main thread)

2.2.1:
* Python 3.7 compatability is flagged and ensured by using Twisted 18.7 and
  above as a dependency.
* The send() awaitable in applications no longer blocks if the connection is
  closed.
* Fixed a race condition where applications would be cleaned up before they
  had even started.

(adam)

2018-08-19 10:48:35 UTC MAIN commitmail json YAML

py-autobahn: updated to 18.8.1

18.8.1:
fix: Python 3.7 compatibility
fix: remove Python 2.6 support leftovers
new: getting started docker-based examples in matching with docs

18.7.1:
new: Python 3.7 supported and integrated into CI
new: WAMP-SCRAM examples
fix: glitches in WAMP-SCRAM

(adam)

2018-08-19 09:45:01 UTC MAIN commitmail json YAML

Added graphics/py-objgraph; Updated net/py-gevent

(adam)

2018-08-19 09:44:28 UTC MAIN commitmail json YAML

py-gevent: updated to 1.3.6

1.3.6:
- gevent now depends on greenlet 0.4.14 or above. gevent binary wheels
  for 1.3.5 and below must have greenlet 0.4.13 installed on Python
  3.7 or they will crash.
- :class:gevent.local.local subclasses correctly supports @staticmethod functions.

1.3.5:
- Update the bundled libuv from 1.20.1 to 1.22.0.
- Test Python 3.7 on Appveyor. Fix the handling of Popen's
  close_fds argument on 3.7.
- Update Python versions tested on Travis, including PyPy to 6.0.
- :mod:gevent.queue imports _PySimpleQueue instead of
  SimpleQueue so that it doesn't block the event loop.
  :func:gevent.monkey.patch_all makes this same substitution in
  :mod:queue. This fixes issues with
  :class:concurrent.futures.ThreadPoolExecutor as well.
- :meth:gevent.socket.socket.connect doesn't pass the port (service)
  to :func:socket.getaddrinfo when it resolves an AF_INET or
  AF_INET6 address. (The standard library doesn't either.) This
  fixes an issue on Solaris.
- :meth:gevent.socket.socket.connect works with more address
  families, notably AF_TIPC, AF_NETLINK, AF_BLUETOOTH, AF_ALG and AF_VSOCK.

(adam)

2018-08-19 09:40:37 UTC MAIN commitmail json YAML

objgraph: added version 3.4.0

objgraph is a module that lets you visually explore Python object graphs.
You'll need graphviz if you want to draw the pretty graphs.

(adam)

2018-08-19 09:37:12 UTC MAIN commitmail json YAML

2018-08-19 09:21:01 UTC MAIN commitmail json YAML

doc/TODO: add some

+ MesaLib-18.1.6, extra-cmake-modules-5.49.0, filezilla-3.35.2,
  gcc8-8.2, gdbus-codegen-2.56.2, glib2-2.56.2, glib2-tools-2.56.2,
  harfbuzz-1.8.8, librsvg-2.42.6 [needs rust+cargo], libuv-1.23.0,
  musicpd-0.20.21, oxygen-icons-5.49.0, php72-7.2.9, py-certifi-2018.8.13,
  py-postgresql-5.0.6, webkit-gtk-2.20.5.

(wiz)

2018-08-19 09:16:01 UTC MAIN commitmail json YAML

gnutls: remove obsolete configure argument

(wiz)

2018-08-19 09:14:16 UTC MAIN commitmail json YAML

Updated sysutils/py-psutil, textproc/py-regex

(adam)

2018-08-19 09:13:51 UTC MAIN commitmail json YAML

py-regex: updated to 2018.08.17

2018.08.17:
Unknown changes.

(adam)

2018-08-19 09:11:32 UTC MAIN commitmail json YAML

py-psutil: updated to 5.4.7

5.4.7:
Enhancements
* [macOS] psutil.OSX constant is now deprecated in favor of new psutil.MACOS.
* [Linux] added psutil.STATUS_PARKED constant for Process.status().
* [Linux] add disk_io_counters() dual implementation relying on /sys/block filesystem in case /proc/diskstats is not available.

Bug fixes
* [macOS] Process.memory_maps() may fail with EINVAL due to poor task_for_pid() syscall. AccessDenied is now raised instead.
* [macOS] Process.threads() incorrectly return microseconds instead of seconds.
* [Linux, macOS, BSD] net_if_stats() may return ENODEV.
* [Windows] psutil.Process().connections() may sometime fail with MemoryError.
* [Linux] disk_io_stats() may report inflated r/w bytes values.
* [Linux] Process.status() is unable to recognize "idle" and "parked" statuses (returns '?').
* [Linux] disk_io_counters() can report inflated IO counters due to erroneously counting base disk device and its partition(s) twice.
* [Linux] sensors_temperatures() may fail with ValueError.

(adam)

2018-08-19 08:55:40 UTC MAIN commitmail json YAML

Updated www/py-cherrypy, print/py-reportlab

(adam)

2018-08-19 08:55:01 UTC MAIN commitmail json YAML

py-reportlab: updated to 3.5.5

RELEASE 3.5.3
* Bug fix release to make really simple paras work OK
* Use local libart by default
* Use upgrade libart source to 2.3.21-3

(adam)

2018-08-19 08:51:45 UTC MAIN commitmail json YAML

py-cherrypy: updated to 17.3.0

v17.3.0
* Rely on zc.lockfile for session concurrency support.

v17.2.0
* Prevent orphaned Event object in cached 304 response.

v17.1.0
* Add support for accepting uploaded files with non-ascii filenames per RFC 5987.

(adam)

2018-08-19 08:47:09 UTC MAIN commitmail json YAML

Updated databases/redis, security/sudo

(adam)

2018-08-19 08:46:44 UTC MAIN commitmail json YAML

sudo: updated to 1.8.24

Sudo 1.8.24

* The LDAP and SSS back-ends now use the same rule evaluation code
  as the sudoers file backend.  This builds on the work in sudo
  1.8.23 where the formatting functions for "sudo -l" output were
  shared.  The handling of negated commands in SSS and LDAP is
  unchanged.

* Fixed a regression introduced in 1.8.23 where "sudo -i" could
  not be used in conjunction with --preserve-env=VARIABLE.

* cvtsudoers can now parse base64-encoded attributes in LDIF files.

* Random insults are now more random.

* Fixed the noexec wordexp(3) test on FreeBSD.

* Added SUDO_CONV_PREFER_TTY flag for conversation function to
  tell sudo to try writing to /dev/tty first. Can be used in
  conjunction with SUDO_CONV_INFO_MSG and SUDO_CONV_ERROR_MSG.

* Sudo now supports an arbitrary number of groups per user on
  Solaris.  Previously, only the first 64 groups were found.
  This should remove the need to set "max_groups" in sudo.conf.

* Fixed typos in the OpenLDAP sudo schema.

* Fixed a race condition when building with parallel make.

* Fixed a duplicate free when netgroup_base in ldap.conf is set
  to an invalid value.

* Fixed a bug introduced in sudo 1.8.23 on AIX that could prevent
  local users and groups from being resolved properly on systems
  that have users stored in NIS, LDAP or AD.

* Added a workaround for an AIX bug exposed by a change in sudo
  1.8.23 that prevents the terminal mode from being restored when
  I/O logging is enabled.

* On systems using PAM, sudo now ignores the PAM_NEW_AUTHTOK_REQD
  and PAM_AUTHTOK_EXPIRED errors from PAM account management if
  authentication is disabled for the user.  This fixes a regression
  introduced in sudo 1.8.23.

* Fixed an ambiguity in the sudoers manual in the description and
  definition of User, Runas, Host, and Cmnd Aliases.

* Fixed a bug that resulted in only the first window size change
  event being logged.

* Fixed a bug on HP-UX systems introduced in sudo 1.8.22 that
  caused sudo to prompt for a password every time when tty-based
  time stamp files were in use.

* Fixed a compilation problem on systems that define O_PATH or
  O_SEARCH in fnctl.h but do not define O_DIRECTORY.

(adam)

2018-08-19 08:39:36 UTC MAIN commitmail json YAML

redis: updated to 4.0.11

Redis 4.0.11:

Upgrade urgency HIGH: not critical but very important bugs fixed.

Dear users, this is just a bugfix release of Redis 4. All new work
is now focused on Redis 5, however we backported a number of bug fixes here:

* The disconnection time between the master and slave was reset in an
  incorrect place, sometimes a good slave will not be able to failover
  because it claims it was disconnected for too much time from the master.
* A replication bug, rare to trigger but non impossible, is in Redis for
  years. It was lately discovered at Redis Labs and fixed by Oran Agra.
  It may cause disconnections, desynchronizations and other issues.
* RANDOMKEY may go in infinite loop on rare situations. Now fixed.
* EXISTS now works in a more consistent way on slaves.
* Sentinel: backport of an option to deny a potential security problem
  when the SENTINEL command is used to configure an arbitrary script
  to execute.

(adam)

2018-08-19 08:21:24 UTC MAIN commitmail json YAML

Updated devel/py-more-itertools, math/py-roman

(adam)

2018-08-19 08:21:01 UTC MAIN commitmail json YAML

py-roman: updated to 3.0

3.0:
Added support for Python 3.5, 3.6 and PyPy3.
Dropped support for Python 2.6 and 3.3.

(adam)

2018-08-19 08:16:05 UTC MAIN commitmail json YAML

py-more-itertools: updated to 4.3.0

4.3.0:

New itertools:
- last()
- replace()
- rlocate()

Improvements to existing itertools:
- locate() can now search for multiple items

Other changes:
- The docs now include a nice table of tools

(adam)

2018-08-19 08:12:42 UTC MAIN commitmail json YAML

Updated devel/py-setuptools, devel/py-test

(adam)

2018-08-19 08:12:20 UTC MAIN commitmail json YAML

py-test: updated to 3.7.2

pytest 3.7.2:

Bug Fixes
- Fix filterwarnings not being registered as a builtin mark.
- Fix test collection from packages mixed with normal directories.
- Fix infinite recursion during collection if a pytest_ignore_collect hook returns False instead of None.
- Fix bug where decorated fixtures would lose functionality (for example @mock.patch).
- Fix bug where importing modules or other objects with prefix pytest_ prefix would raise a PluginValidationError.
- Fix AttributeError during teardown of TestCase subclasses which raise an exception during __init__.
- Fix traceback reporting for exceptions with __cause__ cycles.

(adam)

2018-08-19 08:06:54 UTC MAIN commitmail json YAML

py-setuptools: updated to 40.1.0

v40.1.0
* Deprecated upload and register commands.
* Introduced find_namespace_packages() to find PEP 420 namespace packages.
* Added find_namespace: directive to config parser.
* Solved race in when creating egg cache directories.
* Upgraded vendored PyParsing from 2.1.10 to 2.2.0.
* Upgraded vendored appdirs from 1.4.0 to 1.4.3.
* Fixed "Microsoft Visual C++ Build Tools" link in exception when Visual C++ not found.
* Added support for scripts which have unicode content.
* Moved several Python version checks over to using six.PY2 and six.PY3.
* Removed spurious executable permissions from files that don't need them.

(adam)

2018-08-19 07:58:40 UTC MAIN commitmail json YAML

Updated devel/py-modulegraph, textproc/py-validators

(adam)

2018-08-19 07:26:32 UTC MAIN commitmail json YAML

py-validators: updated to 0.12.2

0.12.2:
Fixed IPv4 formatted IP address returning True on ipv6
Fixed IPv6 address parsing
Fixed domain validator for international domains and certain edge cases

0.12.1:
Fixed IDNA encoded TLDs in domain validator
Fixed URL validator for URLs with invalid characters in userinfo part

0.12.0:
Added hash validators for md5, sha1, sha224, sha256 and sha512
Made ipv6 validator support IPv4-mapped IPv6 addresses

0.11.3:
Fixed URL validator for URLs containing localhost

0.11.2:
Fixed URL validator for urls with query parameters but without path

0.11.1:
Fixed pyp2rpm build problem

0.11.0:
Fixed public url validation
Made URL validator case insensitive
Drop Python 2.6 support

0.10.3:
Added public parameter to url validator

0.10.2:
Fixed various URL validation issues

0.10.1:
Fixed domain name validation for numeric domain names
Fixed IBAN validation for Norwegian and Belgian IBANs

0.10.0:
Added support for internationalized domain names in domain validator

0.9.0:
Added new validator: domain
Added flake8 and isort checks in travis config

0.8.0:
Added new validator: iban

(adam)

2018-08-19 07:20:28 UTC MAIN commitmail json YAML

py-modulegraph: updated to 0.17

0.17:
* The .pyc format changed a little in Python 3.7

(adam)

2018-08-19 06:28:39 UTC MAIN commitmail json YAML

gnutls: build-depend on bash for the tests.

Replace interpreter in more shell scripts. Gets tests further along.

(wiz)

2018-08-19 05:00:50 UTC MAIN commitmail json YAML

doc: Updated security/p11-kit to 0.23.13

(wiz)

2018-08-19 05:00:41 UTC MAIN commitmail json YAML

p11-kit: update to 0.23.13.

0.23.13 (stable)
* server: Enable socket activation through systemd [PR#173]
* rpc-server: p11_kit_remote_serve_tokens: Allow exporting all modules [PR#174]
* proxy: Fail early if there is no slot mapping [PR#175]
* Remove hard dependency on libpthread on glibc systems [PR#177]
* Build fixes [PR#170, PR#176]

(wiz)

2018-08-18 21:19:09 UTC MAIN commitmail json YAML

Updated www/py-test-django, textproc/py-sphinxcontrib-websupport

(adam)

2018-08-18 21:18:28 UTC MAIN commitmail json YAML

py-sphinxcontrib-websupport: updated to 1.1.0

1.1.0:
* Add compatibility with Sphinx 1.6.
* Support testing with Sphinx-1.7.
* Include license file in the generated wheel package.

(adam)

2018-08-18 21:14:49 UTC MAIN commitmail json YAML

py-test-django: updated to 3.4.1

3.4.1:
Unknown changes

3.4.0:
Features
Added new fixture django_assert_max_num_queries.
Added support for connection and returning the wrapped context manager with django_assert_num_queries.
Added support for resetting sequences via django_db_reset_sequences.

Bugfixes
Made sure to not call django.setup() multiple times.

Compatibility
Removed py dependency, use pathlib instead

(adam)

2018-08-18 21:07:11 UTC MAIN commitmail json YAML

Updated security/py-cryptodome, devel/py-dogpile-cache

(adam)

2018-08-18 21:06:24 UTC MAIN commitmail json YAML

py-dogpile-cache: updated to 0.6.7

0.6.7:
[bug] Fixed issue in the CacheRegion.get_or_create_multi() method which was erroneously considering the cached value as the timestamp field if the CacheRegion.invalidate() method had ben used, usually causing a TypeError to occur, or in less frequent cases an invalid result for whether or not the cached value was invalid, leading to excessive caching or regeneration. The issue was a regression caused by an implementation issue in the pluggable invalidation feature added in 38.

0.6.6:
[feature] Added method CacheRegion.actual_backend which calculates and caches the actual backend for the region, which may be abstracted by the use of one or more ProxyBackend subclasses.
[bug] Fixed a condition in the Lock where the ���get��� function could be called a second time unnecessarily, when returning an existing, expired value from the cache.

0.6.5:
[bug] Fixed import issue for Python 3.7 where several variables named ���async��� were, leading to syntax errors. Pull request courtesy Brian Sheldon.

(adam)

2018-08-18 20:57:30 UTC MAIN commitmail json YAML

py-cryptodome: updated to 3.6.6

3.6.6:
Resolved issues
Fix vulnerability on AESNI ECB with payloads smaller than 16 bytes.

(adam)

2018-08-18 15:56:59 UTC MAIN commitmail json YAML

2018-08-18 15:55:13 UTC MAIN commitmail json YAML

subversion: updated to 1.10.2

Version 1.10.2:
User-visible changes:
  - Client-side bugfixes:
    * Correctly claim to offer Gnome Keyring support with libsecret
    * Fix segfault using Gnome Keyring with libsecret
    * Fix JavaHL local refs capacity warning when unparsing externals
    * Since on Windows Subversion does not handle symlinks, never check for reparse points
    * Prune externals after 'update --set-depth=exclude'
    * Fix issue 4740, "conflict resolver searches too far back ..."
  - Server-side bugfixes:
    * Fix regression issue 4741: authz group refers to multiple groups

Developer-visible changes:
  - General:
    * Regression test and FSFS checksum test, part of issue 4722
    * Explicit error on configure --without-lz4 or --without-utf8proc
    * configure.ac: Fix regression relating to path to 'rdoc'
    * Ensure consistent use of $PYTHON during build and test
    * Fix libsvn_auth_gnome_keyring.pc when built using libsecret
  - Bindings:
    * Fix regression in use of pre-generated Swig bindings in release builds

Version 1.10.0:
User-visible changes:
  - Major new features:
    * Better interactive conflict resolution for tree conflicts
    * Wilcards and improved performance in path-based authorization
    * New experimental 'svn shelve' command
  - Minor new features and improvements:
    * svnbench: Show time taken & bytes transferred
    * New 'svnadmin dump' options to include/exclude paths
    * New '--normalize-props' option for 'svnadmin dump'
    * New 'svnadmin 'load-revprops', 'dump-revprops' subcommands
    * New '--no-flush-to-disk' option for 'svnadmin load'
    * New '--file' option for several svnadmin subcommands
    * New '--max-request-size', '--max-response-size' options for svnserve
    * New '-rN' option for 'svnadmin lstxns'
    * New '--search' option for fast 'svn ls' searches
    * Add '--search' option support to 'svnbench null-list'
    * New '-M' option for 'svnlook tree'
    * New '--skip-unchanged' option for 'svnsync copy-revprops'
    * 'svn log --search' now ignores case and diacriticals
    * Improved performance of server-side log processing
    * diff3: Reduce processing time and memory usage
    * ra_serf: Adjustments for serf versions with HTTP/2 support
    * ra_serf: Send svndiff1 deltas during commit
    * ra_serf: Stream svndiff deltas w/o creating temporary files
    * ra_serf: Don't necessarily request full MERGE reponses
    * 'svn patch': Parse binary diffs in git-style patches
    * 'svnadmin info' now reports latest revision in the repository
    * ra_svn: Various performance-related tweaks
    * Optimize svndiff parser
    * 'svn status' without -v: Stop showing uninteresting deletions
    * Save a few cycles in svn_stringbuf_set()
    * windows: Use the Unicode Windows API
    * windows: Distinguish out-of-memory error from abort()
    * windows: Explicitly release file locks
    * windows: Correctly check result from LoadLibrary() call
    * Remove Windows-specific slowdown during pristine cleanup
    * FSFS: Optionally cache node properties without full-text cache
    * FSFS: Open transaction's proto revision in write-only mode
    * FSFS: Avoid checksum calculations if logical addressing is used
    * FSFS: Do not read very long change lists in block read mode
    * FSFS: Avoid double DAG lookup
    * FSFS: Avoid double cache lookups
    * FSFS: Increase default revprop pack size from 4k to 16k
    * FSFS: Speed up revprop access
    * FSFS: Disable representation sharing for directories
    * FSFS: Speed up transaction processing for large directories
    * FSFS: Tune format 7 pack ordering heuristics
    * FSFS: Reduce I/O overhead during history traversal
    * FSFS: Use native Windows API to guarantee data is flushed
    * FSFS: Warn if a possible rep-cache SHA1 collision is detected
    * FSFS: Optimize revprop cache filling strategy under high load
    * FSFS: New "verify-before-commit" fsfs.conf option
    * FSFS: New format 8 with various performance improvements
    * FSFS/FSX: Chunked read support for changed paths lists
    * FSFS/FSX: Improvements to cache implementation
    * FSX: Add checksums to packed revprop manifests and files
    * FSX: Significantly reduce size of packed revprop manifest data
    * FSX: Improved on-disk representation of property lists
    * FSX: New in-repository representation of directories
    * FSX: Make 'svnadmin recover' discard all transactions
    * FSX: Reduce number of fsync operations
    * mod_dav_svn: Improve performance and memory usage of PROPFIND
    * mod_dav_svn: Show process-id on Windows in /svn-status page
    * mod_dav_svn: Advertise svndiff1 support to clients
    * mod_dav_svn: Remove disk I/O to TMPDIR during first commit
    * svnsync: Fix assertion failure with up-to-date repositories
    * ra_serf: Parallel requests for text and property changes
    * svnserve: Remove disk I/O to TMPDIR during first commit
    * Triple performance of URI escaping
    * 'svn blame': Optimize a bit on the server side
    * 'svn cleanup': Add --vacuum-pristines option
    * 'svn diff --git': Show diffs of symlinks like git and hg
    * 'svn patch': Capable of handling git-like symlink changes
    * 'svn patch': Improve detection of additions and deletions
    * 'svn patch': Handle zero-byte files vs deleted files
    * 'svn diff --git': Produce 'rename from/to' headers
    * 'svn diff --git': Produce proper mode headers
    * 'svn lock', 'svn unlock': Take the -q option
    * 'svn help': improved wording and consistency
    * 'svn': Add a new '--accept recommended' option.
    * 'svn': --non-interactive uses recommended tree conflict resolution
    * Evaluate 'old mode' and 'new mode' lines from git-syle diffs
    * svnrdump, svndumpfilter: Enable buffered stdin
    * ra_serf: Receive svndiff1 and gzip compressed deltas
    * svnadmin: 'lock', 'unlock', 'rmlocks': Take the -q option
    * New svndiff2 binary delta format using lz4 compression
    * gpg-agent: Support gpg ≥2.1.13 and unset GPG_AGENT_INFO
    * Add 'http-compression=auto' client config option as default
    * Speed up processing of mergeinfo
    * Check for invalid 'xt' fields in x509 certs
    * New '--password-from-stdin' option for 'svn'
  - Client-side bugfixes:
    * svnbench: Honour the '--with-no-revprops' option
    * ra_serf: Fix segfault when running over HTTP v1
    * ra_serf: Keep small svndiffs in memory during commit
    * ra_serf: Improve error messages related to lock operations
    * ra_serf: Work around a bug in serf bucket handling
    * ra_serf: Fix lock token handling for file-path commits
    * Raise a malfunction instead of segfaulting with corrupt wc.db
    * Fix check for unversioned obstructions blocking file externals
    * 'svn patch' bugfixes:
      + Fix behaviour if a reject file can't be created
      + Describe adds and removes in reject file headers
      + Detect recorded moves that are already applied
      + Detect already applied patches in edge cases
      + Fix handling of missing trailing context
      + Fix interaction of moves and property changes
      + Fix output for reordered hunks
      + Prevent from overwriting existing reject files
      + Improve handling of added properties
      + Improve handling of rejected file deletions
      + Fix --dry-run with replaced files
      + Fix applying prop changes which should conflict
      + Fix duplicate notifications when adding directories
      + Fix duplicate notifications when patching svn:executable prop
      + Fix notifications when adding/removing properties
      + Make handle already applied property patches
      + Change some notifications to 'U' instead of 'G'
      + Don't create file if git-style patch indicates modification
      + Parse any properties following svn:mergeinfo
      + Fix potential unbounded memory usage in parser
      + Fix problems with --git diffs applied in reverse
      + Fix removal of EOL if final patch context line has no EOL
    * 'svn diff --git': Fix file permission modes to match git and hg
    * 'svn diff --git': added/deleted filenames are never /dev/null
    * Fix a problem with relocating some externals
    * Fix 'svn diff URL@REV WC' wrongly looks up URL@HEAD
    * Fix 'svn diff --no-diff-added' shows properties as added
    * Properly raise text merge conflicts with file externals (r1680245)
    * Fix 'svn diff' with local directories marked incomplete
    * ra_svn/ra_serf: Make negative log limits work as documented
    * ra_svn: Eliminate unnecessary URL reparenting
    * ra_svn: Use svndiff2 deltas when supported on both ends
    * Handle invalid revision numbers consistently across RA layers
    * Handle commits to revs > HEAD consistently across RA layers
    * Eliminate one client/server roundtrip from checkouts of HEAD
    * Expose some error messages generated by github's SVN server
    * 'svnfsfs stats': Show average lengths of delta chains
    * svnmucc: Fix crash during application teardown
    * Fix assertion when exporting a working copy containing relative externals

  - Server-side bugfixes:
    * Fix checksum validation error due to data eviction from cache
    * FSFS pack: Use unbuffered file streams in a couple of places
    * FSFS: Reduce excessive amount of read and seek syscalls
    * FSFS: Reduce memory footprint of cached directories
    * FSFS: Add various checks for integer overflows
    * FSFS: Detect a very unlikely case of item index corruption
    * FSFS: Make handling of revprop size information more resilient
    * FSFS: Don't re-parse a directory which just got committed
    * FSFS: Handle some known quirks in committed node revisions
    * FSFS format 7: Verify item types more thoroughly
    * FSFS: Fix false positive "Not a directory" error involving file moved and
      replaced by dir
    * FSFS: Fix crash accessing revprops with --memory-cache-size=0
    * FSFS: Fix issue 4623 for FSFS.
    * mod_dav_svn: Omit Cache-Control HTTP header for HEAD URLs
    * mod_dav_svn: Reduced memory consumption for DAV merge responses
    * mod_dav_svn: Don't set a Last-Modified header in GET responses
    * mod_dav_svn: Actually use FSFS transaction directory cache
    * mod_dav_svn: Do not insert newlines in base64 encoded responses
    * Fix insertion of very large items into the membuffer cache
    * Fix capacity check of the membuffer cache's prefix pool
    * Prevent paths containing newlines from being committed
    * Fix for properties: Null updates break last-changed-revision
    * 'svnfsfs stats': Fix false positive checksum errors reading old revisions

    * 'svnfsfs stats': Fix support for pre-v4 FSFS repositories.
    * svnadmin, svnfsfs: Detect invalid arguments to -M
    * svnlook, svnserve: Detect invalid arguments to -M
    * svnadmin: Output locked paths in canonical form
    * svnadmin: Output locked paths correctly encoded
    * svn: propdel, propset: Transcode property names on output
    * svnserve: Make use-sasl=true a fatal error in SASL-less builds.
  - Client-side and server-side bugfixes:
    * Fix integer overflow check with >= 1G mergeinfo ranges per path
    * Fix integer overflow checks on WoW64 platforms
    * Fix bug with canonicalizing Window-specific drive-relative URL
    * In file:// URLs, allow '\' directly after Windows drive letter
    * Fix segfault with recursive configuration value definitions
    * FSFS: Improve error messages when DAG lookup fails
    * Transcode command-line arguments to UTF-8
    * Fix segfault on x509 certificate with empty name
    * Fix segfault with invalid URLs in svn:externals
    * Windows: Failure to write files might remain undetected
  - Other tool improvements and bugfixes:
    * New svn-mergeinfo-normalizer tool
    * Allow configuring mailer.py to use SMTP SSL
    * svnmucc can now delete directories with deleted children
    * svn-vendor.py: Minor enhancements, mostly in treating symlinks
    * bash_completion: Better URL completion
    * bash_completion: Complete arguments to 'svn info --show-item'
    * fsfs-stats: New 1.8-compatible wrapper for 'svnfsfs stats'
    * Drop support for upgrading working copies created with Subversion 1.7

(adam)

2018-08-18 15:09:35 UTC MAIN commitmail json YAML

Bump clawsmail version

(sevan)

2018-08-18 13:18:25 UTC pkgsrc-2018Q2 commitmail json YAML

Pullup tickets up to #5810.

(bsiegert)

2018-08-18 13:18:09 UTC pkgsrc-2018Q2 commitmail json YAML

Pullup ticket #5810 - requested by maya
net/bind99: security fix, NetBSD build fix
net/bind910: security fix, NetBSD build fix

Revisions pulled up:
- net/bind910/Makefile                                          1.42-1.43
- net/bind910/distinfo                                          1.35-1.36
- net/bind910/patches/patch-lib_isc_unix_socket.c              1.1
- net/bind99/Makefile                                          1.75-1.76
- net/bind99/distinfo                                          1.53-1.54
- net/bind99/patches/patch-lib_isc_unix_socket.c                1.1

---
  Module Name:    pkgsrc
  Committed By:  taca
  Date:          Thu Aug  9 14:51:25 UTC 2018

  Modified Files:
          pkgsrc/net/bind99: Makefile distinfo

  Log Message:
  net/bind99: update to 9.9.13pl1

  Update bind99 to 9.9.13pl1 (9.9.13-P1).

          --- 9.9.13-P1 released ---

  4997.  [security]      named could crash during recursive processing
                          of DNAME records when "deny-answer-aliases" was
                          in use. (CVE-2018-5740) [GL #387]

---
  Module Name:    pkgsrc
  Committed By:  taca
  Date:          Thu Aug  9 14:49:09 UTC 2018

  Modified Files:
          pkgsrc/net/bind910: Makefile distinfo

  Log Message:
  net/bind910: update to 9.10.8pl1

  Update bind910 to 9.10.8pl1 (9.10.8-P1).

          --- 9.10.8-P1 released ---

  4997.  [security]      named could crash during recursive processing
                          of DNAME records when "deny-answer-aliases" was
                          in use. (CVE-2018-5740) [GL #387]

---
  Module Name:    pkgsrc
  Committed By:  maya
  Date:          Mon Aug 13 13:36:25 UTC 2018

  Modified Files:
          pkgsrc/net/bind99: Makefile distinfo
  Added Files:
          pkgsrc/net/bind99/patches: patch-lib_isc_unix_socket.c

  Log Message:
  bind99: Make ENOBUFS a soft error. Needed for netbsd>=8.
  See https://gitlab.isc.org/isc-projects/bind9/issues/462
  bump PKGREVISION

---
  Module Name:    pkgsrc
  Committed By:  maya
  Date:          Mon Aug 13 13:37:14 UTC 2018

  Modified Files:
          pkgsrc/net/bind910: Makefile
  Added Files:
          pkgsrc/net/bind910/patches: patch-lib_isc_unix_socket.c

  Log Message:
  bind910: Make ENOBUFS a soft error. Needed for netbsd>=8.
  See https://gitlab.isc.org/isc-projects/bind9/issues/462
  Bump PKGREVISION.

---
  Module Name:    pkgsrc
  Committed By:  maya
  Date:          Mon Aug 13 13:41:49 UTC 2018

  Modified Files:
          pkgsrc/net/bind910: distinfo

  Log Message:
  bind910: also add patch to distinfo.

(bsiegert)

2018-08-18 12:03:38 UTC MAIN commitmail json YAML

doc: Updated cad/gtkwave to 3.3.93

(mef)

2018-08-18 12:03:28 UTC MAIN commitmail json YAML

Updated cad/gtkwave to 3.3.93

3.3.92  05jul18 Harden FST loader for missing .hier files (if applicable).
                Fixed broken GTK+-1.2 compile of twinwave.
                Fix scrolling on help window by adding scroll to end mark.
                Fix scrolling on status window when use_toolbutton_interface
                rc var is set to FALSE by adding scroll to end mark.
                Updated BUILT_SOURCES for vermin.
                extern yy_size_t yyleng fix in rtlbrowse.
3.3.93  03aug18 Added sst_dbl_action_type rc variable which controls side-
                effect of double-clicking in SST signals pane.
                Added xml2stems Verilator XML to rtlbrowse stems converter
                to distribution.  Eventually vermin will be removed.
                Added missing realpath() in udp emission in vermin.

(mef)

2018-08-18 10:36:38 UTC pkgsrc-2018Q2 commitmail json YAML

Pullup ticket #5809 - requested by youri
pkgtools/pkgin: bugfix

Revisions pulled up:
- pkgtools/pkgin/Makefile                                      1.82
- pkgtools/pkgin/distinfo                                      1.52

---
  Module Name: pkgsrc
  Committed By: jperkin
  Date: Tue Jul  3 17:39:35 UTC 2018

  Modified Files:
  pkgsrc/pkgtools/pkgin: Makefile distinfo

  Log Message:
  pkgin: Update to 0.11.4.

  ## Version 0.11.4 (2018-07-03)

    * Fix dependency matching to correctly consider DEPENDS rather than simply
      attempting to pull in the highest version.  Resolves issues with installing
      packages depending on samba and their conflicts against tdb and talloc.

(bsiegert)

2018-08-18 10:34:16 UTC pkgsrc-2018Q2 commitmail json YAML

Pullup ticket #5808 - requested by sevan
sysutils/smartmontools: NetBSD build fix

Revisions pulled up:
- sysutils/smartmontools/Makefile                              1.32
- sysutils/smartmontools/distinfo                              1.31
- sysutils/smartmontools/patches/patch-os_netbsd.cpp            1.2

---
  Module Name:    pkgsrc
  Committed By:  sevan
  Date:          Sat Aug  4 19:05:13 UTC 2018

  Modified Files:
          pkgsrc/sysutils/smartmontools: Makefile distinfo
          pkgsrc/sysutils/smartmontools/patches: patch-os_netbsd.cpp

  Log Message:
  Backport fix for NetBSD on bigendian systems
  https://www.smartmontools.org/ticket/943
  https://www.smartmontools.org/changeset/4628

(bsiegert)

2018-08-18 10:31:59 UTC pkgsrc-2018Q2 commitmail json YAML

Pullup ticket #5804 - requested by bouyer
geography/opencpn: build fix

Revisions pulled up:
- geography/opencpn-plugin-debugger/Makefile                    1.11
- geography/opencpn-plugin-draw/Makefile                        1.17
- geography/opencpn-plugin-statusbar/Makefile                  1.8
- geography/opencpn-plugin-watchdog/Makefile                    1.15
- geography/opencpn-plugin-watchdog/distinfo                    1.10
- geography/opencpn-plugin-watchdog/patches/patch-src_Alarm.cpp 1.2
- geography/opencpn-plugin-watchdog/patches/patch-src_watchdog_pi.cpp 1.2
- geography/opencpn-plugin-weather_routing/Makefile            1.18
- geography/opencpn/Makefile                                    1.24
- geography/opencpn/distinfo                                    1.19-1.20
- geography/opencpn/patches/patch-CMakeLists.txt                1.7
- geography/opencpn/patches/patch-plugins_wmm_pi_src_MagneticPlotMap.cpp 1.2

---
  Module Name: pkgsrc
  Committed By: bouyer
  Date: Tue Jul  3 15:14:16 UTC 2018

  Modified Files:
  pkgsrc/geography/opencpn: distinfo
  pkgsrc/geography/opencpn-plugin-watchdog: distinfo
  pkgsrc/geography/opencpn-plugin-watchdog/patches: patch-src_Alarm.cpp
      patch-src_watchdog_pi.cpp
  pkgsrc/geography/opencpn/patches:
      patch-plugins_wmm_pi_src_MagneticPlotMap.cpp

  Log Message:
  newer gcc (e.g. 8.0_RC2) requires <cmath> for std::isnan().
  This is only a build fix so no revision bump

---
  Module Name: pkgsrc
  Committed By: bouyer
  Date: Thu Jul 19 17:58:58 UTC 2018

  Modified Files:
  pkgsrc/geography/opencpn: Makefile distinfo
  pkgsrc/geography/opencpn-plugin-debugger: Makefile
  pkgsrc/geography/opencpn-plugin-draw: Makefile
  pkgsrc/geography/opencpn-plugin-statusbar: Makefile
  pkgsrc/geography/opencpn-plugin-watchdog: Makefile
  pkgsrc/geography/opencpn-plugin-weather_routing: Makefile
  pkgsrc/geography/opencpn/patches: patch-CMakeLists.txt

  Log Message:
  Do not include buildlink3 files already inclued by wxGTK30/buildlink3.mk
  (especially, remove gtk2 buildlink3).
  Make opencpn build with gtk3
  Conservatively bump PKGREVISIONs

(bsiegert)

2018-08-18 10:21:45 UTC pkgsrc-2018Q2 commitmail json YAML

Pullup ticket #5803 - requested by bouyer
misc/libreoffice: build fix

Revisions pulled up:
- misc/libreoffice/distinfo                                    1.59
- misc/libreoffice/patches/patch-external_mysql-connector-cpp_config.h 1.1

---
  Module Name: pkgsrc
  Committed By: bouyer
  Date: Fri Jul 20 09:36:19 UTC 2018

  Added Files:
  pkgsrc/misc/libreoffice/patches:
      patch-external_mysql-connector-cpp_config.h

  Log Message:
  Define HAVE_INTTYPES_H for __NetBSD__ too.
  Fixes build on NetBSD/i386 8.0 at last

---
  Module Name: pkgsrc
  Committed By: bouyer
  Date: Fri Jul 20 09:36:57 UTC 2018

  Modified Files:
  pkgsrc/misc/libreoffice: distinfo

  Log Message:
  Update distinfo for new patch-external_mysql-connector-cpp_config.h

(bsiegert)

2018-08-18 09:11:00 UTC pkgsrc-2018Q2 commitmail json YAML

Pullup ticket #5802 - requested by taca
www/apache24: security fix

Revisions pulled up:
- www/apache24/Makefile                                        1.69-1.70
- www/apache24/distinfo                                        1.36
- www/apache24/patches/patch-aa                                1.2

---
  Module Name: pkgsrc
  Committed By: jperkin
  Date: Wed Jul  4 13:40:45 UTC 2018

  Modified Files:
  pkgsrc/www/apache24: Makefile

  Log Message:
  *: Move SUBST_STAGE from post-patch to pre-configure

  Performing substitutions during post-patch breaks tools such as mkpatches,
  making it very difficult to regenerate correct patches after making changes,
  and often leading to substituted string replacements being committed.

---
  Module Name: pkgsrc
  Committed By: adam
  Date: Thu Jul 19 08:53:58 UTC 2018

  Modified Files:
  pkgsrc/www/apache24: Makefile distinfo
  pkgsrc/www/apache24/patches: patch-aa

  Log Message:
  apache24: updated to 2.4.34

  Apache 2.4.34
  *) SECURITY: CVE-2018-8011 (cve.mitre.org)
      mod_md: DoS via Coredumps on specially crafted requests
  *) SECURITY: CVE-2018-1333 (cve.mitre.org)
      mod_http2: DoS for HTTP/2 connections by specially crafted requests
  *) Introduce zh-cn and zh-tw (simplified and traditional Chinese) error
      document translations.
  *) event: avoid possible race conditions with modules on the child pool.
  *) mod_proxy: Fix a corner case where the ProxyPassReverseCookieDomain or
      ProxyPassReverseCookiePath directive could fail to update correctly
      'domain=' or 'path=' in the 'Set-Cookie' header.
  *) mod_ratelimit: fix behavior when proxing content.
  *) core: Re-allow '_' (underscore) in hostnames.
  *) mod_authz_core: If several parameters are used in a AuthzProviderAlias
      directive, if these parameters are not enclosed in quotation mark, only
      the first one is handled. The other ones are silently ignored.
      Add a message to warn about such a spurious configuration.
  *) mod_md: improvements and bugfixes
      - MDNotifyCmd now takes additional parameter that are passed on to the called command.
      - ACME challenges have better checks for interference with other modules
      - ACME challenges are only handled for domains managed by the module, allowing
        other ACME clients to operate for other domains in the server.
      - better libressl integration
  *) mod_proxy_wstunnel: Add default schema ports for 'ws' and 'wss'.
  *) logging: Some early logging-related startup messages could be lost
      when using syslog for the global ErrorLog.
  *) mod_cache: Handle case of an invalid Expires header value RFC compliant
      like the case of an Expires time in the past: allow to overwrite the
      non-caching decision using CacheStoreExpired and respect Cache-Control
      "max-age" and "s-maxage".
  *) mod_xml2enc: Fix forwarding of error metadata/responses.
  *) mod_proxy_http: Fix response header thrown away after the previous one
      was considered too large and truncated.
  *) core: Add and handle AP_GETLINE_NOSPC_EOL flag for ap_getline() family
      of functions to consume the end of line when the buffer is exhausted.
  *) mod_proxy_http: Add new worker parameter 'responsefieldsize' to
      allow maximum HTTP response header size to be increased past 8192
      bytes.
  *) mod_ssl: Extend SSLOCSPEnable with mode 'leaf' that only checks the leaf
      of a certificate chain.
  *) http: Fix small memory leak per request when handling persistent
      connections.
  *) mod_proxy_html: Fix variable interpolation and memory allocation failure
      in ProxyHTMLURLMap.
  *) mod_remoteip: Fix RemoteIP{Trusted,Internal}ProxyList loading broken by 2.4.30.
  *) mod_remoteip: When overriding the useragent address from X-Forwarded-For,
      zero out what had been initialized as the connection-level port.
  *) core: In ONE_PROCESS/debug mode, cleanup everything when exiting.
  *) mod_proxy_balancer: Add hot spare member type and corresponding flag (R).
      Hot spare members are used as drop-in replacements for unusable workers
      in the same load balancer set. This differs from hot standbys which are
      only used when all workers in a set are unusable.
  *) suexec: Add --enable-suexec-capabilites support on Linux, to use
      setuid/setgid capability bits rather than a setuid root binary.
  *) suexec: Add support for logging to syslog as an alternative to
      logging to a file; use --without-suexec-logfile --with-suexec-syslog.
  *) mod_ssl: Restore 2.4.29 behaviour in SSL vhost merging/enabling
      which broke some rare but previously-working configs.
  *) core, log: improve sanity checks for the ErrorLog's syslog config, and
      explicitly allow only lowercase 'syslog' settings.
  *) mod_http2: accurate reporting of h2 data input/output per request via
      mod_logio. Fixes an issue where output sizes where counted n-times on
      reused slave connections.
  *) mod_http2: Fix unnecessary timeout waits in case streams are aborted.
  *) mod_http2: restoring the v1.10.16 keepalive timeout behaviour of mod_http2.
  *) mod_proxy: Do not restrict the maximum pool size for backend connections
      any longer by the maximum number of threads per process and use a better
      default if mod_http2 is loaded.
  *) mod_slotmem_shm: Add generation number to shm filename to fix races
      with graceful restarts.
  *) core: Preserve the original HTTP request method in the '%<m' LogFormat
      when an path-based ErrorDocument is used.
  *) mod_remoteip: make proxy-protocol work on slave connections, e.g. in
      HTTP/2 requests.
  *) mod_ssl: Fix merging of proxy SSL context outside <Proxy> sections,
      regression introduced in 2.4.30.
  *) mod_md: Fix compilation with OpenSSL before version 1.0.2.
  *) mod_dumpio: do nothing below log level TRACE7.
  *) mod_remoteip: Restore compatibility with APR 1.4 (apr_sockaddr_is_wildcard).
  *) core: On ECBDIC platforms, some errors related to oversized headers
      may be misreported or be logged as ASCII escapes.
  *) mod_ssl: Fix cmake-based build.
  *) core: Add <IfFile>, <IfDirective> and <IfSection> conditional
      section containers.

(bsiegert)

2018-08-18 08:18:42 UTC MAIN commitmail json YAML

Fix typo. Thank you, jperkin@.

(ryoon)

2018-08-18 06:35:40 UTC MAIN commitmail json YAML

doc: Updated x11/xscreensaver to 5.39nb2

(wiz)

2018-08-18 06:35:30 UTC MAIN commitmail json YAML

xscreensaver: make xscreensaver binary setuid root

Otherwise it does not lock the screen by default.

Bump PKGREVISION.

(wiz)

2018-08-18 06:31:04 UTC MAIN commitmail json YAML

xscreensaver: remove reference to kerberosIV

(wiz)

2018-08-18 01:32:23 UTC MAIN commitmail json YAML

2018-08-18 01:25:58 UTC MAIN commitmail json YAML

2018-08-18 01:22:30 UTC MAIN commitmail json YAML

2018-08-18 01:22:03 UTC MAIN commitmail json YAML

Added inputmethod/fcitx-skk version 0.1.4

(ryoon)

2018-08-18 01:21:38 UTC MAIN commitmail json YAML

inputmethod/fcitx-skk: import fcitx-skk-0.1.4

SKK input module for Fcitx inputmethod based on libskk

(ryoon)

2018-08-18 01:18:55 UTC MAIN commitmail json YAML

2018-08-18 01:18:01 UTC MAIN commitmail json YAML

Added inputmethod/fcitx-qt5 version 1.2.3

(ryoon)

2018-08-18 01:17:29 UTC MAIN commitmail json YAML

2018-08-18 01:16:52 UTC MAIN commitmail json YAML

Add fcitx-configtool

(ryoon)

2018-08-18 01:16:22 UTC MAIN commitmail json YAML

Added inputmethod/fcitx-configtool version 0.4.9

(ryoon)

2018-08-18 01:15:53 UTC MAIN commitmail json YAML

inputmethod/fcitx-configtool: import fcitx-configtool-0.4.9

GTK 3 based configuration tool for inputmethod/fcitx.

(ryoon)

2018-08-18 01:11:51 UTC MAIN commitmail json YAML

Updated inputmethod/fcitx to 4.2.9.6

(ryoon)

2018-08-18 01:11:16 UTC MAIN commitmail json YAML

2018-08-18 00:14:39 UTC MAIN commitmail json YAML

Fix typo in variable name

(ryoon)

2018-08-18 00:13:59 UTC MAIN commitmail json YAML

Follow MASTER_SITES redirect

(ryoon)

2018-08-18 00:12:08 UTC MAIN commitmail json YAML

Updated misc/libreoffice to 6.1.0.3

(ryoon)

2018-08-18 00:11:32 UTC MAIN commitmail json YAML

2018-08-17 23:24:48 UTC MAIN commitmail json YAML

math/octave: Fix CHECK_WRKREF_SKIP patterns

(minskim)

2018-08-17 19:46:13 UTC pkgsrc-2018Q2 commitmail json YAML

Pullup tickets #5797 to #5801

(bsiegert)

2018-08-17 19:39:01 UTC pkgsrc-2018Q2 commitmail json YAML

Pullup ticket #5801 - requested by taca
archivers/php-zip: reset revision
databases/php-mssql: reset revision
databases/php-pdo_dblib: reset revision
databases/php-pdo_sqlite: reset revision
textproc/php-intl: reset revision
www/ap-php: reset revision
www/php-curl: reset revision
www/php-fpm: reset revision

Revisions pulled up:
- archivers/php-zip/Makefile                                    1.22
- databases/php-mssql/Makefile                                  1.31
- databases/php-pdo_dblib/Makefile                              1.28
- databases/php-pdo_sqlite/Makefile                            1.31-1.32
- textproc/php-intl/Makefile                                    1.37-1.38
- www/ap-php/Makefile                                          1.40-1.41
- www/php-curl/Makefile                                        1.39
- www/php-fpm/Makefile                                          1.24-1.25

---
  Module Name: pkgsrc
  Committed By: ryoon
  Date: Fri Jul 20 03:34:33 UTC 2018

  Modified Files:
  pkgsrc/databases/php-pdo_sqlite: Makefile
  pkgsrc/textproc/php-intl: Makefile
  pkgsrc/www/ap-php: Makefile
  pkgsrc/www/php-fpm: Makefile

  Log Message:
  Recursive revbump from textproc/icu-62.1

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri Jul 20 13:33:03 UTC 2018

  Modified Files:
  pkgsrc/archivers/php-zip: Makefile
  pkgsrc/databases/php-mssql: Makefile
  pkgsrc/databases/php-pdo_dblib: Makefile
  pkgsrc/databases/php-pdo_sqlite: Makefile
  pkgsrc/textproc/php-intl: Makefile
  pkgsrc/www/ap-php: Makefile
  pkgsrc/www/php-curl: Makefile
  pkgsrc/www/php-fpm: Makefile

  Log Message:
  lang/php: reset PKGREVISION

  Reset PKGREVISION with all php's version updates.

(bsiegert)

2018-08-17 19:06:35 UTC MAIN commitmail json YAML

It appears that curses in NetBSD-8 is also incompatible (uses ncurses)

(abs)

2018-08-17 18:17:59 UTC MAIN commitmail json YAML

rgbds: add lex and yacc to USE_TOOLS.

(nia)