Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 33613 - xpak missing the new python path for portage
Summary: xpak missing the new python path for portage
Status: RESOLVED FIXED
Alias: None
Product: Portage Development
Classification: Unclassified
Component: Unclassified (show other bugs)
Hardware: All All
: High major (vote)
Assignee: Portage team
URL:
Whiteboard:
Keywords: Inclusion
Depends on:
Blocks:
 
Reported: 2003-11-16 08:55 UTC by Grant Goodyear (RETIRED)
Modified: 2011-10-30 22:21 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Grant Goodyear (RETIRED) gentoo-dev 2003-11-16 08:55:20 UTC
On a machine w/ only portage-2.0.49-r16,
quickpkg or ebuild foo package fails because 
xpak dies.

Reproducible: Always
Steps to Reproduce:
1.
2.
3.




patch:

> diff -u xpak xpak.new
--- xpak        2003-11-10 03:30:55.000000000 -0500
+++ xpak.new    2003-11-16 11:44:31.000000000 -0500
@@ -3,8 +3,9 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: /home/cvsroot/gentoo-src/portage/bin/xpak,v 1.8 2003/11/10 08:30:55
carpaski Exp $
  
-import xpak
 import sys
+sys.path.append("/usr/lib/portage/pym")
+import xpak
 if len(sys.argv)!=3:
        print "xpak: expecting three arguments."
        sys.exit(1)
Comment 1 Nicholas Jones (RETIRED) gentoo-dev 2003-11-16 11:55:20 UTC
Added.