pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/yq yq: update to 2.13.0.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4a6c4fd0e4b2
branches:  trunk
changeset: 374350:4a6c4fd0e4b2
user:      fcambus <fcambus%pkgsrc.org@localhost>
date:      Sun Feb 20 12:48:48 2022 +0000

description:
yq: update to 2.13.0.

Changes for v2.13.0 (2021-12-02)
================================

-  Armor against entity expansion attacks

-  Improve YAML loading performance by using CSafeLoader where available

-  Require PyYAML 5.3.1 or newer

-  Test and release infrastructure improvements

Changes for v2.12.2 (2021-06-13)
================================

-  Handle -n correctly

Changes for v2.12.1 (2021-06-13)
================================

-  Do not close fds on child process

Changes for v2.12.0 (2021-02-05)
================================

-  Add TOML support and the tomlq CLI utility to access it

-  Drop Python 2.7 support

Changes for v2.11.1 (2020-09-26)
================================

Parse correctly when empty string is passed as jq_filter

Changes for v2.11.0 (2020-09-03)
================================

-  Better handling of jq_filter and files arguments (#102)

-  Create **main**.py (#82)

Changes for v2.10.1 (2020-05-11)
================================

-  Add support for xmltodict force_list definition for xq CLI (#95)

-  Support explicit doc markers (#93)

-  Ensure proper ordering of help messages (#90)

Changes for v2.10.0 (2019-12-23)
================================

-  Add support for in-place editing (yq -yi)

-  Add argcomplete integration

-  Docs: Migrate from RTD to gh-pages

diffstat:

 textproc/yq/Makefile |   7 ++++---
 textproc/yq/PLIST    |  27 ++++++++++++++-------------
 textproc/yq/distinfo |   8 ++++----
 3 files changed, 22 insertions(+), 20 deletions(-)

diffs (78 lines):

diff -r 9557b9302429 -r 4a6c4fd0e4b2 textproc/yq/Makefile
--- a/textproc/yq/Makefile      Sun Feb 20 11:58:26 2022 +0000
+++ b/textproc/yq/Makefile      Sun Feb 20 12:48:48 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2022/02/19 22:13:50 fcambus Exp $
+# $NetBSD: Makefile,v 1.7 2022/02/20 12:48:48 fcambus Exp $
 
-DISTNAME=      yq-2.9.2
-PKGREVISION=   3
+DISTNAME=      yq-2.13.0
 CATEGORIES=    textproc
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=kislyuk/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}
@@ -12,6 +11,8 @@
 LICENSE=       apache-2.0
 
 DEPENDS+=      jq-[0-9]*:../../devel/jq
+
+DEPENDS+=      ${PYPKGPREFIX}-argcomplete-[0-9]*:../../devel/py-argcomplete
 DEPENDS+=      ${PYPKGPREFIX}-xmltodict-[0-9]*:../../textproc/py-xmltodict
 DEPENDS+=      ${PYPKGPREFIX}-yaml-[0-9]*:../../textproc/py-yaml
 DEPENDS+=      ${PYPKGPREFIX}-toml-[0-9]*:../../textproc/py-toml
diff -r 9557b9302429 -r 4a6c4fd0e4b2 textproc/yq/PLIST
--- a/textproc/yq/PLIST Sun Feb 20 11:58:26 2022 +0000
+++ b/textproc/yq/PLIST Sun Feb 20 12:48:48 2022 +0000
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.1 2019/11/19 21:30:15 maya Exp $
+@comment $NetBSD: PLIST,v 1.2 2022/02/20 12:48:48 fcambus Exp $
+bin/tomlq
 bin/xq
 bin/yq
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
@@ -8,20 +9,20 @@
 ${PYSITELIB}/${EGG_INFODIR}/requires.txt
 ${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 ${PYSITELIB}/yq/__init__.py
+${PYSITELIB}/yq/__init__.pyc
 ${PYSITELIB}/yq/__init__.pyo
-${PYSITELIB}/yq/__init__.pyc
-${PYSITELIB}/yq/compat.pyo
-${PYSITELIB}/yq/compat.pyc
+${PYSITELIB}/yq/__main__.py
+${PYSITELIB}/yq/__main__.pyc
+${PYSITELIB}/yq/__main__.pyo
+${PYSITELIB}/yq/dumper.py
+${PYSITELIB}/yq/dumper.pyc
 ${PYSITELIB}/yq/dumper.pyo
-${PYSITELIB}/yq/dumper.pyc
+${PYSITELIB}/yq/loader.py
+${PYSITELIB}/yq/loader.pyc
 ${PYSITELIB}/yq/loader.pyo
-${PYSITELIB}/yq/loader.pyc
+${PYSITELIB}/yq/parser.py
+${PYSITELIB}/yq/parser.pyc
 ${PYSITELIB}/yq/parser.pyo
-${PYSITELIB}/yq/parser.pyc
-${PYSITELIB}/yq/version.pyo
+${PYSITELIB}/yq/version.py
 ${PYSITELIB}/yq/version.pyc
-${PYSITELIB}/yq/compat.py
-${PYSITELIB}/yq/dumper.py
-${PYSITELIB}/yq/loader.py
-${PYSITELIB}/yq/parser.py
-${PYSITELIB}/yq/version.py
+${PYSITELIB}/yq/version.pyo
diff -r 9557b9302429 -r 4a6c4fd0e4b2 textproc/yq/distinfo
--- a/textproc/yq/distinfo      Sun Feb 20 11:58:26 2022 +0000
+++ b/textproc/yq/distinfo      Sun Feb 20 12:48:48 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.3 2021/10/26 11:23:42 nia Exp $
+$NetBSD: distinfo,v 1.4 2022/02/20 12:48:48 fcambus Exp $
 
-BLAKE2s (yq-2.9.2.tar.gz) = 86e0fee2de5942485edd111e217d9c2941fcdd78447175538502751fcd422371
-SHA512 (yq-2.9.2.tar.gz) = 3b3c8e486540c0345af0bbc17b3f8e64d07d4eadce7f38931c1adcae74610cce7d305f43a8a903f9838672c56d25e92bd0b1d967142d3a2dcd66338e39d03f12
-Size (yq-2.9.2.tar.gz) = 20941 bytes
+BLAKE2s (yq-2.13.0.tar.gz) = e8db0011b617cf471c0bd37f16081b253baf9cc8b42a441a7a000ce0c8270f42
+SHA512 (yq-2.13.0.tar.gz) = 1eff64ae59fc079bff9db24492e47fde97e81fb28f1d0ad7ecffd788793d709450bb3bfe9a0587eb12c996b3b87dadff90d73757db28cb2ded3b1975294dbd87
+Size (yq-2.13.0.tar.gz) = 23127 bytes



Home | Main Index | Thread Index | Old Index