summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2018-01-09 05:26:09 +0000
committeradam <adam@pkgsrc.org>2018-01-09 05:26:09 +0000
commit656e6f937e67e1641f1bb3b175eedd657156832e (patch)
tree1e3571a02d13d7257ac64e5f8c46c5f496c8522d /misc
parente1c330f1667d4a1ed8e41ea9d1fe594f882b2409 (diff)
downloadpkgsrc-656e6f937e67e1641f1bb3b175eedd657156832e.tar.gz
py-stdnum: updated to 1.8.1
changes from 1.8 to 1.8.1 * fix a packaging issue in the long description
Diffstat (limited to 'misc')
-rw-r--r--misc/py-stdnum/Makefile4
-rw-r--r--misc/py-stdnum/distinfo11
-rw-r--r--misc/py-stdnum/patches/patch-setup.py23
3 files changed, 7 insertions, 31 deletions
diff --git a/misc/py-stdnum/Makefile b/misc/py-stdnum/Makefile
index 9ad2ee70a16..71c7a89ebbb 100644
--- a/misc/py-stdnum/Makefile
+++ b/misc/py-stdnum/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2018/01/04 20:44:09 adam Exp $
+# $NetBSD: Makefile,v 1.13 2018/01/09 05:26:09 adam Exp $
-DISTNAME= python-stdnum-1.8
+DISTNAME= python-stdnum-1.8.1
PKGNAME= ${DISTNAME:S/python/${PYPKGPREFIX}/}
CATEGORIES= misc python
MASTER_SITES= ${MASTER_SITE_PYPI:=p/python-stdnum/}
diff --git a/misc/py-stdnum/distinfo b/misc/py-stdnum/distinfo
index df28e4dd066..e220527227c 100644
--- a/misc/py-stdnum/distinfo
+++ b/misc/py-stdnum/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.5 2018/01/04 20:44:09 adam Exp $
+$NetBSD: distinfo,v 1.6 2018/01/09 05:26:09 adam Exp $
-SHA1 (python-stdnum-1.8.tar.gz) = c769b65d1de63fdc926277d7a98456a004dafe51
-RMD160 (python-stdnum-1.8.tar.gz) = 075b3baf1862d1dc7c8ed9fcbbdc290c9d2bdfc5
-SHA512 (python-stdnum-1.8.tar.gz) = af3ab7a035ff99dd719540246b148f13727799cc2728819c14ca6d7e25157bfc840f4696d74dbfafc956be6c5a33ea02f4028289193db5919c660c72b2a8e781
-Size (python-stdnum-1.8.tar.gz) = 421547 bytes
-SHA1 (patch-setup.py) = 2fdf51a8d5702f7dbb50afe1f7d2e2874124e955
+SHA1 (python-stdnum-1.8.1.tar.gz) = dba65726f2c832b88c0777706d01a28f7233d910
+RMD160 (python-stdnum-1.8.1.tar.gz) = 7abfb19039a4cc827b9b2847392b0cb1fe595851
+SHA512 (python-stdnum-1.8.1.tar.gz) = 02b0f8bc7e2245f780777b3b45db860b6332ad7fedfd6e674a8d67666693107773f5eda02bb241aef950a2409d5ac241b6de8326f80159311f2c22f0d0dc9465
+Size (python-stdnum-1.8.1.tar.gz) = 421921 bytes
diff --git a/misc/py-stdnum/patches/patch-setup.py b/misc/py-stdnum/patches/patch-setup.py
deleted file mode 100644
index 538ec3130cd..00000000000
--- a/misc/py-stdnum/patches/patch-setup.py
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-setup.py,v 1.1 2018/01/04 20:44:10 adam Exp $
-
-Read README file with UTF-8 enconding.
-
---- setup.py.orig 2018-01-04 20:35:54.000000000 +0000
-+++ setup.py
-@@ -21,6 +21,7 @@
-
- """python-stdnum installation script."""
-
-+import io
- import os
- import sys
- from setuptools import setup, find_packages
-@@ -34,7 +35,7 @@ if 'sdist' in sys.argv:
-
- base_dir = os.path.dirname(__file__)
-
--with open(os.path.join(base_dir, 'README'), 'r') as fp:
-+with io.open(os.path.join(base_dir, 'README'), 'r', encoding='utf-8') as fp:
- long_description = fp.read()
-
- setup(name='python-stdnum',