[csw-devel] SF.net SVN: gar:[21535] csw/mgar/pkg/lang-python/python/branches/python-2.7
pfelecan at users.sourceforge.net
pfelecan at users.sourceforge.net
Mon Jul 22 11:00:59 CEST 2013
Revision: 21535
http://gar.svn.sourceforge.net/gar/?rev=21535&view=rev
Author: pfelecan
Date: 2013-07-22 09:00:50 +0000 (Mon, 22 Jul 2013)
Log Message:
-----------
lang-python/python/branches/python-2.7:
- use a cleaner join as suggested by Maciej
- don't use a debugging flavor
Modified Paths:
--------------
csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile
csw/mgar/pkg/lang-python/python/branches/python-2.7/files/0001-manage-previous-site-package.patch
Modified: csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile
===================================================================
--- csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile 2013-07-22 08:15:23 UTC (rev 21534)
+++ csw/mgar/pkg/lang-python/python/branches/python-2.7/Makefile 2013-07-22 09:00:50 UTC (rev 21535)
@@ -50,7 +50,7 @@
# BUILD64 = 1
GARCOMPILER = GNU
-GARFLAVOR = DBG
+
EXTRA_INC += $(prefix)/bdb47/include
EXTRA_LIB += $(prefix)/bdb47/lib
Modified: csw/mgar/pkg/lang-python/python/branches/python-2.7/files/0001-manage-previous-site-package.patch
===================================================================
--- csw/mgar/pkg/lang-python/python/branches/python-2.7/files/0001-manage-previous-site-package.patch 2013-07-22 08:15:23 UTC (rev 21534)
+++ csw/mgar/pkg/lang-python/python/branches/python-2.7/files/0001-manage-previous-site-package.patch 2013-07-22 09:00:50 UTC (rev 21535)
@@ -1,6 +1,6 @@
-From 5dc1c90d3d8c5491baacf565d77f0557bbcae7df Mon Sep 17 00:00:00 2001
+From dc6b9371110febac2cd49e7284ad238262014a46 Mon Sep 17 00:00:00 2001
From: Peter Felecan <pfelecan at opencsw.org>
-Date: Fri, 19 Jul 2013 10:34:14 +0200
+Date: Mon, 22 Jul 2013 10:53:42 +0200
Subject: [PATCH] manage previous site package
this is to support the transition between an unversiond installation tree
@@ -9,14 +9,14 @@
1 file changed, 1 insertion(+)
diff --git a/Lib/site.py b/Lib/site.py
-index f1b0ae8..1ea2596 100644
+index f1b0ae8..04fb5f2 100644
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -292,6 +292,7 @@ def getsitepackages():
"python" + sys.version[:3],
"site-packages"))
sitepackages.append(os.path.join(prefix, "lib", "site-python"))
-+ sitepackages.append(os.path.join(prefix, "lib", "python/site-packages"))
++ sitepackages.append(os.path.join(prefix, "lib", "python", "site-packages"))
else:
sitepackages.append(prefix)
sitepackages.append(os.path.join(prefix, "lib", "site-packages"))
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list