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

2024-05-13 15:04:54 UTC Now

2020-03-27 20:57:34 UTC MAIN commitmail json YAML

Allow mk.conf to actually overwrite USE_PKG_ADMIN_DIGEST.

(joerg)

2020-03-27 20:57:12 UTC MAIN commitmail json YAML

2020-03-27 20:56:53 UTC MAIN commitmail json YAML

Ignore configure.in as we patch configure.

(joerg)

2020-03-27 20:56:25 UTC MAIN commitmail json YAML

2020-03-27 20:55:59 UTC MAIN commitmail json YAML

2020-03-27 20:55:40 UTC MAIN commitmail json YAML

2020-03-27 20:53:53 UTC MAIN commitmail json YAML

2020-03-27 20:53:32 UTC MAIN commitmail json YAML

2020-03-27 20:53:05 UTC MAIN commitmail json YAML

2020-03-27 20:52:20 UTC MAIN commitmail json YAML

Rename log to mylog to avoid conflict with math.h.

(joerg)

2020-03-27 20:51:43 UTC MAIN commitmail json YAML

Skip configure.in as we patch configure already

(joerg)

2020-03-27 20:51:24 UTC MAIN commitmail json YAML

2020-03-27 19:23:43 UTC MAIN commitmail json YAML

mozilla-rootcerts: Simplify DESCR.

Use the phrase "configuring a trust anchor" less, it won't stop echoing
around my head.

(nia)

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

mozilla-rootcerts: Mention 'mozilla-rootcerts install' in the DESCR

This seems to be a far more common operation than 'extract', I'm slightly
confused why it onlymentions installing to the current working directory.

(nia)

2020-03-27 18:07:16 UTC MAIN commitmail json YAML

neko: Wants git to build for reasons I need to investigate later.

Doesn't seem to be using it to fetch anything over the network and
might not actually be necessary although it seems to think it is.

(nia)

2020-03-27 17:46:53 UTC MAIN commitmail json YAML

libftdi1: Update libusb reference in buildlink3

(nia)

2020-03-27 17:00:01 UTC MAIN commitmail json YAML

mozilla-rootcerts-openssl: Minor DESCR fixups

Mention the manual script approach, almost parenthetically, in the See
also part about mozilla-rootcerts.

(gdt)

2020-03-27 16:42:26 UTC MAIN commitmail json YAML

devel/monotone: fix REPLACE_SH

The shell program mtnopt uses shell functions, which are not available on
Solaris' /bin/sh.

PKGREVISON++

(rillig)

2020-03-27 16:36:51 UTC MAIN commitmail json YAML

mozilla-rootcerts: In DESCR, explain mozilla-rootcerts

It is now known that there are people that prefer manual operation via
the mozilla-rootcerts script to the mozilla-rootcerts-openssl package.
Therefore, mention both approaches (without veering into documentation
of them or tutorial -- just enough to make people aware they exist).

(gdt)

2020-03-27 16:35:38 UTC MAIN commitmail json YAML

doc: Updated databases/py-ldap to 3.2.0nb2

(gutteridge)

2020-03-27 16:34:58 UTC MAIN commitmail json YAML

py-ldap: add build fixes

This package requires cyrus-sasl to build. Separately, it had a test(1)
invocation that's non-portable.

(gutteridge)

2020-03-27 16:04:24 UTC MAIN commitmail json YAML

doc: Updated benchmarks/netio to 1.33

(jdolecek)

2020-03-27 16:02:04 UTC MAIN commitmail json YAML

Update to netio 1.33

Change list since 1.26 not available, but at least the ancient patch
fixing compilation with GCC seems to no longer be available.

Bring over also patch from FreeBSD ports to compile a variant
with rudimentary IPv6 support.

(jdolecek)

2020-03-27 15:55:16 UTC MAIN commitmail json YAML

simh: Update DESCR and wrap lines

(ryoon)

2020-03-27 15:28:35 UTC MAIN commitmail json YAML

Updated lang/py-hy (the old version does not build any more)

(adam)

2020-03-27 15:27:41 UTC MAIN commitmail json YAML

py-hy: updated to 0.18.0

0.18.0
==============================

Removals
------------------------------
* Python 2 is no longer supported.
* Support for attribute lists in `defclass` has been removed. Use `setv`
  and `defn` instead.
* Literal keywords are no longer parsed differently in calls to functions
  with certain names.
* `hy.contrib.multi` has been removed. Use `cond` or the PyPI package
  `multipledispatch` instead.

Other Breaking Changes
------------------------------
* `HySequence` is now a subclass of `tuple` instead of `list`.
  Thus, a `HyList` will never be equal to a `list`, and you can't
  use `.append`, `.pop`, etc. on a `HyExpression` or `HyList`.

New Features
------------------------------
* Added special forms `py` to `pys` that allow Hy programs to include
  inline Python code.
* Added a special form `cmp` for chained comparisons.
* All augmented assignment operators (except `%=` and `^=`) now allow
  more than two arguments.
* Added support for function annotations (PEP 3107) and variable
  annotations (PEP 526).
* Added a function `parse-args` as a wrapper for Python's `argparse`.

Bug Fixes
------------------------------
* Statements in the second argument of `assert` are now executed.
* Fixed a bug that caused the condition of a `while` to be compiled
  twice.
* `in` and `not-in` now allow more than two arguments, as in Python.
* `hy2py` can now handle format strings.
* Fixed crashes from inaccessible history files.
* Removed an accidental import from the internal Python module `test`.
* Fixed a swarm of bugs in `hy.extra.anaphoric`.

Misc. Improvements
------------------------------
* Replaced the dependency `clint` with `colorama`.

0.17.0
==============================

**Warning**: Hy 0.17.x will be the last Hy versions to support Python 2,
and we expect 0.17.0 to be the only release in this line. By the time
0.18.0 is released (in 2020, after CPython 2 has ceased being developed),
Hy will only support Python 3.

Removals
------------------------------
* Python 3.4 is no longer supported.

New Features
------------------------------
* Python 3.8 is now supported.
* Format strings with embedded Hy code (e.g., `f"The sum is {(+ x y)}"`)
  are now supported, even on Pythons earlier than 3.6.
* Added a special form `setx` to create Python 3.8 assignment expressions.
* Added new core functions `list?` and `tuple`.
* Gensyms now have a simpler format that's more concise when
  mangled (e.g., `_hyx_XsemicolonXfooXvertical_lineX1235` is now
  `_hyx_fooXUffffX1`).

Bug Fixes
------------------------------
* Fixed a crash caused by errors creating temporary files during
  bytecode compilation.

0.16.0
==============================

Removals
------------------------------
* Empty expressions (`()`) are no longer legal at the top level.

New Features
------------------------------
* `eval` / `hy_eval` and `hy_compile` now accept an optional `compiler`
  argument that enables the use of an existing `HyASTCompiler` instance.
* Keyword objects (not just literal keywords) can be called, as
  shorthand for `(get obj :key)`, and they accept a default value
  as a second argument.
* Minimal macro expansion namespacing has been implemented. As a result,
  external macros no longer have to `require` their own macro
  dependencies.
* Macros and tags now reside in module-level `__macros__` and `__tags__`
  attributes.

Bug Fixes
------------------------------
* Cleaned up syntax and compiler errors.
* You can now call `defmain` with an empty lambda list.
* `require` now compiles to Python AST.
* Fixed circular `require`\s.
* Fixed module reloading.
* Fixed circular imports.
* Fixed errors from `from __future__ import ...` statements and missing
  Hy module docstrings caused by automatic importing of Hy builtins.
* Fixed `__main__` file execution.
* Fixed bugs in the handling of unpacking forms in method calls and
  attribute access.
* Fixed crashes on Windows when calling `hy-repr` on date and time
  objects.
* Fixed a crash in `mangle` for some pathological inputs.
* Fixed incorrect mangling of some characters at low code points.
* Fixed a crash on certain versions of Python 2 due to changes in the
  standard module `tokenize`.

0.15.0
==============================

Removals
------------------------------
* Dotted lists, `HyCons`, `cons`, `cons?`, and `list*` have been
  removed. These were redundant with Python's built-in data structures
  and Hy's most common model types (`HyExpression`, `HyList`, etc.).
* `&key` is no longer special in lambda lists. Use `&optional` instead.
* Lambda lists can no longer unpack tuples.
* `ap-pipe` and `ap-compose` have been removed. Use threading macros and
  `comp` instead.
* `for/a` has been removed. Use `(for [:async ...] ...)` instead.
* `(except)` is no longer allowed. Use `(except [])` instead.
* `(import [foo])` is no longer allowed. Use `(import foo)` instead.

Other Breaking Changes
------------------------------
* `HyExpression`, `HyDict`, and `HySet` no longer inherit from `HyList`.
  This means you can no longer use alternative punctuation in place of
  square brackets in special forms (e.g. `(fn (x) ...)` instead of
  the standard `(fn [x] ...)`).
* Mangling rules have been overhauled; now, mangled names are
  always legal Python identifiers.
* `_` and `-` are now equivalent, even as single-character names.

  * The REPL history variable `_` is now `*1`.

* Non-shadow unary `=`, `is`, `<`, etc. now evaluate their argument
  instead of ignoring it.
* `list-comp`, `set-comp`, `dict-comp`, and `genexpr` have been replaced
  by `lfor`, `sfor`, `dfor`, and `gfor`, respectively, which use a new
  syntax and have additional features. All Python comprehensions can now
  be written in Hy.
* `&`-parameters in lambda lists must now appear in the same order that
  Python expects.
* Literal keywords now evaluate to themselves, and `HyKeyword` no longer
  inherits from a Python string type
* `HySymbol` no longer inherits from `HyString`.

New Features
------------------------------
* Python 3.7 is now supported.
* `while` and `for` are allowed to have empty bodies.
* `for` supports the various new clause types offered by `lfor`.
* `defclass` in Python 3 supports specifying metaclasses and other
  keyword arguments.
* Added `mangle` and `unmangle` as core functions.
* Added more REPL history variables: `*2` and `*3`.
* Added a REPL variable holding the last exception: `*e`.
* Added a command-line option `-E` per CPython.
* Added a new module `hy.model_patterns`.

Bug Fixes
------------------------------
* `hy2py` should now output legal Python code equivalent to the input Hy
  code in all cases.
* Fixed `(return)` so it can exit a Python 2 generator.
* Fixed a case where `->` and `->>` duplicated an argument.
* Fixed bugs that caused `defclass` to drop statements or crash.
* Fixed a REPL crash caused by illegal backslash escapes.
* `NaN` can no longer create an infinite loop during macro-expansion.
* Fixed a bug that caused `try` to drop expressions.
* The compiler now properly recognizes `unquote-splice`.
* Trying to import a dotted name is now a syntax error, as in Python.
* `defmacro!` now allows optional arguments.
* Fixed handling of variables that are bound multiple times in a single
  `let`.

Misc. Improvements
----------------------------
* `hy-repr` uses registered functions instead of methods.
* `hy-repr` supports more standard types.
* `macroexpand-all` will now expand macros introduced by a `require` in the body of a macro.

(adam)

2020-03-27 15:25:36 UTC MAIN commitmail json YAML

simh: Define LICENSE

(ryoon)

2020-03-27 15:12:27 UTC MAIN commitmail json YAML

xcopilot: Define LICENSE

(ryoon)

2020-03-27 15:09:00 UTC MAIN commitmail json YAML

japhar: Define LICENSE

(ryoon)

2020-03-27 13:42:53 UTC MAIN commitmail json YAML

mozilla-rootcerts-openssl: Revise and extend DESCR

Explain the purpose, and then explain the mechanism and why it is
somewhat and very irregular in the pkgsrc and native cases.

Point to mozilla-rootcerts as providing certificates without
configuring them as trust anchors.

(gdt)

2020-03-27 13:33:08 UTC MAIN commitmail json YAML

mozilla-rootcerts: Extend DESCR

Make it clear that this package does not configure certificates as
trust anchors.

Point to mozilla-rootcerts-openssl for actual installation.

(gdt)

2020-03-27 08:57:59 UTC MAIN commitmail json YAML

pugixml: Doesn't need gmake

(nia)

2020-03-27 08:54:47 UTC MAIN commitmail json YAML

libproxy: Doesn't need gmake

(nia)

2020-03-27 08:45:26 UTC MAIN commitmail json YAML

quassel: Fix build problems caused by Qt 5.14 update

from upstream

(nia)

2020-03-27 08:31:02 UTC MAIN commitmail json YAML

2020-03-27 08:07:28 UTC MAIN commitmail json YAML

warzone2100: Remove bogus CONFIGURE_ARGS, this uses CMake

(nia)

2020-03-27 07:55:40 UTC MAIN commitmail json YAML

snes9x-gtk: Fix linking OSS libraries

(nia)

2020-03-27 07:53:59 UTC MAIN commitmail json YAML

game-music-emu: Disable ubsan using the built-in mechanism

(nia)

2020-03-27 07:45:17 UTC MAIN commitmail json YAML

powerdns: PLIST fix for tools

(adam)

2020-03-27 06:19:48 UTC MAIN commitmail json YAML

2020-03-27 06:08:59 UTC MAIN commitmail json YAML

databases/ruby-pg: commit forgotten files

Commit forgotten distinfo.  Noted by joerg@.

(taca)

2020-03-27 06:07:57 UTC MAIN commitmail json YAML

misc/ruby-pryu: commit forgotten files

Commit forgotten files.  Noted by joerg@.

(taca)

2020-03-27 04:13:57 UTC MAIN commitmail json YAML

2020-03-27 03:42:13 UTC MAIN commitmail json YAML

${LOCALBASE}, not /usr/pkg.

(riastradh)

2020-03-27 03:41:34 UTC MAIN commitmail json YAML

graphics/asymptote needs devel/tex-etoolbox

(riastradh)

2020-03-27 03:41:20 UTC MAIN commitmail json YAML

TOOL_DEPENDS, not BUILD_DEPENDS.

(riastradh)

2020-03-27 02:08:47 UTC MAIN commitmail json YAML

2020-03-27 02:08:11 UTC MAIN commitmail json YAML

2020-03-27 02:07:33 UTC MAIN commitmail json YAML

Use build option to decide whether Aqua support was desired and include
the appropiate dependencies otherwise.

(joerg)

2020-03-27 00:24:21 UTC MAIN commitmail json YAML

firefox: fix 74.0 debug build packaging

(gutteridge)

2020-03-26 22:29:47 UTC MAIN commitmail json YAML

archivers/unzoo: fix out-of-bounds read when matching non-ASCII

Found by GCC's -Wchar-subscripts.

(rillig)

2020-03-26 22:02:29 UTC MAIN commitmail json YAML

Use a include path that actually exists.

(joerg)

2020-03-26 21:53:31 UTC MAIN commitmail json YAML

2020-03-26 21:53:08 UTC MAIN commitmail json YAML

2020-03-26 21:51:49 UTC MAIN commitmail json YAML

Skip configure.in for portability, configure itself is patched already.

(joerg)

2020-03-26 21:51:25 UTC MAIN commitmail json YAML

2020-03-26 21:51:12 UTC MAIN commitmail json YAML

2020-03-26 21:50:44 UTC MAIN commitmail json YAML

2020-03-26 21:50:24 UTC MAIN commitmail json YAML

Don't try using jemalloc on NetBSD, it doesn't work.

(joerg)

2020-03-26 21:49:49 UTC MAIN commitmail json YAML

Use correct types for initialisation on all platforms.

(joerg)

2020-03-26 21:49:22 UTC MAIN commitmail json YAML

Catch up with exit hook attributes in libXt.

(joerg)

2020-03-26 21:49:01 UTC MAIN commitmail json YAML

2020-03-26 21:48:41 UTC MAIN commitmail json YAML

2020-03-26 21:48:12 UTC MAIN commitmail json YAML

2020-03-26 21:47:55 UTC MAIN commitmail json YAML

2020-03-26 21:32:37 UTC MAIN commitmail json YAML

2020-03-26 21:19:59 UTC MAIN commitmail json YAML

2020-03-26 21:09:20 UTC MAIN commitmail json YAML

2020-03-26 20:05:29 UTC MAIN commitmail json YAML

lang/rust: remove trailing slash from dependency path

https://mail-index.netbsd.org/pkgsrc-changes/2020/03/26/msg209490.html

> This causes problems with bulk builds, at least with limited builds, as
> the trailing slash in a package directory name causes pbulk-scan to
> fail with "Invalid path from master" and leads to a hung scan phase.

(rillig)

2020-03-26 16:07:57 UTC MAIN commitmail json YAML

polkit: Needs a C++11 compiler

(nia)

2020-03-26 15:30:27 UTC MAIN commitmail json YAML

bootstrap: Allow overriding EGREP/FGREP.

Makes bootstrapping on minimal Linux systems that don't include these
binaries in a normal location less broken.

from Michael Forney

(nia)

2020-03-26 15:14:04 UTC MAIN commitmail json YAML

waf: Avoid installing libraries to ${PREFIX}/lib[32,64]

(nia)

2020-03-26 15:06:59 UTC MAIN commitmail json YAML

bash: Disable bash-malloc on Linux with musl libc

from Michael Forney

(nia)

2020-03-26 14:48:36 UTC MAIN commitmail json YAML

openttd: Make the PLIST consistent and remove some bogus config args

(nia)

2020-03-26 14:47:46 UTC MAIN commitmail json YAML

clang: Bump GCC_REQD

(nia)

2020-03-26 14:30:01 UTC MAIN commitmail json YAML

orca: Fix portability check

(nia)

2020-03-26 14:20:47 UTC MAIN commitmail json YAML

doc: Updated sysutils/py-Glances to 3.1.4.1

(fox)

2020-03-26 14:20:12 UTC MAIN commitmail json YAML

sysutils/py-Glances: Updates to 3.1.4.1

Changes since 3.1.4:

Convert JPEG to PNG images (for documentation)
Minor release for Debian package

Approved by: jperkin@

(fox)

2020-03-26 14:15:19 UTC MAIN commitmail json YAML

libgeotiff: Add buildlink3.mk and silence pkglint warning.

Lack of buildlink3 noted by Dr. Thomas Orgis

(nia)

2020-03-26 14:11:29 UTC MAIN commitmail json YAML

qt5: Needs c++11 compiler

(nia)

2020-03-26 14:05:24 UTC MAIN commitmail json YAML

racoon2: Strip -Werror

(nia)

2020-03-26 14:01:04 UTC MAIN commitmail json YAML

quagga: Needs pkg-config

(nia)

2020-03-26 13:59:40 UTC MAIN commitmail json YAML

2020-03-26 13:54:35 UTC MAIN commitmail json YAML

bind914: Disable Linux capabilities if there's no sys/capability.h

(nia)

2020-03-26 13:50:27 UTC MAIN commitmail json YAML

tk: Needs libXss

Noted by Dr. Thomas Orgis

(nia)

2020-03-26 13:48:29 UTC MAIN commitmail json YAML

pixd: Avoid compressing the man page before installation

It tries to run gzip -k which apparently CentOS 7 doesn't have (?)

(nia)

2020-03-26 13:34:30 UTC MAIN commitmail json YAML

hexd: Avoid compressing the man page before installation

It tries to run gzip -k which apparently CentOS 7 doesn't have (?)

(nia)

2020-03-26 13:31:42 UTC MAIN commitmail json YAML

dvtm: Needs wide curses

(nia)

2020-03-26 13:30:10 UTC MAIN commitmail json YAML

exim: Needs -std=c99

(nia)

2020-03-26 13:29:16 UTC MAIN commitmail json YAML

magicpoint: Uses bison

(nia)

2020-03-26 13:27:31 UTC MAIN commitmail json YAML

2020-03-26 13:11:16 UTC MAIN commitmail json YAML

2020-03-26 12:46:58 UTC MAIN commitmail json YAML

2020-03-26 12:44:46 UTC MAIN commitmail json YAML

mk/compiler/gfortran.mk: Add comment about gcc 4.8 handling

The code maps gcc-4.8.x to "4", and then won't find gcc4.  This is a
bug, but it may be that it's just as well to never match 4.X of any
kind, and use 7 anyway.  Explain this issue with a \todo to fix the
bug or document the consequences as intended.

(This is a comment-only change.)

(gdt)

2020-03-26 12:42:02 UTC MAIN commitmail json YAML

mk/compiler/gfortran.mk: Fix bugs in version selection

Adjust regexp that removes .Y.Z from gcc-X.Y.Z.

Test for gcc being contained in PKGSRC_COMPILER, vs ==, so that a
value of "ccache gcc" is handled properly.

(ok for mk during freeze jperkin@)

(gdt)

2020-03-26 12:32:38 UTC MAIN commitmail json YAML

frotz: Needs pkg-config on ncurses systems

(nia)

2020-03-26 12:27:58 UTC MAIN commitmail json YAML

game-music-emu: rm:-fsanitize=undefined, incompatible with older toolchains

Clean up path to .pc file

(nia)

2020-03-26 12:26:03 UTC MAIN commitmail json YAML

2020-03-26 12:23:54 UTC MAIN commitmail json YAML

mk: Support undefined UNLIMIT_RESOURCES.

Currently virtualsize is only defined for NetBSD, breaking builds that use it
on any other platform.  Adding defaults for all other platforms should be done
at some point, this at least unbreaks package builds for now and provides a
safer default for any future additions.

(jperkin)

2020-03-26 12:22:23 UTC MAIN commitmail json YAML

aranym: Add PLIST.Linux for aratapif

(nia)

2020-03-26 12:20:01 UTC MAIN commitmail json YAML

dasher: Needs autopoint

(nia)

2020-03-26 12:19:19 UTC MAIN commitmail json YAML

ghex: Needs itstool

(nia)

2020-03-26 12:18:17 UTC MAIN commitmail json YAML

dhex: Make sure the correct curses library is used

(nia)

2020-03-26 12:14:12 UTC MAIN commitmail json YAML

libftdi1: Don't use lib64 suffix on Linux

(nia)

2020-03-26 12:14:01 UTC MAIN commitmail json YAML

ruby-chef: Remove trailing slash from DEPENDS.

This causes problems with bulk builds, at least with limited builds, as the
trailing slash in a package directory name causes pbulk-scan to fail with
"Invalid path from master" and leads to a hung scan phase.

(jperkin)

2020-03-26 12:08:47 UTC MAIN commitmail json YAML

snd: OSS seems to be broken on Linux, disable it

(nia)

2020-03-26 12:07:19 UTC MAIN commitmail json YAML

buzztrax: Use PLIST_SRC_DFLT to ensure PLIST.Linux gets picked up.

Remove omf-scrollkeeper include, it's no longer needed.

(nia)

2020-03-26 12:04:11 UTC MAIN commitmail json YAML

csound6: Needs flex. Remove bsdtar requirement.

(nia)

2020-03-26 12:01:12 UTC MAIN commitmail json YAML

libdvdread: Needs USE_LANGUAGES=c99

(nia)

2020-03-26 12:00:45 UTC MAIN commitmail json YAML

libtasn1: Needs USE_LANGUAGES=c99

(nia)

2020-03-26 11:57:10 UTC MAIN commitmail json YAML

expat: Avoid detecting system docbook, resulting in PLIST conflicts

Noticed by Dr. Thomas Orgis

(nia)

2020-03-26 11:37:22 UTC MAIN commitmail json YAML

fltk13: Needs libXcursor

Noted by Dr. Thomas Orgis

(nia)

2020-03-26 11:31:48 UTC MAIN commitmail json YAML

netcdf-fortran: Fix f90 PLIST. While here, silence some pkglint warnings.

Noted by Dr. Thomas Orgis

(nia)

2020-03-26 10:16:56 UTC MAIN commitmail json YAML

tscrape: Add patch-tscrape.c to distinfo

It was accidentally missed in last commit.
Thanks <wiz> for noticing it!

PKGREVISION++

(leot)

2020-03-26 08:33:36 UTC MAIN commitmail json YAML

py-numpy: Remove bogus empty string argument.

Introduced 5 years ago due to variable expansion being committed, the variable
in question is no longer required.  Noticed by Dr. Thomas Orgis.

(jperkin)

2020-03-26 07:02:58 UTC MAIN commitmail json YAML

doc: Updated pkgtools/pkglint to 20.1.1

(rillig)

2020-03-26 07:02:44 UTC MAIN commitmail json YAML

2020-03-26 06:34:00 UTC MAIN commitmail json YAML

net/haproxy: re-add the missing distinfo lines

These lines have been accidentally removed on 2016-03-04 when haproxy was
updated to 1.6.4 and the distinfo file had been generated without the
option "deviceatlas".

Apparently nobody missed this package option in the last 4 years though,
at least there is no problem report about this.

Detected by an experimental pkglint check that is not yet reliable enough
to be put into production.

(rillig)

2020-03-26 02:39:18 UTC MAIN commitmail json YAML

Ignore portability when patching configure already

(joerg)

2020-03-26 02:39:01 UTC MAIN commitmail json YAML

2020-03-26 02:38:39 UTC MAIN commitmail json YAML

2020-03-26 02:38:12 UTC MAIN commitmail json YAML

Ignore portability of configure.in when patching configure.

(joerg)

2020-03-26 02:37:57 UTC MAIN commitmail json YAML

2020-03-26 02:37:38 UTC MAIN commitmail json YAML

2020-03-26 02:37:14 UTC MAIN commitmail json YAML

2020-03-26 02:36:27 UTC MAIN commitmail json YAML

2020-03-26 02:36:02 UTC MAIN commitmail json YAML

2020-03-26 02:35:32 UTC MAIN commitmail json YAML

2020-03-26 02:34:52 UTC MAIN commitmail json YAML

2020-03-26 02:34:18 UTC MAIN commitmail json YAML

Ignore portability issues in file normally not used

(joerg)

2020-03-26 02:33:57 UTC MAIN commitmail json YAML

2020-03-26 02:33:34 UTC MAIN commitmail json YAML

2020-03-26 02:33:15 UTC MAIN commitmail json YAML

Ignore portability when configure is already patched

(joerg)

2020-03-26 02:32:43 UTC MAIN commitmail json YAML

Fix const correctness for C++ compliant string.h

(joerg)

2020-03-26 02:32:13 UTC MAIN commitmail json YAML

2020-03-26 02:31:57 UTC MAIN commitmail json YAML

Ignore portability warning

(joerg)

2020-03-26 02:31:23 UTC MAIN commitmail json YAML

Increase resource limits due to Erlang's default allocations

(joerg)

2020-03-26 02:30:49 UTC MAIN commitmail json YAML

2020-03-26 02:30:27 UTC MAIN commitmail json YAML

2020-03-26 02:29:37 UTC MAIN commitmail json YAML

2020-03-26 02:27:42 UTC MAIN commitmail json YAML

Don't care about portability when configure is already patched

(joerg)

2020-03-26 02:27:21 UTC MAIN commitmail json YAML

Drop version for compatibility with C++17 STL implementations.

(joerg)

2020-03-26 02:26:51 UTC MAIN commitmail json YAML

2020-03-25 22:27:49 UTC MAIN commitmail json YAML

doc: Updated lang/zig to 0.5.0

(nia)

2020-03-25 22:27:20 UTC MAIN commitmail json YAML

2020-03-25 18:15:15 UTC MAIN commitmail json YAML

openjdk11: put back missing NetBSD i386 bootstrap checksums

Issue reported by John D. Baker on pkgsrc-users. These checksums were
lost during the last version update of this package.

(gutteridge)

2020-03-25 16:20:02 UTC MAIN commitmail json YAML

doc: Updated net/py-gandi.cli to 1.5

(riastradh)

2020-03-25 16:19:48 UTC MAIN commitmail json YAML

py-gandi.cli: update to 1.5

  1.5
  ---
  * Fixes #280: Problem with new record
  * Fixes #284: Manpage errors
  * Fixes #287: Problem with dnssec create with algorithm/flags

  1.4
  ---
  * Fixes #268: Drop support of click < 7.0
  * Drop support of python 2.6 and 3.3
  * Add coverage
  * Test python 3.7 and pypy in travis
  * PEP8

  1.3
  ---

  * Use pytest instead of nose
  * Add extra parameter in domain create
  * Add support of Python 3.7
  * Fixes #245: Add support of DNSSEC
  * Fixes #250: Drop support of Python < 3.3

  1.2
  ---

  * Add support for paas size s+ for creation/update
  * Fixes #232: Update 'gandi record update' command to allow filtering by name
  * Fix bug when attempting to migrate a vm which cannot be migrated
  * Only display DC closed warning if a date is set

  1.1
  ---

  * FR-SD5 is now the default datacenter.
  * Add new 'gandi dns update' command.
  * Fixes #228: Generate a user password at the creation of a VM
  * Improve wait for ssh connectivity after 'gandi vm create' command to handle ipv6
  * Fix a bug with 'gandi disk migrate' command not working with multiple datacenters choices
  * Improve documentation for generating username/apikey with Gandi V5

  1.0
  ----

  * New 'dns' namespace to manage DNS records/dnssec through LiveDNS API.
  * Add new 'gandi vm migrate' command.
  * Refactor internal click code usage. Remove hackish code to handle
    nested commands which was limited to only 1 nested level.
    - This change will break code of users which were using custom commands
      on top of Gandi CLI, To fix this you have to use the proper click syntax
      to declare a new group for your commands.
    - This change also remove the automatic listing of all namespace commands
      upon a typo or unknown/wrong command.
  * Fixes #224: DeprecationWarning makes tests fail with python 3.6.2

  0.22
  ----

  * Fixes #223: 'gandi setup' command error
  * Fixes #222: AttributeError during vm creation on a private vlan
  * Fixes tests for 'gandi deploy' and 'gandi status' commands

  0.21
  ----

  * Add new 'gandi disk migrate' command
  * Update 'gandi setup' command to ask for apikey for REST API
  * Handle deprecated images
    - Add a warning during 'gandi vm create' command
    - Display a * before image labels on 'gandi vm create' help
    - Display a /!\ DEPRECATED on 'gandi vm images' command
  * Fixes #220: gandi record update issues
    - Do not cast to int the id of the record, use the retrieve value
    - Handle both record syntax with 'IN' or not when parsing
    - Delete created zone if record.update call fail from xmlrpc API
  * Fixes #219: Can't remove disk snapshot profile
  * vm: delete: Fix delete when we reach the list limit
    - Fixed a bug when deleting a vm that wasn't listed in the first 500 results
      of gandi.iaas.list.
  * Fix issue when updating disk kernel with a kernel from another datacenter
    - CLI was proposing only kernels available on datacenter 1, but some kernels
      are available only on other datacenters, so we list everything for --kernel
      parameters, and for disk update command we add a new check if this kernel is
      available for this disk on this datacenter.
  * Add epilog to help messages to notify user about man documentation
  * Add one new verbose level for dumping data

  0.20
  ----

  * Add support for python3.6
  * Debian 8 is the new default VM image
  * FR-SD3 is the new default datacenter
  * Update 'gandi mail create' command to allow passing password as parameter
  * Update 'gandi certificate create' command: duration is now limited to 2 years
  * Update 'gandi ip create' command to fix bad units in help message
  * Fixes #182: 'gandi disk create' will detect datacenter when creating a new VM disk
  * Fixes #184: 'gandi disk list' can now filter for attach/detach state
  * Fixes #192: 'gandi certificate info' now still works after 500 certificates
  * Fixes #201: 'gandi certificate export' was duplicating intermediate certificate
  * Fixes #211: 'gandi paas deploy' tests should work again when using git commands
  * Fixes a bug with options not using corrected value when deprecated
  * Update unixpipe module to remove usage of posix and non portable imports

(riastradh)

2020-03-25 16:19:26 UTC MAIN commitmail json YAML

Fix typo in cce.  (It's CTYPE=..., not ctype=...!)

(riastradh)

2020-03-25 16:18:23 UTC MAIN commitmail json YAML

doc: Updated net/terraform-provider-aws to 2.54.0

(riastradh)

2020-03-25 14:49:38 UTC MAIN commitmail json YAML

kid3: fix build by explicitly buildlinking libvorbis

(wiz)

2020-03-25 14:15:06 UTC MAIN commitmail json YAML

erlang-doc: fix PLIST misalignment from 22.2.8 version bump

(gutteridge)

2020-03-25 13:01:58 UTC MAIN commitmail json YAML

doc: Updated audio/din to 45

(fox)

2020-03-25 13:01:02 UTC MAIN commitmail json YAML

audio/din: Updates to 45

Changes since 44.0.2:

DIN Is Noise 45 @ Chennai, India
! fixed internal bug in noise generator !
+ results in improved noise :)
+ keys can trigger notes or noise on keyboard-keyboard
+ ie keys from computer keyboard or MIDI keyboard
+ press ENTER to toggle
- removed black/white notes display from MIDI keyboard input
+ colored notes displayed instead
+ balls can trigger notes or noise in Mondrian
+ Select balls
+ and Menu > Balls Triggers Note <> Ball Triggers Noise
+ or press ENTER
+ if there is no selection, all balls will trigger note (default)or noise

Approved by: jperkin@

(fox)

2020-03-25 11:47:23 UTC MAIN commitmail json YAML

2020-03-25 11:30:59 UTC MAIN commitmail json YAML

doc: Updated devel/py-xdg to 0.26

(nia)

2020-03-25 11:30:48 UTC MAIN commitmail json YAML

py-xdg: Update to 0.26

PyXDG 0.26; February 2018

    The primary source of release files is now PyXDG on PyPI
    IconTheme: Add support for Scale and ScaledDirectories keys.
    DesktopEntry: New method findTryExec()
    Menu: More efficient processing of filter rules by building a Python AST
    Mime: Prefer the first mimetype found for a file extension, instead of the last
    Mime: Allow unknown magic-matching rule formats
    Mime: GlobDB has new methods first_match and all_matches for matching paths
    Mime: New function get_extensions to get extensions for a given mime type
    Mime: Fix MagicDB.match_data crashing with an unknown 'possible' mimetype
    Mime: Correctly handle __NOMAGIC__ rule removing previous magic matches
    Menu: XML parsing reworked
    BaseDirectory: More secure creation of a fallback runtime directory with get_runtime_dir(strict=False)
    Various miscellaneous improvements to testing.

(nia)

2020-03-25 11:18:44 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Perl-Tidy to 20200110

(nia)

2020-03-25 11:18:31 UTC MAIN commitmail json YAML

p5-Perl-Tidy: Update to 20200110

## 2020 01 10

- This release adds a flag to control the feature RT#130394 (allow short nested blocks)
  introduced in the previous release.  Unfortunately that feature breaks
  RPerl installations, so a control flag has been introduced and that feature is now
  off by default.  The flag is:

  --one-line-block-nesting=n, or -olbn=n, where n is an integer as follows:

  -olbn=0 break nested one-line blocks into multiple lines [new DEFAULT]
  -olbn=1 stable; keep existing nested-one line blocks intact [previous DEFAULT]

  For example, consider this input line:

    foreach (@list) { if ($_ eq $asked_for) { last } ++$found }

  The new default behavior (-olbn=0), and behavior prior to version 20191203, is to break it into multiple lines:

    foreach (@list) {
if ( $_ eq $asked_for ) { last }
++$found;
    }

  To keep nested one-line blocks such as this on a single line you can add the parameter -olbn=1.

- Fixed issue RT#131288: parse error for un-prototyped constant function without parenthesized
  call parameters followed by ternary.

- Fixed issue RT#131360, installation documentation.  Added a note that the binary
  'perltidy' comes with the Perl::Tidy module. They can both normally be installed with
  'cpanm Perl::Tidy'

(nia)

2020-03-25 11:16:13 UTC MAIN commitmail json YAML

doc: Note start of the freeze for pkgsrc-2020Q1.

(jperkin)

2020-03-25 11:11:05 UTC MAIN commitmail json YAML

doc: Updated www/p5-CGI-Simple to 1.25

(nia)

2020-03-25 11:07:21 UTC MAIN commitmail json YAML

p5-CGI-Simple: Update to 1.25

1.25  2020-02-10 MANWAR
      - Merged PR #9, thanks @ktat.

1.24  2020-02-07 MANWAR
      - Addressed issue RT #125383 raised by SREZIC.

1.23  2020-02-06 MANWAR
      - Fixed issue RT #131590, samesite parameter can be "None" as well.

(nia)

2020-03-25 11:06:19 UTC MAIN commitmail json YAML

notmuch: Reuse GPGME_GPG variable rather than inventing our own.

Not only cleaner, but also fixes a build issue seen on macOS likely related to
variable definition ordering, where GPG was not set correctly and ended up
trying to use a non-existent "gpg" command.  This change has the added benefit
of using the full path to the gpg binary instead of relying on PATH.

(jperkin)

2020-03-25 10:56:26 UTC MAIN commitmail json YAML

doc: Updated converters/libabw to 0.1.3

(nia)

2020-03-25 10:56:09 UTC MAIN commitmail json YAML

libabw: Update to 0.1.3

libabw 0.1.3

- Fix a memory access error found by oss-fuzz.
- Configure with --disable-werror by default.
- Disable expanding entities by XML parser as a vulnerability
  prevention measure. Abiword-saved documents do not contain entities,
  so there is no difference in behavior.

libabw 0.1.2

- Fix several issues identified by Coverity.
- Parse paragraph and cell borders.
- Improve parsing of lists.
- Fix build with boost >= 1.59.
- Make the output of abw2* --help more compatible with help2man.
- Fix various problems when parsing broken files found by oss-fuzz.
- Require C++11 for build.
- Parse fields. (tdf#74466)
- Parse floating (not inline) images. (tdf#74463)
- Parse text boxes.
- Drop outdated MSVC project files.
- Set minimal width/height of inline images (which usually do not have
  dimensions set in the file) to 1 inch. (tdf#74462)

(nia)

2020-03-25 10:44:32 UTC MAIN commitmail json YAML

doc: Updated converters/libmwaw to 0.3.16

(nia)

2020-03-25 10:44:04 UTC MAIN commitmail json YAML

libmwaw: Update to 0.3.16

- remove the QuarkXPress parser (must be in libqxp)
- retrieve the annotation in MsWord 5 document,
- try to better understand RagTime 5-6 document:
  + retrieve document with one spreasheet as
    spreadsheet,
  + retrieve character attachments and footnotes
    as comments
- add a parser for QuarkXPress v1-2 files
- small changes when converting MacWrite II/pro files
- transform bitmap in PNG if zlib is avalaible
- add a parser for Fractal Design/MetaCreations/Corel Painter v1-v10
- modernize the code(unique_ptr, ...)
- fix some fuzzer problems
- add a parser for Microsoft Multiplan v1.11 mac files
- Claris Resolve/Wingz: try to retrieve's the graphic, textbox, ...
- require c++-11 + modernize the code,
- AppleWorks/ClarisWorks: try to retrieve more data in dabase's file
  (the pictures, replace enum id by their values, the calculation's formula).
- PowerPoint: correct a problem with bullet's encoding in v3-v4 Mac's files,
- Microsoft Word: try to retrieve some metadata.
- correct many fuzzing's errors,
- FreeHand's parser: correct some minor errors.
- add a parser to read Windows PowerPoint 95 files
- add some parsers to read Mac PowerPoint v4 files and Windows PowerPoint v2,v4 files
- add some parsers to read Mac PowerPoint v1-v3 files and Windows PowerPoint v3 files
- accept to read structured input containing a DataFork's stream and a RsrcInfo's stream
  (or the three following streams DataFork,InfoFork,RsrcFork)
- modified the converters to create such an input when they find a rsrc fork...
- allow to compile with clang++ using arguments:
  "-Weverything -Wno-padded"
- allow to compile with clang++ using arguments:
  "-Weverything -Wno-padded -Wno-old-style-cast -Wno-covered-switch-default"
- fix some problems found by afl
- add a parser to Cricket Draw v1.1.1 files,
- add a parser for MouseWrite files
- add a parser for MaxWrite files
- add a parser to Cricket Draw v1.0.1 files,
- add a class to store transformation: MWAwTransformation
- add a parser for Aldus FreeHand version 1 and 2 files
  which are not converted by libfreehand's library.
  It seems logical to move back someday this parser
  in libfreehand library...
- ApplePict: read uncompressed Quicktime opcode
- ClarisWorks/AppleWorks: retrieve some metadata
- all: generate real date/time fields...
- all: improve the checking of formats when parsing a file
- RagTime v5-v6 parser: try to retrieve the embedded spreadsheets
  + begin to understand the hierarchical structures which store
    a chart (but not the meaning of each field),
- ClarisWorks/AppleWorks: find a new structure in the file's header
  (which could prevent to convert some database's file),
- BeagleWorks/GreatWorks/Word Perfect Works: retrieve the picture's
  field in a database
- all: improve a little the methods which create spreadsheets,
- all: make some constructors explicit.
- add a parser for Style documents(at least v1.6 and v1.9)
- add file signatures for FullPaint documents which have the same format as MacPaint..
- add a parser for Pixel Paint documents

(nia)

2020-03-25 10:24:16 UTC MAIN commitmail json YAML

doc: Updated converters/libwpg to 0.3.3

(nia)

2020-03-25 10:24:05 UTC MAIN commitmail json YAML

libwpg: Update to 0.3.3

0.3.2 - 0.3.3

- Drop obsolete MSVC project files.
- Use --disable-werror instead of --enable-werror as configure default.
- Fix parsing of 24-bit RGB and 32-bit RGBA bitmaps in WPG2 files. (tdf#78105)

0.3.1 - 0.3.2

- Require C++11 for build.
- Fix a couple of issues found by oss-fuzz.
- Improve performance of reading image data from WPG2 files.
- Various minor code cleanups.

(nia)

2020-03-25 10:12:44 UTC MAIN commitmail json YAML

doc: Updated converters/libwps to 0.4.10

(nia)

2020-03-25 10:12:34 UTC MAIN commitmail json YAML

libwps: Update to 0.4.10

0.4.9 -> 0.4.10
- QuattroPro: add parser of .qwp files
- all: support complex encoding...

0.4.8 -> 0.4.9
- QuattroPro: add parser to .wb3 files,
- Multiplan: add parser to DOS v1-v3 files.

0.4.7 -> 0.4.8
- charts: try to retrieve charts in .wk*, .wq* files,
- QuattroPro: add parser to .wb[12] files,
- switch to c++11,
- fuzzing: correct many problems,

0.4.6 -> 0.4.7
- correct many problem detected with fuzzing,
- QuattroPro: correct reading of wq1 formula with references.

0.4.5 -> 0.4.6
- Lotus 123: add support to read SmartSuite 98's files,
- Lotus: allow to convert file with a password.

0.4.4 -> 0.4.5
- Lotus 123: add support to read SmartSuite 97's files,
- implement LICS conversion correctly.

0.4.3 -> 0.4.4
- Lotus .wk3, .wk4: retrieve more formattings,
- Lotus .wk3: add support to read .fm3 file,
- MsWorks v4: retrieve page's embedded objects.

(nia)

2020-03-25 10:00:55 UTC MAIN commitmail json YAML

doc: Updated converters/libwpd to 0.10.3

(nia)

2020-03-25 10:00:43 UTC MAIN commitmail json YAML

libwpd: Update to 0.10.3

0.10.2 - 0.10.3
- Drop outdated MSVC project files.
- Fix a couple of issues found by oss-fuzz.
- Fix some potential memory leaks.
- Use a bit less memory when parsing WP5/WP6 documents with images.
- Switch from --enable-werror to --disable-werror as configure default.
- Fix a potential out-of-bounds data access. (rhbz#1643752)

0.10.1 - 0.10.2
- Require C++11 for build.
- Fix various crashes, leaks and hangs when reading damaged files found
  by oss-fuzz.

(nia)

2020-03-25 07:47:10 UTC MAIN commitmail json YAML

regress/infra-unittests: add test for not extracting certain files

(rillig)

2020-03-25 07:46:19 UTC MAIN commitmail json YAML

2020-03-25 07:13:52 UTC MAIN commitmail json YAML

inputmethod/ja-freewnn-lib: fix "array subscript has type 'char'"

(rillig)

2020-03-25 06:48:22 UTC MAIN commitmail json YAML

doc/TODO: + llvm-10.0, retroarch-1.8.5.

(wiz)

2020-03-25 06:44:07 UTC MAIN commitmail json YAML

py-certbot: add missing PLIST update

(adam)

2020-03-24 20:43:18 UTC MAIN commitmail json YAML

Don't use normal memory size limits with GHC for module builds.

(joerg)

2020-03-24 20:42:23 UTC MAIN commitmail json YAML

Ensure header is build first, not everything using it is part of the
library.

(joerg)

2020-03-24 20:41:58 UTC MAIN commitmail json YAML

datasize limits for VMs should also be matched by VM limits.

(joerg)

2020-03-24 20:41:18 UTC MAIN commitmail json YAML

Loosen data/address space limits. Apply it consistently during the build.

(joerg)

2020-03-24 20:40:16 UTC MAIN commitmail json YAML

Loosen data/address space limit. Allow dropping extra libraries like
libgcc_s.so.1 into files/ and use LD_LIBRARY_PATH consistently.

(joerg)

2020-03-24 20:38:40 UTC MAIN commitmail json YAML

2020-03-24 20:38:03 UTC MAIN commitmail json YAML

Drop webkit check from GCC, we don't care about such ancient versions
here and it actually breaks with recent clang versions.

(joerg)

2020-03-24 20:34:31 UTC MAIN commitmail json YAML

2020-03-24 19:45:47 UTC MAIN commitmail json YAML

qt4-libs: Deal with non-portable unused files

After extracting, remove a few files that have non-portable shell
constructs.  Both qt4-libs and qt4-tools build fine without them, so
they are obviously (slight leap) not used by the build.

(Someday, when we have a standard approach for this, this code can be
updated, but today it's important that this build.)

(gdt)

2020-03-24 18:35:16 UTC MAIN commitmail json YAML

doc: Updated sysutils/ruby-facter to 4.0.12

(taca)

2020-03-24 18:34:52 UTC MAIN commitmail json YAML

sysutils/ruby-facter: update to 4.0.12

Update ruby-facter to 4.0.12.

No release notes available.

(taca)

2020-03-24 18:30:45 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-thor to 1.0.1

(taca)

2020-03-24 18:30:19 UTC MAIN commitmail json YAML

devel/ruby-thor: update to 1.0.1

Update ruby-thor to 1.0.1.

# 1.0.1
* Fix thor when `thor/base` and `thor/group` are required without `thor.rb`.
* Handle relative source path in `create_link`.

# 1.0.0
* Drop support to Ruby 1.8 and 1.9.
* Deprecate relying on default `exit_on_failure?`.
  In preparation to make Thor commands exit when there is a failure we are deprecating
  defining a command without defining what behavior is expected when there is a failure.

  To fix the deprecation you need to define a class method called `exit_on_failure?` returning

  `false` if you want the current behavior or `true` if you want the new behavior.
* Deprecate defining an option with the default value using a different type as defined in the option.
* Allow options to be repeatable. See #674.

(taca)

2020-03-24 18:28:11 UTC MAIN commitmail json YAML

doc: Updated sysutils/puppet to 6.14.0

(taca)

2020-03-24 18:27:42 UTC MAIN commitmail json YAML

sysutils/puppet: update to 6.14.0

Update puppet to 6.14.0.

Changes are too many to write here.

(taca)

2020-03-24 18:26:21 UTC MAIN commitmail json YAML

doc: Updated sysutils/ruby-puppet-resource_api to 1.8.12

(taca)

2020-03-24 18:25:55 UTC MAIN commitmail json YAML

sysutils/ruby-puppet-resource_api: update to 1.8.12

Update ruby-puppet-resource_api to 1.8.12.

## [1.8.7](https://github.com/puppetlabs/puppet-resource_api/tree/1.8.7) (2019-09-11)
[Full Changelog](https://github.com/puppetlabs/puppet-resource_api/compare/1.8.6...1.8.7)

**Fixed bugs:**

- \(FM-8092\) Fix caching scope of transport schemas [\#200](https://github.com/puppetlabs/puppet-resource_api/pull/200) ([DavidS](https://github.com/DavidS))

**Merged pull requests:**

- \(FM-8485\) - Addition of CODEOWNERS file [\#203](https://github.com/puppetlabs/puppet-resource_api/pull/203) ([david22swan](https://github.com/david22swan))
- \(MODULES-9258\) Improve referencing and add summary [\#199](https://github.com/puppetlabs/puppet-resource_api/pull/199) ([MaxMagill](https://github.com/MaxMagill))
- \(maint\) Pin both Jruby cells to use `dist: trusty` [\#197](https://github.com/puppetlabs/puppet-resource_api/pull/197) ([da-ar](https://github.com/da-ar))

## [v1.8.6](https://github.com/puppetlabs/puppet-resource_api/tree/v1.8.6) (2019-07-01)
[Full Changelog](https://github.com/puppetlabs/puppet-resource_api/compare/1.8.5...v1.8.6)

**Implemented enhancements:**

- \(SERVER-2470\) list\_all\_transports implementation for puppetserver [\#187](https://github.com/puppetlabs/puppet-resource_api/pull/187) ([DavidS](https://github.com/DavidS))

**Fixed bugs:**

- \(MODULES-9428\) make the composite namevar implementation usable [\#174](https://github.com/puppetlabs/puppet-resource_api/pull/174) ([DavidS](https://github.com/DavidS))

**Merged pull requests:**

- Merge 1.6.x [\#194](https://github.com/puppetlabs/puppet-resource_api/pull/194) ([da-ar](https://github.com/da-ar))
- \(maint\) test fixes [\#193](https://github.com/puppetlabs/puppet-resource_api/pull/193) ([DavidS](https://github.com/DavidS))
- \(packaging\) Revert to version '1.8.5' \[no-promote\] [\#192](https://github.com/puppetlabs/puppet-resource_api/pull/192) ([gimmyxd](https://github.com/gimmyxd))
- \(packaging\) Bump to version '1.9.0' \[no-promote\] [\#191](https://github.com/puppetlabs/puppet-resource_api/pull/191) ([gimmyxd](https://github.com/gimmyxd))

## [1.8.5](https://github.com/puppetlabs/puppet-resource_api/tree/1.8.5) (2019-06-24)
[Full Changelog](https://github.com/puppetlabs/puppet-resource_api/compare/1.8.4...1.8.5)

**Fixed bugs:**

- \(maint\) Mergeup 1.6.x: FM-7839, desc/docs cleanup [\#186](https://github.com/puppetlabs/puppet-resource_api/pull/186) ([DavidS](https://github.com/DavidS))

**Merged pull requests:**

- \(maint\) reduce debug noise caused by `feature?` [\#189](https://github.com/puppetlabs/puppet-resource_api/pull/189) ([da-ar](https://github.com/da-ar))
- \(FM-8265\) Merge branch '1.6.x' into master [\#188](https://github.com/puppetlabs/puppet-resource_api/pull/188) ([da-ar](https://github.com/da-ar))
- \(maint\) test fixes [\#185](https://github.com/puppetlabs/puppet-resource_api/pull/185) ([DavidS](https://github.com/DavidS))
- \(maint\) make test order really random [\#175](https://github.com/puppetlabs/puppet-resource_api/pull/175) ([DavidS](https://github.com/DavidS))
- \(packaging\) Update reported version to 1.8.4 \[no-promote\] [\#171](https://github.com/puppetlabs/puppet-resource_api/pull/171) ([gimmyxd](https://github.com/gimmyxd))

## [1.8.4](https://github.com/puppetlabs/puppet-resource_api/tree/1.8.4) (2019-06-12)
[Full Changelog](https://github.com/puppetlabs/puppet-resource_api/compare/1.8.3...1.8.4)

**Implemented enhancements:**

- \(FM-7839\) Implement `to\_json` method for ResourceShim [\#168](https://github.com/puppetlabs/puppet-resource_api/pull/168) ([da-ar](https://github.com/da-ar))

**Fixed bugs:**

- \(maint\) backport minor fixes from master to 1.6.x [\#184](https://github.com/puppetlabs/puppet-resource_api/pull/184) ([DavidS](https://github.com/DavidS))
- \(PUP-9747\) Relax validation for bolt [\#182](https://github.com/puppetlabs/puppet-resource_api/pull/182) ([DavidS](https://github.com/DavidS))
- \(maint\) Add to\_hash function to resourceShim for compatibility [\#180](https://github.com/puppetlabs/puppet-resource_api/pull/180) ([da-ar](https://github.com/da-ar))
- \(maint\) implement `desc`/`docs` fallback [\#177](https://github.com/puppetlabs/puppet-resource_api/pull/177) ([DavidS](https://github.com/DavidS))

**Closed issues:**

- ResourceShim should respond to to\_hash [\#179](https://github.com/puppetlabs/puppet-resource_api/issues/179)

**Merged pull requests:**

- \(maint\) Merge 1.6.x to master  [\#183](https://github.com/puppetlabs/puppet-resource_api/pull/183) ([mihaibuzgau](https://github.com/mihaibuzgau))
- \(maint\) Fixup Gemfile for JRuby 1.7 installs [\#173](https://github.com/puppetlabs/puppet-resource_api/pull/173) ([da-ar](https://github.com/da-ar))
- \(maint\) test cleanups [\#172](https://github.com/puppetlabs/puppet-resource_api/pull/172) ([DavidS](https://github.com/DavidS))

## [1.8.3](https://github.com/puppetlabs/puppet-resource_api/tree/1.8.3) (2019-04-12)
[Full Changelog](https://github.com/puppetlabs/puppet-resource_api/compare/1.8.2...1.8.3)

**Fixed bugs:**

- \(FM-7867\) Always throw when transport schema validation fails [\#169](https://github.com/puppetlabs/puppet-resource_api/pull/169) ([da-ar](https://github.com/da-ar))

**Merged pull requests:**

- \(PA-2496\) Bump version and remove v from version number [\#170](https://github.com/puppetlabs/puppet-resource_api/pull/170) ([mihaibuzgau](https://github.com/mihaibuzgau))

## [1.8.2](https://github.com/puppetlabs/puppet-resource_api/tree/1.8.2) (2019-04-10)
[Full Changelog](https://github.com/puppetlabs/puppet-resource_api/compare/v1.6.4...1.8.2)

**Merged pull requests:**

- \(packaging\) Update reported version to 1.8.2 \[no-promote\] [\#167](https://github.com/puppetlabs/puppet-resource_api/pull/167) ([mihaibuzgau](https://github.com/mihaibuzgau))

## [v1.6.4](https://github.com/puppetlabs/puppet-resource_api/tree/v1.6.4) (2019-03-25)
[Full Changelog](https://github.com/puppetlabs/puppet-resource_api/compare/v1.8.1...v1.6.4)

**Merged pull requests:**

- Add `implementations` to reserved bolt keywords [\#165](https://github.com/puppetlabs/puppet-resource_api/pull/165) ([DavidS](https://github.com/DavidS))
- \(MAINT\) Bump version [\#164](https://github.com/puppetlabs/puppet-resource_api/pull/164) ([sebastian-miclea](https://github.com/sebastian-miclea))
- Release prep for v1.8.1 [\#163](https://github.com/puppetlabs/puppet-resource_api/pull/163) ([DavidS](https://github.com/DavidS))

# Changelog

All significant changes to this repo will be summarized in this file.

## [v1.8.1](https://github.com/puppetlabs/puppet-resource_api/tree/v1.8.1) (2019-03-13)
[Full Changelog](https://github.com/puppetlabs/puppet-resource_api/compare/v1.8.0...v1.8.1)

**Fixed bugs:**

- \(maint\) Fixes sensitive transport values where absent keys are wrapped [\#161](https://github.com/puppetlabs/puppet-resource_api/pull/161) ([da-ar](https://github.com/da-ar))

**Merged pull requests:**

- 1.6.x mergeup [\#162](https://github.com/puppetlabs/puppet-resource_api/pull/162) ([DavidS](https://github.com/DavidS))
- \(FM-7829\) Update README with transports examples [\#160](https://github.com/puppetlabs/puppet-resource_api/pull/160) ([willmeek](https://github.com/willmeek))
- \(maint\) update release docs [\#159](https://github.com/puppetlabs/puppet-resource_api/pull/159) ([DavidS](https://github.com/DavidS))
- Improve travis cells and testing [\#145](https://github.com/puppetlabs/puppet-resource_api/pull/145) ([DavidS](https://github.com/DavidS))

## [v1.8.0](https://github.com/puppetlabs/puppet-resource_api/tree/v1.8.0) (2019-02-26)
[Full Changelog](https://github.com/puppetlabs/puppet-resource_api/compare/v1.7.0...v1.8.0)

**Implemented enhancements:**

- \(FM-7695\) Transports - the remote content framework [\#157](https://github.com/puppetlabs/puppet-resource_api/pull/157) ([DavidS](https://github.com/DavidS))
- \(FM-7698\) implement `sensitive:true` handling [\#156](https://github.com/puppetlabs/puppet-resource_api/pull/156) ([da-ar](https://github.com/da-ar))
- \(PDK-1271\) Allow a transport to be wrapped and used like a device [\#155](https://github.com/puppetlabs/puppet-resource_api/pull/155) ([da-ar](https://github.com/da-ar))
- \(FM-7701\) Support device providers when using Transport Wrapper [\#154](https://github.com/puppetlabs/puppet-resource_api/pull/154) ([da-ar](https://github.com/da-ar))
- \(FM-7726\) implement `context.transport` to provide access [\#152](https://github.com/puppetlabs/puppet-resource_api/pull/152) ([DavidS](https://github.com/DavidS))
- \(FM-7674\) Allow wrapping a Transport in a legacy Device [\#149](https://github.com/puppetlabs/puppet-resource_api/pull/149) ([da-ar](https://github.com/da-ar))
- \(FM-7600\) Add Transport.connect method [\#148](https://github.com/puppetlabs/puppet-resource_api/pull/148) ([da-ar](https://github.com/da-ar))

**Fixed bugs:**

- \(FM-7690\) Fix transports cache to be environment aware [\#151](https://github.com/puppetlabs/puppet-resource_api/pull/151) ([da-ar](https://github.com/da-ar))

**Merged pull requests:**

- \(FM-7726\) cleanups for the transport  [\#153](https://github.com/puppetlabs/puppet-resource_api/pull/153) ([DavidS](https://github.com/DavidS))
- \(FM-7691,FM-7696\) refactoring definition handling in contexts [\#150](https://github.com/puppetlabs/puppet-resource_api/pull/150) ([DavidS](https://github.com/DavidS))

## [v1.7.0](https://github.com/puppetlabs/puppet-resource_api/tree/v1.7.0) (2019-01-07)
[Full Changelog](https://github.com/puppetlabs/puppet-resource_api/compare/v1.6.3...v1.7.0)

**Implemented enhancements:**

- \(maint\) Validate Type Schema [\#142](https://github.com/puppetlabs/puppet-resource_api/pull/142) ([da-ar](https://github.com/da-ar))

**Merged pull requests:**

- \(maint\) Bundler 2.0 dropped support for Ruby versions \< 2.2 [\#147](https://github.com/puppetlabs/puppet-resource_api/pull/147) ([da-ar](https://github.com/da-ar))
-  \(FM-7597\) RSAPI Transport register function [\#146](https://github.com/puppetlabs/puppet-resource_api/pull/146) ([da-ar](https://github.com/da-ar))
- \(packaging\) Update version to 1.7.0 [\#144](https://github.com/puppetlabs/puppet-resource_api/pull/144) ([branan](https://github.com/branan))

## [v1.6.3](https://github.com/puppetlabs/puppet-resource_api/tree/v1.6.3) (2018-12-11)
[Full Changelog](https://github.com/puppetlabs/puppet-resource_api/compare/v1.6.2...v1.6.3)

**Closed issues:**

- Trying to understand stubbing in the examples [\#136](https://github.com/puppetlabs/puppet-resource_api/issues/136)

**Merged pull requests:**

- \(packaging\) Update version to 1.6.3 [\#143](https://github.com/puppetlabs/puppet-resource_api/pull/143) ([branan](https://github.com/branan))
- Move parameter and property logic to separate classes [\#140](https://github.com/puppetlabs/puppet-resource_api/pull/140) ([bpietraga](https://github.com/bpietraga))
- \(maint\) Predeclare Puppet module before ResourceApi [\#139](https://github.com/puppetlabs/puppet-resource_api/pull/139) ([caseywilliams](https://github.com/caseywilliams))
- \(maint\) minor fix to make data\_type\_handling change work [\#138](https://github.com/puppetlabs/puppet-resource_api/pull/138) ([DavidS](https://github.com/DavidS))
- \(maint\) extract data type handling code [\#137](https://github.com/puppetlabs/puppet-resource_api/pull/137) ([bpietraga](https://github.com/bpietraga))
- Release prep for v1.6.2 [\#135](https://github.com/puppetlabs/puppet-resource_api/pull/135) ([DavidS](https://github.com/DavidS))

(taca)

2020-03-24 18:25:48 UTC MAIN commitmail json YAML

doc: Updated mythes, ncdu

(nia)

2020-03-24 18:24:01 UTC MAIN commitmail json YAML

doc: Updated sysutils/ruby-chef to 15.8.23

(taca)

2020-03-24 18:21:50 UTC MAIN commitmail json YAML

doc: Updated sysutils/ruby-serverspec to 2.41.5

(taca)

2020-03-24 18:21:24 UTC MAIN commitmail json YAML

sysutils/ruby-serverspec: update to 2.41.5

Update ruby-serverspec to 2.41.5.

No release notes available.

(taca)

2020-03-24 18:20:59 UTC MAIN commitmail json YAML

ncdu: Update to 1.14.2

1.14.2 - 2020-02-10
- Fix compilation with GCC 10 (-fno-common)
- Fix minor display issue when scanning 10M+ files
- Slightly reduce memory usage for hard link detection

(nia)