summaryrefslogtreecommitdiff
path: root/converters
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 /converters
parent71023e16e9c60a858d647271160d66c2cc71b386 (diff)
downloadpkgsrc-b461ebc61eb28fe69cd1e993ac58e3c1757c7e47.tar.gz
*: remove workaround patches for python 3.6
Diffstat (limited to 'converters')
-rw-r--r--converters/py-unicode-slugify/distinfo3
-rw-r--r--converters/py-unicode-slugify/patches/patch-setup.py17
-rw-r--r--converters/py-zfec/distinfo3
-rw-r--r--converters/py-zfec/patches/patch-setup.py16
4 files changed, 2 insertions, 37 deletions
diff --git a/converters/py-unicode-slugify/distinfo b/converters/py-unicode-slugify/distinfo
index 807969b1ecd..e347b2bb603 100644
--- a/converters/py-unicode-slugify/distinfo
+++ b/converters/py-unicode-slugify/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.4 2021/10/26 10:06:50 nia Exp $
+$NetBSD: distinfo,v 1.5 2022/01/14 11:49:41 wiz Exp $
BLAKE2s (unicode-slugify-0.1.3.tar.gz) = db73f98ecfb833e81420458405fb750580ec6a2cd25ea370bf40245ba7c8cb5e
SHA512 (unicode-slugify-0.1.3.tar.gz) = 509414c8b3603f3b092390ee29f52b6a22de45d904fcfa5554f2c1188a35ac090781050642b0b7bf068d1b30ce424342878e646db98b592712f47595528911a1
Size (unicode-slugify-0.1.3.tar.gz) = 4430 bytes
-SHA1 (patch-setup.py) = 3a7d378b2d2881e533b5e04688d60ab2d2853b52
diff --git a/converters/py-unicode-slugify/patches/patch-setup.py b/converters/py-unicode-slugify/patches/patch-setup.py
deleted file mode 100644
index 9d7a157faa4..00000000000
--- a/converters/py-unicode-slugify/patches/patch-setup.py
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-setup.py,v 1.1 2020/05/31 20:49:33 joerg Exp $
-
---- setup.py.orig 2020-05-31 18:05:52.507238288 +0000
-+++ setup.py
-@@ -1,10 +1,11 @@
-+import sys
- from setuptools import setup
-
- setup(
- name='unicode-slugify',
- version='0.1.3',
- description='A slug generator that turns strings into unicode slugs.',
-- long_description=open('README.md').read(),
-+ long_description=open('README.md', **({'encoding': 'UTF-8'} if sys.version_info.major>=3 else {})).read(),
- author='Jeff Balogh, Dave Dash',
- author_email='jbalogh@mozilla.com, dd@mozilla.com',
- url='http://github.com/mozilla/unicode-slugify',
diff --git a/converters/py-zfec/distinfo b/converters/py-zfec/distinfo
index efea5049f4a..8c870941abf 100644
--- a/converters/py-zfec/distinfo
+++ b/converters/py-zfec/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.11 2021/10/26 10:06:50 nia Exp $
+$NetBSD: distinfo,v 1.12 2022/01/14 11:49:42 wiz Exp $
BLAKE2s (zfec-1.5.5.tar.gz) = 0b29d9831810bb121af9068cb8d9337c3ac2e05ad6c95ae8aab74b9e936e0286
SHA512 (zfec-1.5.5.tar.gz) = 35fe828b1c18cd3abc8c44f882ade83719d764d0fa62c9d16e9a667d7a096dd6e6a25d55887a2d08e554a5554fc00296dae4c275883d030c854483b26ab3a63b
Size (zfec-1.5.5.tar.gz) = 80368 bytes
-SHA1 (patch-setup.py) = bbaba4326845d3cdc84dbdfbaf2d8624a366bf2d
diff --git a/converters/py-zfec/patches/patch-setup.py b/converters/py-zfec/patches/patch-setup.py
deleted file mode 100644
index 4d5e821206c..00000000000
--- a/converters/py-zfec/patches/patch-setup.py
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-setup.py,v 1.2 2020/12/19 15:28:05 gdt Exp $
-
-\todo Document this patch.
-\todo File this patch upstream.
-
---- setup.py.orig 2020-09-18 02:16:19.000000000 +0000
-+++ setup.py
-@@ -57,7 +57,7 @@ setup(
- name="zfec",
- version=versioneer.get_version(),
- description="An efficient, portable erasure coding tool",
-- long_description=open('README.rst', 'r').read(),
-+ long_description=open('README.rst', 'rU', **({'encoding': 'UTF-8'} if sys.version_info.major>=3 else {})).read(),
- url="https://github.com/tahoe-lafs/zfec",
- install_requires=[
- "argparse >= 0.8",