summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2021-12-30 13:39:00 +0000
committeradam <adam@pkgsrc.org>2021-12-30 13:39:00 +0000
commit092277b7fd32f768ee090ea84e4ea58de0b903e7 (patch)
tree8ad7c8e0bc4b13fc1dcf1d24490cf33b20e00fa2 /textproc
parentca7e8f78da20311ed3976acf0df1be0b673b3eb9 (diff)
downloadpkgsrc-092277b7fd32f768ee090ea84e4ea58de0b903e7.tar.gz
py-xmlschema: patch for Python 3.6 is no longer needed
Diffstat (limited to 'textproc')
-rw-r--r--textproc/py-xmlschema/distinfo3
-rw-r--r--textproc/py-xmlschema/patches/patch-setup.py15
2 files changed, 1 insertions, 17 deletions
diff --git a/textproc/py-xmlschema/distinfo b/textproc/py-xmlschema/distinfo
index 11247ce0f5d..eafed9f10e6 100644
--- a/textproc/py-xmlschema/distinfo
+++ b/textproc/py-xmlschema/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.33 2021/12/15 09:39:00 adam Exp $
+$NetBSD: distinfo,v 1.34 2021/12/30 13:39:00 adam Exp $
BLAKE2s (xmlschema-1.9.1.tar.gz) = a7d87c5e2554a0263c5f3fa9584a85187b2ef3e6c6cb6386462324cefb59a1d6
SHA512 (xmlschema-1.9.1.tar.gz) = 958052e5a3573c5e3ae08fe487cbbb219d361264920f7ffc4157faf53a4e260f256c0ad9a68575c16d2e6cc1bd75b94459ec088b08daa4a419f756f1a7044836
Size (xmlschema-1.9.1.tar.gz) = 394695 bytes
-SHA1 (patch-setup.py) = acfd8a0bcb39c7d35c5fcd62bfed643a81fe7516
diff --git a/textproc/py-xmlschema/patches/patch-setup.py b/textproc/py-xmlschema/patches/patch-setup.py
deleted file mode 100644
index a81d3a5094c..00000000000
--- a/textproc/py-xmlschema/patches/patch-setup.py
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-setup.py,v 1.3 2021/06/11 05:24:08 adam Exp $
-
-Fix for Python 3.6.
-
---- setup.py.orig 2021-06-09 17:22:21.000000000 +0000
-+++ setup.py
-@@ -12,7 +12,7 @@ from setuptools import setup, find_packa
- from pathlib import Path
-
-
--with Path(__file__).parent.joinpath('README.rst').open() as readme:
-+with Path(__file__).parent.joinpath('README.rst').open(encoding='utf-8') as readme:
- long_description = readme.read()
-
-