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 (1h)  pkgsrc-2024Q1 (19d)  pkgsrc-2023Q4 (66d)  pkgsrc-2023Q2 (98d)  pkgsrc-2023Q3 (178d) 

2024-06-06 01:50:18 UTC Now

2020-08-19 07:50:53 UTC MAIN commitmail json YAML

Temporary workaround for a CHECK_SHLIBS failure

(pho)

2020-08-19 07:09:25 UTC MAIN commitmail json YAML

Updated lang/python36, lang/py36-html-docs, lang/python37, lang/py37-html-docs

(adam)

2020-08-19 07:08:34 UTC MAIN commitmail json YAML

python37 py37-html-docs: updated to 3.7.9

Python 3.7.9 final

Security
bpo-41304: Fixes python3x._pth being ignored on Windows, caused by the fix for bpo-29778 (CVE-2020-15801).
bpo-29778: Ensure python3.dll is loaded from correct locations when Python is embedded (CVE-2020-15523).
bpo-41004: CVE-2020-14422: The __hash__() methods of ipaddress.IPv4Interface and ipaddress.IPv6Interface incorrectly generated constant hash values of 32 and 128 respectively. This resulted in always causing hash collisions. The fix uses hash() to generate hash values for the tuple of (address, mask length, network address).
bpo-39603: Prevent http header injection by rejecting control characters in http.client.putrequest(…).
Core and Builtins
bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() correctly

Library
bpo-41288: Unpickling invalid NEWOBJ_EX opcode with the C implementation raises now UnpicklingError instead of crashing.
bpo-39017: Avoid infinite loop when reading specially crafted TAR files using the tarfile module (CVE-2019-20907).
bpo-41235: Fix the error handling in ssl.SSLContext.load_dh_params().

macOS
bpo-41100: Additional fixes for testing on macOS 11 Big Sur Intel. Note: macOS 11 is not yet released, this release of Python is not fully supported on 11.0, and not all tests pass.

(adam)

2020-08-19 07:07:46 UTC MAIN commitmail json YAML

python36 py36-html-docs: updated to 3.6.12

Python 3.6.12 final

Security
bpo-29778: Ensure python3.dll is loaded from correct locations when Python is embedded (CVE-2020-15523).
bpo-41004: CVE-2020-14422: The __hash__() methods of ipaddress.IPv4Interface and ipaddress.IPv6Interface incorrectly generated constant hash values of 32 and 128 respectively. This resulted in always causing hash collisions. The fix uses hash() to generate hash values for the tuple of (address, mask length, network address).
bpo-39603: Prevent http header injection by rejecting control characters in http.client.putrequest(…).

Library
bpo-41288: Unpickling invalid NEWOBJ_EX opcode with the C implementation raises now UnpicklingError instead of crashing.
bpo-39017: Avoid infinite loop when reading specially crafted TAR files using the tarfile module (CVE-2019-20907).

(adam)

2020-08-19 05:49:55 UTC MAIN commitmail json YAML

Updated databases/sqlite3, devel/lemon

(adam)

2020-08-19 05:48:37 UTC MAIN commitmail json YAML

sqlite3: updated to 3.33.0

SQLite Release 3.33.0

Support for UPDATE FROM following the PostgreSQL syntax.
Increase the maximum size of database files to 281 TB.
Extended the PRAGMA integrity_check statement so that it can optionally be limited to verifying just a single table and its indexes, rather than the entire database file.
Added the decimal extension for doing arbitrary-precision decimal arithmetic.
Enhancements to the ieee754 extension for working with IEEE 754 binary64 numbers.
CLI enhancements:
Added four new output modes: "box", "json", "markdown", and "table".
The "column" output mode automatically expands columns to contain the longest output row and automatically turns ".header" on if it has not been previously set.
The "quote" output mode honors ".separator"
The decimal extension and the ieee754 extension are built-in to the CLI
Query planner improvements:
Add the ability to find a full-index-scan query plan for queries using INDEXED BY which previously would fail with "no query solution".
Do a better job of detecting missing, incomplete, and/or dodgy sqlite_stat1 data and generates good query plans in spite of the misinformation.
Improved performance of queries like "SELECT min(x) FROM t WHERE y IN (?,?,?)" assuming an index on t(x,y).
In WAL mode, if a writer crashes and leaves the shm file in an inconsistent state, subsequent transactions are now able to recover the shm file even if there are active read transactions. Before this enhancement, shm file recovery that scenario would result in an SQLITE_PROTOCOL error.

(adam)

2020-08-19 00:29:46 UTC MAIN commitmail json YAML

2020-08-18 23:38:47 UTC MAIN commitmail json YAML

Add new packages to devel/Makefile, math/Makefile.

Forgot to do this on the initial import, oops!

(riastradh)

2020-08-18 20:24:58 UTC MAIN commitmail json YAML

2020-08-18 20:20:46 UTC MAIN commitmail json YAML

devel/capstone: Update to 4.0.2

3.0.5
July 18, 2018

Release 3.0.5 is a stable release version, with important fixes in the core & several bindings against v3.0.5-rc3.
Library

    Fix the include path for Android builds when building cstool.
    Add posibility to disable universal build for Mac OS.
    cstool: Separate instruction bytes by spaces.
    Fix code path of pkg-config in Cmake.
    Update XCode project for XCode 9.1.
    Add Cortex-M support to cstool.
    Cmake forces to be build using MT with MSVC.
    Better support for Mac OS kernel.

X86

    Fix some issues in handling EVEX & VEX3 instructions.
    Fix immediate operand for AND instruction in ATT mode.
    Fix ATT syntax when imm operand is 0.
    Better handle XACQUIRE/XRELEASE.
    Fix imm operand of RETF.

Arm

    Fix an integer overlow bug.

Arm64

    Bug fix for incorrect operand type in certain load/store instructions.

Mips

    Mode CS_MODE_MIPS32R6 automatically sets CS_MODE_32

PowerPC

    Fix endian check.

Sparc

    Fix an integer overlow bug.

SystemZ

    Fix an integer overlow bug.

Python binding

    Raise error on accessing irrelevant data fields if skipdata & detail modes are enable.

4.0
December 18, 2018

Release 4.0 is a stable release version, with important fixes in the core & several bindings against v3.0.5.
Core

    New APIs: cs_regs_access()
    Add new options for cs_option(): CS_OPT_MNEMONIC & CS_OPT_UNSIGNED & CS_OPT_SYNTAX_MASM.
    Various updates & bugfixes for all architectures.
    Add 4 new architectures: EVM, M68K, M680X & TMS320C64x.
    Add new group types: CS_GRP_PRIVILEGE & CS_GRP_BRANCH_RELATIVE.
    Add new error types: CS_ERR_X86_MASM.

X86

    Add XOP code condition type in x86_xop_cc.
    Add some info on encoding to cs_x86 in cs_x86_encoding.
    Add register flags update in cs_x86.{eflags, fpu_flags}
    Change cs_x86.disp type from int32_t to int64_t.
    Add new groups: X86_GRP_VM & X86_GRP_FPU.
    Lots of new instructions (AVX)

Arm64

    Add instruction ARM64_INS_NEGS & ARM64_INS_NGCS.

Mips

    Add mode CS_MODE_MIPS2.

PowerPC

    Change cs_ppc_op.imm type from int32_t to int64_t.
    Add new groups: PPC_GRP_ICBT, PPC_GRP_P8ALTIVEC, PPC_GRP_P8VECTOR & PPC_GRP_QPX.
    Lots of new instructions (QPX among them)

Sparc

    Change cs_sparc_op.imm type from int32_t to int64_t.

Bindings

    New bindings: PowerShell & VB6

4.0.1
January 10, 2019

Release 4.0.1 is a stable release version, with minor bugfixes in the core & Python binding.
Core

    Fix some issues for packaging (Debian, Gentoo, etc).
    Better support for building with Mingw.
    cstool has new option -s to turn on skipdata mode.
    cstool -v now report build settings of the core.
    Add suite/capstone_get_setup.c so users can integrate with their own code to retrieve Capstone settings at build time.

Arm

    Fix 4.0 regression: the tbh [r0, r1, lsl #1] instruction sets the operand.shift.value back again.
    Remove ARM_REG_PC group for BX instruction.

X86

    endbr32 and endbr64 instructions are now properly decoded in both CS_MODE_32 and CS_MODE_64.

M680X

    Fix some issues reported by clang-analyzer.

Python binding

    Fix skipdata setup.
    Add getter/setter for skipdata_mnem & skipdata_callback.

4.0.2
May 8, 2020

Release 4.0.2 is a stable release version, with minor bugfixes in the core & some bindings.
Core

    Windows kernel-mode driver support
    Fix installation path on FreeBSD and DragonFly

Cstool

    Add armv8, ppc32 & thumbv8 modes
    Print instruction ID

X86

    Support CS_OPT_UNSIGNED for ATT syntax
    Fix operand size for some instructions
    Fix LOCK prefixes
    Recognize xacquire/xrelease prefix
    Fix call/jmp access mode of mem operand
    Add ENDBR32, ENDBR64 to reduce mode
    Other minor fixes

Arm

    Update writeback for STR_POST_REG

ARM64

    Support CS_OPT_UNSIGNED
    Fix register access flags for memory instructions
    Fix UMOV vess

M68K

    Store correct register value in op.reg_pair

PowerPC

    BDZLA is absolute branch

SystemZ

    Fix truncated 64bit imm operand
    Fix base/index printing

Python binding

    Fix skipdata struct being destroyed
    Add repr for capstone.CsInsn

Java binding

    Fix Java bindings to use pointers instead of longs

Ocaml binding

    Fix x86_op record

(riastradh)

2020-08-18 20:20:33 UTC MAIN commitmail json YAML

Import CppHeaderParser-2.7.4 from pypi as devel/py-CppHeaderParser

CppHeaderParser is a pure python module that will parse C++ header
files and generate a data structure representing the class.

(riastradh)

2020-08-18 20:20:08 UTC MAIN commitmail json YAML

Import mulpyplexer-0.08 from pypi as devel/py-mulpyplexer

Python module to multiplex interactions with lists of objects

(riastradh)

2020-08-18 20:19:44 UTC MAIN commitmail json YAML

Import python-itanium_demangler-1.0 as devel/py-itanium_demangler

  The Python Itanium Demangler is a pure Python parser for the Itanium
  C++ ABI symbol mangling language. Note that MSVC mangling language is
  not supported.

  This demangler generates an abstract syntax tree from mangled symbols,
  which can be used for directly extracting type information, as opposed
  to having to interpret the C++ source code corresponding to the
  demangled symbol

  There is also a built-in AST stringifier, so the demangler can be used
  as a replacement for c++filt or for formatting backtraces.

(riastradh)

2020-08-18 20:19:20 UTC MAIN commitmail json YAML

Import progressbar2-3.51.4 from pypi as devel/py-progressbar2.

Text progress bar library for Python.

(riastradh)

2020-08-18 20:18:56 UTC MAIN commitmail json YAML

Import python-utils-2.4.0 from pypi as devel/py-utils

From the web page:

> Python Utils is a collection of small Python functions and classes
> which make common patterns shorter and easier. It is by no means a
> complete collection but it has served me quite a bit in the past and I
> will keep extending it.

(riastradh)

2020-08-18 20:18:32 UTC MAIN commitmail json YAML

Add 0-clause-bsd to DEFAULT_ACCEPTABLE_LICENSES.

This is OSI-approved open source:

https://opensource.org/licenses/0BSD

Omitted from license.mk when introduced only because a freeze was on:

https://mail-index.netbsd.org/tech-pkg/2019/12/22/msg022374.html

(riastradh)

2020-08-18 20:15:04 UTC MAIN commitmail json YAML

math/py-networkx: Fix running tests.

(riastradh)

2020-08-18 20:14:54 UTC MAIN commitmail json YAML

devel/py-test: Needs itself installed to run its own tests.

(riastradh)

2020-08-18 20:14:44 UTC MAIN commitmail json YAML

math/py-claripy: Add depends and tests.

(riastradh)

2020-08-18 20:14:34 UTC MAIN commitmail json YAML

Import PySMT-0.9.0 as math/py-smt.

pySMT is a solver-agnostic library for SMT Formulae manipulation and
solving.

(riastradh)

2020-08-18 20:14:07 UTC MAIN commitmail json YAML

sysutils/py-pefile: Update to 2019.4.18

- 2016.3.4: Version 2016.3.4 of pefile now runs under Python 2.7 and
  Python 3 in addition to addressing a few of the long standing issues.

- 2016.3.28: Minor fixes, merged some pending pull requests.

- 2017.5.26: Maintenance release.

- 2017.8.1: Merged PRs: #180, #183, #190, #200, #202 and fixed a bug
  handling bytearrays under certain conditions.

- 2017.9.3: Merged PRs: #188, #169, #166, #165, #154, #174, and #210.
  I've also improved handling of some corner cases of files with
  invalid exports and improved the is_driver check.

- 2017.11.5: Merged PR #212 and fixed a few miscellaneous crashed
  parsing malformed files.

- 2018.8.8: This release incorporates the merged PRs and issues fixed
  since the last release.

- 2019.4.14: This release incorporates the merged PRs and issues fixed
  since the last release.

- 2019.4.18: This release incorporates the merged PRs and issues fixed
  since the last release.  These should speed up parsing of files with
  many ordinals or exports.

(riastradh)

2020-08-18 20:13:58 UTC MAIN commitmail json YAML

Import minidump-0.0.13 from pypi as devel/py-minidump.

Python library to parse and read Microsoft minidump file format.

(riastradh)

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

Import pyxbe-0.0.2 as devel/py-xbe.

Python 3 library to work with .xbe files, the executable file format
for the original Xbox game console.

(riastradh)

2020-08-18 20:13:04 UTC MAIN commitmail json YAML

Import bitstring-3.1.7 from pypi as devel/py-bitstring

Python module to create, manipulate, and analyze binary data

(riastradh)

2020-08-18 20:12:37 UTC MAIN commitmail json YAML

devel/py-nose: Enable the tests to run.

Not all of them pass but that's better than all of them not running!

(riastradh)

2020-08-18 17:58:18 UTC MAIN commitmail json YAML

2020-08-18 17:56:38 UTC MAIN commitmail json YAML

libsndfile: Bump BUILDLINK_ABI_DEPENDS after libopus bl3 inclusion

(leot)

2020-08-18 17:37:55 UTC MAIN commitmail json YAML

doc: Updated geography/gpsd to 3.21

(gdt)

2020-08-18 17:19:07 UTC MAIN commitmail json YAML

gnuradio: sync meta package dependencies, bump

(tnn)

2020-08-18 17:11:29 UTC MAIN commitmail json YAML

doc: Updated textproc/split-thai to 0.5

(scole)

2020-08-18 17:10:28 UTC MAIN commitmail json YAML

Update to 0.5
- clean up some comments and simplify lisp code a bit

(scole)

2020-08-18 14:28:27 UTC MAIN commitmail json YAML

Add/update www/py-django-binary-database-files. Drop old entry as
temporary mistake.

(joerg)

2020-08-18 14:27:16 UTC MAIN commitmail json YAML

2020-08-18 13:37:50 UTC MAIN commitmail json YAML

2020-08-18 13:10:03 UTC MAIN commitmail json YAML

Remove redundant --shared-openssl

It was causing a build failure when openssl was disabled.

(pho)

2020-08-18 10:25:28 UTC MAIN commitmail json YAML

doc: Updated lang/chibi-scheme to 0.9.1

(leot)

2020-08-18 10:25:16 UTC MAIN commitmail json YAML

chibi-scheme: Update to 0.9.1

pkgsrc changes:
- Remove no longer needed patches/patch hunk applied upstream

Changes:
0.9.1
-----
Bugfix release with several bugs fixed, notably:

  * equal? hash tables had a sporadic bug with string and vector keys
  * the distribution of random numbers with bignum values had gaps
  * minor fixes for SRFI 160 and SRFI 144

0.9
---
This release includes complete builtin support for the Tangerine
Edition of the R7RS large language.  With the ambitious scope
of R7RS large, it's unlikely further editions will continue to have
builtin support, and will instead rely on external repositories like
snow-fort.

A new compile-time option can enable O(1) string-ref using
an offset lookup table.  It is disabled by default because it's
still slower than string cursors, and has some small additional
overhead in memory, I/O and the FFI.

Other notable changes include:

  * A novel syntax-case implementation built on ER macros
    by Marc Nieper-Wi��kirchen.
  * Improved Windows support by Yuki Okumura, and BSD support
    thanks to Kris Katterjon, Andrew Gwozdziewycz, and Taylor Campbell.
  * LIghtweight library aliases.
  * Native SRFI 160 uniform vectors, with FFI and read/write support.
  * A startup option can enable strict string-cursor checks,
    so that cursors can only be used with the string they reference.
  * JSON read/write support, with utilities to read records.
  * Diff highlighting in unit test failures.
  * Updated to Unicode 13.
  * ... plus many new SRFIs, portability improvements, and bugfixes.

Not counting aliases and test packages, Chibi now comes with
over 200 libraries in the base distribution, with many more available
on snow-fort.org.

(leot)

2020-08-18 09:39:23 UTC MAIN commitmail json YAML

Provide a definition of IN_EXCL_UNLINK for Linux < 2.6.36, and link with -lrt.
Fixes build on CentOS 6. Still builds on CentOS 7, Debian 9 and 10, Devuan 3.

(schmonz)

2020-08-18 09:27:38 UTC MAIN commitmail json YAML

also need an implementation of uuid_compare() for the test suite

(tnn)

2020-08-18 08:19:17 UTC MAIN commitmail json YAML

fontconfig: drop libuuid dependency. Bump PKGREVISION.

Provide minimal subset of libuuid functions in FILESDIR.
http://mail-index.netbsd.org/tech-pkg/2020/08/18/msg023687.html

(Apologies for not waiting for comments on the discussion thread.
I think a quick fix is important since this solves significant fallout
for X11_TYPE=modular users.)

(tnn)

2020-08-18 07:39:58 UTC MAIN commitmail json YAML

Updated net/iperf3, net/samba4

(adam)

2020-08-18 07:39:31 UTC MAIN commitmail json YAML

samba4: updated to 4.12.6

Changes since 4.12.5
* BUG 14403: s3: libsmb: Fix SMB2 client rename bug to a Windows server.
* BUG 14424: dsdb: Allow "password hash userPassword schemes = CryptSHA256"
  to work on RHEL7.
* BUG 14450: dbcheck: Allow a dangling forward link outside our known NCs.
* BUG 14426: lib/debug: Set the correct default backend loglevel to
  MAX_DEBUG_LEVEL.
* BUG 14428: PANIC: Assert failed in get_lease_type().
* BUG 14422: util: Fix build on AIX by fixing the order of replace.h include.
* BUG 14355: srvsvc_NetFileEnum asserts with open files.
* BUG 14354: KDC breaks with DES keys still in the database and
  msDS-SupportedEncryptionTypes 31 indicating support for it.
* BUG 14427: s3:smbd: Make sure vfs_ChDir() always sets
  conn->cwd_fsp->fh->fd = AT_FDCWD.
* BUG 14428: PANIC: Assert failed in get_lease_type().
* BUG 14358: docs: Fix documentation for require_membership_of of
  pam_winbind.conf.
* BUG 14444: ctdb-scripts: Use nfsconf utility for variable values in CTDB
  NFS scripts.
* BUG 14425: s3:winbind:idmap_ad: Make failure to get attrnames for schema
  mode fatal.

(adam)

2020-08-18 07:37:52 UTC MAIN commitmail json YAML

iperf3: updated to 3.9

iperf 3.9

* Notable user-visible changes

  * A --timestamps flag has been added, which prepends a timestamp to
    each output line.  An optional argument to this flag, which is a
    format specification to strftime(3), allows for custom timestamp
    formats.

  * A --server-bitrate-limit flag has been added as a server-side
    command-line argument.  It allows a server to enforce a maximum
    throughput rate; client connections that specify a higher bitrate
    or exceed this bitrate during a test will be terminated.  The
    bitrate is expressed in bits per second, with an optional trailing
    slash and integer count that specifies an averaging interval over
    which to enforce the limit.

  * A bug that caused increased CPU usage with the --bidir option has
    been fixed.

* Notable developer-visible changes

  * Fixed various minor memory leaks.

(adam)

2020-08-18 05:51:23 UTC MAIN commitmail json YAML

py-usb: needs setuptools

(tnn)

2020-08-18 05:46:32 UTC MAIN commitmail json YAML

gearsystem: more CHECK_PORTABILITY_SKIPs

(tnn)

2020-08-18 05:44:44 UTC MAIN commitmail json YAML

gearboy: more CHECK_PORTABILITY_SKIPs

(tnn)

2020-08-18 05:32:56 UTC MAIN commitmail json YAML

py-pysendfile: not for NetBSD

(tnn)

2020-08-18 05:29:46 UTC MAIN commitmail json YAML

sd-mux-ctrl: needs pkg-config

(tnn)

2020-08-18 05:26:08 UTC MAIN commitmail json YAML

salt: skip portability checks in 3rd party packaging scripts

(tnn)

2020-08-18 05:22:39 UTC MAIN commitmail json YAML

strace: fail in a more user-friendly manner if kernel sources are missing

(tnn)

2020-08-18 05:12:55 UTC MAIN commitmail json YAML

top: fix build on NetBSD with sys/lwp.h >= 1.185 (LSDEAD removal)

(tnn)

2020-08-18 05:03:41 UTC MAIN commitmail json YAML

doc: Updated graphics/gimp-fix-ca to 3.0.2

(tnn)

2020-08-18 05:02:21 UTC MAIN commitmail json YAML

gimp-fix-ca: FETCH_BEFORE_ARGS is not package settable. Set LICENSE.

While here update to latest version. Changes unknown.

(tnn)

2020-08-18 04:51:52 UTC MAIN commitmail json YAML

doc: Updated textproc/markdown-mode to 2.4

(tnn)

2020-08-18 04:49:39 UTC MAIN commitmail json YAML

markdown-mode: update to 2.4.

Change MASTER_SITE to author's github.

Breaking changes:
  GNU Emacs 25.1 or later is required. And xemacs support has been dropped
  Face variables, such as markdown-italic-face are now
  obsolete. Use face names directly in code and customizations.
  The face names themselves are unaffected, so this shouldn't
  affect most users.
  Delete obsoleted aliases
  Internal variables markdown-font-lock-keywords-basic and
  gfm-font-lock-keywords are now obsolete.
  markdown-font-lock-keywords is now used instead, but users
  should use font-lock-add-keywords instead of modifying this
  variable.
  markdown-mode now adds entries to the beginning of
  auto-mode-alist rather than the end. If you were relying on
  the previous behavior in order to override these entries, you
  should fix the problem by following best practice and ensuring
  that your user configuration is loaded after the autoloads for
  markdown-mode are evaluated. (GH-331, GH-335)
  Point at the end of fenced code blocks is no-longer considered
  part of the code block ([GH-#349][]).
  Enable markdown-fontify-code-blocks-natively in gfm-view-mode. ([GH-#451][])

New features:
  GFM task list item (checkbox) insertion with C-c C-s [, or
  as a final fallback for markdown-do (C-c C-d). Thanks to
  Akinori Musha for a patch. (GH-229)
  Optionally move leading atx heading markup to the left margin
  when markdown-marginalize-headers is non-nil. Thanks to
  Alexis Gallagher for a patch. (GH-272, GH-274)
  Added pipe table editing features. Thanks to Dmitry Safronov
  for a patch. (GH-171, GH-266)
  Font lock for HTML tags and attributes, with new faces
  markdown-html-tag-name-face,
  markdown-html-tag-delimiter-face,
  markdown-html-attr-name-face, and
  markdown-html-attr-value-face. (GH-249)
  Font lock for HTML entities, with a new face
  markdown-html-entity-face.
  Scale down large inline images using markdown-max-image-size,
  a cons cell of the form (max-width . max-height).
  Added read-only viewing modes markdown-view-mode and
  gfm-view-mode with keymaps similar to view-mode and
  help-mode. (GH-296)
  Optionally add footnote definitions to the end of the imenu
  index using markdown-add-footnotes-to-imenu. (GH-235)
  Add custom variables markdown-xhtml-body-preamble and
  markdown-xhtml-body-epilogue for wrapping additional XHTML
  tags around the output. (GH-280, GH-281)
  Add markdown-unused-refs command to list and clean up unused
  references (available via C-c C-c u). (GH-322)
  Add markdown-insert-table (C-c C-s t) for interactive
  table insertion. (GH-369)
  Add markdown-kill-outline and markdown-kill-block functions.
  Added markdown-display-remote-images for viewing remote
  images. Thanks to Sean Allread for the patch. (GH-378)
  markdown-back-to-heading can be used as command (GH-415)

(tnn)

2020-08-18 04:41:02 UTC MAIN commitmail json YAML

TODO: add note about math/py-scipy12 removal

(tnn)

2020-08-18 04:36:57 UTC MAIN commitmail json YAML

gnuradio-*: remove packages deprecated by upstream in upcoming 3.8 update

(tnn)

2020-08-18 04:35:39 UTC MAIN commitmail json YAML

2020-08-18 04:02:03 UTC MAIN commitmail json YAML

doc: remove lang/java-{lang,vm}-spec

(tnn)

2020-08-18 04:00:06 UTC MAIN commitmail json YAML

lang/java-{vm,lang}-spec: remove these packages

They have not been kept up to-date for ~20 years and
are essentially just an outdated offline mirror of the
Website https://docs.oracle.com/javase/specs/, which
is trivial for the user to mirror themself if they wish.

(tnn)

2020-08-18 03:44:53 UTC MAIN commitmail json YAML

putty: define -DHAVE_NO_SETRESUID on NetBSD

(tnn)

2020-08-18 03:40:21 UTC MAIN commitmail json YAML

doc: updated x11/modeline, fonts/go-ttf

(tnn)

2020-08-18 03:30:04 UTC MAIN commitmail json YAML

dkim-milter: NOT_FOR_UNPRIVILEGED (because of PKG_DESTDIR_SUPPORT=destdir)

(tnn)

2020-08-18 03:27:49 UTC MAIN commitmail json YAML

2020-08-18 02:50:51 UTC MAIN commitmail json YAML

openrct2: package requires an Internet connection to build, add comment

Normally I would just mark it BROKEN but it seems to actually verify
the checksum of the file it tries to fetch during install stage.
Still, this needs to be fixed.

(tnn)

2020-08-18 02:40:08 UTC MAIN commitmail json YAML

courier-imap: cannot be built in unprivileged mode

(tnn)

2020-08-18 02:35:25 UTC MAIN commitmail json YAML

go-ttf: update to 2.008

Change pkgsrc versioning scheme to match upstream's.

Bigelow & Holmes have prepared new versions of the Go Fonts. The version
numbers have changed from 2.004 to 2.008. ChangeLog:

* New! 2 new fonts, bringing the total to 12: Go Smallcaps and Go
  Smallcaps Italic.
* New! U+FFFD REPLACEMENT CHARACTER glyph added.
* U+00C5 LATIN CAPITAL LETTER A WITH RING ABOVE ring tweaked.
* U+00F0 LATIN SMALL LETTER ETH glyph lightened.
* Superfluous U+0005 <control> glyph removed.
* Split integral, chart draw, block, shade and related glyphs now span
  the full height and have fewer seams when tiled.
* Raised most capital letter diacritics and some lowercase diacritics.
* Mono character widths fixed to be uniform.
* Underline position adjusted.
* SFNT glyph order and cmap table optimized.
* SFNT glyph names (post table) regularized, consistent with the AGLFN.
* ttfautohint upgraded to the latest version, from 1.5 to 1.6.

(tnn)

2020-08-18 02:17:26 UTC MAIN commitmail json YAML

icb: fix building on modern mainstream Linux distros

Committed on the off chance someone else may want to run this on modern
Linux. Tested on Debian 9 and Fedora 29 through 32.

(gutteridge)

2020-08-18 02:12:44 UTC MAIN commitmail json YAML

2020-08-18 02:06:38 UTC MAIN commitmail json YAML

syntax-highlighting: skip a portability check

(tnn)

2020-08-18 02:06:09 UTC MAIN commitmail json YAML

syntax-highlighting/DESCR: reflow text to 80 columns wide

(tnn)

2020-08-18 02:01:43 UTC MAIN commitmail json YAML

modeline: update to 20060709

The distfile changed on the MASTER_SITE back in 2006 so the checksum
didn't match for the past 14 years or so.
Change seems to be to fix a float cast warning.

(tnn)

2020-08-18 01:46:07 UTC MAIN commitmail json YAML

2020-08-18 01:17:05 UTC MAIN commitmail json YAML

2020-08-18 01:16:13 UTC MAIN commitmail json YAML

Update to wagtail-2.10:

* Added Django 3.1 support (Matt Westcott, Karl Hobley)
* Removed support for Python 3.5
* Implemented configurable moderation workflow (Jacob Topp-Mugglestone, Karl Hobley, Matt Westcott, Dan Braghis)
* Implemented phrase searching and structured search query expressions (Karl Hobley)
* Add ability to import redirects from an uploaded file (CSV, TSV, XLS, and XLSX) (Martin Sandström)
* Added `webpquality` and `format-webp-lossless` image filters and `WAGTAILIMAGES_WEBP_QUALITY` setting (Nikolay Lukyanov)
* Reorganised Dockerfile in project template to follow best practices (Tomasz Knapik, Jannik Wempe)
* Added filtering to locked pages report (Karl Hobley)
* Adds ability to view a group's users via standalone admin URL and a link to this on the group edit view (Karran Besen)
* Redirect to previous url when deleting/copying/unpublish a page and modify this url via the relevant hooks (Ascani Carlo)
* Added `next_url` keyword argument on `register_page_listing_buttons` and `register_page_listing_more_buttons` hooks (Ascani Carlo, Matt Westcott, LB (Ben Johnston))
* `AbstractEmailForm` will use `SHORT_DATETIME_FORMAT` and `SHORT_DATE_FORMAT` Django settings to format date/time values in email (Haydn Greatnews)
* `AbstractEmailForm` now has a separate method (`render_email`) to build up email content on submission emails (Haydn Greatnews)
* Add `pre_page_move` and `post_page_move` signals (Andy Babic)
* Add ability to sort search promotions on listing page (Chris Ranjana, LB (Ben Johnston))
* Upgrade internal JS tooling; Node v10, Gulp v4 & Jest v23 (Jim Jazwiecki, Kim LaRocca, Thibaud Colas)
* Add `after_publish_page`, `before_publish_page`, `after_unpublish_page` & `before_unpublish_page` hooks (Jonatas Baldin, Coen van der Kamp)
* Add convenience `page_url` shortcut to improve how page URLs can be accessed from site settings in Django templates (Andy Babic)
* Show more granular error messages from Pillow when uploading images (Rick van Hattem)
* Add ordering to `Site` object, so that index page and `Site` switcher will be sorted consistently (Coen van der Kamp, Tim Leguijt)
* Add Reddit to oEmbed provider list (Luke Hardwick)
* Add ability to replace the default Wagtail logo in the userbar, via `branding_logo` block (Meteor0id)
* Remove sticky footer on small devices, so that content is not blocked and more easily editable (Saeed Tahmasebi)
* Add `alt` property to `ImageRenditionField` api representation (Liam Mullens)
* Add `purge_revisions` management command to purge old page revisions (Jacob Topp-Mugglestone, Tom Dyson)
* Render the Wagtail User Bar on non `Page` views (Caitlin White, Coen van der Kamp)
* Add ability to define `form_classname` on `ListBlock` & `StreamBlock` (LB (Ben Johnston))
* Add documentation about how to use `Rustface` for image feature detection (Neal Todd)
* Improve performance of public/not_public queries in `PageQuerySet` (Timothy Bautista)
* Add `add_redirect` static method to `Redirect` class for programmatic redirect creation (Brylie Christopher Oxley, Lacey Williams Henschel)
* Add reference documentation for `wagtail.contrib.redirects` (LB (Ben Johnston))
* `bulk_delete` page permission is no longer required to move pages, even if those pages have children (Robert Rollins, LB (Ben Johnston))
* Add `after_edit_snippet`, `after_create_snippet` and `after_delete_snippet` hooks and documentation (Kalob Taulien)
* Improve performance of empty search results by avoiding downloading the entire search index in these scenarios (Lars van de Kerkhof, Coen van der Kamp)
* Replace `gulp-sass` with `gulp-dart-sass` to improve core development across different platforms (Thibaud Colas)
* Add SVG icons to resolve accessibility and customisation issues and start using them in a subset of Wagtail's admin (Coen van der Kamp, Scott Cranfill, Thibaud Colas, Dan Braghis)
* Switch userbar and header H1s to use SVG icons (Coen van der Kamp)
* Remove markup around rich text rendering by default, provide a way to use old behaviour via `wagtail.contrib.legacy.richtext` (Coen van der Kamp, Dan Braghis)
* Apply title length normalisation to improve ranking on PostgreSQL search (Karl Hobley)
* Add `WAGTAIL_TIME_FORMAT` setting (Jacob Topp-Mugglestone)
* Allow omitting the default editor from `WAGTAILADMIN_RICH_TEXT_EDITORS` (Gassan Gousseinov)
* Disable password auto-completion on user creation form (Samir Shah)
* Upgrade jQuery to version 3.5.1 to reduce penetration testing false positives (Matt Westcott)
* Add ability to extend `EditHandler` without a children attribute (Seb Brown)
* `Page.objects.specific` now gracefully handles pages with missing specific records (Andy Babic)
* StreamField 'add' buttons are now disabled when maximum count is reached (Max Gabrielsson)
* Use underscores for form builder field names to allow use as template variables (Ashia Zawaduk, LB (Ben Johnston))
* Deprecate use of unidecode within form builder field names (Michael van Tellingen, LB (Ben Johnston))
* Improve error feedback when editing a page with a missing model class (Andy Babic)
* Change Wagtail tabs implementation to only allow slug-formatted tab identifiers, reducing false positives from security audits (Matt Westcott)
* Add skip link for keyboard users to bypass Wagtail navigation in the admin (Martin Coote)
* Ensure errors during Postgres search indexing are left uncaught to assist troubleshooting (Karl Hobley)
* Add ability to edit images and embeds in rich text editor (Maylon Pedroso, Samuel Mendes, Gabriel Peracio)
* Fix: Support IPv6 domain (Alex Gleason, Coen van der Kamp)
* Fix: Ensure link to add a new user works when no users are visible in the users list (LB (Ben Johnston))
* Fix: `AbstractEmailForm` saved submission fields are now aligned with the email content fields, `form.cleaned_data` will be used instead of `form.fields` (Haydn Greatnews)
* Fix: Removed ARIA `role="table"` from TableBlock output (Thibaud Colas)
* Fix: Set Cache-Control header to prevent page preview responses from being cached (Tomas Walch)
* Fix: Accept unicode characters in slugs on the "copy page" form (François Poulain)
* Fix: Remove top padding when `FieldRowPanel` is used inside a `MultiFieldPanel` (Jérôme Lebleu)
* Fix: Add Wagtail User Bar back to page previews and ensure moderation actions are available (Coen van der Kamp)
* Fix: Resolve issue where queryset annotations were lost (e.g. `.annotate_score()`) when using specific models in page query (Dan Bentley)
* Fix: Prevent date/time picker from losing an hour on losing focus when 12-hour times are in use (Jacob Topp-Mugglestone)
* Fix: Strip out HTML tags from `RichTextField` & `RichTextBlock` search index content (Timothy Bautista)
* Fix: Avoid using null on string `Site.site_name` blank values to avoid different values for no name (Coen van der Kamp)
* Fix: Fix deprecation warnings on Elasticsearch 7 (Yngve Høiseth)
* Fix: Remove use of Node.forEach for IE 11 compatibility in admin menu items (Thibaud Colas)
* Fix: Fix incorrect method name in SiteMiddleware deprecation warning (LB (Ben Johnston))
* Fix: `wagtail.contrib.sitemaps` no longer depends on SiteMiddleware (Matt Westcott)
* Fix: Purge image renditions cache when renditions are deleted (Pascal Widdershoven, Matt Westcott)
* Fix: Image / document forms now display non-field errors such as `unique_together` constraints (Matt Westcott)
* Fix: Make "Site" chooser in site settings translateable (Andreas Bernacca)
* Fix: Add missing dropdown icons to image upload, document upload, and site settings screens (Andreas Bernacca)
* Fix: Prevent snippets’ bulk delete button from being present for screen reader users when it’s absent for sighted users (LB (Ben Johnston))
* Fix: Fix group permission checkboxes not being clickable in IE11 (LB (Ben Johnston))

(joerg)

2020-08-18 01:09:33 UTC MAIN commitmail json YAML

mjpegtools: add missing REPLACE_BASH. Bump.

(tnn)

2020-08-18 01:01:56 UTC MAIN commitmail json YAML

2020-08-18 00:42:27 UTC MAIN commitmail json YAML

tiff: explicitly pass --disable-webp. Bump rev.

We don't want it to randomly pick up system libwebp on Linux.
If there is a use case for webp compression here it should use the
pkgsrc library.

Reported-by: "Dr. Thomas Orgis" <thomas.orgis@uni-hamburg.de>

(tnn)

2020-08-18 00:35:20 UTC MAIN commitmail json YAML

unicorn: skip portability check for install-cmocka-linux.sh

(tnn)

2020-08-18 00:30:13 UTC MAIN commitmail json YAML

2020-08-17 21:21:59 UTC MAIN commitmail json YAML

doc: Updated net/stagit-gopher to 0.9.4

(leot)

2020-08-17 21:21:48 UTC MAIN commitmail json YAML

stagit-gopher: Update to 0.9.4

Changes:
0.9.4
-----
- Fix for showing the entry on the files page of submodules for bare
  repositories, thanks kst!
- There is now a separate Atom feed for tags called "tags.xml". This should make
  it easier to track only software releases if using an RSS/Atom reader.
- The ordering of tags are now by commit date (descending). So it will now sort
  by most recent first. The previous behaviour was to sort alphabetically by tag
  name, but many projects use numeric versions which don't sort in a useful/clear
  order.
- For OpenBSD: remove unveil(2) for stagit-index, because unveil(2) has an
  argument limit. Now more than ~128 repositories for the index are supported.
  Per repository stagit will still use unveil(2).

(leot)

2020-08-17 21:00:14 UTC MAIN commitmail json YAML

doc: Updated www/stagit to 0.9.4

(fcambus)

2020-08-17 20:59:54 UTC MAIN commitmail json YAML

stagit: update to 0.9.4.

ChangeLog:

- fix a small memleak in writeatom()
- stagit-index: remove unveil support for argv
- fix submodule lookup in bare repos
- regression: do not show unset or empty tags
- refactor get reference, add another feed for tags/releases
- sort branches and tags by time (descending)

(fcambus)

2020-08-17 20:59:31 UTC MAIN commitmail json YAML

security/py-u2f: Mark test dependencies formally as such.

(riastradh)

2020-08-17 20:57:44 UTC MAIN commitmail json YAML

2020-08-17 20:37:53 UTC MAIN commitmail json YAML

xentools411: fix build with SSP

The stacksize limit causes a warning, which -Werror transforms to a build
failure. Remove it.

This package has more problems:

During installation, I see:
env: python: No such file or directory

and it's not RELRO safe (LDFLAGS are ignored for
lib/debug/usr/pkg/libexec/xen/boot/xen-shim-syms
lib/libfsimage.so.1.0.0
libexec/xen/boot/xen-shim
).

(wiz)

2020-08-17 20:20:41 UTC MAIN commitmail json YAML

2020-08-17 20:19:01 UTC MAIN commitmail json YAML

libvirt: skip portability check on HTML file

(wiz)

2020-08-17 20:14:55 UTC MAIN commitmail json YAML

2020-08-17 17:44:25 UTC MAIN commitmail json YAML

doc: Updated textproc/split-thai to 0.4

(scole)

2020-08-17 17:43:15 UTC MAIN commitmail json YAML

Update to 0.4
- always use pkgsrc path for swath for st-swath script
- make splitting of numbers a little more consistent for st-emacs & st-icu
- add split-thai, split-thai-line, wrapper functions to emacs lisp code

(scole)

2020-08-17 15:23:28 UTC MAIN commitmail json YAML

fontconfig: remove libuuid bl3 inclusion in buildlink3.mk

libuuid is marked as a private dependency and it is an implementation
detail.

On some platforms (e.g. NetBSD) by including libuuid bl3 fonts/fontconfig was
unconditionally installed due that.

Problem originally analyzed by <wiz> in:

<https://mail-index.NetBSD.org/tech-pkg/2019/06/19/msg021438.html>

And change proposed on tech-pkg@:

<https://mail-index.NetBSD.org/tech-pkg/2020/07/13/msg023550.html>

Thanks to <wiz> also for reviews, suggestions and discussions!

(leot)

2020-08-17 13:20:07 UTC MAIN commitmail json YAML

TODO: remove link to outdated-perl-packages-list

You can create such a list by installing pkgtools/pkg_p5up2date and running

cd /usr/pkgsrc && pkg_p5up2date --cpan-home $HOME/.cpan --output-fmt \
html --no-scan-installed --update-cpan-index --output-file \
$HOME/perl.html

and some post-processing (script available on request).

(wiz)

2020-08-17 13:03:35 UTC MAIN commitmail json YAML

doc: Updated multimedia/hwdecode-demos to 0.9.6p1

(tnn)

2020-08-17 13:02:55 UTC MAIN commitmail json YAML

TODO: -autogen

(tnn)

2020-08-17 12:22:50 UTC MAIN commitmail json YAML

hwdecode-demos: change HOMEPAGE & MASTER_SITE to author's github

Update to latest snapshot which is still 6 years old. Changes unknown.

(tnn)

2020-08-17 10:52:49 UTC MAIN commitmail json YAML

xnibbles: Handle OSS_TYPE=none correctly.

(jperkin)

2020-08-17 10:51:44 UTC MAIN commitmail json YAML

xwave: Handle OSS_TYPE=none correctly.

(jperkin)

2020-08-17 08:45:11 UTC MAIN commitmail json YAML

doc: Updated devel/autogen to 5.18.16

(tnn)

2020-08-17 08:43:07 UTC MAIN commitmail json YAML

autogen: update to 5.18.16

There's no entry in the NEWS file apart from mentioning that
autotools have been refreshed and that it works with guile 2.2.x
which is coincidentally the reason for updating this package.
lang/guile20 just kept segfaulting during install for me.

(tnn)

2020-08-17 07:59:55 UTC MAIN commitmail json YAML

2020-08-17 07:02:25 UTC MAIN commitmail json YAML

2020-08-17 07:01:34 UTC MAIN commitmail json YAML

2020-08-17 07:00:58 UTC MAIN commitmail json YAML

2020-08-17 07:00:32 UTC MAIN commitmail json YAML

devel/py-usb: Update to 1.0.2

Needed for something in the yubikey-manager stack but I forgot what
already and I can't find any obvious release notes, sorry!

(riastradh)

2020-08-17 06:58:32 UTC MAIN commitmail json YAML

security/tor-browser: Add U2F support to NetBSD.

The webauthn API is disabled by default in the Tor Browser:

https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/26614

In order to use it, risking the consequences since the Tor Project
has not audited its anonymity properties, you have to explicitly
enable security.webauthn.webauthn=true in about:config.

So if you definitely want to log into a web site using U2F in spite
of that, with location privacy but not anonymity, then these patches
now enable it to work on NetBSD (with the caveat that enabling
security.webauthn.webauthn=true applies also to any web site that
tries to use the webauthn API, not just the ones you want to log
into).

(riastradh)

2020-08-17 06:58:02 UTC MAIN commitmail json YAML

2020-08-17 06:20:47 UTC MAIN commitmail json YAML

doc/TODO: - apache 2.4.46, done

(wiz)

2020-08-17 06:19:50 UTC MAIN commitmail json YAML

doc/TODO: add some

+ ImageMagick-7.0.10.27, hiredis-1.0.0, ilmbase-2.5.3, khal-0.10.2,
  khard-0.17.0, openexr-2.5.3, poppler-20.08.0, protobuf-3.13.0,
  py-google-api-core-1.22.1, py-parso-0.8.0, py-setuptools-49.6.0
  [drops python-2.x support], py-test-cov-2.10.1,
  thunderbird-enigmail-2.1.7.1, tor-browser-https-everywhere-2020.8.13.

(wiz)

2020-08-17 05:31:37 UTC MAIN commitmail json YAML

2020-08-17 05:26:16 UTC MAIN commitmail json YAML

libsndfile: python as tool to appease configure ...

(tnn)

2020-08-17 05:25:48 UTC MAIN commitmail json YAML

libsndfile: needs to buildlink libopus due to visible in .pc file

XXX recursive revbump should be performed once the dust settles

(tnn)

2020-08-17 02:52:52 UTC MAIN commitmail json YAML

2020-08-17 02:43:29 UTC MAIN commitmail json YAML

doc: Updated pkgtools/lintpkgsrc to 4.95

(tnn)

2020-08-17 02:38:54 UTC MAIN commitmail json YAML

lintpkgsrc: update to 4.95

Use xargs when executing digest for -m.
PR pkg/48335: error when using -m and too many files in DISTDIR

(tnn)

2020-08-16 23:21:29 UTC MAIN commitmail json YAML

aqsis: BROKEN message should be in quotes to avoid linebreaks

(tnn)

2020-08-16 23:14:11 UTC MAIN commitmail json YAML

go-genproto: BROKEN message should be in quotes to avoid linebreaks

(tnn)

2020-08-16 23:05:33 UTC MAIN commitmail json YAML

tensa-lx106-elf-gcc: skip portability checks in contrib

(tnn)

2020-08-16 23:00:10 UTC MAIN commitmail json YAML

revert previous because the master site produces mutable output for
all pear packages

(tnn)

2020-08-16 22:59:50 UTC MAIN commitmail json YAML

2020-08-16 22:57:22 UTC MAIN commitmail json YAML

2020-08-16 22:45:51 UTC MAIN commitmail json YAML

pear-Net_URL: regen distinfo

tgz changed on master site. No difference in extracted contents.

(tnn)

2020-08-16 22:44:44 UTC MAIN commitmail json YAML

php/pear.mk: make DIST_SUBDIR overridable

(tnn)

2020-08-16 22:42:09 UTC MAIN commitmail json YAML

sane-backends: fix big-endian builds

Patch from Gentoo, via Connor McLaughlan on pkgsrc-users. (Also tested
by me on NetBSD 8.2_STABLE/macppc.)

(gutteridge)

2020-08-16 22:38:56 UTC MAIN commitmail json YAML

2020-08-16 22:18:49 UTC MAIN commitmail json YAML

opencv: skip portability checks for ios

(tnn)

2020-08-16 21:54:08 UTC MAIN commitmail json YAML

nginx: extend the dav option to include dav_ext by default

All howtos on the internet assume it's turned on.

No change to default package.

(wiz)

2020-08-16 21:21:12 UTC MAIN commitmail json YAML

Add php-mailparse into tree.

(otis)

2020-08-16 20:59:04 UTC MAIN commitmail json YAML

doc: Added pkgtools/import-package version 1.0

(wiz)

2020-08-16 20:58:47 UTC MAIN commitmail json YAML

pkgtools/Makefile: + import-package

(wiz)

2020-08-16 20:58:25 UTC MAIN commitmail json YAML

import-package: add Os macro to man page

(wiz)

2020-08-16 20:57:57 UTC MAIN commitmail json YAML

import-package: increase CAVEATS

(wiz)

2020-08-16 20:57:09 UTC MAIN commitmail json YAML

pkgtools/import-package: import import-package-1.0

This is a package for wip/import-package.sh. Suggested by brooks.

This package contains a tool for importing a package to pkgsrc or
pkgsrc-wip.

(wiz)

2020-08-16 15:57:39 UTC MAIN commitmail json YAML

Fix wrong cce, php-mailparse was added, not updated.

(otis)

2020-08-16 15:52:08 UTC MAIN commitmail json YAML

doc: Updated mail/php-mailparse to 3.1.0

(otis)

2020-08-16 15:51:45 UTC MAIN commitmail json YAML

Add php-mailparse 3.1.0, a PECL class for parsing and working
with email messages. It can deal with rfc822 and rfc2045 (MIME) compliant
messages.

(otis)

2020-08-16 13:46:30 UTC MAIN commitmail json YAML

doc: Updated net/pear-Net_SMTP to 1.9.2

(taca)

2020-08-16 13:46:03 UTC MAIN commitmail json YAML

net/pear-Net_SMTP: update to 1.9.2

Update pear-Net_SMTP to 1.9.2

1.9.2 (2020-08-12 21:27 UTC)

Changelog:

* Repackage documentation

(taca)

2020-08-16 10:40:16 UTC MAIN commitmail json YAML

harfbuzz: Explicitly pass meson arguments to enable/disable documentation

The `doc' option still had the issue that gtk-doc - if already installed - will
be accidentally picked up also if the option was disabled.
Be explicit in enabling/disabling it.

(leot)

2020-08-16 08:36:28 UTC MAIN commitmail json YAML

doc: Updated mail/opendmarc to 1.3.1nb8

(wiz)

2020-08-16 08:36:18 UTC MAIN commitmail json YAML

opendmarc: add missing dependency

Reported by Richard Sass on pkgsrc-users.

Bump PKGREVISION.

(wiz)

2020-08-16 04:14:56 UTC MAIN commitmail json YAML

doc: Updated wm/marco to 1.24.1

(gutteridge)

2020-08-16 03:54:46 UTC MAIN commitmail json YAML

marco: update to 1.24.1

Change log:

marco 1.24.1

  * update translations
  * common: window icon (META_DEFAULT_ICON_NAME) is no longer available
  * workspace: Don't try to use per-workspace MRU lists as a hint for focusing
  * stack: make meta_window_raise() and meta_window_lower() smarter
  * compositor: fix possible crash closing/destroying window . Fixes to previous commit.
  * window: fix crash if workspace is null
  * workspace-switcher: fix colors of selected workspace when compositing is disabled.
  * build: silent build warnings for distcheck
  * Remove unnecessary warnings about visible region
  * meson: improvements
  * Guard against null changes introduced by previous commit
  * Introduce nullpointer checks and return null if validation fails
  * util: meta_bug raises SIGABRT so it shouldn't return
  * add meson build files to EXTRA_DIST
  * remove warning: 'GTimeVal' is deprecated
  * theme: avoid deprecated g_memmove
  * frames: don't bother painting the background

(gutteridge)

2020-08-16 03:02:24 UTC MAIN commitmail json YAML

Updated devel/p5-Hash-Merge to 0.302

(wen)

2020-08-16 03:01:21 UTC MAIN commitmail json YAML

Update to 0.302

Upstream changes:
0.302  2020-07-30
    - Prevent object-based test from failing randomly on BSDs and MacOS

0.301  2020-06-18
    - fix object-based interface memory leak (RT#132627) (Thanks to mithaldu)

(wen)

2020-08-16 02:50:09 UTC MAIN commitmail json YAML

Updated devel/p5-File-Util to 4.201720

(wen)

2020-08-16 02:48:39 UTC MAIN commitmail json YAML

Update to 4.201720

Upstream changes:
4.201720 2020-06-19
  - Bugfix for issue where @INC was being disrupted, detailed at
    https://rt.cpan.org/Ticket/Display.html?id=132060

    Sorry for the delay in fixing it - coronavirus happened to the world :(
    Good luck everyone and please stay safe.

(wen)

2020-08-16 02:38:53 UTC MAIN commitmail json YAML

Updated devel/p5-File-Slurp to 9999.32

(wen)

2020-08-16 02:37:36 UTC MAIN commitmail json YAML

Update to 9999.32

Upstream changes:
9999.32    2020-06-30
    - Re-release after fixing MANIFEST

9999.31    2020-06-28
    - Remove TravisCI and AppVeyor
    - Test using GitHub Actions/workflows on Windows, Mac, and Linux
    - Add See Also section to the docs. (PR#24 Thanks, Dan Book)
    - Add file existence and size checks (RT 132900 - Thanks, Bao Haojun)

(wen)

2020-08-16 02:27:36 UTC MAIN commitmail json YAML

pluma: Perl is a direct tool dependency

The build uses Perl scripts directly. This is presently covered by
intltool being a generic dependency from the meta package, but intltool
was really dropped as a tool requirement as of MATE 1.24, so adjust
here prior to dropping it from the meta package.

(gutteridge)

2020-08-16 01:37:28 UTC MAIN commitmail json YAML

Updated devel/p5-File-Flat to 1.06

(wen)

2020-08-16 01:35:56 UTC MAIN commitmail json YAML

Update to 1.06

Upstream changes:
1.06      2020-07-31 16:05:45Z
        - add a $VERSION to the internal File::Flat::Object package

(wen)

2020-08-16 01:17:37 UTC MAIN commitmail json YAML

Updated devel/p5-FFI-CheckLib to 0.27

(wen)

2020-08-16 01:16:34 UTC MAIN commitmail json YAML

Update to 0.27

Upstream changes:
0.27      2020-05-11 14:24:08 -0400
  - Added a FAQ section to the documentation (gh#22)

(wen)

2020-08-16 01:02:55 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-PPPort to 3.60

(wen)

2020-08-16 01:01:11 UTC MAIN commitmail json YAML

Update to 3.60

Upstream changes:
3.60 - 2020-08-11
* Restore PERL_BCDVERSION helper which is used on CPAN
* A few API elements were not properly found, like IVTYPE

3.59 - 2020-08-10

* Add PERL_VERSION_* compare macros
* Rename PERL_BCDVERSION to internal name to discourage future use
* Stop versioning generated test files
* Enforce strict & warnings
* Avoid indirect calls
* scanprov: multiple improvements
* Use ivers() in tests
* Update POD documentation and HACKERS file
* Change ppport.h --api-info to not output non-API info unless that is the
  only match
* Find more elements to be listed in the --api-info option (and similar) to
  ppport.h

(wen)

2020-08-16 00:54:23 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-Gladiator to 0.08

(wen)

2020-08-16 00:52:53 UTC MAIN commitmail json YAML

Update to 0.08

Upstream changes:
0.08    2020-06-11 17:42:46Z
        - fix sample code snippet for spotting new arena entries (mohawk)

(wen)

2020-08-16 00:35:42 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-Cover to 1.36

(wen)

2020-08-16 00:34:03 UTC MAIN commitmail json YAML

Update to 1.36

Upstream changes:
1.36 - 19 May 2020
- Fix pod error
- Quieten perltidy syntax highlighting errors
- Fix up minimum perl version (Dick Franks) (GH-268)
- Fix passing full path for cover DB (GH-267)

1.35 - 17 May 2020
- Replace "use vars" with "our" (James Raspass) (GH-255)
- Remove tray db file from release
- Don't chdir when given a -dir flag (Dave Rolsky) (GH-253)
- Manage code references in @INC (Slaven Rezić) (GH-249, GH-250)

1.34 - 16 May 2020
- Minimum supported version is now 5.10.0 (Karen Etheridge) (GH-226)
- Support 5.32 by accomodating signauture changes (GH-260)

(wen)

2020-08-16 00:20:46 UTC MAIN commitmail json YAML

Updated devel/p5-Date-Manip to 6.82

(wen)

2020-08-16 00:19:45 UTC MAIN commitmail json YAML

Update to 6.82

Upstream changes:
6.82  2020-06-01
  -  Time zone fixes
        Newest zoneinfo data (tzdata 2020a).

(wen)

2020-08-16 00:15:41 UTC MAIN commitmail json YAML

Updated www/p5-HTTP-Daemon to 6.12

(wen)

2020-08-16 00:14:08 UTC MAIN commitmail json YAML

Update to 6.12

Upstream changes:
6.12      2020-06-04 16:01:31Z
  - No changes since TRIAL release 6.11

6.11      2020-06-03 14:47:21Z (TRIAL RELEASE)
  - An IPv6 zone separator must be URI-quoted (GH#47) (Petr Pisar and Olaf
    Alders)

6.10      2020-05-26 16:20:36Z
  - No changes since TRIAL release 6.09

6.09      2020-05-25 16:52:14Z (TRIAL RELEASE)
  - Require IO::Socket::IP 0.25 so that HTTP::Tiny uses it (GH#45) (Shoichi Kaji)

6.08      2020-05-22 15:26:00Z (TRIAL RELEASE)
  - In t/chunked.t, leave choosing IP address family to IO::Socket::IP (GH#42) (Shoichi Kaji)
  - Add "IPv6 SUPPORT" section to pod (GH#43) (Shoichi Kaji)
  - Use HTTP::Tiny 0.042+ for IPv6 support (GH#41) (Shoichi Kaji)

6.07      2020-05-19 19:19:53Z (TRIAL RELEASE)
  - Prefer IP address for host in $d->url (GH#40) (Shoichi Kaji)
  - Improve documentation readability (GH#36) (Ferenc Erki)

(wen)

2020-08-15 23:36:48 UTC MAIN commitmail json YAML

doc: Updated audio/libsndfile to 1.0.29

(nia)

2020-08-15 23:36:38 UTC MAIN commitmail json YAML

libsndfile: Update to 1.0.29

Version 1.0.29 (2020-08-15)
  * Add support for Opus files.
  * Autotool build system improvements.
  * CMake build system improvements.
  * Fixes for: CVE-2017-12562, CVE-2017-17456, CVE-2017-17457, CVE-2018-19661,
    CVE-2018-19662, CVE-2018-19758 and CVE-2019-3832.
  * Add BWF v2 loudness parameters.
  * Wave64: Permit and skip arbitrary chunks prior to the data chunk.
  * Fix ASAN crash in wavlike_ima_seek().
  * Fix IMA-ADPCM encoding for AIFF files.
  * sndfile-convert: Handle gsm, vox and opus extensions the same way.
  * Add SFC_SET_OGG_PAGE_LATENCY_MS command to get Ogg page latency for Ogg Opus
    files.
  * Fix parsing of some SD2 files.
  * Documentation updates.
  * Minor bug fixes and improvements.

(nia)

2020-08-15 21:48:34 UTC MAIN commitmail json YAML

2020-08-15 20:04:50 UTC MAIN commitmail json YAML

doc: Updated net/gallery-dl to 1.14.4

(leot)

2020-08-15 20:04:33 UTC MAIN commitmail json YAML

gallery-dl: Update to 1.14.4

Changes:
1.14.4
------
### Additions
- [blogger] add `search` extractor (#925)
- [blogger] support searching posts by labels (#925)
- [inkbunny] add `user` and `post` extractors (#283)
- [instagram] support `/reel/` URLs
- [pinterest] support `pinterest.co.uk` URLs (#914)
- [reddit] support gallery posts (#920)
- [subscribestar] extract attached media files (#852)

### Fixes
- [blogger] improve error messages for missing posts/blogs (#903)
- [exhentai] adjust image limit costs (#940)
- [gfycat] skip malformed gfycat responses (#902)
- [imgur] handle 403 overcapacity responses (#910)
- [instagram] wait before GraphQL requests (#901)
- [mangareader] fix extraction
- [mangoxo] fix login
- [pixnet] detect password-protected albums (#177)
- [simplyhentai] fix `gallery_id` extraction
- [subscribestar] update `date` parsing
- [vsco] handle missing `description` fields
- [xhamster] fix extraction (#917)
- allow `parent-directory` to work recursively (#905)
- skip external OAuth tests (#908)

### Removals
- [bobx] remove module

(leot)

2020-08-15 16:53:20 UTC MAIN commitmail json YAML

doc: Updated textproc/split-thai to 0.3

(scole)

2020-08-15 16:52:29 UTC MAIN commitmail json YAML

Update to version 0.3

all changes for emacs splitter:
- load custom dictionary first because 'thai-word-table is a defvar
- add count function and return word counts for a few funcs
- add lisp wrappers functions split-thai, split-thai-line which
  can split thai text in an emacs buffer using 'thai-break-words

(scole)

2020-08-15 12:35:58 UTC MAIN commitmail json YAML

2020-08-15 11:04:45 UTC MAIN commitmail json YAML

doc: Updated sysutils/p5-BackupPC-XS to 0.62

(tnn)

2020-08-15 10:57:09 UTC MAIN commitmail json YAML

p5-BackupPC-XS: update to 0.62

0.62
  force rewrite of attr file if xattr key fixup was applied
  fixed attrib refCnt when attrib is unchanged
  bpc_attrib_dirWrite() doesn't create empty attrib files

0.61
  fix view of migrated v3 backup
  convert_hv2file() ensures xattr type is hash, and uses correct keyLen+1
  added BackupPC::XS::FileDigest::digest and bpc_fileDigest()

0.60
  allow mtime to be signed in attrib files
  added bpc_attrib_fileIterate() and BackupPC::XS::Attrib::iterate()
  added checks that xattr key is 0x0 terminated
  increased some buffer sizes to avoid benign compiler warnings for snprintf()
  bpc_attribCache_loadPath() removes any extraneous BPC_FTYPE_DELETED file types
  bpc_attrib_buf2fileFull() calls bpc_attrib_xattrDeleteAll(file)

(tnn)

2020-08-15 10:53:43 UTC MAIN commitmail json YAML

doc: Updated mail/dbmail to 3.2.5

(tnn)

2020-08-15 10:52:50 UTC MAIN commitmail json YAML

dbmail: update to 3.2.5

3.2.5
Added
  IMAP Daemon: added switch to control the diffential state reload
    (mailbox_update_strategy=2), more information in dbmail.conf,
    mailbox_update_strategy_2_max_iterations [#81]
  IMAP Daemon: added switch to control UNSEEN first message in SELECT commands

Changed
  IMAP Daemon: allow reporting UID COPY success in case of various failures
    (except quota), reporting issues are sent to error log as warnings [#87]

Optimizations
  optimizing differential state [#81]
  optimizing fetch message headers [#85]

Issues
  fixing issue related to copy message in regard to RFC 3501, section 6.4.8
  fixing issues related group_concat for PostgreSql [#75], [#78]
  fixing issue related to lastRowId [#71]
  fixing issues related with differential update [#70], [#73]
  fixing proc not being used in BSD systems [#74]
  IMAP Daemon: segmentation fault [#68]

3.2.4
Added
  IMAP Daemon: mailbox-update-strategy switch (see dbmail.conf), experimental
  support for application_name in database connection uri
  IMAP Daemon: mailbox_search_strategy switch (see dbmail.conf)

Changed
  systemd unit changed to type notify
  mailbox state is build using only valid messages [#39]

Optimizations
  IMAP Daemon: optimization of sql queries in relation to message headers
  libevent increased priority on accepting new connections
  libevent optimization on reading and writing to sockets
  simplify libzdb configuration (AC_CHECK_HEADERS)

Issues
  fix segmentation fault in imap_append_hash_as_string [#12]
  dbmail-users: sql issue on deleting alias user [#18]
  IMAP Daemon: generation of invalid BODYSTRUCTURE in Content-Type field [#23]
  fix support for jemalloc latest version [#35]
  IMAP Deamon: BYE Command now offers optional message even on normal operations
  IMAP Deamon: idle message now offers optional message (* OK Still Here)
  IMAP Daemon: random hangs when single user is connected [#37]
  fix fd leaks
  IMAP Daemon: fix MODIFIED keyword, too many '[' and ']'
  fix segmentation fault in find_end_of_header
  fix gcc 10 compilation issue, duplicated definition

(tnn)

2020-08-15 09:51:06 UTC MAIN commitmail json YAML

doc: Updated fonts/harfbuzz to 2.7.1

(tnn)

2020-08-15 09:49:44 UTC MAIN commitmail json YAML

harfbuzz: update to 2.7.1

ot-funcs now handles variable empty glyphs better when hvar/vvar isn't present.
Reverted a GDEF processing regression.
A couple of fixes to handle OOM better.

(tnn)

2020-08-15 08:29:55 UTC MAIN commitmail json YAML

doc: Updated sysutils/smartmontools to 7.1

(tnn)

2020-08-15 08:28:48 UTC MAIN commitmail json YAML

smartmontools: update to 7.1

- smartctl: Fixed bogus exception on unknown form factor value (regression).
- smartctl '--json=cg': Suppresses extra spaces also in 'g' format.
- smartctl '-i': ATA ACS-4 and ACS-5 enhancements.
- smartd: No longer truncates very long device names in warning emails.
- smartd: No longer skips scheduled tests if system clock has been adjusted
  to the past.
- smartd '-A': Attribute logs now use local time instead of UTC.
- ATA: Device type '-d jmb39x,N' for drives behind JMicron JMB39x RAID port
  multipliers.
- SCSI: Workaround for incomplete Log subpages response from some SAS SSDs.
- HDD, SSD and USB additions to drive database.
- Autodetection of '-d sntjmicron' type for JMicron USB to NVMe bridges.
- configure: Defines '_FORTIFY_SOURCE=2' if supported and not defined.
- Linux/FreeBSD: Fixed segfault on CCISS transfer sizes > 512 bytes.
- Linux: Fixed smartd.service 'Type' if libsystemd-dev is not available.
- Linux: Fixed '/dev/megaraid_sas_ioctl_node' fd leak.
- Linux: Fixed GPL licensing problem of 'linux_nvme_ioctl.h'.
- FreeBSD update-smart-drivedb: Now uses 'fetch' as default download tool.
- FreeBSD big endian: Fixed NVMe access.
- FreeBSD: Compile fix for FreeBSD 12.
- NetBSD: Fixed device scan crash on empty name list.
- NetBSD: Fixed memory leak in device scan.

(tnn)

2020-08-15 08:03:35 UTC MAIN commitmail json YAML

Updated www/p5-Test-LWP-UserAgent to 0.034

(wen)

2020-08-15 08:02:27 UTC MAIN commitmail json YAML

Update to 0.034

Upstream changes:
Changes for version 0.034 - 2020-03-06

    fix t/10-request-args-network.t under EXTENDED_TESTING=1 where the test URL was returning random content for each request and therefore failing a comparison check

(wen)

2020-08-15 07:59:01 UTC MAIN commitmail json YAML

Updated www/p5-WWW-Mechanize-Cached to 1.54

(wen)

2020-08-15 07:53:54 UTC MAIN commitmail json YAML

Update to 1.54

Upstream changes:
1.54      2020-08-10 22:37:25Z
    - Don't poke at HTTP::Header internals (GH#24) (Olaf Alders)

1.53      2020-02-24 21:07:31Z
    - Remove warnings on new() (GH#15) (Jonathan Rubin, simbabque)
    - Remove new warnings (GH#22) (Julien Fiegehenn)
    - Add Test::Warn to develop requirements (GH#21) (Olaf Alders)
    - Remove Find::Lib and Path::Class from deps (GH#19) (Olaf Alders)

(wen)

2020-08-15 07:10:46 UTC MAIN commitmail json YAML

Updated www/p5-WWW-Mechanize-Shell to 0.59

(wen)

2020-08-15 07:06:45 UTC MAIN commitmail json YAML

Update to 0.59

Upstream changes:
Changes for version 0.59 - 2020-05-04

    HTML::Form::find_input() has a 1-based index Reported by the CPAN testers, thanks!

(wen)

2020-08-15 06:41:51 UTC MAIN commitmail json YAML

Updated www/p5-WWW-Mechanize to 2.00

(wen)

2020-08-15 06:39:07 UTC MAIN commitmail json YAML

Update to 2.00
Update DEPENDS

Upstream changes:
2.00      2020-06-09 19:09:53Z
    - Require LWP::UserAgent 6.45 (GH#302) (Shoichi Kaji)

1.99      2020-06-08 15:35:04Z
    - Bump HTTP::Daemon test dependency to 6.12 (GH#300) (Olaf Alders)

1.98      2020-05-25 17:06:47Z (TRIAL RELEASE)
    - Don't make assumptions about port 80 in test (GH#299) (Olaf Alders)

1.97      2020-05-14 00:46:53Z
    - Respect CDATA[[ sections when parsing HTML (GH#298) (Max Maischein)
    - extract image links also from css (GH#12) (Jozef Kutej) and (GH#297)
      (Julien Fiegehenn)
    - s/parm/param/ in documentation (GH#295) (Olaf Alders)

1.96      2020-02-21 02:23:40Z [FIXED]
    - HTML::Form::find_input() has a 1-based index (GH#293) (Olaf Alders)
    - Fix invocation of dump_forms in mech-dump (GH#288) (積丹尼 Dan Jacobson)
    - make xt/author/eol.t pass (GH#291) (Shoichi Kaji)
    [DOCUMENTATION]
    - Fix documentation of use of undef in form_with() and all_forms_with()
      (GH#289) (積丹尼 Dan Jacobson)

(wen)

2020-08-15 02:36:35 UTC MAIN commitmail json YAML

doc: updated git-lfs, ntp4, hitch, ntpsec

(tnn)

2020-08-15 02:31:29 UTC MAIN commitmail json YAML

ntpsec: update to 1.1.9

== 2020-05-23: 1.1.9 ==
Correctly parse ntpq :config output on Python 3 and check return MACs.
Add AES and other algorithm support to ntpq and ntpdig, from OpenSSL.
Remove support for NetInfo. NetInfo was last supported in Mac OS X v10.4
The configure step now supports --disable-nts for running
on systems with older versions of OpenSSL.
The default restrictions now start with noquery and limited
to reduce the opportunities for being used for DDoS-ing.
The draft RFC for NTS has dropped support for TLSv1.2
  We now need OpenSSL with TLSv1.3 support (version 1.1.1 or newer).
  The config keyword +tlsciphers+ has been removed.
Additional filtering and sort options have been added to ntpq/mrulist
  Details are in the man page.
Rate limiting has been cleaned up.
  With "restrict limited", traffic is now limited to
  an average of 1 packet per second with bursts of 20.
  (needs doc and maybe config)
SIGHUP and hourly checks have been unified.  Both now
  check for a new log file
  check for a new certificate file
  check for a new leap file
SIGHUP also restarts all pending DNS and NTS probes.
NTS client now requires ALPN on TLSv1.3.
asciidoctor (1.5.8 or newer) is now supported and is the preferred AsciiDoc
processor.  asciidoc is still supported, but the minimum supported version
has been raised from 8.6.0 to 8.6.8.  asciidoc3 (3.0.2 or newer) is also
supported.
HTML docs are now built by default if an AsciiDoc processor is installed.  If
you do not want HTML docs, configure with --disable-doc.  (Note:  Man pages
are controlled by a separate --disable-manpage.)
Analysis shows that CVE-2020-11868, affecting NTP Classic,
cannot affect us, as the peer mode involved has been removed.

== 2019-11-17: 1.1.8 ==
Fix bug in NTS-KE client so that NTP server names work.
Fix/tweak several NTS logging messages.

== 2019-09-02: 1.1.7 ==
The numeric literal argument of the 'time1' fudge option on a clock
can now have one or more letter suffixes that compensate for era
rollover in a GPS device.  Each "g" adds the number of seconds in a
1024-week (10-bit) GPS era. Each "G" adds the number of seconds in a
8192-week (13-bit) GPS era.
The neoclock4x driver has been removed, due to the hardware and the
vendor having utterly vanished from the face of the earth.
The NTS ALPN negotiation sequence has been modified for improved
interoperability with other NTS implementations.
NTS key rotation now happens every 24 hours.  It used to rotate
every hour to enable testing of recovery from stale cookies.

== 2019-07-10: 1.1.6 ==
Fixes to code quality checks.
Fixes to NTS server list.
Fix to bug #600.

== 2019-06-30: 1.1.5 ==
Add ALPN for the NTS server, as required by the NTP draft.
Revert some ntpq behavior.

== 2019-06-21: 1.1.4 ==

NTS is now implemented.  See .../devel/nts.adoc
https://tools.ietf.org/html/draft-ietf-ntp-using-nts-for-ntp
We thank Cisco for sponsoring the NTS development.
Lots of fixes and cleanups to PPS, both implementation and documentation.
Pthread support is now required.  --disable-dns-lookup is gone.
NIST lockclock mode is now a runtime option set by the (previously unused)
flag1 mode bit of the local-clock driver.
As always, lots of minor fixups and cleanups everywhere.  See the git log.

(tnn)

2020-08-15 02:16:18 UTC MAIN commitmail json YAML

hitch: update to 1.6.0

Introduces support for client certificate authentication along with various
other fixes and improvements.

(tnn)

2020-08-15 02:09:25 UTC MAIN commitmail json YAML

net/ntp4: update to ntp-4.2.8p15

Fixes Sec 3661: Memory leak with CMAC keys + additional 13 bugfixes.

(tnn)

2020-08-15 02:07:38 UTC MAIN commitmail json YAML

git-lfs: update to 2.11.0

This release introduces several new features, such as better support for
unnamed local paths and URLs as remotes, support for submodule.recurse,
exponential backoff on failure, and support for renegotiation.

(tnn)

2020-08-15 01:03:50 UTC MAIN commitmail json YAML

doc: Updated devel/popt to 1.18

(tnn)

2020-08-15 01:02:43 UTC MAIN commitmail json YAML

popt: update to 1.18

Replace HOMEPAGE and MASTER_SITE, the old rpm5.org site seems dead & broken

Changes from popt 1.16
  fix an ugly and ancient security issue with popt failing to
    drop privileges on alias exec from a SUID/SGID program
  perform rudimentary sanity checks when reading in popt config files
  collect accumulated misc fixes (memleaks etc) from distros
  convert translations to utf-8 encoding
  convert old postscript documentation to pdf
  dust off ten years worth of autotools sediment
  reorganize and clean up the source tree for clarity
  remove the obnoxious splint annotations from the sources

(tnn)

2020-08-14 22:40:33 UTC MAIN commitmail json YAML

Updated www/p5-libwww to 6.46

(wen)

2020-08-14 22:39:27 UTC MAIN commitmail json YAML

Update to 6.46

Upstream changes:
6.46      2020-06-23 21:19:26Z
    - Fix a looping regression in 6.45 for redirect responses without
      a Location header (GH PR#342, Niko Tyni)

6.45      2020-06-08 14:51:28Z
    - Fix Client-Warning: Internal response sometimes reset (GH#341) (Jonathan
      Dahan and Julien Fiegehenn)

6.44      2020-04-14 19:37:45Z
    - Support basic authentication charset per RFC 7617 (GH#339) (Ville Skytt)
    - Fixed POD mistake. (GH PR#338. Sebastian Paaske T淡rholm)

(wen)

2020-08-14 21:22:48 UTC MAIN commitmail json YAML

geckodriver: adjust cargo dependencies per canonical cargo.mk instructions

(tnn)

2020-08-14 21:19:22 UTC MAIN commitmail json YAML

rust/cargo.mk: update documentation

(tnn)