summaryrefslogtreecommitdiff
path: root/sysutils/py-dbus
diff options
context:
space:
mode:
authorwiz <wiz>2016-03-03 12:25:24 +0000
committerwiz <wiz>2016-03-03 12:25:24 +0000
commitf83e4a8cc84c976a82d658254c9f3f6d9c589867 (patch)
treeb6b1d74cb315084e682d0af52c89526c27c71946 /sysutils/py-dbus
parent2e8efc9a6f6c531f322b3d4fbadbf3515b01e3f8 (diff)
downloadpkgsrc-f83e4a8cc84c976a82d658254c9f3f6d9c589867.tar.gz
Remove patch (part of 1.2.2 update).
Diffstat (limited to 'sysutils/py-dbus')
-rw-r--r--sysutils/py-dbus/patches/patch-py-compile24
1 files changed, 0 insertions, 24 deletions
diff --git a/sysutils/py-dbus/patches/patch-py-compile b/sysutils/py-dbus/patches/patch-py-compile
deleted file mode 100644
index d6dcd8f495b..00000000000
--- a/sysutils/py-dbus/patches/patch-py-compile
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-py-compile,v 1.1 2012/08/15 06:42:43 obache Exp $
-
-* prevent to specify cfile for py_compile.compile to be PEP 3147-compliant.
-
---- py-compile.orig 2012-01-24 16:37:31.000000000 +0000
-+++ py-compile
-@@ -130,7 +130,7 @@ for file in files.split():
- continue
- sys.stdout.write(file)
- sys.stdout.flush()
-- py_compile.compile(filepath, filepath + 'c', path)
-+ py_compile.compile(filepath, None, path)
- sys.stdout.write('\n')" || exit $?
-
- # this will fail for python < 1.5, but that doesn't matter ...
-@@ -147,7 +147,7 @@ for file in files.split():
- continue
- sys.stdout.write(file)
- sys.stdout.flush()
-- py_compile.compile(filepath, filepath + 'o', path)
-+ py_compile.compile(filepath, None, path)
- sys.stdout.write('\n')" 2>/dev/null || :
-
- # Local Variables: