* remove redundant scripts

This commit is contained in:
Eray Özkural
2005-06-18 22:26:06 +00:00
parent 10c882432f
commit e8a8e02dc6
2 changed files with 0 additions and 103 deletions
-59
View File
@@ -1,59 +0,0 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# python standard library
from os.path import basename
import sys
sys.path.append("./lib")
import pisi.context
import pisi.util
from pisi.build import PisiBuild, PisiBuildError
def usage(progname = "pisi-build"):
print """
Usage:
%s [options] package-name.pspec
""" %(progname)
def main():
import sys
import getopt
# wrapper for usage(progname) function
help = lambda: usage(sys.argv[0])
# getopt magic
try:
opts, args = getopt.getopt(sys.argv[1:],"h",["help"])
except getopt.GetoptError:
help()
sys.exit(1)
for opt, arg in opts:
if opt == "-h":
help()
sys.exit(1)
# pspec(PISI Spec) to be used for package
pspec = ""
# TODO: We accept only one pspec file (at a time) currently,
# but pisi-build may build many packages (pspecs given in order)
# sequentially.
if len(args) != 1:
help()
raise PisiBuildError, "pisi-build expects one (and only one) pspec file currently"
else:
pspec = args[0]
# What we need to do first is create a context with our specfile
ctx = pisi.context.Context(pspec)
# don't do the real job here. this is just a CLI!
pb = PisiBuild(ctx)
pb.build()
if __name__ == "__main__":
main()
-44
View File
@@ -1,44 +0,0 @@
#! /usr/bin/python
# -*- coding: utf-8 -*-
# sys modules
import sys
from optparse import OptionParser
sys.path.append("./lib")
import pisi.install
import pisi.util
class ArgError(Exception):
pass
def main():
usage = "usage: %prog [options] <package>"
parser = OptionParser(usage=usage,version="%prog " + pisi.__version__)
parser.add_option("-D", "--destdir", action="store")
parser.add_option("-v", "--verbose", action="store_true",
dest="verbose", default=False,
help="detailed output")
parser.add_option("-d", "--debug", action="store_true", default=True)
parser.add_option("-n", "--dry-run", action="store_true",
default = "do not perform any action, just show what\
would be done")
(options, args) = parser.parse_args()
# package filename
package_fn = ""
# TODO: We accept only one package file arg ATM
if len(args) != 1:
print usage
raise ArgError, "pisi-install expects one (and only one) package file currently"
else:
package_fn = args[0]
pisi.install.install_package_file(package_fn)
if __name__ == "__main__":
main()