summaryrefslogtreecommitdiff
path: root/converters/py-unicode-slugify
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/py-unicode-slugify
parent71023e16e9c60a858d647271160d66c2cc71b386 (diff)
downloadpkgsrc-b461ebc61eb28fe69cd1e993ac58e3c1757c7e47.tar.gz
*: remove workaround patches for python 3.6
Diffstat (limited to 'converters/py-unicode-slugify')
-rw-r--r--converters/py-unicode-slugify/distinfo3
-rw-r--r--converters/py-unicode-slugify/patches/patch-setup.py17
2 files changed, 1 insertions, 19 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',