-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
py-zipstream: update to version 1.1.8
Changes made after forking v1.1.4: v1.1.5 (2019-03-18) * Support Zip64 when compressing iterables and strings (allanlei/python-zipstream#25) v1.1.6 (2019-06-06) * Add partial flushing of ZipStreams (arjan-s/python-zipstream#1) v1.1.7 (2019-10-22) * Stream data in the order it was received (arjan-s/python-zipstream#4) v1.1.8 (2020-09-14) * New datetime parameter in write_iter (arjan-s/python-zipstream#8)
- Loading branch information
Showing
3 changed files
with
17 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# $NetBSD: Makefile,v 1.1 2019/11/03 01:06:10 markd Exp $ | ||
# $NetBSD: Makefile,v 1.2 2021/05/30 21:48:19 khorben Exp $ | ||
|
||
DISTNAME= zipstream-1.1.4 | ||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME} | ||
DISTNAME= zipstream-new-${PKGVERSION_NOREV} | ||
PKGNAME= ${PYPKGPREFIX}-zipstream-1.1.8 | ||
CATEGORIES= archivers python | ||
MASTER_SITES= ${MASTER_SITE_PYPI:=z/zipstream/} | ||
MASTER_SITES= ${MASTER_SITE_PYPI:=z/zipstream-new/} | ||
|
||
MAINTAINER= [email protected] | ||
HOMEPAGE= https://github.com/allanlei/python-zipstream | ||
HOMEPAGE= https://github.com/arjan-s/python-zipstream | ||
COMMENT= Zipfile generator | ||
LICENSE= gnu-gpl-v3 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,11 @@ | ||
@comment $NetBSD: PLIST,v 1.1 2019/11/03 01:06:10 markd Exp $ | ||
@comment $NetBSD: PLIST,v 1.2 2021/05/30 21:48:19 khorben Exp $ | ||
${PYSITELIB}/zipstream/__init__.py | ||
${PYSITELIB}/zipstream/__init__.pyc | ||
${PYSITELIB}/zipstream/__init__.pyo | ||
${PYSITELIB}/zipstream/compat.py | ||
${PYSITELIB}/zipstream/compat.pyc | ||
${PYSITELIB}/zipstream/compat.pyo | ||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO | ||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt | ||
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt | ||
${PYSITELIB}/${EGG_INFODIR}/pbr.json | ||
${PYSITELIB}/${EGG_INFODIR}/top_level.txt | ||
${PYSITELIB}/zipstream/__init__.py | ||
${PYSITELIB}/zipstream/__init__.pyo | ||
${PYSITELIB}/zipstream/__init__.pyc | ||
${PYSITELIB}/zipstream/compat.pyo | ||
${PYSITELIB}/zipstream/compat.pyc | ||
${PYSITELIB}/zipstream/constants.pyo | ||
${PYSITELIB}/zipstream/constants.pyc | ||
${PYSITELIB}/zipstream/init.pyo | ||
${PYSITELIB}/zipstream/init.pyc | ||
${PYSITELIB}/zipstream/compat.py | ||
${PYSITELIB}/zipstream/constants.py | ||
${PYSITELIB}/zipstream/init.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.1 2019/11/03 01:06:10 markd Exp $ | ||
$NetBSD: distinfo,v 1.2 2021/05/30 21:48:19 khorben Exp $ | ||
|
||
SHA1 (zipstream-1.1.4.tar.gz) = 9c0f52900237ba1593ea4996563ca0ed34e574dc | ||
RMD160 (zipstream-1.1.4.tar.gz) = 4d3727bc32a7f8a1a237916c8fd80c8dc1c50f31 | ||
SHA512 (zipstream-1.1.4.tar.gz) = db48130cd54f34136e6698ac3eaabee3edbd6e5027c1559ee4d5c3af14b2bf6f8fb46d49541dc492c49d21e95a20e701468273491188f8fc22f5bde4303e2ba6 | ||
Size (zipstream-1.1.4.tar.gz) = 5785 bytes | ||
SHA1 (zipstream-new-1.1.8.tar.gz) = b20b215b0cfca81212b548341fec8391688bdc50 | ||
RMD160 (zipstream-new-1.1.8.tar.gz) = b8aa987a62b9ee1dba97f64523f99a2f2232bc27 | ||
SHA512 (zipstream-new-1.1.8.tar.gz) = 96dd0931487ee7d43fedb21d0b8f41e48c1e30bcf903df115e40aa6346016ca6b49d012ee3ed882f6d2306f774c90afefa539aa450d22f60cc29a6c338c1e49b | ||
Size (zipstream-new-1.1.8.tar.gz) = 9377 bytes |