summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlastair Tse <liquidx@gentoo.org>2004-04-16 10:32:45 +0000
committerAlastair Tse <liquidx@gentoo.org>2004-04-16 10:32:45 +0000
commit42c304314a904a9ef53240c9510cee58313ad3dc (patch)
tree961824e19aaccae7af9c3c52e9784e10704583b2 /dev-lang/python/files
parentmove inherit to the right place (Manifest recommit) (diff)
downloadgentoo-2-42c304314a904a9ef53240c9510cee58313ad3dc.tar.gz
gentoo-2-42c304314a904a9ef53240c9510cee58313ad3dc.tar.bz2
gentoo-2-42c304314a904a9ef53240c9510cee58313ad3dc.zip
various fixes to overcome updating reported updated woes when updating python. needs testing by people who are updating it as i don't have an old python2.2 and portage installation anymore
Diffstat (limited to 'dev-lang/python/files')
-rw-r--r--dev-lang/python/files/digest-python-2.3.3-r11
-rw-r--r--dev-lang/python/files/python-2.3-add_portage_search_path_take_2.patch11
2 files changed, 12 insertions, 0 deletions
diff --git a/dev-lang/python/files/digest-python-2.3.3-r1 b/dev-lang/python/files/digest-python-2.3.3-r1
new file mode 100644
index 000000000000..8c0e033775a0
--- /dev/null
+++ b/dev-lang/python/files/digest-python-2.3.3-r1
@@ -0,0 +1 @@
+MD5 70ada9f65742ab2c77a96bcd6dffd9b1 Python-2.3.3.tar.bz2 7195007
diff --git a/dev-lang/python/files/python-2.3-add_portage_search_path_take_2.patch b/dev-lang/python/files/python-2.3-add_portage_search_path_take_2.patch
new file mode 100644
index 000000000000..fe43416d9e7f
--- /dev/null
+++ b/dev-lang/python/files/python-2.3-add_portage_search_path_take_2.patch
@@ -0,0 +1,11 @@
+--- Lib/site.py 2003-07-18 18:45:33.000000000 +0100
++++ Lib/site.py 2003-09-30 00:03:54.000000000 +0100
+@@ -171,6 +171,8 @@
+ "python" + sys.version[:3],
+ "site-packages"),
+ os.path.join(prefix, "lib", "site-python")]
++ # add Gentoo Linux specific search path - liquidx@gentoo.org (30/09/2003)
++ sitedirs = [os.path.join(prefix,"lib","portage","pym")] + sitedirs
+ else:
+ sitedirs = [prefix, os.path.join(prefix, "lib", "site-packages")]
+ if sys.platform == 'darwin':