1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Reverted accidentally merged code from r03b0b2620045

This commit is contained in:
Jannis Leidel 2009-04-16 23:56:47 +02:00
parent ad32e6bd1c
commit 733952fada

94
pip.py
View file

@ -426,94 +426,6 @@ class InstallCommand(Command):
InstallCommand()
class UninstallCommand(Command):
name = 'uninstall'
usage = '%prog [OPTIONS] PACKAGE_NAMES...'
summary = 'Uninstall packages'
bundle = False
def __init__(self):
super(UninstallCommand, self).__init__()
self.parser.add_option(
'-r', '--requirement',
dest='requirements',
action='append',
default=[],
metavar='FILENAME',
help='Uninstall all the packages listed in the given requirements file. '
'This option can be used multiple times.')
self.parser.add_option(
'-f', '--find-links',
dest='find_links',
action='append',
default=[],
metavar='URL',
help='URL to look for packages at')
self.parser.add_option(
'-i', '--index-url',
dest='index_url',
metavar='URL',
default=pypi_url,
help='base URL of Python Package Index')
self.parser.add_option(
'--extra-index-url',
dest='extra_index_urls',
metavar='URL',
action='append',
default=[],
help='extra URLs of package indexes to use in addition to --index-url')
self.parser.add_option(
'-b', '--build', '--build-dir', '--build-directory',
dest='build_dir',
metavar='DIR',
default=None,
help='Unpack packages into DIR (default %s) and build from there' % base_prefix)
self.parser.add_option(
'--src', '--source',
dest='src_dir',
metavar='DIR',
default=None,
help='Check out --editable packages into DIR (default %s)' % base_src_prefix)
self.parser.add_option(
'--no-uninstall',
dest='no_uninstall',
action='store_true',
help="List the packages, but don't actually uninstall them")
def run(self, options, args):
if not options.build_dir:
options.build_dir = base_prefix
if not options.src_dir:
options.src_dir = base_src_prefix
options.build_dir = os.path.abspath(options.build_dir)
options.src_dir = os.path.abspath(options.src_dir)
index_urls = [options.index_url] + options.extra_index_urls
finder = PackageFinder(
find_links=options.find_links,
index_urls=index_urls)
requirement_set = RequirementSet(
build_dir=options.build_dir,
src_dir=options.src_dir)
for name in args:
requirement_set.add_requirement(
InstallRequirement.from_line(name, None))
for name in options.editables:
requirement_set.add_requirement(
InstallRequirement.from_editable(name))
for filename in options.requirements:
for req in parse_requirements(filename, finder=finder):
requirement_set.add_requirement(req)
requirement_set.uninstall_files(finder, force_root_egg_info=self.bundle)
if not options.no_uninstall and not self.bundle:
requirement_set.uninstall()
logger.notify('Successfully uninstalled %s' % requirement_set)
elif not self.bundle:
logger.notify('Would uninstall %s' % requirement_set)
return requirement_set
UninstallCommand()
class BundleCommand(InstallCommand):
name = 'bundle'
@ -1932,9 +1844,6 @@ class RequirementSet(object):
finally:
logger.indent -= 2
def uninstall_files(self, finder, force_root_egg_info=False):
pass
def unpack_url(self, link, location):
for backend in vcs.backends:
if link.scheme in backend.schemes:
@ -2151,9 +2060,6 @@ class RequirementSet(object):
finally:
logger.indent -= 2
def uninstall(self, uninstall_options):
pass
def create_bundle(self, bundle_filename):
## FIXME: can't decide which is better; zip is easier to read
## random files from, but tar.bz2 is smaller and not as lame a