Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
$NetBSD: patch-aa,v 1.1 2012/08/01 18:04:26 drochner Exp $
--- Makefile.in.orig 2012-07-31 22:25:22.000000000 +0000
+++ Makefile.in
@@ -956,9 +956,8 @@ info: info-recursive
info-am:
-install-data-am: install-dbusincludeHEADERS install-dist_docDATA \
- install-nobase_pythonPYTHON install-nodist_docDATA \
- install-pkgconfigDATA
+install-data-am: \
+ install-nobase_pythonPYTHON
install-dvi: install-dvi-recursive

View File

@@ -0,0 +1,24 @@
$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: