svn commit: r512591 - in head/archivers: . py-lzstring
Jason W. Bacon
jwb at FreeBSD.org
Sun Sep 22 16:15:08 UTC 2019
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 at 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
More information about the svn-ports-head
mailing list