Date: Sun, 22 Sep 2019 16:15:07 +0000 (UTC) From: "Jason W. Bacon" <jwb@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512591 - in head/archivers: . py-lzstring Message-ID: <201909221615.x8MGF7GF037545@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jwb Date: Sun Sep 22 16:15:06 2019 New Revision: 512591 URL: https://svnweb.freebsd.org/changeset/ports/512591 Log: archivers/py-lzstring: LZ-based in-memory string compression LZ-based, in-memory string compression module, based on the LZ-String javascript module. Added: head/archivers/py-lzstring/ head/archivers/py-lzstring/Makefile (contents, props changed) head/archivers/py-lzstring/distinfo (contents, props changed) head/archivers/py-lzstring/pkg-descr (contents, props changed) Modified: head/archivers/Makefile Modified: head/archivers/Makefile ============================================================================== --- head/archivers/Makefile Sun Sep 22 15:54:33 2019 (r512590) +++ head/archivers/Makefile Sun Sep 22 16:15:06 2019 (r512591) @@ -186,6 +186,7 @@ SUBDIR += py-librtfcomp SUBDIR += py-lz4 SUBDIR += py-lzma + SUBDIR += py-lzstring SUBDIR += py-pyliblzma SUBDIR += py-python-lhafile SUBDIR += py-python-lzo Added: head/archivers/py-lzstring/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-lzstring/Makefile Sun Sep 22 16:15:06 2019 (r512591) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= lzstring +DISTVERSION= 1.0.4 +CATEGORIES= archivers python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jwb@FreeBSD.org +COMMENT= LZ-based in-memory string compression + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/archivers/py-lzstring/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-lzstring/distinfo Sun Sep 22 16:15:06 2019 (r512591) @@ -0,0 +1,3 @@ +TIMESTAMP = 1569116524 +SHA256 (lzstring-1.0.4.tar.gz) = 1afa61e598193fbcc211e0899f09a9679e33f9102bccc37fbfda0b7fef4d9ea2 +SIZE (lzstring-1.0.4.tar.gz) = 4256 Added: head/archivers/py-lzstring/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-lzstring/pkg-descr Sun Sep 22 16:15:06 2019 (r512591) @@ -0,0 +1,4 @@ +LZ-based, in-memory string compression module, based on the LZ-String +javascript module. + +WWW: https://pypi.python.org/pypi/lzstring
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909221615.x8MGF7GF037545>