summaryrefslogtreecommitdiff
path: root/lang/python36
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2017-11-01 21:51:21 +0000
committerwiz <wiz@pkgsrc.org>2017-11-01 21:51:21 +0000
commit7daaa6128a15b7e3fbd5f75029b1ce7079de090a (patch)
tree7be85eec15896654a576875dd1a4e18ff37cc3e0 /lang/python36
parent58f3c3cf39cbb5b7f365103240ae4b0135b22a40 (diff)
downloadpkgsrc-7daaa6128a15b7e3fbd5f75029b1ce7079de090a.tar.gz
python*: remove patch for py_curses.h that doesn't make sense to me
(nor upstream) If this is still needed, please explain it. Thanks.
Diffstat (limited to 'lang/python36')
-rw-r--r--lang/python36/distinfo3
-rw-r--r--lang/python36/patches/patch-Include_py__curses.h30
2 files changed, 1 insertions, 32 deletions
diff --git a/lang/python36/distinfo b/lang/python36/distinfo
index a102fb23c63..81c2b91a923 100644
--- a/lang/python36/distinfo
+++ b/lang/python36/distinfo
@@ -1,10 +1,9 @@
-$NetBSD: distinfo,v 1.14 2017/10/05 08:17:25 adam Exp $
+$NetBSD: distinfo,v 1.15 2017/11/01 21:51:22 wiz Exp $
SHA1 (Python-3.6.3.tar.xz) = 6c71b14bdbc4d8aa0cfd59d4b6dc356d46abfdf5
RMD160 (Python-3.6.3.tar.xz) = b29962b7233c74149670d8b83284d4265de5e769
SHA512 (Python-3.6.3.tar.xz) = 32f24a3adcb7880003c7ecdc5e53e838e774adda76b308961d8215e28db630b2fa2828097817924c76afa4212b2df3362eb64d4e10f37c0147f512ec5aa8662b
Size (Python-3.6.3.tar.xz) = 16974296 bytes
-SHA1 (patch-Include_py__curses.h) = 14359f8d0527eff08073c0aea60dfe8961d9255d
SHA1 (patch-Lib_distutils_command_install.py) = 6fc6f5d918b7581fc62cd0fe55857ee932c3a341
SHA1 (patch-Lib_distutils_sysconfig.py) = 6822eafb4dfded86d7f7353831816aeb8119e6cf
SHA1 (patch-Lib_distutils_unixccompiler.py) = e7aa684fa186de7a01486c3d8bfa177afdd22ef9
diff --git a/lang/python36/patches/patch-Include_py__curses.h b/lang/python36/patches/patch-Include_py__curses.h
deleted file mode 100644
index b7733d06638..00000000000
--- a/lang/python36/patches/patch-Include_py__curses.h
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD: patch-Include_py__curses.h,v 1.1 2017/01/01 14:34:27 adam Exp $
-
-* On NetBSD, [n]curses.h and stdlib.h/wchar.h use different guards
- against multiple definition of wchar_t and wint_t.
-http://bugs.python.org/issue21457
-
---- Include/py_curses.h.orig 2009-09-06 21:26:46.000000000 +0000
-+++ Include/py_curses.h
-@@ -44,6 +44,21 @@
- #endif
- #endif
-
-+#ifdef __NetBSD__
-+/*
-+** On NetBSD, [n]curses.h and stdlib.h/wchar.h use different guards
-+** against multiple definition of wchar_t and wint_t.
-+*/
-+#ifdef _XOPEN_SOURCE_EXTENDED
-+#ifndef _WCHAR_T
-+#define _WCHAR_T
-+#endif
-+#ifndef _WINT_T
-+#define _WINT_T
-+#endif
-+#endif
-+#endif
-+
- #ifdef HAVE_NCURSES_H
- #include <ncurses.h>
- #else