Received: by mail.netbsd.org (Postfix, from userid 605) id E701984F09; Tue, 26 Apr 2022 17:55:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2A97584E75 for ; Tue, 26 Apr 2022 17:55:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id CPdZmTS0gMpd for ; Tue, 26 Apr 2022 17:55:37 +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 803EC84CEF for ; Tue, 26 Apr 2022 17:55:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 737BDFB1A; Tue, 26 Apr 2022 17:55:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165099573798000" MIME-Version: 1.0 Date: Tue, 26 Apr 2022 17:55:37 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-natsort To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220426175537.737BDFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165099573798000 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Apr 26 17:55:37 UTC 2022 Modified Files: pkgsrc/textproc/py-natsort: Makefile PLIST distinfo Log Message: py-natsort: updated to 8.1.0 8.1.0 - 2022-01-30 Changed When using ns.PATH, only split off a maximum of two suffixes from a file name. 8.0.2 - 2021-12-14 Fixed Bug where sorting paths fail if one of the paths is '.' 8.0.1 - 2021-12-10 Fixed Compose unicode characters when using locale to ensure sorting is correct across all locales 8.0.0 - 2021-11-03 Re-release 7.2.0 as 8.0.0 because introduction of type hints can break CI builds To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/textproc/py-natsort/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/textproc/py-natsort/PLIST cvs rdiff -u -r1.19 -r1.20 pkgsrc/textproc/py-natsort/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165099573798000 Content-Disposition: inline Content-Length: 2959 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-natsort/Makefile diff -u pkgsrc/textproc/py-natsort/Makefile:1.20 pkgsrc/textproc/py-natsort/Makefile:1.21 --- pkgsrc/textproc/py-natsort/Makefile:1.20 Wed Jan 5 15:41:25 2022 +++ pkgsrc/textproc/py-natsort/Makefile Tue Apr 26 17:55:37 2022 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.20 2022/01/05 15:41:25 wiz Exp $ +# $NetBSD: Makefile,v 1.21 2022/04/26 17:55:37 adam Exp $ -DISTNAME= natsort-7.1.1 +DISTNAME= natsort-8.1.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 2 CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=n/natsort/} @@ -25,7 +24,7 @@ post-install: ${MV} natsort natsort-${PYVERSSUFFIX} || ${TRUE} do-test: - cd ${WRKSRC} && pytest-${PYVERSSUFFIX} tests + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/py-natsort/PLIST diff -u pkgsrc/textproc/py-natsort/PLIST:1.5 pkgsrc/textproc/py-natsort/PLIST:1.6 --- pkgsrc/textproc/py-natsort/PLIST:1.5 Wed Apr 29 13:53:31 2020 +++ pkgsrc/textproc/py-natsort/PLIST Tue Apr 26 17:55:37 2022 @@ -1,9 +1,10 @@ -@comment $NetBSD: PLIST,v 1.5 2020/04/29 13:53:31 adam Exp $ +@comment $NetBSD: PLIST,v 1.6 2022/04/26 17:55:37 adam Exp $ bin/natsort-${PYVERSSUFFIX} ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt ${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe ${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/natsort/__init__.py @@ -30,6 +31,7 @@ ${PYSITELIB}/natsort/natsort.pyo ${PYSITELIB}/natsort/ns_enum.py ${PYSITELIB}/natsort/ns_enum.pyc ${PYSITELIB}/natsort/ns_enum.pyo +${PYSITELIB}/natsort/py.typed ${PYSITELIB}/natsort/unicode_numbers.py ${PYSITELIB}/natsort/unicode_numbers.pyc ${PYSITELIB}/natsort/unicode_numbers.pyo Index: pkgsrc/textproc/py-natsort/distinfo diff -u pkgsrc/textproc/py-natsort/distinfo:1.19 pkgsrc/textproc/py-natsort/distinfo:1.20 --- pkgsrc/textproc/py-natsort/distinfo:1.19 Tue Oct 26 11:23:08 2021 +++ pkgsrc/textproc/py-natsort/distinfo Tue Apr 26 17:55:37 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.19 2021/10/26 11:23:08 nia Exp $ +$NetBSD: distinfo,v 1.20 2022/04/26 17:55:37 adam Exp $ -BLAKE2s (natsort-7.1.1.tar.gz) = f67a7dfd89e24b3e0330b04b1100dc966c3242a8396cd410a6c08ff410b7136e -SHA512 (natsort-7.1.1.tar.gz) = 1903c933c6203ef0cd194ea444d79276b79ec385728a92b6e73d1698abc8e1351e96ed8ea4ae5f9f413ef6daecfd269a4d0de74c45eedff682fe929d8f977f30 -Size (natsort-7.1.1.tar.gz) = 142749 bytes +BLAKE2s (natsort-8.1.0.tar.gz) = 70c7aa329dc3d2aa09620420b965965d5edf21fe9292c5bd979370a475bffe46 +SHA512 (natsort-8.1.0.tar.gz) = a065899b124e6a6ee8560ce1882650e35f0c36ddfd3c56462820886b076cd8cdb0121825e30e298af576e07915cc5bc1e90fe3f0b1f7bfb89f816c00665baa22 +Size (natsort-8.1.0.tar.gz) = 145241 bytes --_----------=_165099573798000--