summaryrefslogtreecommitdiff
path: root/lang/python34
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2014-06-01 10:11:29 +0000
committerwiz <wiz@pkgsrc.org>2014-06-01 10:11:29 +0000
commitb770a9d977194561c8c8b5817339735249cf49b3 (patch)
treee9c847be1f391843bdf9caed0b2f98fa59fdac98 /lang/python34
parente4d7724c573589235f92500cbfb00596b5ab33b2 (diff)
downloadpkgsrc-b770a9d977194561c8c8b5817339735249cf49b3.tar.gz
Remove incorrect/unnecessary dragonfly patches.
Matches ryoon's commit to python33.
Diffstat (limited to 'lang/python34')
-rw-r--r--lang/python34/distinfo5
-rw-r--r--lang/python34/patches/patch-am17
-rw-r--r--lang/python34/patches/patch-ao16
3 files changed, 3 insertions, 35 deletions
diff --git a/lang/python34/distinfo b/lang/python34/distinfo
index cbf2ef5cc07..423710fb4f4 100644
--- a/lang/python34/distinfo
+++ b/lang/python34/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.9 2014/05/20 09:13:37 wiz Exp $
+$NetBSD: distinfo,v 1.10 2014/06/01 10:11:29 wiz Exp $
SHA1 (Python-3.4.1.tar.xz) = 143e098efe7ee7bec8a4904ec4b322f28a067a03
RMD160 (Python-3.4.1.tar.xz) = 276fda8bd4ef515da83645ddd5f01eb0f68522a5
@@ -7,9 +7,8 @@ SHA1 (patch-Lib_distutils_unixccompiler.py) = 39cb8d1e1e3e76e2b6b5dbc1a6b5e08153
SHA1 (patch-aa) = 14359f8d0527eff08073c0aea60dfe8961d9255d
SHA1 (patch-ah) = b3a1363f6d210f855f3769650e3891b0df5c531d
SHA1 (patch-al) = 1867e7145d8ab008338461ee6c662d653479443d
-SHA1 (patch-am) = dbce46a877a01ecef01767cdfb0c3a2137431833
+SHA1 (patch-am) = 1752a06fec7626af57e85b6cbd9b6cc38b99272f
SHA1 (patch-an) = c9b571eb54fdf0b1e93524a6de6780e8c4119221
-SHA1 (patch-ao) = bc7bb76ca7b3b8302dd966fad85171236c1f06e6
SHA1 (patch-au) = 6e10e6fc484317447bdeaa833db5df073df98c5b
SHA1 (patch-av) = 9b44f339f65f029b7f17dbc654739a7ae3c12780
SHA1 (patch-aw) = bd290417c265846e238660180e60e76c0f5f696a
diff --git a/lang/python34/patches/patch-am b/lang/python34/patches/patch-am
index 7eb5d85f755..3f048550c5b 100644
--- a/lang/python34/patches/patch-am
+++ b/lang/python34/patches/patch-am
@@ -1,4 +1,4 @@
-$NetBSD: patch-am,v 1.5 2014/05/10 08:11:02 wiz Exp $
+$NetBSD: patch-am,v 1.6 2014/06/01 10:11:29 wiz Exp $
--- setup.py.orig 2014-03-17 02:31:31.000000000 +0000
+++ setup.py
@@ -107,21 +107,6 @@ $NetBSD: patch-am,v 1.5 2014/05/10 08:11:02 wiz Exp $
# Some systems have -lndbm, others have -lgdbm_compat,
# others don't have either
if self.compiler.find_library_file(lib_dirs,
-@@ -1487,6 +1509,14 @@ class PyBuildExt(build_ext):
- macros = dict()
- libraries = []
-
-+ elif host_platform.startswith('dragonfly'):
-+ macros = dict(
-+ HAVE_SEM_OPEN=0,
-+ HAVE_SEM_TIMEDWAIT=0,
-+ HAVE_FD_TRANSFER=1,
-+ )
-+ libraries = []
-+
- else: # Linux and other unices
- macros = dict()
- libraries = ['rt']
@@ -1956,10 +1986,7 @@ class PyBuildExt(build_ext):
depends = ['_decimal/docstrings.h']
else:
diff --git a/lang/python34/patches/patch-ao b/lang/python34/patches/patch-ao
deleted file mode 100644
index 90d70beb6b5..00000000000
--- a/lang/python34/patches/patch-ao
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ao,v 1.2 2014/05/09 09:19:06 wiz Exp $
-
-DragonFlyBSD support
-http://bugs.python.org/issue21459
-
---- Lib/distutils/util.py.orig 2012-09-29 04:00:28.000000000 -0400
-+++ Lib/distutils/util.py 2012-12-09 18:34:56.000000000 -0500
-@@ -102,6 +102,8 @@
- osname, release, machine = _osx_support.get_platform_osx(
- distutils.sysconfig.get_config_vars(),
- osname, release, machine)
-+ elif osname[:9] == "dragonfly":
-+ release = str.split(release, "-")[0]
-
- return "%s-%s-%s" % (osname, release, machine)
-