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 (1m)  pkgsrc-2024Q1 (6d)  pkgsrc-2023Q4 (53d)  pkgsrc-2023Q2 (85d)  pkgsrc-2023Q3 (164d) 

2024-05-23 16:44:01 UTC Now

2021-05-12 08:42:42 UTC MAIN commitmail json YAML

py-sympy: updated to 1.8

1.8:

Backwards compatibility breaks and deprecations

Please manually add any backwards compatibility breaks or deprecations here, in addition to the automatic listing below.

assumptions

AskHandler(), register_handler() and remove_handler() are deprecated. Handler now must be multipledispatch instance.
parsing

Parsing of "Q" returns AssumptionKeys instance in assumptions module. This means that sympify("Q") will no longer return a symbol.
Changes

assumptions

Q.infinite now correctly evaluates to True for oo, -oo, and zoo.

Assumption predicates now correctly evaluates to None for S.NaN.

Relational objects do not need to be wrapped by Q.is_true to be asked or refined anymore

Q.is_true wrapping over AppliedPredicate now just return the argument.

refine arg(x) when x is real and nonzero

assumptions/relation module is introduced. This module implements binary relation as predicate.

AskHandler(), register_handler() and remove_handler() are deprecated. Handler now must be multipledispatch instance.

Predicate now uses a single handler which is multipledispatch instance.

Predicate can now take multiple arguments.

Predicate("...") now returns UndefinedPredicate instance. To define a predicate, you must make a subclass of Predicate.

calculus

Using maximum with a piecewise expression over a domain no longer fails due to a bug fix in Piecewise.as_expr_set_pairs.
codegen

allowing for multi-dimensional arrays as arguments/locals in c code generation

create_expand_pow_optimization is now customizable with respect to requirement on base.

Support flattening of elementwise additions of array expressions.

Fixes to array-expressions in order to properly work with ZeroArray and ZeroMatrix.

Fixing matrix expression recognition from array-expressions.

Minor fixes to the way the AST of array expressions is built

Add normalization of CodegenArrayDiagonal when it's nested with CodegenArrayPermuteDims and CodegenArrayContraction.

Increased support for the normalization of array expressions and permutations of indices.

parse_matrix_expression( ) is now able to parse traces of matrices.

combinatorics

Added a section to the permutation docs about containment in permutation groups.
concrete

Improved infinite summation capability by adding residue formula.
A bug leading to incorrect evaluation of a summation of an exponential function was fixed.
core

Fixed a bug in Pow._eval_nseries that added Order terms to exact expansions

Fixed a bug in Expr.round that could lead to infinite recursion in integrate.

Removed deprecated ClassRegistry

get_integer_part no longer has a threshold on the approximation to closest integer based on difference, allowing floor to give more accurate results for smaller evalf precisions also

A bug causing match to fail for expressions with different signs was fixed. Previously this resulted in solve raising an exception for some inputs.

Make S(0.0) == S.false return False

.refine() method is moved from Expr to Basic.
gcd correctly handles unevaluated Mul

Fixed a bug leading to infinite recursion in the old assumptions under evaluate(False).

Fixed _eval_is_zero() functionality when imaginary numbers are involved.

Kind classification of objects is introduced. This feature is experimental, and can be replaced or deleted in the future.
Make class Eq with sets as arguments work with simplify().

Fixed a few broken cases of expr.is_integer

functions

Implemented Riemann Xi function

riemaan xi function

Added nseries expansion for besselj and bessely

Fixed leading term calculation of sin functions to handle angles outside (-pi, pi)

Added aseries expansion to error functions

Changes _eval_nseries of Abs to no longer return a Piecewise

Modified _eval_nseries to handle infinity and added _eval_as_leading_term in floor and ceiling

Added Generalized Incomplete, Generalized Regularized and Central Beta functions

Added _eval_nseries support to sign

Fixed assumption is_algebraic for exponentials with rational multiples of I*pi to be True.
geometry

Fix AssertError for vertical tangent
Geometric entities with symbolic coordinates will not be printed in SVG.
integrals

Fixed a bug that led to RecursionError in integrals involving hyperbolic functions.

The heurisch integration method was made faster by improvements in the sparse linear systems solver.

A bug leading to incorrect results when integrating Piecewise expressions where a condition simplifies to True was fixed.

logic

simplify_logic faster in most cases, especially for larger expressions.
refine() on Boolean objects reduces them to true or false if the truth value can be determined.
matrices

Fixed a bug that led to the wrong derivative result in matrix expressions.

The eye and zero functions have been made much faster for large matrices.

Added two new functions upper_triangular and lower_triangular, that return upper and lower triangular parts of a matrix.

Minus one, integers, rational numbers multiplied with MatAdd is automatically distributed.

Added function returning Wilkinson matrix

Implemented Singular Value decomposition for matrices

Implemented Upper Hessenberg Decomposition for a matrix

eigenvals, eigenvects without radical solution will be returned as CRootOf
Added function to calculate Generalized Schur Complement for Block Matrices

Added functions to compute LDU, UDL and LU decompositions for Block Matrices

Fixed issues with dot product for Matrix.orthogonalize with complex vectors.

Fixed zero division issues for Matrix.QRdecomposition with zero columns coming first than nonzero columns.

Added a function to compute the permanent of a matrix
Changed behaviour of eq() of class DenseMatrix

det has a new option 'gauss-ge' which is much faster in many cases

ntheory

Added documentation of ecm and qs functions

Fixed a bug in the is_gaussian_prime function for python complex numbers (e.g. 1+1j).

primerange now accepts a single argument i.e., primerange(input_arg) is valid and is same as primerange(2, input_arg).

Added motzkin numbers

parsing

Fixed issue with parsing logarithm bases without curly braces
Fix parse_expr parsing of expressions with methods when using the implicit_multiplications transformation.

Include the transformed code in the error message when the evaluation in parse_expr fails.

Extended the LaTeX parser with support for complex conjugates (via \overline{...}).

Latex parser does not evaluate sqrt expressions anymore.

physics.continuum_mechanics

make beam module compute correctly internal forces
physics.optics

Fixed bugs related to basic operations on TWave
physics.quantum

WignerD now evaluates to KroneckerDelta in some cases.
physics.units

Fix bug when input argument to a function is an integer

Change default behavior for functions (all function arguments must be dimensionless by default)

sin, cos, tan, cot, sec, and csc functions may have a dimensionless or angle input argument

Exponents must now be dimensionless

Constants such as pi and E are now treated as dimensionless (raised exception previously)

Numbers with an imaginary component are now treated as dimensionless (raised exception previously)

Fixed a bug with derived units and dimensions in check_dimensions.

Fix bug in convert_to returning wrong units in some cases where the linear equation system between canonical units is unsolvable.

physics.vector

Fix documentation for v1pt_theory
Introduced new methods on ReferenceFrame: .orient_axis(), .orient_explicit(), .orient_body_fixed(), .orient_space_fixed(), and .orient_quaternion(). .orient() calls out to each new method and it is recommended to use the new methods.
Added .xreplace() to Vector Class.

Added .xreplace() to Dyadic Class.

Added .evalf() to Vector class

Added .evalf() to Dyadic class

plotting

Added handling for OverflowError (when plotting functions like exp(1/x)).
polys

Added internal representation as both dense and sparse matrix

Added docstrings for Domain Matrix class

Add zeros method to DomainMatrix

A new sparse implementation of DomainMatrix is added.

make is_disjoint strict so that inequalities evaluated with solve() return consistent results

The DomainMatrix class has moved from sympy.polys.domainmatrix to sympy.polys.matrices and should now be imported as from sympy.polys.matrices import DomainMatrix.

A new polys FiniteExtension domain is added.

numberfields: implemented new algorithm for primitive_element in case ex=True.
added boilerplate index method for FracField

Solved bug in Poly.replace

Solve a bug in polytools.degree.

Use assumption system instead of structural equality check in __bool__ method of Expression domain element (fixing cases where Poly(...).is_zero would incorrectly return False)

printing

The pretty printer was made faster when printing large sequences (e.g. tuples, sets etc).

Fixed a bug which led to latex printing error in singularity function expressions.

Replaced the Theano printer with an Aesara printer

Symbols with Unicode character names and no underscores, like ω0 now properly pretty print subscripts.

Fix the printing of the vertical bar in ImageSet, ConditionSet, and ComplexRegion so that it is the full height in the pretty and LaTeX printers.

Fix the tag for the degree of a root with a rational base in MathML output.

irrational powers are no longer printed with square root sign, they are printed as fractional powers

Allow spreading assignments across multiple symbols when printing multi-member objects.

Support various array constructor types when printing arrays to GLSL.

Fixes a bug when printing negative expressions to GLSL with operators printed as functions.

Support a custom 0 substitution for printing expressions representing various GLSL types.

make cxxcode correctly print the first argument of Min/Max functions

sets

Added basic denesting functionaility for sets of the form ConditionSet(x, Contains(x, ...)).

ConditionSet.contains(x) now returns False if x is not in the base set (even if its substitution into the condition will cause an error).

FiniteSet.evalf with a subs argument now does the substitution. Previously, the argument was ignored.

Add .simplify to FiniteSet.

Make 'is_subset' work for ProductSet

changed behavior of Rationals.contains(float) to indeterminate

tests modified to include new behavior

.evalf() precisions with x and FiniteSet(x) is same now.

simplify

Fix simplify calls sympify without rational parameter
TRmorrie now takes powers of cos terms into account
solvers

Fixed a bug in solve that expanded hyperbolic function constants to equivalent exp form.

Handle x**r=0 case in invert_complex

Fixed a bug in solveset, which led to infinite recursion for solving some expressions involving radicals.

The new sparse DomainMatrix implementation is used in linsolve to make it much faster when solving large sparse systems of linear equations.

Modified symbols sorting in solvers._solve_system to ensure solve and linsolve solve the same way

Added solver for 2nd order nonlinear autonomous ODE.

speed improvement in a substep of rsolve_hyper (when computing constant solutions to constant coefficient recurrences).

Fixed incorrect solutions from rsolve for higher order recurrences

stats

Refactory and simplification of sampling backends for random variables.

Expectation can now be calculated across multiple Uniform RVs evaluating to zero

Implemented Matrix Student's t-distribution

Fixed simplification bug in Stochastic Processes by introducing abstract Distribution class

API changed for StochasticProcess.distribution which now expects a timestamp argument instead of RandomIndexedSymbol object.

Implemented FlorySchulz Distribution

implemented LogCauchy Distribution

Implemented Logit-Normal probability distribution

Fixes cdf computation of Discrete random variables by using integer limits

Added 2 new distributions in frv_types.

added support for fundamental matrix for regular markov chains

Added support for multiple RandomIndexedSymbols in DiscreteMarkovChain

tensor

Introduced objects ArraySymbol and ArrayElement for array expressions equivalent to MatrixSymbol and MatrixElement in the matrix expression module.
shape() function is introduced in array module.
Add class ZeroArray for array expressions of zero-valued elements.

Make Array differentiation(derive_by_array) work with non sympy expressions.

Added tensordiagonal( ) function to perform diagonalization of array expressions.

Adding an array with any other type now consistently gives NotImplemented.
utilities

Added official support for using CuPy to GPU accelerate lambdify functions.

Added Replacer class to simplify the creation of replacement expressions with MatchPy.

Added tests for optional parameter in MatchPy patterns.

Added string printers for MatchPy-compatible wildcards in sympy.utilities.matchpy_connector

Added WildDot, WildPlus and WildStar classes to MatchPy connector. These classes correspond to the dot, dot-plut and dot-star expressions in regular expression, but operate on SymPy expression trees and are aware of associative and commutative properties, features supported through the MatchPy library.

minlex no longer accepts is_set or small arguments

minlex and least_rotation now accept key= arguments similar to sorted.

vector

Fixed a bug with integral over ImplicitRegion objects
other

Expanding documentation to include all class members with docstrings

(adam)

2021-05-12 08:32:16 UTC MAIN commitmail json YAML

py-mpmath: updated to 1.2.1

--1.2.0--
Released February 1, 2021

Features and optimizations:

* Support @ operator for matrix multiplication (Max Gaukler)
* Add eta() implementing the Dedekind eta function
* Optimized the python_trailing function (adhoc-king)
* Implement unary plus for matrices (Max Gaukler)
* Improved calculation of gram_index (p15-git-acc)

Compatibility:

* Enable sage backend by default only if SAGE_ROOT is set (Pauli Virtanen)
* Fix syntax warnings on CPython 3.8 (Sergey B Kirpichev)
* Changed version requirements to Python 2.7 and 3.4 or later
  (Sergey B Kirpichev)
* Improvements to the setup and test code (Sergey B Kirpichev)
* Fix sys.version comparisons for compatibility with Python 3.10 (Jakub Wilk)
* Fixes to Python2/3 compatibility for printing (Christian Clauss)

Bug fixes:

* Fix a possible division by zero in shanks() (Pascal Hebbeker)
* Fixed indexing errors in deHoog, Knight & Stokes inverse laplace
  transform algorithm (Kris Kuhlman)
* Corrected branch cuts of the elliprj() function in some cases
* Fix initialization of iv.matrix from non-interval matrix (Max Gaukler)
* Preserve function signatures in PrecisionManager (Viet Tran)
* Implemented float and complex conversions for ivmpf
  (Jonathan Warner)
* Fixed issue with scalar-matrix multiplication for interval matrices
  (Jonathan Warner)
* Fix estimation of quadrature error with multiple subintervals (Tom Minka)
* Fixed a problem with the defun decorators (Sergey B Kirpichev)
* Fix eigenvalue sorting by absolute value (Georg Ostrovski)

Cleanup:

* Documentation corrections (Paul Masson, S.Y. Lee)
* Remove inaccessible logic in fsum/fdot (Sergey B Kirpichev)
* Remove broken force_type option for matrix constructor (Max Gaukler)
* Fix text of the BSD license in LICENSE (Sergey B Kirpichev)
* Minor code cleanup (Fr辿d辿ric Chapoton)
* Removed old, unused code

(adam)

2021-05-12 08:14:56 UTC MAIN commitmail json YAML

doc/TODO: + libXfixes-6.0.0.

(wiz)

2021-05-12 08:13:54 UTC MAIN commitmail json YAML

py-parso: updated to 0.8.2

0.8.2 (2021-03-30)
- Various small bugfixes

(adam)

2021-05-12 08:12:10 UTC MAIN commitmail json YAML

py-numpy: updated to 1.20.3

1.20.3:
BUG: Correct ``datetime64`` missing type overload for ``datetime.date``
MAINT: Remove ``__all__`` in favor of explicit re-exports
BLD: Strip extra newline when dumping gfortran version on MacOS
BUG: fix segfault in object/longdouble operations
MAINT: Use towncrier build explicitly
MAINT: Relax certain integer-type constraints
MAINT: Remove unsafe unions and ABCs from return-annotations
MAINT: Allow more recursion depth for scalar tests.
BUG: Initialize the full nditer buffer in case of error
BLD: remove unnecessary flag ``-faltivec`` on macOS
MAINT, CI: treats _SIMD module build warnings as errors through...
BUG: for MINGW, threads.h existence test requires GLIBC > 2.12
BUG: Make changelog recognize gh- as a PR number prefix.
REL, DOC: Prepare for the NumPy 1.20.3 release.
BUG: Fix failing mypy test in 1.20.x.

(adam)

2021-05-12 08:04:15 UTC MAIN commitmail json YAML

Updated devel/py-logilab-common, devel/py-queuelib

(adam)

2021-05-12 08:03:51 UTC MAIN commitmail json YAML

py-queuelib: updated to 1.6.1

Version 1.6.1
-------------
No code changes with respect to 1.6
* Migrate CI to GitHub actions
* Fix release

Version 1.6
-----------
* Add peek support
* Remove py2 support
* Full test coverage

(adam)

2021-05-12 06:55:37 UTC MAIN commitmail json YAML

py-logilab-astng: mark as not for Python 2.7

(adam)

2021-05-12 06:55:06 UTC MAIN commitmail json YAML

py-logilab-common: updated to 1.8.1

2021-01-05 -- 1.8.1

* feature: add tox helpers to make pipy and debian releases
* fix: use TypedDict if python version > 3.8 only, otherwise use a Dict
      (TypedDict were imported from typing_extension 3.7.4, which is not
      available on debian buster)

2020-11-22 -- 1.8.0

* deprecation: add subclass to DeprecationWarning with structured
  information (TargetRenamedDeprecationWarning,
  TargetDeprecatedDeprecationWarning, TargetRemovedDeprecationWarning,
  TargetMovedDeprecationWarning)
* deprecation: add tests to ensure that DeprecationWarning target the
  correct line and the correct file
* deprecation: add types annotations
* declare that logilab.common ships type annotations (py.typed file)
* various bug fixes

2020-09-03 -- 1.7.3

* type: declare that logilab-common ship type annotations
* make the build reproducible
* fix(deprecation): stacked decorators breaks getting the real callable
  __name__ attribute
* fix: in some situation (using several deprecation functions), renaming
  deprecation utils failed to point to the correct new name and used random
  internal names of the module

2020-06-24 -- 1.7.2

* fix(deprecation): rollback to old class_deprecation being a class behavior

2020-06-11 -- 1.7.1

* fix: import error on re.Pattern with python < 3.7

2020-06-10 -- 1.7.0

* logilab-common requires python 3.6 now
* greatly improve our CI and migrate it to heptapod/gitlab-ci
* black the whole code base
* move test suit to pytest
* use check-manifest and fix related bugs in MANIFEST.in
* integrates flake8 and please the flake8 gods
* various fixes
* class_deprecation is not a class anymore
* pytest 5.4.2 breaks tests, pin to 5.4.1 for now

2020-05-25 -- 1.6.4

* fix: rollback to old class_deprecation being a class behavior
* fix: @functools.wraps broke callable_renamed, write a @lazy_wraps and
  use it everywhere in logilab.common.deprecation
* add docstring to LazyObject

2020-05-11 -- 1.6.3

* fix: metaclass conflict in class_deprecated

2020-05-11 -- 1.6.2

* fix: explicitly requires python 3.6 in setup.py

2020-05-01 -- 1.6.1

* bug fix, bad usage of callable_renamed

2020-04-30 -- 1.6.0

* logilab-common requires python >= 3.6 now
* use pyannotates to introduces types in all the modules
* introduce a list of new functions in logilab.common.deprecation: callable_renamed, attribute_renamed, argument_renamed, argument_remove
* renamed "renamed" to "callable_renamed", "deprecated" to
  "callable_deprecated", "moved" to "callable_moved" for coherence
* refactor the whole logilab.common.deprecation to simplify its code
* automatically detect from which modules a deprecated utils is called
* correctly display the line where a deprecated utils is used
* various small fixes, thx mypy

2019-12-04  -- 1.5.2

* documentation is now available at https://logilab-common.readthedocs.io/
* drop python2 support, python >= 3.3 is the new required version
* therefor, drop dependency on six
* drop rpm packaging
* registry: add a Registry.add_select_best_listener method to subscribe to
  the result of a _select_best of a Registry.
* shellutils: deprecate 'input' as argument of RawInput in favor of
  'input_function'

(adam)

2021-05-12 06:31:07 UTC MAIN commitmail json YAML

doc: Updated graphics/gimp to 2.10.24nb6

(wiz)

2021-05-12 06:30:56 UTC MAIN commitmail json YAML

gimp: add support for python plugins

Implemented as default-on option.

Bump PKGREVISION.

(wiz)

2021-05-12 06:28:11 UTC MAIN commitmail json YAML

py27-cssselect2: Reset MAINTAINER.

(kleink)

2021-05-12 06:26:34 UTC MAIN commitmail json YAML

py27-pyphen: Reset MAINTAINER.

(kleink)

2021-05-12 05:09:49 UTC MAIN commitmail json YAML

openal-soft: fix build with gcc 11

As described in the gcc 11 porting document[0], some libstdc++
headers no longer include certain headers they don't use.

Patch from upstream.

[0] https://gcc.gnu.org/gcc-11/porting_to.html#header-dep-changes

(mcf)

2021-05-12 05:00:55 UTC MAIN commitmail json YAML

Updated net/coilmq; Removed devel/py-stompclient

(adam)

2021-05-12 04:59:46 UTC MAIN commitmail json YAML

2021-05-12 04:56:54 UTC MAIN commitmail json YAML

2021-05-12 04:03:50 UTC MAIN commitmail json YAML

libebml: fix build with gcc 11

As described in the gcc 11 porting document[0], some libstdc++
headers no longer include certain headers they don't use.

Patch from upstream.

[0] https://gcc.gnu.org/gcc-11/porting_to.html#header-dep-changes

(mcf)

2021-05-12 00:11:13 UTC MAIN commitmail json YAML

doc: Updated editors/xfce4-mousepad to 0.5.4

(gutteridge)

2021-05-12 00:10:58 UTC MAIN commitmail json YAML

xfce4-mousepad: update to 0.5.4

Change log:

0.5.4
======
- New Features:
  - Add --line/-l and --column/-c number (#107, !83)
  - Port to GtkSourceView 4 (#55, #80, !10)

- Bug Fixes:
  - Delay request to scroll to cursor for the correct active view
  - Monitor hardlinks with glib 2.56.2 (#110, !82)
  - Transfer encoding from remote to primary instance (#109)
  - Prevent a crash when no language is found
  - Make window require attention when opening new tabs (#106, #93, !81)
  - Fix BOM array (!80)
  - Correctly initialize toolbar style combo box (#103)
  - Allow checking parent sources when looking up schema (#101)
  - Fix missing parameter to "select-all" signal (!79)

- Translation Updates:
  Hebrew, Indonesian, Spanish, Swedish

(gutteridge)

2021-05-11 22:05:45 UTC MAIN commitmail json YAML

doc: Updated devel/mob to 1.6.0

(schmonz)

2021-05-11 22:05:35 UTC MAIN commitmail json YAML

Update to 1.6.0. From the changelog:

- When `mob start` fails, the timer no longer starts to run.

(schmonz)

2021-05-11 21:30:57 UTC MAIN commitmail json YAML

mk/mpi.buildlink3.mk: Add MPI_TYPE=native and diagnostics

This enables use of MPI compiler wrappers present in the host
system via MPI_TYPE=native. Also, it checks for conflicts with
a preintalled different MPI choice from pkgsrc and.

(thor)

2021-05-11 21:06:15 UTC MAIN commitmail json YAML

py-pynng: use PYTHON_VERSIONS_INCOMPATIBLE instead of ACCEPTED

The package needs Python 3.5 or newer, and apparently this is the better way to
register it; no functional change otherwise intended.

As suggested by leot@; thanks!

(khorben)

2021-05-11 18:48:16 UTC MAIN commitmail json YAML

doc: Updated devel/glib2-tools to 2.68.2

(cirnatdan)

2021-05-11 18:47:58 UTC MAIN commitmail json YAML

doc: Updated devel/gdbus-codegen to 2.68.2

(cirnatdan)

2021-05-11 18:41:28 UTC MAIN commitmail json YAML

gdbus-codegen: Update devel/gdbus-codegen to 2.68.2

(cirnatdan)

2021-05-11 17:26:51 UTC MAIN commitmail json YAML

mariadb104-server: do initdb automatically on start

suggested by abs

(nia)

2021-05-11 17:03:25 UTC MAIN commitmail json YAML

glib2: Fix PLIST for 2.68.2

(cirnatdan)

2021-05-11 14:57:56 UTC MAIN commitmail json YAML

Add FreeBSD-{i386,x86_64} to supported platforms.

(hauke)

2021-05-11 14:56:47 UTC MAIN commitmail json YAML

Add freebsd-{i386,x86_64} to _EMUL_PREFER.

No preference, no emulation...

(hauke)

2021-05-11 14:07:03 UTC MAIN commitmail json YAML

doc: Updated sysutils/broot to 1.4.0

(pin)

2021-05-11 14:06:43 UTC MAIN commitmail json YAML

sysutils/broot: update to 1.4.0

-the default (non prefixed) search is now "path fuzzy" instead of "name fuzzy".
You can still change the default mode and mode bindings in the config. This was
done after a survey in chat.
-new "unordered tokens" search type: t/ab,cd searches for tokens "ab" and "cd"
in any order and case insensitive in the subpath, matches for example
src/dcd/Bab.rs - Fix #378
-fix search modes configuration removing all default mappings - Fix #383
-conf / quit_on_last_cancel to allow quitting with esc when there's nothing
to cancel - Fix #380
-new parent skin entry for the part of the sub-path before the file name
(visible when you search on subpath)
-when a content search has been done, opening a file with a compatible command
(like the standard :edit) opens on the first line with a match

(pin)

2021-05-11 13:26:00 UTC MAIN commitmail json YAML

doc: Updated devel/glib2 to 2.68.2

(cirnatdan)

2021-05-11 13:25:49 UTC MAIN commitmail json YAML

glib2: Update devel/glib2 to 2.68.2

Overview of changes in GLib 2.68.2

- Fix building third-party projects against GLib on CentOS 7 (work by
Ignacio Casal Quinteiro) (#2387)

Bugs fixed:
- #2387 json-glib does not build with glib 2.68.1
- !2060 gmacros: check that __cplusplus or _MSC_VER is defined
- !2068 gmacros: missing check if STDC_VERSION is defined
- !2079 Backport !2078 ���gthreadedresolver: don't ignore flags in lookup_by_name_with_flags��� to glib-2-68

Translation updates:

- Nepali
- Serbian

(cirnatdan)

2021-05-11 11:47:41 UTC MAIN commitmail json YAML

Unbreak FreeBSD build - it has extended attributes, too.

(hauke)

2021-05-11 10:57:34 UTC MAIN commitmail json YAML

2021-05-11 10:19:04 UTC MAIN commitmail json YAML

doc: Updated math/arpack-ng to 3.8.0

(prlw1)

2021-05-11 10:18:37 UTC MAIN commitmail json YAML

Update arpack-ng to 3.8.0

Fixes build errors of the form

/tmp/pkgsrc/math/arpack-ng/work.x86_64/arpack-ng-3.7.0/SRC/cnaitr.f:666:35:

  383 |            call svout (logfil, 1, rnorm, ndigit,
      |                                  2
......
  666 |            call svout (logfil, 2, rtemp, ndigit,
      |                                  1
Error: Rank mismatch between actual argument at (1) and actual argument at (2) (scalar and rank-1)

seen in arpack-ng-3.7.0nb1

(prlw1)

2021-05-11 09:53:20 UTC MAIN commitmail json YAML

exim: Fix hardcoded CFLAGS breaking SunOS build.

(jperkin)

2021-05-11 09:24:17 UTC MAIN commitmail json YAML

2021-05-11 08:57:14 UTC MAIN commitmail json YAML

doc: Added net/py-pynng version 0.7.1

(khorben)

2021-05-11 08:56:24 UTC MAIN commitmail json YAML

2021-05-11 08:56:00 UTC MAIN commitmail json YAML

py-pynng: import version 0.7.1

pynng provides a nice interface on top of the full power of nng. nng, and
therefore pynng, make it easy to communicate between processes on a single
computer or computers across a network. This library is compatible with Python
3.5 or newer. nng is the rewriting of Nanomsg, which is the spiritual successor
to ZeroMQ.

(khorben)

2021-05-11 08:15:43 UTC MAIN commitmail json YAML

doc: Updated audio/ncspot to 0.7.0

(pin)

2021-05-11 08:15:17 UTC MAIN commitmail json YAML

audio/ncspot: update to 0.7.0

Updates to latest librespot, bringing along some larger changes under the hood.

Maintenance:
-Display error when command can not be parsed (#161)
-Add rounding to volume percentage display (#493)
-Log warning instead of panicking on invalid color (#498)
-Update to librespot 0.2.0
-As part of this, a lot of the Future implementations were migrated to
async/.await and cleaned up
-Flip play/pause indicators (#511)

Features:
-Add audio_cache_size to set maximum cache size (#429)

(pin)

2021-05-11 05:04:45 UTC MAIN commitmail json YAML

Updated devel/py-configargparse, devel/py-faker

(adam)

2021-05-11 05:04:24 UTC MAIN commitmail json YAML

py-faker: updated to 8.1.3

v8.1.3
* Fixes 1439: Cast Path to a string for `pkgutil.iter_modules`).

v8.1.2
* Fix company suffix typo for ``th_TH``.

v8.1.1
* Remove ``gmail.co.uk`` from ``en_GB`` email Provider.

v8.1.0
* Extend ``pl_PL`` Pesel To support greater range of dates.

v8.0.0
* Fix CLI only giving 10 possible outputs.

v7.0.1
* Fix faker module loader to use strings rather than Paths.

v7.0.0
* Make sure `pyfloat` fails when asked to produce more digits than the system supports.

v6.6.3
* Ensure ``pytuple`` returns the correct number of items.

(adam)

2021-05-11 04:57:59 UTC MAIN commitmail json YAML

py-configargparse: updated to 1.4.1

v1.4.1:
updated setup.py publish commands

(adam)

2021-05-11 02:05:07 UTC MAIN commitmail json YAML

2021-05-11 01:27:51 UTC MAIN commitmail json YAML

doc: Updated textproc/aspell to 0.60.8nb2

(rin)

2021-05-11 01:26:25 UTC MAIN commitmail json YAML

aspell: Fix for recent regex(3) update for NetBSD. Bump revision.

Stop using GNU regex(3) extension \w.

XXX
Alternatively, should we build lang/perl5 with REG_GNU?

(rin)

2021-05-11 00:36:00 UTC MAIN commitmail json YAML

doc: Updated sysutils/xfce4-appfinder to 4.14.1

(gutteridge)

2021-05-11 00:35:50 UTC MAIN commitmail json YAML

xfce4-appfinder: update to 4.14.1

Change log:

4.14.1
======
- Add keywords to .desktop files to xfce4-appfinder
- GitLab is the new bugtracker
- Add small delay before reloading menu tree (!6)
- Update copyright year
- Clear entry's error icon and tooltip
- Fix memory leaks when sorting items
- Fix gtk version checking

(gutteridge)

2021-05-11 00:21:50 UTC MAIN commitmail json YAML

doc: Updated sysutils/xfce4-battery-plugin to 1.1.4

(gutteridge)

2021-05-11 00:20:51 UTC MAIN commitmail json YAML

xfce4-battery-plugin: update to 1.1.4

Change log:

1.1.4
======
- Add help button to properties dialog
- Drop subtitle from settings dialog
- Fix labels alignment for very small panels
- Fix compilation warnings
- automake: INCLUDES -> AM_CPPFLAGS
- autoconf: Some updates
- Remove unnecessary boxes
- Remove GSourceFunc casts
- Add new README.md, update AM_INIT_AUTOMAKE
- Add basic GitLab pipeline
- Update URLs from goodies.xfce.org to docs.xfce.org (Bug #16154)
- Translation Updates:
  Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian,
  Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish,
  Dutch, Eastern Armenian, English (Australia), English (Canada),
  English (United Kingdom), Estonian, Finnish, French, Galician,
  German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue,
  Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay,
  Norwegian Nynorsk, Occitan (post 1500), Panjabi (Punjabi), Polish,
  Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian,
  Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan),
  Uyghur, Uzbek, Uzbek (Latin), Vietnamese

(gutteridge)

2021-05-11 00:16:09 UTC MAIN commitmail json YAML

doc: Updated x11/mate-screensaver to 1.24.2

(gutteridge)

2021-05-11 00:15:26 UTC MAIN commitmail json YAML

mate-screensaver: update to 1.24.2

Change log:

mate-screensaver 1.24.2

  * Translations update
  * i18n: Do not collect the translation for Icon
  * Removed translation for icon file name

mate-screensaver 1.24.1

  * Translations update
  * Fix invalid gnome-logo-white.svg
  * Custom background image for lock screen
  * build: silent build warnings for distcheck

(gutteridge)

2021-05-10 22:51:19 UTC MAIN commitmail json YAML

pcl: fix GITHUB_TAG and fetch

(wiz)

2021-05-10 17:31:27 UTC MAIN commitmail json YAML

2021-05-10 15:50:05 UTC MAIN commitmail json YAML

mariadb104: remove duplicated WITH_SSL

(nia)

2021-05-10 14:51:03 UTC MAIN commitmail json YAML

Updated www/py-websockets, devel/py-lazy-object-proxy

(adam)

2021-05-10 14:50:44 UTC MAIN commitmail json YAML

py-lazy-object-proxy: updated to 1.6.0

1.6.0 (2021-03-22)
------------------

* Added support for async special methods (``__aiter__``, ``__anext__``,
  ``__await__``, ``__aenter__``, ``__aexit__``).
  These are used in the ``async for``, ``await` and ``async with`` statements.

  Note that ``__await__`` returns a wrapper that tries to emulate the crazy
  stuff going on in the ceval loop, so there will be a small performance overhead.
* Added the ``__resolved__`` property. You can use it to check if the factory has
  been called.

(adam)

2021-05-10 14:25:06 UTC MAIN commitmail json YAML

doc: Updated emulators/compat15-extras to 1.5.3nb2

(taca)

2021-05-10 14:24:47 UTC MAIN commitmail json YAML

emulators/compat15-extras: fix symbolic link

Fix symbolic link for libtermlib.

Bump PKGREVISION.

(taca)

2021-05-10 14:23:19 UTC MAIN commitmail json YAML

doc: Updated www/squid4 to 4.15

(taca)

2021-05-10 14:22:57 UTC MAIN commitmail json YAML

www/squid4: update to 4.15

This release fixes these security issues from prior release.

* SQUID-2020:11 HTTP Request Smuggling
  (CVE-2020-25097)
* SQUID-2021:1 Denial of Service in URN processing
  (CVE-2021-28651)
* SQUID-2021:2 Denial of Service in HTTP Response Processing
  (CVE-2021-28662)
* SQUID-2021:3 Denial of Service issue in Cache Manager
  (CVE-2021-28652)
* SQUID-2021:4 Multiple issues in HTTP Range header
  (CVE-2021-31806, CVE-2021-31807, CVE-2021-31808)
* SQUID-2021:5 Denial of Service in HTTP Response Processing
  (CVE pending allocation)

Changes in squid-4.15 (10 May 2021):

- Bug 5112: Excessively loud chunked reply parsing error reporting
- Bug 5106: Broken cache manager URL parsing
- Bug 5104: Memory leak in RFC 2169 response parsing
- Bug 3556: "FD ... is not an open socket" for accept() problems
- Profiling: CPU timing implemented for MAC non-x86
- Fix HttpHeaderStats definition to include hoErrorDetail
- Fix Squid-to-client write_timeout triggers client_lifetime timeout
- Limit HeaderLookupTable_t::lookup() to BadHdr and specific IDs
- Handle more Range requests
- Handle more partial responses
- Stop processing a response if the Store entry is gone
- ... and some portability fixes
- ... and some documentation updates

(taca)

2021-05-10 14:22:56 UTC MAIN commitmail json YAML

mariadb104-client: remove unsupported option

(wiz)

2021-05-10 14:15:55 UTC MAIN commitmail json YAML

2021-05-10 12:52:54 UTC MAIN commitmail json YAML

py-websockets: updated to 9.0.1

9.0.1

Fixed issues with the packaging of the 9.0 release.

9.0

Note

Version 9.0 moves or deprecates several APIs.

Aliases provide backwards compatibility for all previously public APIs.

:class:`~datastructures.Headers` and :exc:`~datastructures.MultipleValuesError` were moved from websockets.http to :mod:`websockets.datastructures`. If you're using them, you should adjust the import path.
The client, server, protocol, and auth modules were moved from the websockets package to websockets.legacy sub-package, as part of an upcoming refactoring. Despite the name, they're still fully supported. The refactoring should be a transparent upgrade for most uses when it's available. The legacy implementation will be preserved according to the backwards-compatibility policy.
The framing, handshake, headers, http, and uri modules in the websockets package are deprecated. These modules provided low-level APIs for reuse by other WebSocket implementations, but that never happened. Keeping these APIs public makes it more difficult to improve websockets for no actual benefit.
Added compatibility with Python 3.9.
Added support for IRIs in addition to URIs.
Added close codes 1012, 1013, and 1014.
Raised an error when passing a :class:`dict` to :meth:`~legacy.protocol.WebSocketCommonProtocol.send`.
Fixed sending fragmented, compressed messages.
Fixed Host header sent when connecting to an IPv6 address.
Fixed creating a client or a server with an existing Unix socket.
Aligned maximum cookie size with popular web browsers.
Ensured cancellation always propagates, even on Python versions where :exc:`~asyncio.CancelledError` inherits :exc:`Exception`.
Improved error reporting.

(adam)

2021-05-10 12:47:54 UTC MAIN commitmail json YAML

accerciser: fix build after change to make itstool a TOOL.

accerciser DEPENDS yelp-tools DEPENDS itstools
no longer works. Luckily yelp-tools is only actually needed in accerciser
for regenerating the configure script.

(prlw1)

2021-05-10 09:33:43 UTC MAIN commitmail json YAML

doc: Updated textproc/expat to 2.3.0

(wiz)

2021-05-10 09:33:33 UTC MAIN commitmail json YAML

expat: update to 2.3.0.

Release 2.3.0 Thu March 25 2021
        Bug fixes:
            #438  When calling XML_ParseBuffer without a prior successful call to
                    XML_GetBuffer as a user, no longer trigger undefined behavior
                    (by adding an integer to a NULL pointer) but rather return
                    XML_STATUS_ERROR and set the error code to (new) code
                    XML_ERROR_NO_BUFFER. Found by UBSan (UndefinedBehaviorSanitizer)
                    of Clang 11 (but not Clang 9).
            #444  xmlwf: Exit status 2 was used for both:
                    - malformed input files (documented) and
                    - invalid command-line arguments (undocumented).
                    The case of invalid command-line arguments now
                    has its own exit status 4, resolving the ambiguity.

        Other changes:
            #439  xmlwf: Add argument -k to allow continuing after
                    non-fatal errors
            #439  xmlwf: Add section about exit status to the -h help output
  #422 #426 #447  Windows: Drop support for Visual Studio <=14.0/2015
            #434  Windows: CMake: Detect unsupported Visual Studio at
                    configure time (rather than at compile time)
      #382 #428  testrunner: Make verbose mode (argument "-v") report
                    about passed tests, and make default mode report about
                    failures, as well.
            #442  CMake: Call "enable_language(CXX)" prior to tinkering
                    with CMAKE_CXX_* variables
            #448  Document use of libexpat from a CMake-based project
            #451  Autotools: Install CMake files as generated by CMake 3.19.6
                    so that users with "find_package(expat [..] CONFIG [..])"
                    are served on distributions that are *not* using the CMake
                    build system inside for libexpat packaging
      #436 #437  Autotools: Drop obsolescent macro AC_HEADER_STDC
      #450 #452  Autotools: Resolve use of obsolete macro AC_CONFIG_HEADER
            #441  Address compiler warnings
            #443  Version info bumped from 7:12:6 to 8:0:7
                    due to addition of error code XML_ERROR_NO_BUFFER
                    (see https://verbump.de/ for what these numbers do)

        Infrastructure:
      #435 #446  Replace Travis CI by GitHub Actions

        Special thanks to:
            Alexander Richardson
            Oleksandr Popovych
            Thomas Beutlich
            Tim Bray
                and
            Clang LeakSan, Clang 11 UBSan and the Clang team

(wiz)

2021-05-10 09:29:30 UTC MAIN commitmail json YAML

Updated textproc/py-jsbeautifier, graphics/py-matplotlib-venn

(adam)

2021-05-10 09:29:14 UTC MAIN commitmail json YAML

py-matplotlib-venn: updated to 0.11.6

Version 0.11.6
- Added matplotlib_venn.__version__ field

(adam)

2021-05-10 09:25:10 UTC MAIN commitmail json YAML

acpica-utils: Fix build with GCC10 by adding some -Wno-error=xxx.

(rin)

2021-05-10 09:22:34 UTC MAIN commitmail json YAML

py-jsbeautifier: updated to 1.13.13

v1.13.13

Closed Issues

IE11 compatibility failure v>1.13.5

v1.13.11

Closed Issues

Support short PHP tags

v1.13.6

Closed Issues

Fix space-before-conditional: false to work on switch-case statement
Optional chaining obj?.[expr]

(adam)

2021-05-10 09:00:13 UTC MAIN commitmail json YAML

doc: Updated devel/py-approvaltests to 0.6.0

(schmonz)

2021-05-10 09:00:02 UTC MAIN commitmail json YAML

Update to 0.6.0. From the changelog:

- You can now scrub your approval files

(schmonz)

2021-05-10 08:18:53 UTC MAIN commitmail json YAML

Fix the assimp pkgconfig file

Set the correct includedir in the
assimp pkgconfig file.
Add missing PKGCONFIG_OVERRIDE.

(nros)

2021-05-10 06:06:35 UTC MAIN commitmail json YAML

Updated devel/py-flake8, devel/py-radon, graphics/py-matplotlib, www/py-django-countries

(adam)

2021-05-10 06:06:09 UTC MAIN commitmail json YAML

py-django-countries: updated to 7.2

7.2 (10 May 2021)
Allow the character field to work with custom country codes that are not 2 characters (such as "GB-WLS").
Fix compatibility with django-migrations-ignore-attrs library.

7.1 (17 March 2021)
Allow customising the str_attr of Country objects returned from a CountryField via a new countries_str_attr keyword argument (thanks C. Quentin).
Add pyuca as an extra dependency, so that it can be installed like pip install django-countries[pyuca].
Add Django 3.2 support.

7.0 (5 December 2020)
Add name_only as an option to the Django Rest Framework serializer field (thanks Miguel Marques).
Add in Python typing.
Add Python 3.9, Django 3.1, and Django Rest Framework 3.12 support.
Drop Python 3.5 support.
Improve IOC code functionality, allowing them to be overridden in COUNTRIES_OVERRIDE using the complex dictionary format.

6.1.3 (18 August 2020)
Update flag of Mauritania.
Add flag for Kosovo (under its temporary code of XK).

6.1.2 (26 March 2020)
Fix Python 3.5 syntax error (no f-strings just yet...).

6.1.1 (26 March 2020)
Change ISO country import so that "Falkland Islands [Malvinas]" => "Falkland Islands (Malvinas)".

6.1 (20 March 2020)
Add a GraphQL object type for a django Country object.

6.0 (28 February 2020)
Make DRF CountryField respect blank=False. This is a backwards incompatible change since blank input will now return a validation error (unless blank is explicitly set to True).
Fix COUNTRIES_OVERRIDE when using the complex dictionary format and a single name.
Add bandit to the test suite for basic security analysis.
Drop Python 2.7 and Python 3.4 support.
Add Rest Framework 3.10 and 3.11 to the test matrix, remove 3.8.
Fix a memory leak when using PyUCA. Thanks Meiyer (aka interDist)!

5.5 (11 September 2019)
Django 3.0 compatibility.
Plugin system for extending the Country object.

5.4 (11 August 2019)
Renamed Macedonia -> North Macedonia.
Fix an outlying makemigrations error.
Pulled in new translations which were provided but missing from previous version.
Fixed Simplified Chinese translation (needed to be locale/zh_Hans).
Introduce an optional complex format for COUNTRIES_ONLY and COUNTRIES_OVERRIDE to allow for multiple names for a country, a custom three character code, and a custom numeric country code.

5.3.3 (16 February 2019)
Add test coverage for Django Rest Framework 3.9.

5.3.2 (27 August 2018)
Tests for Django 2.1 and Django Rest Framework 3.8.

5.3.1 (12 June 2018)
Fix dumpdata and loaddata for CountryField(multiple=True).

5.3 (20 April 2018)
Iterating a Countries object now returns named tuples. This makes things nicer when using {% get_countries %} or using the country list elsewhere in your code.

(adam)

2021-05-10 06:02:51 UTC MAIN commitmail json YAML

2021-05-10 05:59:19 UTC MAIN commitmail json YAML

py-radon: updated to 4.5.1

4.5.1
- Fix CC calculation for try-except-else blocks with multiple statements
- Fix CC type field in Markdown output

(adam)

2021-05-10 05:57:50 UTC MAIN commitmail json YAML

py-flake8: updated to 3.9.2

3.9.2 -- 2021-05-08
-------------------
You can view the `3.9.2 milestone`_ on GitHub for more details.

Bugs Fixed
- Fix error message for ``E111`` in ``pycodestyle`` (See also :pull:`1328`,
  :issue:`1327`).

Deprecations
- ``indent_size_str`` is deprecated, use ``str(indent_size)`` instead (See
  also :pull:`1328`, :issue:`1327`).

(adam)

2021-05-09 20:35:50 UTC MAIN commitmail json YAML

davical: fix build when doxygen is already installed

While there, add the option to generate and include the documentation in the
package (disabled by default).

No PKGREVISION bump as the build simply broke with doxygen available, and the
new option is disabled by default.

(khorben)

2021-05-09 20:09:33 UTC MAIN commitmail json YAML

doc: Updated sysutils/xplr to 0.8.4

(pin)

2021-05-09 20:09:12 UTC MAIN commitmail json YAML

sysutils/xplr: update to 0.8.4

0.8.4
=====
-Fixed search.

0.8.3
=====
-Fixed renaming files breaking the UI.

0.8.2
=====
-Fix rename breaking UI.

0.8.1
=====
-Fix exploring and escaping paths

This PR targets 2 pain points.
1. The `Explore` message was async, which caused some unexpected
  behavior. This was fixed by splitting `Explore` into `ExplorePwd`,
  `ExplorePwdAsync` and `ExploreParentsAsync`. `ExploreParentsAsync`
  is similar to the former `Explore`, which is mainly used when loading
  `xplr` for the first time. However, what we'll be using frequently
  are `ExplorePwd` and `ExplorePwdAsync` messages.
2. Files with spaces caused some unexpected behavior. This was fixed by
  escaping the paths properly. This also fixed focusing of a file after
  creating or renaming it.

Anothor breaking change is that `XPLR_PIPE_FOCUS_OUT` has been removed.
`XPLR_FOCUS_PATH` is all we need. So, the rule of thumb is if a variable
contains one liner value, it can be used directly from the env vars.
Variables that can contain multi-line values, will be exposed via the
pipes.

Minor changes are
- Add `switch_mode` mode to the global key binding help menu.
- Moved some UI related code from config.rs to ui.rs.
- Fixed compilation issue on `rustc 1.50.0`.

0.8.0
=====
-Breaking: The Explore message has been renamed to ExploreParentsAsync. While,
more relevant messages has been introduced: ExplorePwd and ExplorePwdAsync and.
-Breaking: $XPLR_PIPE_FOCUS_OUT has been removed. Use $XPLR_FOCUS_PATH instead.
-Fixed files with spaces causing issues (e.g. while renaming, focusing etc.)
-Added switch_mode mode to the global key binding help menu
-Moved some UI related code from config.rs to ui.rs.
-Fixed compilation issue on rustc 1.50.0.

0.7.2
=====
-Fixed displaying global help menu.
-Bound search mode tab key to ToggleSelection instead of Select.
-Logs will be displayed in ${PAGER:-less}

0.7.1
=====
-Use tab while in search mode to select files without losing the search input.
Similar to fzf.
-No socket errors after quitting the app.

0.7.0
=====
-Made panel config values nullable.
-Added fields general.panel_ui to define the common panel UI properties.

0.6.0
=====
-Now it's possible to define layouts and layout constraints based on screen
size and relative panel size.
-Now it's possible to define borders, panels and panel style.
-Now it's possible to define panel title and title style.
-Added messages SwitchLayout, SwitchLayoutBuiltin and SwitchLayoutCustom to
dynamically change the UI layout.
-Fixed overwriting margin in the config.
-add_modifier and sub_modifier has been renames to add_modifiers and
sub_modifiers and supports human values (e.g. Bold, Italic etc.) instead
of bits.
-From this commit, the output pipes will only refresh before executing an
external command.

(pin)

2021-05-09 16:04:47 UTC MAIN commitmail json YAML

doc: Updated security/heimdal to 1.5.3nb29

(thor)

2021-05-09 16:04:34 UTC MAIN commitmail json YAML

security/heimdal: provide krb5-gssapi.pc as symlink

This is needed for example for qt5-qtbase to pick up a pkgsrc-installed
heimdal instead of possibly a mix of system mit-krb5 libs with pkgsrc
headers, for its network auth that recently got GSSAPI.

It makes sense to provide the same pkg-config package name if heimdal and
mit-krb5 should be transparently compatible at that front.

(thor)

2021-05-09 15:19:10 UTC MAIN commitmail json YAML

graphics/pcl: pkglint on variable order

(thor)

2021-05-09 15:16:18 UTC MAIN commitmail json YAML

doc: Added textproc/ruby-rqrcode version 2.0.0

(taca)

2021-05-09 15:16:03 UTC MAIN commitmail json YAML

textproc/Makefile: add and enable ruby-rqrcode

(taca)

2021-05-09 15:15:15 UTC MAIN commitmail json YAML

textproc/ruby-rqrcode: add package version 2.0.0

RQRCode

RQRCode is a library for creating and rendering QR codes into various
formats.  It has a simple interface with all the standard QR code options.
It was adapted from the Javascript library by Kazuhiko Arase.

* QR code is trademarked by Denso Wave inc
* Minimum Ruby version is `>= 2.3`

(taca)

2021-05-09 15:14:10 UTC MAIN commitmail json YAML

doc: Added textproc/ruby-rqrcode_core version 1.0.0

(taca)

2021-05-09 15:13:53 UTC MAIN commitmail json YAML

textproc/Makefile: add and enable ruby-rqrcode_core

(taca)

2021-05-09 15:12:46 UTC MAIN commitmail json YAML

textproc/ruby-rqrcode_core: add package version 1.0.0

RQRCodeCore

rqrcode_core is a Ruby library for encoding QR Codes.  The simple interface
(with no runtime dependencies) allows you to create QR Code data structures.
It was originally adapted in 2008 from a Javascript library by Kazuhiko
Arase: https://github.com/kazuhikoarase.

Features

* rqrcode_core is a ruby only library. It requires no native libraries. Just
  Ruby!
* It is an encoding library. You can't decode QR codes with it.
* The interface is simple and assumes you just want to encode a string into
  a QR code.
* QR code is trademarked by Denso Wave inc.

rqrcode_core is the basis of the popular rqrcode gem:
https://github.com/whomwah/rqrcode.  This gem allows you to generate
different renderings of your QR code, including png, svg and ansi.

(taca)

2021-05-09 15:10:21 UTC MAIN commitmail json YAML

doc: removed go-crypto-acme

(bsiegert)

2021-05-09 15:10:02 UTC MAIN commitmail json YAML

go-crypto-acme: remove.

Nothing depends on this. The only binary included is a testing utility that
is not terribly useful.

(bsiegert)

2021-05-09 15:09:23 UTC MAIN commitmail json YAML

vtk: add qt option to buildlink

(thor)

2021-05-09 15:01:23 UTC MAIN commitmail json YAML

doc: Updated sysutils/ruby-inspec-core to 4.37.0

(taca)

2021-05-09 15:01:04 UTC MAIN commitmail json YAML

sysutils/ruby-inspec-core: update to 4.37.0

4.37.0 (2021-05-05)

Enhancements
* Reinstate resource testing on supported platforms using Test-Kitchen #5204
  (clintoncwolfe)

Bug Fixes
* Fix : windows_firewall_rule fails to validate more than 1 rule depending
  on how it's executed #5502 (Vasu1105)

Merged Pull Requests
* Update openssl to 1.1.1k on macos #5493 (tas50)
* Update Ruby in omnibus packages to 2.7.3 #5492 (tas50)
* Make sure we use chef-telemetry 1.0.8+ #5491 (tas50)
* Upgrade to GitHub-native Dependabot #5488 (dependabot-preview[bot])
* Fixes for the integration-resources pipeline #5501 (clintoncwolfe)
* Fix bad link #5498 (IanMadd)
* Fix undefined method `+' for nil:NilClass\n\nProfile: - when using profile
  dependencies and require_controls #5487 (Vasu1105)
* Remove coverage testing #5500 (clintoncwolfe)
* Added alias command automate for inspec compliance #5490 (Nik08)

4.36.4 (2021-04-29)

New Features
* Add selinux resource with basic feature support #5458 (Vasu1105)
* New input option pattern added for DSL and metadata inputs #5466 (Nik08)

Enhancements
* Add selinux resource support for modules and booleans #5463 (Vasu1105)

Bug Fixes
* Fix for group resource when member does not exist #5470 (Nik08)

Merged Pull Requests
* Update faraday requirement from >= 0.9.0, < 1.4 to >= 0.9.0, < 1.5 #5469
  (dependabot-preview[bot])
* Minor fix - Method expected to return boolean but it was returning nil if
  condition check fails #5480 (Vasu1105)
* updating Gemfile to support environment variables #5485 (jayashrig158)
* Group & Groups doc updated - about using local and etc groups #5483
  (Nik08)
* Added new property members_array for group & groups resources. #5479
  (Nik08)

4.33.1 (2021-04-21)

New Features
* Optionally include controls source code in CLI reporter #5465
  (clintoncwolfe)

Merged Pull Requests
* Update postgres_ident_conf.md #5461 (tobiasbp)
* Remove default of 3600 seconds for command timeout #5472 (clintoncwolfe)

v4.32.0 (2021-04-14)

New Features
* Added ability to pass inputs to InSpec shell using input file and cli
  #5452 (Nik08)

4.31.1 (2021-04-08)

Bug Fixes
* Use default command timeout value if timeout is 0 #5455 (clintoncwolfe)

4.31.0 (2021-04-07)

New Features
* Add --docker-url CLI option #5445 (clintoncwolfe)

Merged Pull Requests
* Fix for Deprecation warning and FilterTable::ExceptionCatcher to show
  exact failure message. #5441 (Vasu1105)
* Update inputs.md #5449 (IanMadd)
* Add timeout option to command resource #5443 (clintoncwolfe)
* Update platforms doc #5442 (IanMadd)
* Bug fix for loading hashmap inputs consistently #5446 (Nik08)

4.29.3 (2021-03-25)

Bug Fixes
* Fix for -controls option is not working as expected. #5434 (Vasu1105)
* Fix for executing git profiles independent of the name of the default
  branch #5438 (Nik08)

Merged Pull Requests
* Minor Docs edits #5433 (IanMadd)
* Add quotation around -name option for apt resource to work properly with
  zsh #5437 (ymotongpoo)
* Updates profile init for cloud platforms to use inputs #5435
  (collinmcneese)
* Move Passthrough Config from Automate to JSON Reporter #5430 (tohch4)
* Update codeowners for docs #5440 (IanMadd)
* Improve resource page menu titles #5439 (IanMadd)
* Add m1 support to MacOS build list #5432 (clintoncwolfe)

(taca)

2021-05-09 14:56:21 UTC MAIN commitmail json YAML

doc: Updated misc/ruby-ohai to 16.13.0

(taca)

2021-05-09 14:56:01 UTC MAIN commitmail json YAML

misc/ruby-ohai: update to 16.13.0

16.13.0 (2021-04-07)

Merged Pull Requests

* Create os_release plugin for parsing data from /etc/os-release #1646
  (ramereth)

(taca)

2021-05-09 14:49:46 UTC MAIN commitmail json YAML

doc: Updated sysutils/ruby-chef{,config,utils} to 16.13.16.

(taca)

2021-05-09 14:48:09 UTC MAIN commitmail json YAML

2021-05-09 14:46:27 UTC MAIN commitmail json YAML

2021-05-09 14:42:46 UTC MAIN commitmail json YAML

doc: Updated sysutils/ruby-facter to 4.1.1

(taca)

2021-05-09 14:42:23 UTC MAIN commitmail json YAML

sysutils/ruby-facter: update to 4.1.1

4.1.1 (2021-04-21)

No release note is available.  Please refer commit log
<https://github.com/puppetlabs/facter/compare/4.0.52...4.1.1>.

(taca)

2021-05-09 14:36:42 UTC MAIN commitmail json YAML

doc: Updated sysutils/ruby-listen to 3.5.1

(taca)

2021-05-09 14:36:14 UTC MAIN commitmail json YAML

sysutils/ruby-listen: update to 3.5.1

3.5.1 (2021-03-30)

* Bump required ruby version to v2.4.0 (#536) @cgunther

3.5.0 (2021-03-23)

* Issue #533: rescue StandardError only (#535) @ColinDKelley

(taca)

2021-05-09 14:34:06 UTC MAIN commitmail json YAML

doc: Updated sysutils/puppet to 7.6.1

(taca)

2021-05-09 14:33:40 UTC MAIN commitmail json YAML

sysutils/puppet: update to 7.6.1

Puppet 7.6.1
Released April 2021.

We would like to thank the following Puppet community members for their
contributions to this release: gcampbell12 and ananace.

Enhancements

Puppet module type scripts directory

This release adds a new subdirectory to the scripts/ module class.  It
automatically generates the functions in the class and retrieves the
available scripts.  This helps to standardize specific file loading from
either the files directory or scripts directory.  PUP-10996

Backport logic to detect migrated CA directory location

After migrating the CA directory, Puppet now reports the correct cadir
setting value. PUP-11004

Resolved issues

Race condition with agent_disabled_lockfile

This release fixes a race condition that caused the agent to become disabled
and no longer enforce desired state.  Contributed by Puppet community member
gcampbell12.  PUP-11000

User resource with forcelocal and groups attributes set fails if /etc/group contains empty lines

This release fixes an issue where Puppet failed when applying user resources
with forcelocal if there were empty lines in /etc/group.  PUP-10997

Unable to install gems with the puppet_gem provider on Windows

Previously, if you used Puppet as a library, environment.bat was not sourced
and led to an unset PUPPET_DIR.  As puppet_gem relied on this to build the
gem.bat path, it used a non-existing path, making this provider unsuitable.
This release updates the puppet_gem provider to use Gem.default_bindir,
which determines the location of the executables.  To avoid accidental usage
of the puppet_gem provider with system Ruby, we have also added a confine to
the aio_agent_version fact.  PUP-10964

Changing a Puppet setting in a catalog invalidates the environment cache in multithreaded mode

You can now change the value of Puppet's rich_data setting at runtime,
without it invalidating the environment cache.  PUP-10952

Puppet cannot parse systemd instances when list-unit-files output has an additional column

This release fixes an issue affecting the parsing of systemd service
instances caused by a change in the systemctl list-unit-files command
output.  PUP-10949

Cannot ensure dnfmodule with no default profile

Previously, using the dnfmodule provider to install a module with no default
profile -- without passing the enable_only parameter -- failed with newer
versions of DNF.  PUP-11024

(taca)

2021-05-09 14:22:33 UTC MAIN commitmail json YAML

fuse-ntfs-3g: add MESSAGE.NetBSD

(nia)

2021-05-09 14:06:06 UTC MAIN commitmail json YAML

doc: Updated graphics/p5-Image-ExifTool to 12.25

(gdt)

2021-05-09 14:05:58 UTC MAIN commitmail json YAML

p5-Image-ExifTool: Update to 12.25

Note that this is not a production release; normally, upstream asks
that we only package production releases.  However, 12.24 contains a
bugfix for https://nvd.nist.gov/vuln/detail/CVE-2021-22204, and no
production release has that fix.

Upstream changes since 12.00 are basically bugfixes, minor
improvments, and added codepoints for lenses/tags/etc, plus

  JPEG XL support is now official
  Added read support for Medical Research Council (MRC) image files

See https://exiftool.org/history.html for the full details

(gdt)

2021-05-09 14:05:54 UTC MAIN commitmail json YAML

doc: Added security/ruby-rotp version 6.2.0

(taca)

2021-05-09 14:05:39 UTC MAIN commitmail json YAML

security/Makefile: add and enable ruby-rotp

(taca)

2021-05-09 14:04:36 UTC MAIN commitmail json YAML

security/ruby-rotp: add version 6.2.0 package

Add ruby-rotp package version 6.2.0 required by Redmine 4.2.

The Ruby One Time Password Library

A ruby library for generating and validating one time passwords (HOTP &
TOTP) according to RFC 4226 and RFC 6238.

ROTP is compatible with Google Authenticator available for Android and
iPhone and any other TOTP based implementations.

Many websites use this for multi-factor authentication, such as GMail,
Facebook, Amazon EC2, WordPress, and Salesforce.  You can find a more
complete list here:
https://en.wikipedia.org/wiki/Google_Authenticator#Usage.

(taca)

2021-05-09 14:00:30 UTC MAIN commitmail json YAML

doc: Updated net/ruby-ruby_smb to 2.0.8

(taca)

2021-05-09 14:00:08 UTC MAIN commitmail json YAML

net/ruby-ruby_smb: update to 2.0.8

2.0.8 (2021-04-09)

* Fix a bunch of minor types and add data to the compression header

* Add the LZNT1 compression algorithm

* Add specs for the LZNT1 algorithm

* Add a note and fix up a bit of the decompression code

(taca)

2021-05-09 13:53:07 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-tins to 1.29.0

(taca)

2021-05-09 13:52:40 UTC MAIN commitmail json YAML

devel/ruby-tins: update to 1.29.0

1.29.0 (2021-05-07)

* Add more ways to reraise exceptions in attempt.

(taca)

2021-05-09 10:06:07 UTC MAIN commitmail json YAML

doc: removed go-oauth2

(bsiegert)

2021-05-09 10:05:26 UTC MAIN commitmail json YAML

2021-05-09 09:45:44 UTC MAIN commitmail json YAML

doc: Updated devel/asmfmt to 1.3.0

(bsiegert)

2021-05-09 09:45:28 UTC MAIN commitmail json YAML

Update asmfmt to 1.3.0, now a Go module.

- Remove outdated tools
- Upgrade Go and tests
- add module

(bsiegert)

2021-05-09 09:45:09 UTC MAIN commitmail json YAML

ossmix: don't create unused directory

(nia)

2021-05-09 09:36:57 UTC MAIN commitmail json YAML

mob: switch to building as a module, bump revision

(bsiegert)

2021-05-09 09:12:09 UTC MAIN commitmail json YAML

2021-05-09 09:10:01 UTC MAIN commitmail json YAML

2021-05-09 09:08:27 UTC MAIN commitmail json YAML

ossinfo: understand symlinks properly on NetBSD

(nia)

2021-05-09 09:07:11 UTC MAIN commitmail json YAML

doc: Added audio/ossplay version 4.2.build2019

(nia)

2021-05-09 09:06:59 UTC MAIN commitmail json YAML

add audio/ossplay

ossrecord records audio in Microsoft RIFF (wav) format.

ossplay plays raw PCM, Microsoft RIFF (.wav), Sun ULaw (.au), Mac AIFF (.aif)
and other types of audio files. By default the application will try to
determine the audio file's format and play audio based on the stored
inforation about sample format, number of channels and sampling rate.

NOTE: On NetBSD, use audioplay(1) and audiorecord(1) instead.
This package primarily exists to test OSSv4 compatibility.

(nia)

2021-05-09 09:00:43 UTC MAIN commitmail json YAML

doc: Updated net/gallery-dl to 1.17.4

(leot)

2021-05-09 09:00:33 UTC MAIN commitmail json YAML

gallery-dl: Update to 1.17.4

Changes:
## 1.17.4 - 2021-05-07
### Additions
- [gelbooru] add extractor for `/redirect.php` URLs #1530
- [inkbunny] add `favorite` extractor #1521
- add `output.skip` option
- add an optional argument to `--clear-cache` to select which cache entries
  to remove #1230

### Changes
- [pixiv] update `translated-tags` option #1507
  - rename to `tags`
  - accept `"japanese"`, `"translated"`, and `"original"` as values

### Fixes
- [500px] update query hashes
- [kemonoparty] fix download URLs #1514
- [imagebam] fix extraction
- [instagram] update query hashes
- [nozomi] update default archive-fmt for `tag` and `search` extractors (#1529)
- [pixiv] remove duplicate translated tags (#1507)
- [readcomiconline] change domain to `readcomiconline.li` (#1517)
- [sankaku] update invalid-token detection (#1515)
- fix crash when using `--no-download` with `--ugoira-conv` (#1507)

## 1.17.3 - 2021-04-25
### Additions
- [danbooru] add option for extended metadata extraction (#1458)
- [fanbox] add extractors (#1459)
- [fantia] add extractors (#1459)
- [gelbooru] add an option to extract notes (#1457)
- [hentaicosplays] add extractor (#907, #1473, #1483)
- [instagram] add extractor for `tagged` posts (#1439)
- [naverwebtoon] ignore non-comic images
- [pixiv] also save untranslated tags when `translated-tags` is enabled (#1501)
- [shopify] support omgmiamiswimwear.com (#1280)
- implement `output.fallback` option
- add archive format to InfoJob output (#875)
- build executables with SOCKS proxy support (#1424)

### Fixes
- [500px] update query hashes
- [8muses] fix JSON deobfuscation
- [artstation] download `/4k/` images (#1422)
- [deviantart] fix pagination for Eclipse results (#1444)
- [deviantart] improve folder name matching (#1451)
- [erome] skip deleted albums (#1447)
- [exhentai] fix image limit detection (#1437)
- [exhentai] restore `limits` option (#1487)
- [gelbooru] fix tag category extraction (#1455)
- [instagram] update query hashes
- [komikcast] fix extraction
- [simplyhentai] fix extraction
- [slideshare] fix extraction
- [webtoons] update agegate/GDPR cookies (#1431)
- fix `category-transfer` option

### Removals
- [yuki] remove module for yuki.la

(leot)

2021-05-09 08:54:35 UTC MAIN commitmail json YAML

2021-05-09 08:54:08 UTC MAIN commitmail json YAML

Remove net/go-grpc, misc/go-genproto and misc/go-genproto-googleapis-rpc

The latter two were only useful to support the go-grpc and go-tools builds.
go-grpc has no useful binaries (the CLI is in net/grpc), it only consists
of libraries that are now unused. No replacements.

(bsiegert)

2021-05-09 08:38:21 UTC MAIN commitmail json YAML

2021-05-09 08:31:18 UTC MAIN commitmail json YAML

add a note about how to install this with dd.

(mrg)

2021-05-09 08:28:36 UTC MAIN commitmail json YAML

-google-api-go-client

(bsiegert)

2021-05-09 08:28:07 UTC MAIN commitmail json YAML

google-api-go-client: remove

This is very old and no longer needed. go-tools used to depend on it but
now, it is using a module build. No replacement.

(bsiegert)

2021-05-09 08:27:35 UTC MAIN commitmail json YAML

doc: Added audio/ossinfo version 4.2.build2019

(nia)

2021-05-09 08:27:22 UTC MAIN commitmail json YAML

add audio/ossinfo

Display Open Sound System device information.

NOTE: On NetBSD, use audiocfg(1) instead.
This package primarily exists to test OSSv4 compatibility.

(nia)

2021-05-09 08:15:03 UTC MAIN commitmail json YAML

doc: Added audio/osstest version 4.2.build2019

(nia)

2021-05-09 08:14:52 UTC MAIN commitmail json YAML

add audio/osstest

The osstest applet is a simple test application that can be used to test
functionality of the sound hardware installed in the system.

osstest performs a playback test for each installed audio device. If there
are any "machine detectable" problems they will be reported. You will first
hear an audio sample played on the left speaker, then the right speaker and
finally in stereo on both speakers.

NOTE: On NetBSD, use `audiocfg test 0` instead. This package primarily
exists to test OSSv4 compatibility.

(nia)

2021-05-09 08:02:15 UTC MAIN commitmail json YAML

doc: Added audio/ossmix version 4.2.build2019

(nia)

2021-05-09 08:02:03 UTC MAIN commitmail json YAML

add audio/ossmix

Command line mixer application from the Open Sound System.

Compatible with: NetBSD 10, Solaris 11, FreeBSD.

NOTE: On NetBSD, use mixerctl(1) (included in base) instead.
This package primarily exists for testing OSSv4 compatibility.

(nia)

2021-05-09 07:55:03 UTC MAIN commitmail json YAML

doc: Added audio/ossxmix version 4.2.build2019

(nia)

2021-05-09 07:54:42 UTC MAIN commitmail json YAML

add audio/ossxmix

Graphical (GTK+) mixer application from the Open Sound System.

Compatible with: NetBSD 10, Solaris 11, FreeBSD.

(nia)

2021-05-09 07:50:00 UTC MAIN commitmail json YAML

doc/TODO: update

+ ImageMagick-7.0.11.11, fluidsynth-2.2.1, gopls-0.6.11, libheif-1.12.0,
  poppler-21.05.0, py-hypothesis-6.12.0, py-mercurial-5.8,
  snappy-1.1.9, tor-browser-10.0.16.
- p5-String-CRC32-2.100, p5-String-Interpolate-0.33, p5-Template-Tiny-1.13.

(wiz)

2021-05-09 04:51:19 UTC MAIN commitmail json YAML

doc: Updated net/ruby-train-core to 3.7.0

(taca)

2021-05-09 04:50:57 UTC MAIN commitmail json YAML

net/ruby-train-core: update to 3.7.0

3.7.0 (2021-04-28)

Merged Pull Requests

* Update chefstyle requirement from 1.7.4 to 1.7.5 #678 (dependabot[bot])
* Switch to GNU timeout-based implementation of SSH timeouts #679
  (clintoncwolfe)
* Read the username and port from /.ssh/config file and replace if present
  #659 (sanga1794)

3.6.2 (2021-04-14)

Merged Pull Requests

* Update chefstyle requirement from 1.7.2 to 1.7.4 #673 (dependabot[bot])
* Fix SSH Timeout PTY allocation #676 (clintoncwolfe)

3.6.0 (2021-04-07)

Merged Pull Requests

* Support Docker for Windows #674 (clintoncwolfe)

3.5.5 (2021-03-24)

Merged Pull Requests

* Add timeout support to Mixlib::ShellOut based local runners #671
  (clintoncwolfe)

(taca)

2021-05-09 04:41:54 UTC MAIN commitmail json YAML

doc: Added security/ruby-certified version 1.0.0

(taca)

2021-05-09 04:41:27 UTC MAIN commitmail json YAML

security/Makefile: add and enable ruby-certified

(taca)

2021-05-09 04:40:49 UTC MAIN commitmail json YAML

security/ruby-certified: add version 1.0.0 package

Required by new version of textproc/ruby-kramdown-rfc2629.

Ensure net/https uses OpenSSL::SSL::VERIFY_PEER to verify SSL
certificates and provides certificate bundle in case OpenSSL cannot
find one.

(taca)

2021-05-09 04:37:42 UTC MAIN commitmail json YAML

doc: Updated net/ruby-connection_pool to 2.2.5

(taca)

2021-05-09 04:37:23 UTC MAIN commitmail json YAML

net/ruby-connection_pool: update to 2.2.5

2.2.5 (2021-04-15)

* Fix argument forwarding on Ruby 2.7 [#149]

2.2.4 (2021-04-12)

* Add reload to close all connections, recreating them afterwards [Andrew
  Marshall, #140]
* Add then as a way to use a pool or a bare connection with the same code
  path [#138]

(taca)

2021-05-09 04:30:22 UTC MAIN commitmail json YAML

doc: Updated misc/ruby-daemons to 1.4.0

(taca)

2021-05-09 04:29:57 UTC MAIN commitmail json YAML

misc/ruby-daemons: update to 1.4.0

pkgsrc change: add "USE_LANGUAGES= # none".

1.4.0 (2021-05-01)

* Allow for customization which signals are sent to stop process (thanks to
  philister)
* Resolves mismatched indentations (thanks to Luis M Rodriguez)
* Allow to use pry-byebug 3.8.0 (thanks to kamipo)

(taca)

2021-05-09 04:25:01 UTC MAIN commitmail json YAML

doc: Updated misc/ruby-bundler to 2.2.17

(taca)

2021-05-09 04:24:41 UTC MAIN commitmail json YAML

misc/ruby-bundler: update to 2.2.17

2.2.17 (2021-05-05)

Enhancements:

* Improve authentication required error message to include an alternative
  using ENV #4565
* Discard partial range responses without etag #4563
* Fix configuring ENV for a gem server with a name including dashes #4571
* Redact credentials from bundle env and bundle config #4566
* Redact all sources in verbose mode #4564
* Improve bundle pristine error if BUNDLE_GEMFILE does not exist #4536
* [CurrentRuby] Add 3.0 as a known minor #4535
* Prefer File.read instead of IO.read #4530
* Add space after open curly bracket in Gemfile and gems.rb template #4518

Bug fixes:

* Make sure specs are fetched from the right source when materializing #4562
* Fix bundle cache with an up-to-date lockfile and specs not already
  installed #4554
* Ignore deployment setting in inline mode #4523

Performance:

* Don't materialize resolutions when not necessary #4556

(taca)

2021-05-09 04:19:05 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-rb-fsevent to 0.11.0

(taca)

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

devel/ruby-rb-fsevent: update to 0.11.0

0.11.0 (2021-05-08)

* Add arm64 arch to support Apple M1 #88

(taca)

2021-05-09 03:46:24 UTC MAIN commitmail json YAML

2021-05-09 02:04:43 UTC MAIN commitmail json YAML

erlang-man: update MASTER_SITES to https

(gutteridge)

2021-05-09 02:03:28 UTC MAIN commitmail json YAML

erlang-doc: update MASTER_SITES to https

(gutteridge)

2021-05-09 00:59:01 UTC MAIN commitmail json YAML

Updated textproc/p5-String-CRC32 to 2.100

(wen)

2021-05-09 00:58:12 UTC MAIN commitmail json YAML

Update to 2.100

Upstream changes:
2.100    2021-02-04
        - Declare vars with our instead of use vars (GH #7, thanks to Grinnz)
        - Quote $VERSION to preserve formatting (GH #6, thanks to Grinnz)

2.000    2020-11-09
        - Switch to XSLoader rather than DynaLoader (GH #5, thanks to atoomic)

(wen)

2021-05-09 00:10:06 UTC MAIN commitmail json YAML

erlang-doc: set correct PKGREVISION

Present state is the fifth pkgsrc revision of this package.

(gutteridge)

2021-05-09 00:02:37 UTC MAIN commitmail json YAML

erlang: fix some build states

Fix builds when the java option is disabled (the default) and when
erlang-hipe is disabled (the default for some platforms/architectures).

(gutteridge)

2021-05-08 23:38:33 UTC MAIN commitmail json YAML

Updated textproc/p5-String-Interpolate to 0.33

(wen)

2021-05-08 23:37:34 UTC MAIN commitmail json YAML

Update to 0.33

Upstream changes:
0.33 2021-03-25 NEILB
    - Fixed typos in doc and comments. Thanks to Gregor Herrmann, RT#129224

(wen)

2021-05-08 23:35:10 UTC MAIN commitmail json YAML

Updated textproc/p5-Template-Tiny to 1.14

(wen)

2021-05-08 23:34:17 UTC MAIN commitmail json YAML

Update to 1.14

Upstream changes:
1.14      2021-05-02 16:48:45Z
          - add link to Template::Tiny::Strict

1.13      2021-01-30 17:28:27Z
          - distribution tooling updates

(wen)

2021-05-08 22:05:53 UTC MAIN commitmail json YAML

2021-05-08 22:05:12 UTC MAIN commitmail json YAML

doc: Updated graphics/pcl to 1.11.1nb3

(thor)

2021-05-08 22:04:59 UTC MAIN commitmail json YAML

graphics/pcl: add build fix regarding missing FLT_MAX defintion

(Was missing from earlier commit.)

(thor)

2021-05-08 22:03:14 UTC MAIN commitmail json YAML

2021-05-08 20:04:34 UTC MAIN commitmail json YAML

doc: Updated lang/erlang-doc to 23.3

(triaxx)

2021-05-08 20:04:03 UTC MAIN commitmail json YAML

erlang-doc: Fix PLIST after update of lang/erlang

(triaxx)

2021-05-08 20:03:10 UTC MAIN commitmail json YAML

doc: Updated lang/erlang to 23.3.3

(triaxx)

2021-05-08 20:02:52 UTC MAIN commitmail json YAML

erlang: Update to 23.3.3

upstream changes:
-----------------
Patch Package:          OTP 23.3.3
Git Tag:                OTP-23.3.3
Date:                    2021-05-06
Trouble Report Id:      OTP-16607, OTP-16930, OTP-17347, OTP-17357,
                        OTP-17358, OTP-17361
Seq num:                ERL-1371, ERL-1439, ERL-ERL-610, GH-3480,
                        GH-4396, GH-4774
System:                  OTP
Release:                23
Application:            common_test-1.20.2, compiler-7.6.8,
                        erl_interface-4.0.3, kernel-7.3.1,
                        runtime_tools-1.16.1
Predecessor:            OTP 23.3.2

Check out the git tag OTP-23.3.3, and build a full OTP system
including documentation. Apply one or more applications from this
build as patches to your installation using the 'otp_patch_apply'
tool. For information on install requirements, see descriptions for
each application version below.

---------------------------------------------------------------------
--- common_test-1.20.2 ----------------------------------------------
---------------------------------------------------------------------

The common_test-1.20.2 application can be applied independently of
other applications on a full OTP 23 installation.

--- Fixed Bugs and Malfunctions ---

  OTP-17347    Application(s): common_test
              Related Id(s): ERL-1439, GH-3480

              Before this change Config leaked between test groups in
              case of a subgroup was skipped (GH-3480).

Full runtime dependencies of common_test-1.20.2: compiler-6.0,
crypto-3.6, debugger-4.1, erts-7.0, ftp-1.0.0, inets-6.0, kernel-4.0,
observer-2.1, runtime_tools-1.8.16, sasl-2.4.2, snmp-5.1.2, ssh-4.0,
stdlib-3.5, syntax_tools-1.7, tools-2.8, xmerl-1.3.8

---------------------------------------------------------------------
--- compiler-7.6.8 --------------------------------------------------
---------------------------------------------------------------------

The compiler-7.6.8 application can be applied independently of other
applications on a full OTP 23 installation.

--- Fixed Bugs and Malfunctions ---

  OTP-17357    Application(s): compiler
              Related Id(s): GH-4774

              Fixed a bug in the validator that could cause it to
              reject valid code.

Full runtime dependencies of compiler-7.6.8: crypto-3.6, erts-11.0,
hipe-3.12, kernel-7.0, stdlib-3.13

---------------------------------------------------------------------
--- erl_interface-4.0.3 ---------------------------------------------
---------------------------------------------------------------------

The erl_interface-4.0.3 application can be applied independently of
other applications on a full OTP 23 installation.

--- Fixed Bugs and Malfunctions ---

  OTP-17358    Application(s): erl_interface
              Related Id(s): ERL-ERL-610

              Fix bug where sending of large data with
              ei_send_*/ei_rpc with infinite timeout could fail when
              the tcp buffer becomes full.

              Fault has existed since OTP-21.

--- Known Bugs and Problems ---

  OTP-16607    Application(s): erl_interface
              Related Id(s): OTP-16608

              The ei API for decoding/encoding terms is not fully
              64-bit compatible since terms that have a
              representation on the external term format larger than
              2 GB cannot be handled.

---------------------------------------------------------------------
--- kernel-7.3.1 ----------------------------------------------------
---------------------------------------------------------------------

The kernel-7.3.1 application can be applied independently of other
applications on a full OTP 23 installation.

--- Fixed Bugs and Malfunctions ---

  OTP-17361    Application(s): kernel

              A bug in the Erlang DNS resolver has been fixed, where
              it could be made to bring down the kernel supervisor
              and thereby the whole node, when getting an incorrect
              (IN A reply to an IN CNAME query) reply from the DNS
              server and used the reply record's value without
              verifying its type.

Full runtime dependencies of kernel-7.3.1: erts-11.0, sasl-3.0,
stdlib-3.13

---------------------------------------------------------------------
--- runtime_tools-1.16.1 --------------------------------------------
---------------------------------------------------------------------

The runtime_tools-1.16.1 application can be applied independently of
other applications on a full OTP 23 installation.

--- Fixed Bugs and Malfunctions ---

  OTP-16930    Application(s): runtime_tools
              Related Id(s): ERL-1371, GH-4396

              The function dbg:n/1 used a local fun to set up a
              tracer on a remote node. This works fine as long as the
              remote node is running exactly the same version of
              Erlang/OTP but does not work at all otherwise. This is
              fixed by exporting the relevant function and by calling
              this function on the remote node to set up remote
              tracing.

Full runtime dependencies of runtime_tools-1.16.1: erts-11.0,
kernel-7.0, mnesia-4.12, stdlib-3.13

---------------------------------------------------------------------
---------------------------------------------------------------------
---------------------------------------------------------------------

(triaxx)

2021-05-08 19:57:39 UTC MAIN commitmail json YAML

2021-05-08 19:53:28 UTC MAIN commitmail json YAML

recognize MariaDB 10.4 as another accepted MySQL version

(jdolecek)

2021-05-08 19:47:16 UTC MAIN commitmail json YAML

Add client and server packages for MariaDB 10.4

Copy of the pkgsrc-wip packages by nia@. Consider experimental for now.

(jdolecek)

2021-05-08 19:31:52 UTC MAIN commitmail json YAML

sysutils/fff: reclaim maintainership

(pin)

2021-05-08 19:30:51 UTC MAIN commitmail json YAML

wm/sowm: update DESCR

according to upstream.
Reclaim maintainership.

(pin)

2021-05-08 16:52:40 UTC MAIN commitmail json YAML

doc: Updated devel/go-tools to 0.1.0

(bsiegert)

2021-05-08 16:52:26 UTC MAIN commitmail json YAML

go-tools: update to 0.1.0

This is the first properly tagged version of go-tools. It now builds as a
module. The buildlink3 file is gone. Several binaries that landed in bin
by accident are no longer included :)

(bsiegert)

2021-05-08 16:36:34 UTC MAIN commitmail json YAML

go-tools: remove buildlink3.mk

Nothing depends on this any more. go-tools will be a module build soon.

(bsiegert)

2021-05-08 15:55:04 UTC MAIN commitmail json YAML

Mark go-package.mk as deprecated.

Module-based builds are the default way to build software in Go as of Go
1.16. go-package.mk implements the older GOPATH-based build type, which
will go away in one of the next Go releases (probably in early 2022).

(bsiegert)

2021-05-08 15:51:28 UTC MAIN commitmail json YAML

merge the version check for Darwin and !Darwin

mariadb55-client is now detected and used if available on macOS

(jdolecek)

2021-05-08 15:18:37 UTC MAIN commitmail json YAML

ucon64: Fix build on macOS. Patch from Daniè°·l Hæ—¦rchner.

"There are several reasons not to enable libdiscmage, which is different
than saying that it is unnecessary. It appears it is also unnecessary, as it
has never gotten further than alpha status and certain functionality was
actively disabled many years ago, but I never got any feedback about it.

The presence of libdiscmage caused confusion for some users and I had
discovered some issues in its limited functionality, so for version 2.2.1 of
uCON64 I decided to change the default of the configure script to
--without-libdiscmage. I probably should have stated that I consider
libdiscmage deprecated, because several distribution channels responded by
adding --with-libdiscmage to their build specifications for uCON64 instead.
Among those is pkgsrc."

(nia)

2021-05-08 15:02:47 UTC MAIN commitmail json YAML

2021-05-08 14:10:24 UTC MAIN commitmail json YAML

doc: Update Ruby on Rails 6.1 pacakges to 6.1.3.2

devel/ruby-activesupport61
devel/ruby-activemodel61
devel/ruby-activejob61
www/ruby-actionview61
www/ruby-actionpack61
databases/ruby-activerecord61
devel/ruby-activestorage61
mail/ruby-actionmailer61
mail/ruby-actionmailbox61
www/ruby-actioncable61
devel/ruby-railties61
textproc/ruby-actiontext61
www/ruby-rails61

(taca)

2021-05-08 14:08:57 UTC MAIN commitmail json YAML

www/ruby-rails61: update to 6.1.3.2

Real changes are in www/ruby-actionpack61 only.

## Rails 6.1.3.2 (May 05, 2021) ##

*  Prevent open redirects by correctly escaping the host allow list
    CVE-2021-22903

*  Prevent catastrophic backtracking during mime parsing
    CVE-2021-22902

*  Prevent regex DoS in HTTP token authentication
    CVE-2021-22904

*  Prevent string polymorphic route arguments.

    `url_for` supports building polymorphic URLs via an array
    of arguments (usually symbols and records). If a developer passes a
    user input array, strings can result in unwanted route helper calls.

    CVE-2021-22885

    *Gannon McGibbon*

(taca)

2021-05-08 14:05:25 UTC MAIN commitmail json YAML

doc: Update Ruby on Rails 6.0 pacakges to 6.0.3.7

devel/ruby-activesupport60
devel/ruby-activemodel60
devel/ruby-activejob60
www/ruby-actionview60
www/ruby-actionpack60
databases/ruby-activerecord60
mail/ruby-actionmailer60
mail/ruby-actionmailbox60
www/ruby-actioncable60
devel/ruby-railties60
devel/ruby-activestorage60
textproc/ruby-actiontext60
www/ruby-rails60

(taca)

2021-05-08 14:02:34 UTC MAIN commitmail json YAML

www/ruby-rails60: update to 6.0.3.7

Real changes are in www/ruby-actionpack60 only.

## Rails 6.0.3.7 (May 05, 2021) ##

*  Prevent catastrophic backtracking during mime parsing
    CVE-2021-22902

*  Prevent regex DoS in HTTP token authentication
    CVE-2021-22904

*  Prevent string polymorphic route arguments.

    `url_for` supports building polymorphic URLs via an array
    of arguments (usually symbols and records). If a developer passes a
    user input array, strings can result in unwanted route helper calls.

    CVE-2021-22885

    *Gannon McGibbon*

(taca)

2021-05-08 13:55:30 UTC MAIN commitmail json YAML

doc: Updated graphics/vtk to 9.0.1nb1

(thor)