summaryrefslogtreecommitdiffstats
path: root/bin/pkgname
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-08-10 21:56:23 +0000
committerZac Medico <zmedico@gentoo.org>2009-08-10 21:56:23 +0000
commit6b527ece39ee92f1223b1ecc25ee51aeb1e6ccee (patch)
treec0e52c68bfaa28b07a075bef7d0fe0adbdadfaeb /bin/pkgname
parentec37588443b98cef4f3dbc9d4dbf2e162865f610 (diff)
downloadportage-6b527ece39ee92f1223b1ecc25ee51aeb1e6ccee.tar.gz
portage-6b527ece39ee92f1223b1ecc25ee51aeb1e6ccee.tar.bz2
portage-6b527ece39ee92f1223b1ecc25ee51aeb1e6ccee.zip
This is a commandline interface to pkgsplit() that probably isn't used by
anyone. We can add a function like this to portageq. svn path=/main/trunk/; revision=13981
Diffstat (limited to 'bin/pkgname')
-rwxr-xr-xbin/pkgname20
1 files changed, 0 insertions, 20 deletions
diff --git a/bin/pkgname b/bin/pkgname
deleted file mode 100755
index 1850d71a8..000000000
--- a/bin/pkgname
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/python
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-import sys, os
-try:
- from portage.versions import pkgsplit
-except ImportError:
- from os import path as osp
- sys.path.insert(0, osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), "pym"))
- from portage.versions import pkgsplit
-
-a=pkgsplit(sys.argv[1])
-if a:
- print a[0],a[1],a[2][1:]
- sys.exit(0)
-else:
- print '!!! Error: package name is invalid.'
- sys.exit(1)