diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-08-10 22:28:00 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-08-10 22:28:00 +0000 |
commit | bcfea185d56a46495a01f650a6dbad59fb27e39c (patch) | |
tree | ae04fe0255790e5fd73b961a2ac2df1e27cd2552 | |
parent | 4144e487f4ade62e4fb56f4ba9ce9713ff94e7cc (diff) | |
download | portage-bcfea185d56a46495a01f650a6dbad59fb27e39c.tar.gz portage-bcfea185d56a46495a01f650a6dbad59fb27e39c.tar.bz2 portage-bcfea185d56a46495a01f650a6dbad59fb27e39c.zip |
This is an unused commandline interface to xpak.xpak().
svn path=/main/trunk/; revision=13988
-rwxr-xr-x | bin/xpak | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/bin/xpak b/bin/xpak deleted file mode 100755 index 4fc1eb9fb..000000000 --- a/bin/xpak +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/python -O -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -import sys, os -if len(sys.argv)!=3: - print "xpak: expecting three arguments." - sys.exit(1) - -try: - import xpak -except ImportError: - from os import path as osp - sys.path.insert(0, osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), "pym")) - import xpak - -xpak.xpak(sys.argv[1],sys.argv[2]) |