summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorjperkin <jperkin@pkgsrc.org>2018-10-19 14:36:10 +0000
committerjperkin <jperkin@pkgsrc.org>2018-10-19 14:36:10 +0000
commit9cc164f343d01c1e902d6fed3b85024430550c1a (patch)
tree864e5a0ab11a280d3c2d778aa16e587f7c36bd9d /security
parent720f5635ba8ef0a1795e08f03f396733d2007269 (diff)
downloadpkgsrc-9cc164f343d01c1e902d6fed3b85024430550c1a.tar.gz
py-rsa: Pull in build fix from sybrenstuvel/python-rsa#122
Diffstat (limited to 'security')
-rw-r--r--security/py-rsa/distinfo3
-rw-r--r--security/py-rsa/patches/patch-setup.py15
2 files changed, 17 insertions, 1 deletions
diff --git a/security/py-rsa/distinfo b/security/py-rsa/distinfo
index ef8cc6496c7..ee3396c6908 100644
--- a/security/py-rsa/distinfo
+++ b/security/py-rsa/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.7 2018/10/07 10:41:52 adam Exp $
+$NetBSD: distinfo,v 1.8 2018/10/19 14:36:10 jperkin Exp $
SHA1 (rsa-4.0.tar.gz) = 8a68dcee7bd2a7727c253b9ed2820cd1b5b9241a
RMD160 (rsa-4.0.tar.gz) = 806f139f5b69af170c7a04977665cdf8d4c046c7
SHA512 (rsa-4.0.tar.gz) = e11106741cc4275246c986d39b3f028b5a4df6fbffdd08a78072ac3d3a9a7ade7a39789c504a2705f54d858a9bdbf03981251f32f9c45baba71e4a986e14b24e
Size (rsa-4.0.tar.gz) = 37385 bytes
+SHA1 (patch-setup.py) = b4b9884b04eb0e80a32936c41501e5b72d551e1c
diff --git a/security/py-rsa/patches/patch-setup.py b/security/py-rsa/patches/patch-setup.py
new file mode 100644
index 00000000000..1e11552e1a3
--- /dev/null
+++ b/security/py-rsa/patches/patch-setup.py
@@ -0,0 +1,15 @@
+$NetBSD: patch-setup.py,v 1.1 2018/10/19 14:36:10 jperkin Exp $
+
+Pull in fix from https://github.com/sybrenstuvel/python-rsa/pull/122/files
+
+--- setup.py.orig 2018-09-16 11:39:35.000000000 +0000
++++ setup.py
+@@ -16,7 +16,7 @@
+
+ from setuptools import setup
+
+-with open('README.md') as f:
++with open('README.md', 'r', encoding='utf-8') as f:
+ long_description = f.read()
+
+ if __name__ == '__main__':