Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 549F984ECD for ; Thu, 20 Jul 2023 14:11:00 +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 W2PsY2wWafL0 for ; Thu, 20 Jul 2023 14:10:59 +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 BBAD884EAD for ; Thu, 20 Jul 2023 14:10:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B5004FBDB; Thu, 20 Jul 2023 14:10:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1689862259232610" MIME-Version: 1.0 Date: Thu, 20 Jul 2023 14:10:59 +0000 From: "Jason Bacon" Subject: CVS commit: pkgsrc/archivers/py-lzstring To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: bacon@netbsd.org X-Mailer: log_accum Message-Id: <20230720141059.B5004FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1689862259232610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bacon Date: Thu Jul 20 14:10:59 UTC 2023 Added Files: pkgsrc/archivers/py-lzstring: DESCR Makefile PLIST distinfo Log Message: archivers/py-lzstring: LZ in-memory string compression LZ-based, in-memory string compression module, based on the LZ-String javascript module. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/archivers/py-lzstring/DESCR \ pkgsrc/archivers/py-lzstring/Makefile pkgsrc/archivers/py-lzstring/PLIST \ pkgsrc/archivers/py-lzstring/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1689862259232610 Content-Disposition: inline Content-Length: 2154 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/archivers/py-lzstring/DESCR diff -u /dev/null pkgsrc/archivers/py-lzstring/DESCR:1.1 --- /dev/null Thu Jul 20 14:10:59 2023 +++ pkgsrc/archivers/py-lzstring/DESCR Thu Jul 20 14:10:59 2023 @@ -0,0 +1,2 @@ +LZ-based, in-memory string compression module, based on the LZ-String +javascript module. Index: pkgsrc/archivers/py-lzstring/Makefile diff -u /dev/null pkgsrc/archivers/py-lzstring/Makefile:1.1 --- /dev/null Thu Jul 20 14:10:59 2023 +++ pkgsrc/archivers/py-lzstring/Makefile Thu Jul 20 14:10:59 2023 @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.1 2023/07/20 14:10:59 bacon Exp $ + +DISTNAME= lzstring-1.0.4 +PKGNAME= ${PYPKGPREFIX}-lzstring-1.0.4 +CATEGORIES= archivers +MASTER_SITES= ${MASTER_SITE_PYPI:=l/lzstring/} + +OWNER= bacon@NetBSD.org +HOMEPAGE= https://pypi.python.org/pypi/lzstring +COMMENT= LZ-based in-memory string compression +LICENSE= mit + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/archivers/py-lzstring/PLIST diff -u /dev/null pkgsrc/archivers/py-lzstring/PLIST:1.1 --- /dev/null Thu Jul 20 14:10:59 2023 +++ pkgsrc/archivers/py-lzstring/PLIST Thu Jul 20 14:10:59 2023 @@ -0,0 +1,9 @@ +@comment $NetBSD: PLIST,v 1.1 2023/07/20 14:10:59 bacon Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/lzstring/__init__.py +${PYSITELIB}/lzstring/__init__.pyc +${PYSITELIB}/lzstring/__init__.pyo Index: pkgsrc/archivers/py-lzstring/distinfo diff -u /dev/null pkgsrc/archivers/py-lzstring/distinfo:1.1 --- /dev/null Thu Jul 20 14:10:59 2023 +++ pkgsrc/archivers/py-lzstring/distinfo Thu Jul 20 14:10:59 2023 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2023/07/20 14:10:59 bacon Exp $ + +BLAKE2s (lzstring-1.0.4.tar.gz) = b8e32b037aa01162e1b884ae5c5e82c3617e7cef707aa71e317905c11d8dd2fb +SHA512 (lzstring-1.0.4.tar.gz) = 0d61fe04402aaa5325d3ab555b9b83132048124a2ff11ae3a947a188d5507f1043b0522fcb7024009d75cf3efd3afbb64d24c238c4c2181346a823c77cb4ea02 +Size (lzstring-1.0.4.tar.gz) = 4256 bytes --_----------=_1689862259232610--