diff options
author | adam <adam@pkgsrc.org> | 2018-12-18 12:02:34 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2018-12-18 12:02:34 +0000 |
commit | e07f7ba7d55e45012e3eb783599bdfae94691539 (patch) | |
tree | 7ef2983c1ef55c4376915e0b24bf393098bbfeda | |
parent | 4b94380c90f5b8b9819a5659b9a966617357c71b (diff) | |
download | pkgsrc-e07f7ba7d55e45012e3eb783599bdfae94691539.tar.gz |
py-lz4: updated to 2.1.5
2.1.5
This release contains no functional changes other than changes to the Appveyor configuration for publishing wheels.
2.1.4
This release contains no functional changes other than changes to the Travis configuration for publishing wheels.
2.1.3
A simplification of the tox.ini file
More robust checking for pkgconfig availability
Integration of cibuildwheel into travis builds so as to build and publish binary wheels for Linux and OSX
Only require pytest-runner if pytest/test is being called
Blacklists version 3.3.0 of pytest which has a bug that can cause the tests to fail.
-rw-r--r-- | archivers/py-lz4/Makefile | 6 | ||||
-rw-r--r-- | archivers/py-lz4/distinfo | 12 | ||||
-rw-r--r-- | archivers/py-lz4/patches/patch-setup.py | 8 |
3 files changed, 13 insertions, 13 deletions
diff --git a/archivers/py-lz4/Makefile b/archivers/py-lz4/Makefile index c219b85405b..0fff275d325 100644 --- a/archivers/py-lz4/Makefile +++ b/archivers/py-lz4/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.21 2018/11/05 09:22:38 adam Exp $ +# $NetBSD: Makefile,v 1.22 2018/12/18 12:02:34 adam Exp $ -DISTNAME= lz4-2.1.2 +DISTNAME= lz4-2.1.5 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= archivers python MASTER_SITES= ${MASTER_SITE_PYPI:=l/lz4/} @@ -10,8 +10,8 @@ HOMEPAGE= https://github.com/python-lz4/python-lz4 COMMENT= Python LZ4 binding LICENSE= modified-bsd -BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm BUILD_DEPENDS+= ${PYPKGPREFIX}-pkgconfig-[0-9]*:../../devel/py-pkgconfig +BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm BUILD_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner TEST_DEPENDS+= ${PYPKGPREFIX}-psutil-[0-9]*:../../sysutils/py-psutil TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test diff --git a/archivers/py-lz4/distinfo b/archivers/py-lz4/distinfo index afba258a157..9d7b7c010fb 100644 --- a/archivers/py-lz4/distinfo +++ b/archivers/py-lz4/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.19 2018/11/05 09:22:38 adam Exp $ +$NetBSD: distinfo,v 1.20 2018/12/18 12:02:34 adam Exp $ -SHA1 (lz4-2.1.2.tar.gz) = 741ba539200de73614e89b5b2e27299b263ba669 -RMD160 (lz4-2.1.2.tar.gz) = 96b81d12bb21bcc0237da7d972b35f3e09556198 -SHA512 (lz4-2.1.2.tar.gz) = f29d70f2237782c0f88d2851d2e2b07dd493aba56ff823ac7afce82c2b2ec48af2a139e341ee36b3cd76cf9a5b6ff2d02cc2246b68079823c018c2dcfb658379 -Size (lz4-2.1.2.tar.gz) = 128639 bytes -SHA1 (patch-setup.py) = 19f0fda54400ee21374e22c7657bf50d0c6c1c41 +SHA1 (lz4-2.1.5.tar.gz) = d6245470f28372bad7f41a81362ff86fff11720e +RMD160 (lz4-2.1.5.tar.gz) = fb89dc0e2ebcd05024bc5b9a4cb4ee8a3fb0ebe8 +SHA512 (lz4-2.1.5.tar.gz) = 3884b86c58a54dd864352ee1a93cd16dba44c22156ca59f8364bd4a660a186d9fd153822ba1b336aed1b229d5e64a32707189a41d9dd395de522495a69b99460 +Size (lz4-2.1.5.tar.gz) = 128829 bytes +SHA1 (patch-setup.py) = 316572cdcc0672197cb46663a96386271c6bcad6 diff --git a/archivers/py-lz4/patches/patch-setup.py b/archivers/py-lz4/patches/patch-setup.py index f0115394be7..debc2647112 100644 --- a/archivers/py-lz4/patches/patch-setup.py +++ b/archivers/py-lz4/patches/patch-setup.py @@ -1,11 +1,11 @@ -$NetBSD: patch-setup.py,v 1.1 2017/12/31 18:48:57 adam Exp $ +$NetBSD: patch-setup.py,v 1.2 2018/12/18 12:02:34 adam Exp $ Prefer external compiler optimizations. ---- setup.py.orig 2017-12-31 18:34:27.000000000 +0000 +--- setup.py.orig 2018-12-18 02:40:14.000000000 +0000 +++ setup.py -@@ -91,7 +91,6 @@ elif compiler in ('unix', 'mingw32'): - extra_compile_args.append(pkgconfig.cflags('liblz4')) +@@ -100,7 +100,6 @@ elif compiler in ('unix', 'mingw32'): + extra_compile_args.append(pkgconfig_cflags('liblz4')) else: extra_compile_args = [ - '-O3', |