Received: by mail.netbsd.org (Postfix, from userid 605) id 9B85D84DE6; Wed, 10 Feb 2021 10:41:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D14E684D24 for ; Wed, 10 Feb 2021 10:41: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 8vTgbUVzcvVO for ; Wed, 10 Feb 2021 10:41: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 1595084CD9 for ; Wed, 10 Feb 2021 10:41:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0932DFA95; Wed, 10 Feb 2021 10:41:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1612953697217810" MIME-Version: 1.0 Date: Wed, 10 Feb 2021 10:41:37 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/converters To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210210104137.0932DFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1612953697217810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Feb 10 10:41:36 UTC 2021 Modified Files: pkgsrc/converters: Makefile Added Files: pkgsrc/converters/py-base58: ALTERNATIVES DESCR Makefile PLIST distinfo Log Message: py-base58: added version 2.1.0 Base58 and Base58Check implementation compatible with what is used by the bitcoin network. Any other alternative alphabet (like the XRP one) can be used. To generate a diff of this commit: cvs rdiff -u -r1.185 -r1.186 pkgsrc/converters/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/converters/py-base58/ALTERNATIVES \ pkgsrc/converters/py-base58/DESCR pkgsrc/converters/py-base58/Makefile \ pkgsrc/converters/py-base58/PLIST pkgsrc/converters/py-base58/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1612953697217810 Content-Disposition: inline Content-Length: 3869 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/converters/Makefile diff -u pkgsrc/converters/Makefile:1.185 pkgsrc/converters/Makefile:1.186 --- pkgsrc/converters/Makefile:1.185 Sat Jan 16 16:04:00 2021 +++ pkgsrc/converters/Makefile Wed Feb 10 10:41:36 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.185 2021/01/16 16:04:00 triaxx Exp $ +# $NetBSD: Makefile,v 1.186 2021/02/10 10:41:36 adam Exp $ # COMMENT= Document format and character code converters @@ -109,6 +109,7 @@ SUBDIR+= php-mbstring SUBDIR+= php-recode SUBDIR+= psiconv SUBDIR+= pstotext +SUBDIR+= py-base58 SUBDIR+= py-cairosvg SUBDIR+= py-chardet SUBDIR+= py-confusable_homoglyphs Added files: Index: pkgsrc/converters/py-base58/ALTERNATIVES diff -u /dev/null pkgsrc/converters/py-base58/ALTERNATIVES:1.1 --- /dev/null Wed Feb 10 10:41:36 2021 +++ pkgsrc/converters/py-base58/ALTERNATIVES Wed Feb 10 10:41:36 2021 @@ -0,0 +1 @@ +bin/base58 @PREFIX@/bin/base58-@PYVERSSUFFIX@ Index: pkgsrc/converters/py-base58/DESCR diff -u /dev/null pkgsrc/converters/py-base58/DESCR:1.1 --- /dev/null Wed Feb 10 10:41:36 2021 +++ pkgsrc/converters/py-base58/DESCR Wed Feb 10 10:41:36 2021 @@ -0,0 +1,2 @@ +Base58 and Base58Check implementation compatible with what is used by the +bitcoin network. Any other alternative alphabet (like the XRP one) can be used. Index: pkgsrc/converters/py-base58/Makefile diff -u /dev/null pkgsrc/converters/py-base58/Makefile:1.1 --- /dev/null Wed Feb 10 10:41:36 2021 +++ pkgsrc/converters/py-base58/Makefile Wed Feb 10 10:41:36 2021 @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.1 2021/02/10 10:41:36 adam Exp $ + +DISTNAME= base58-2.1.0 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= converters python +MASTER_SITES+= ${MASTER_SITE_PYPI:=b/base58/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/keis/base58 +COMMENT= Base58 and Base58Check implementation +LICENSE= mit + +TEST_DEPENDS+= ${PYPKGPREFIX}-hamcrest-[0-9]*:../../devel/py-hamcrest +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test +TEST_DEPENDS+= ${PYPKGPREFIX}-test-benchmark-[0-9]*:../../devel/py-test-benchmark + +USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +post-install: + cd ${DESTDIR}${PREFIX}/bin && \ + ${MV} base58 base58-${PYVERSSUFFIX} || ${TRUE} + +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/converters/py-base58/PLIST diff -u /dev/null pkgsrc/converters/py-base58/PLIST:1.1 --- /dev/null Wed Feb 10 10:41:36 2021 +++ pkgsrc/converters/py-base58/PLIST Wed Feb 10 10:41:36 2021 @@ -0,0 +1,16 @@ +@comment $NetBSD: PLIST,v 1.1 2021/02/10 10:41:36 adam Exp $ +bin/base58-${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}/base58/__init__.py +${PYSITELIB}/base58/__init__.pyc +${PYSITELIB}/base58/__init__.pyo +${PYSITELIB}/base58/__main__.py +${PYSITELIB}/base58/__main__.pyc +${PYSITELIB}/base58/__main__.pyo +${PYSITELIB}/base58/py.typed Index: pkgsrc/converters/py-base58/distinfo diff -u /dev/null pkgsrc/converters/py-base58/distinfo:1.1 --- /dev/null Wed Feb 10 10:41:36 2021 +++ pkgsrc/converters/py-base58/distinfo Wed Feb 10 10:41:36 2021 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2021/02/10 10:41:36 adam Exp $ + +SHA1 (base58-2.1.0.tar.gz) = f01a2e47a99bf36ca923ee5228791e8c454451fb +RMD160 (base58-2.1.0.tar.gz) = 4f994206f68e1c0cd897f17a221b7a1c92871431 +SHA512 (base58-2.1.0.tar.gz) = 1912d01eed30d923fecef72f643f1a1e9954c80505805ef5d673e361eb8ee73d5cbb7cdb48599cfa3b28969b79fb4fd9994aea21dc7a9779a1bb21d729dc058c +Size (base58-2.1.0.tar.gz) = 6351 bytes --_----------=_1612953697217810--