Received: by mail.netbsd.org (Postfix, from userid 605) id C097384FDF; Thu, 11 Jan 2024 13:07:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3391A85052 for ; Thu, 11 Jan 2024 13:06:37 +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 gJ9AuLL6pA4O for ; Thu, 11 Jan 2024 13:06:36 +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 82C4B85043 for ; Thu, 11 Jan 2024 13:06:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 74E54FA42; Thu, 11 Jan 2024 13:06:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1704978396187460" MIME-Version: 1.0 Date: Thu, 11 Jan 2024 13:06:36 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-Unidecode To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240111130636.74E54FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1704978396187460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Jan 11 13:06:36 UTC 2024 Modified Files: pkgsrc/textproc/py-Unidecode: Makefile PLIST distinfo Log Message: py-Unidecode: updated to 1.3.8 unidecode 1.3.8 * Fix replacement for U+1E9E "LATIN CAPITAL LETTER SHARP S" To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/textproc/py-Unidecode/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/textproc/py-Unidecode/PLIST cvs rdiff -u -r1.13 -r1.14 pkgsrc/textproc/py-Unidecode/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1704978396187460 Content-Disposition: inline Content-Length: 3256 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-Unidecode/Makefile diff -u pkgsrc/textproc/py-Unidecode/Makefile:1.16 pkgsrc/textproc/py-Unidecode/Makefile:1.17 --- pkgsrc/textproc/py-Unidecode/Makefile:1.16 Wed Sep 27 09:02:06 2023 +++ pkgsrc/textproc/py-Unidecode/Makefile Thu Jan 11 13:06:36 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2023/09/27 09:02:06 adam Exp $ +# $NetBSD: Makefile,v 1.17 2024/01/11 13:06:36 adam Exp $ -DISTNAME= Unidecode-1.3.7 +DISTNAME= Unidecode-1.3.8 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=U/Unidecode/} @@ -10,9 +10,10 @@ HOMEPAGE= https://github.com/avian2/unid COMMENT= ASCII transliterations of Unicode text LICENSE= gnu-gpl-v2 -USE_LANGUAGES= # none +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel -USE_PKG_RESOURCES= yes +USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 @@ -20,5 +21,5 @@ post-install: cd ${DESTDIR}${PREFIX}/bin && \ ${MV} unidecode unidecode-${PYVERSSUFFIX} || ${TRUE} -.include "../../lang/python/egg.mk" +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/py-Unidecode/PLIST diff -u pkgsrc/textproc/py-Unidecode/PLIST:1.6 pkgsrc/textproc/py-Unidecode/PLIST:1.7 --- pkgsrc/textproc/py-Unidecode/PLIST:1.6 Mon Oct 31 21:58:01 2022 +++ pkgsrc/textproc/py-Unidecode/PLIST Thu Jan 11 13:06:36 2024 @@ -1,10 +1,11 @@ -@comment $NetBSD: PLIST,v 1.6 2022/10/31 21:58:01 adam Exp $ +@comment $NetBSD: PLIST,v 1.7 2024/01/11 13:06:36 adam Exp $ bin/unidecode-${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}/top_level.txt +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt ${PYSITELIB}/unidecode/__init__.py ${PYSITELIB}/unidecode/__init__.pyc ${PYSITELIB}/unidecode/__init__.pyo Index: pkgsrc/textproc/py-Unidecode/distinfo diff -u pkgsrc/textproc/py-Unidecode/distinfo:1.13 pkgsrc/textproc/py-Unidecode/distinfo:1.14 --- pkgsrc/textproc/py-Unidecode/distinfo:1.13 Wed Sep 27 09:02:06 2023 +++ pkgsrc/textproc/py-Unidecode/distinfo Thu Jan 11 13:06:36 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.13 2023/09/27 09:02:06 adam Exp $ +$NetBSD: distinfo,v 1.14 2024/01/11 13:06:36 adam Exp $ -BLAKE2s (Unidecode-1.3.7.tar.gz) = 4755ea8b78e0cc462fa30fa223c8925f567d3ac7711e674c6a121e390b07794f -SHA512 (Unidecode-1.3.7.tar.gz) = b4f7c8b40e1c2d05aab4e53b54fd657a3db35ea5feba0f95551ba2ccfd7e5b0da034aec6de11c5e43f23c3a9609f5cbe8e458fe18539ffdf7ef79e039e1b390e -Size (Unidecode-1.3.7.tar.gz) = 192647 bytes +BLAKE2s (Unidecode-1.3.8.tar.gz) = cfc6078c0bb136d34c6497ade8588d964c6799634a6c2f5e437bdcead3fc1b8d +SHA512 (Unidecode-1.3.8.tar.gz) = 0c93647b05b3ce041ba0091705630a4d75dfc249b3aa57b1d8bd26d26f1a067af1d0103a0f57ee2ea07224797ce204562e08df92d0fe60e250a16614bf146ece +Size (Unidecode-1.3.8.tar.gz) = 192701 bytes --_----------=_1704978396187460--