summaryrefslogtreecommitdiff
path: root/security/py-rsa40
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2022-01-14 11:49:41 +0000
committerwiz <wiz@pkgsrc.org>2022-01-14 11:49:41 +0000
commitb461ebc61eb28fe69cd1e993ac58e3c1757c7e47 (patch)
tree9805ebfe34408e9981eebfdd2ad617857f732131 /security/py-rsa40
parent71023e16e9c60a858d647271160d66c2cc71b386 (diff)
downloadpkgsrc-b461ebc61eb28fe69cd1e993ac58e3c1757c7e47.tar.gz
*: remove workaround patches for python 3.6
Diffstat (limited to 'security/py-rsa40')
-rw-r--r--security/py-rsa40/distinfo3
-rw-r--r--security/py-rsa40/patches/patch-setup.py17
2 files changed, 1 insertions, 19 deletions
diff --git a/security/py-rsa40/distinfo b/security/py-rsa40/distinfo
index 28a61a4cb91..b8d4806401e 100644
--- a/security/py-rsa40/distinfo
+++ b/security/py-rsa40/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.3 2021/10/26 11:17:49 nia Exp $
+$NetBSD: distinfo,v 1.4 2022/01/14 11:49:44 wiz Exp $
BLAKE2s (rsa-4.0.tar.gz) = d1a1aa66639dc5e0b65d37c877c4eb93dbe649157032fcd436f6b2fb20a3cfef
SHA512 (rsa-4.0.tar.gz) = e11106741cc4275246c986d39b3f028b5a4df6fbffdd08a78072ac3d3a9a7ade7a39789c504a2705f54d858a9bdbf03981251f32f9c45baba71e4a986e14b24e
Size (rsa-4.0.tar.gz) = 37385 bytes
-SHA1 (patch-setup.py) = 8335daf31dd1acd8b47512b647f83196cfaa38d5
diff --git a/security/py-rsa40/patches/patch-setup.py b/security/py-rsa40/patches/patch-setup.py
deleted file mode 100644
index 660a691a2f4..00000000000
--- a/security/py-rsa40/patches/patch-setup.py
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-setup.py,v 1.1 2020/09/01 04:06:11 wiz 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
-@@ -15,8 +15,9 @@
- # limitations under the License.
-
- from setuptools import setup
-+from io import open
-
--with open('README.md') as f:
-+with open('README.md', 'r', encoding='utf-8') as f:
- long_description = f.read()
-
- if __name__ == '__main__':