summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2018-12-27 15:07:36 +0000
committerjoerg <joerg@pkgsrc.org>2018-12-27 15:07:36 +0000
commitf19e1a14fa670bb63ee61781deddfc1619ae917b (patch)
tree26e13fe79aa2ba97a6c7f6f837ee8b62bf95bbcb
parent03eb6073ecbca21e1aad879b17db6ff55ca4fff0 (diff)
downloadpkgsrc-f19e1a14fa670bb63ee61781deddfc1619ae917b.tar.gz
Avoid non-ASCII content for Python 3.7 compat.
-rw-r--r--devel/py-whichcraft/distinfo3
-rw-r--r--devel/py-whichcraft/patches/patch-README.rst15
2 files changed, 17 insertions, 1 deletions
diff --git a/devel/py-whichcraft/distinfo b/devel/py-whichcraft/distinfo
index 50ac9de1c0c..bede70ca016 100644
--- a/devel/py-whichcraft/distinfo
+++ b/devel/py-whichcraft/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.3 2018/11/15 10:24:26 adam Exp $
+$NetBSD: distinfo,v 1.4 2018/12/27 15:07:36 joerg Exp $
SHA1 (whichcraft-0.5.2.tar.gz) = 627943cce7e404e2d504231c3bc51062a4bfc9a7
RMD160 (whichcraft-0.5.2.tar.gz) = 8d6dcf173d04b86527031bbad1555a4864c82f5b
SHA512 (whichcraft-0.5.2.tar.gz) = 28b7be346b781f69c8fef419efd91fc2daa6b337c1eda0a2fc47d04134c479a5ded6eed3583825b111a48d7a79667676b6ce49693552233e78c7d517ac91a73c
Size (whichcraft-0.5.2.tar.gz) = 6480 bytes
+SHA1 (patch-README.rst) = 98f9b55b16354807bd88e2dfa622052b3f5d2389
diff --git a/devel/py-whichcraft/patches/patch-README.rst b/devel/py-whichcraft/patches/patch-README.rst
new file mode 100644
index 00000000000..629065e0284
--- /dev/null
+++ b/devel/py-whichcraft/patches/patch-README.rst
@@ -0,0 +1,15 @@
+$NetBSD: patch-README.rst,v 1.1 2018/12/27 15:07:36 joerg Exp $
+
+--- README.rst.orig 2018-12-25 21:35:42.111510397 +0000
++++ README.rst
+@@ -34,8 +34,8 @@ On Linux, Mac, Windows for Python 2.7 or
+
+ .. code-block:: python
+
+-   >>> from whichcraft import which
+-   >>> which('date')
++ >>> from whichcraft import which
++ >>> which('date')
+ '/bin/date'
+ >>> which('calendar')
+ '/bin/calendar'