Received: by mail.netbsd.org (Postfix, from userid 605) id 8CE1184D67; Fri, 9 Jul 2021 18:33:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C677384E66 for ; Fri, 9 Jul 2021 18:33:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id x5CMb4nsg2yV for ; Fri, 9 Jul 2021 18:33:41 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id E51D684D67 for ; Fri, 9 Jul 2021 18:33:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DC667FA95; Fri, 9 Jul 2021 18:33:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1625855620167200" MIME-Version: 1.0 Date: Fri, 9 Jul 2021 18:33:40 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-ruamel-yaml To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210709183340.DC667FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1625855620167200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Fri Jul 9 18:33:40 UTC 2021 Modified Files: pkgsrc/devel/py-ruamel-yaml: Makefile distinfo Log Message: py-ruamel-yaml: updated to 0.17.10 0.17.10 (2021-06-24): fix issue 388, token with old comment structure != two elements 0.17.9 (2021-06-10): fix issue with updating CommentedMap 0.17.8 (2021-06-09): fix for issue 387 where templated anchors on tagged object did get set resulting in potential id reuse. 0.17.7 (2021-05-31): issue 385 also affected other deprecated loaders 0.17.6 (2021-05-31): merged type annotations update provided by Jochen Sprickerhof fix for issue 385: deprecated round_trip_loader function not working wasted a few hours getting rid of mypy warnings/errors 0.17.5 (2021-05-30): fix for issue 384 !!set with aliased entry resulting in broken YAML on rt 0.17.4 (2021-04-07): prevent (empty) comments from throwing assertion error (issue 351 reported by William Kimball) comments (or empty line) will be dropped 0.17.3 (2021-04-07): fix for issue 382 caused by an error in a format string allow expansion of aliases by setting yaml.composer.return_alias = lambda s: copy.deepcopy(s) 0.17.2 (2021-03-29): change -py2.py3-none-any.whl to -py3-none-any.whl, and remove 0.17.1 0.17.1 (2021-03-29): added ‘Programming Language :: Python :: 3 :: Only’, and removing 0.17.0 from PyPI 0.17.0 (2021-03-26): removed because of incomplete classifiers this release no longer supports Python 2.7, most if not all Python 2 specific code is removed. The 0.17.x series is the last to support Python 3.5 (this also allowed for removal of the dependency on ruamel.std.pathlib) remove Python2 specific code branches and adaptations (u-strings) prepare % code for f-strings using _F allow PyOxidisation (issue 324 resp. issue 171) replaced Python 2 compatible enforcement of keyword arguments with ‘*’ the old top level functions load, safe_load, round_trip_load, dump, safe_dump, round_trip_dump, scan, parse, compose, emit, serialize as well as their _all variants for multi-document streams, now issue a PendingDeprecationning (e.g. when run from pytest, but also Python is started with -Wd). Use the methods on YAML(), which have been extended. fix for issue 376: indentation changes could put literal/folded scalar to start before the # column of a following comment. Effectively making the comment part of the scalar in the output. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/py-ruamel-yaml/Makefile cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/py-ruamel-yaml/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1625855620167200 Content-Disposition: inline Content-Length: 2215 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-ruamel-yaml/Makefile diff -u pkgsrc/devel/py-ruamel-yaml/Makefile:1.16 pkgsrc/devel/py-ruamel-yaml/Makefile:1.17 --- pkgsrc/devel/py-ruamel-yaml/Makefile:1.16 Fri Mar 5 13:45:28 2021 +++ pkgsrc/devel/py-ruamel-yaml/Makefile Fri Jul 9 18:33:40 2021 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2021/03/05 13:45:28 adam Exp $ +# $NetBSD: Makefile,v 1.17 2021/07/09 18:33:40 adam Exp $ -DISTNAME= ruamel.yaml-0.16.13 +DISTNAME= ruamel.yaml-0.17.10 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/./-/1} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=r/ruamel.yaml/} @@ -11,12 +11,10 @@ COMMENT= YAML parser/emitter LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-ruamel-yaml-clib>=0.1.2:../../devel/py-ruamel-yaml-clib -.include "../../lang/python/pyversion.mk" -.if ${_PYTHON_VERSION} == 27 -DEPENDS+= ${PYPKGPREFIX}-ruamel-ordereddict>=0.4.9:../../devel/py-ruamel-ordereddict -.endif USE_LANGUAGES= # none +PYTHON_VERSIONS_INCOMPATIBLE= 27 + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-ruamel-yaml/distinfo diff -u pkgsrc/devel/py-ruamel-yaml/distinfo:1.15 pkgsrc/devel/py-ruamel-yaml/distinfo:1.16 --- pkgsrc/devel/py-ruamel-yaml/distinfo:1.15 Fri Mar 5 13:45:28 2021 +++ pkgsrc/devel/py-ruamel-yaml/distinfo Fri Jul 9 18:33:40 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.15 2021/03/05 13:45:28 adam Exp $ +$NetBSD: distinfo,v 1.16 2021/07/09 18:33:40 adam Exp $ -SHA1 (ruamel.yaml-0.16.13.tar.gz) = 6cf440e449dde0b6c70707d9d9462a2887feaf7f -RMD160 (ruamel.yaml-0.16.13.tar.gz) = 0e42943a8c2a0b69247e82cf54645d1c7b1690e9 -SHA512 (ruamel.yaml-0.16.13.tar.gz) = 5373f944c852be6d185555b61e2db51f4d0ceb2ad666cd4efa116eace116ad7132e80b41867396491019ded6523ec3de26800c1365f767bbf91c68dda0b56d3c -Size (ruamel.yaml-0.16.13.tar.gz) = 149073 bytes +SHA1 (ruamel.yaml-0.17.10.tar.gz) = 07a7ec34356b9b316570af285c23491996864693 +RMD160 (ruamel.yaml-0.17.10.tar.gz) = 540534aad59ae8467e92013dbff7a83ec92f3e40 +SHA512 (ruamel.yaml-0.17.10.tar.gz) = afc0d2a9d900bd2205127d8ca3fa25e36a9f9c5d99af2c030a71dc1f45112a8da100fbea3869747f3236254a92cd945e28de7f60e2e5a845ac326fe35d071269 +Size (ruamel.yaml-0.17.10.tar.gz) = 126760 bytes --_----------=_1625855620167200--