Files
entropy/server/reagent.py
lxnay edbd2ea4d1 Entropy/Reagent:
- libtest: avoid to push garbage on complete

git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@2705 cd1c1023-2f26-0410-ae45-c471fc1f0318
2008-11-23 18:16:10 +00:00

197 lines
7.4 KiB
Python

#!/usr/bin/python
'''
# DESCRIPTION:
# this application gets a .tbz2 file as input and creates a database entry
# with all the information needed by the Entropy client
Copyright (C) 2007-2008 Fabio Erculiani
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
'''
import os, sys
sys.path.insert(0,'../libraries')
sys.path.insert(1,'../client')
sys.path.insert(2,'../server')
sys.path.insert(3,'/usr/lib/entropy/client')
sys.path.insert(4,'/usr/lib/entropy/libraries')
sys.path.insert(5,'/usr/lib/entropy/server')
from entropyConstants import *
from outputTools import *
from entropy_i18n import _
import entropyTools
myopts = [
None,
(0," ~ "+etpConst['systemname']+" ~ "+sys.argv[0]+" ~ ",1,'Entropy Package Manager - (C) %s' % (entropyTools.getYear(),) ),
None,
(0,_('Basic Options'),0,None),
None,
(1,'--help',2,_('this output')),
(1,'--version',1,_('print version')),
(1,'--nocolor',1,_('disable colorized output')),
None,
(0,_('Application Options'),0,None),
None,
(1,'update',3,_('scan the System looking for newly compiled packages')),
(2,'--seekstore',2,_('analyze the Entropy Store directory directly')),
(2,'--repackage <atoms>',1,_('repackage the specified atoms')),
(2,'--noask',3,_('do not ask anything except critical things')),
None,
(1,'inject <packages>',1,_('add binary packages to repository w/o affecting scopes (multipackages)')),
None,
(1,'query',3,_('do some searches into repository databases')),
(2,'search',3,_('search packages inside the default repository database')),
(2,'needed',3,_('show runtime libraries needed by the provided atoms')),
(2,'depends',3,_('show what packages depend on the provided atoms')),
(2,'tags',3,_('show packages owning the specified tags')),
(2,'files',3,_('show files owned by the provided atoms')),
(2,'belongs',3,_('show from what package the provided files belong')),
(2,'description',2,_('search packages by description')),
(2,'eclass',3,_('search packages using the provided eclasses')),
(2,'list',3,_('list all the packages in the default repository')),
(2,'--verbose',2,_('show more details')),
(2,'--quiet',3,_('print results in a scriptable way')),
None,
(1,'database',2,_('repository database functions')),
(2,'--initialize',3,_('(re)initialize the current repository database')),
(3,'--empty',3,_('do not refill database using packages on mirrors')),
(3,'--repo=<repo>',2,_('(re)create the database for the specified repository')),
(2,'bump',4,_('manually force a revision bump for the current repository database')),
(3,'--sync',3,_('synchronize the database')),
(2,'remove',4,_('remove the provided atoms from the current repository database')),
(2,'multiremove',3,_('remove the provided injected atoms (all if no atom specified)')),
(2,'create-empty-database',2,_('create an empty repository database in the provided path')),
(2,'switchbranch <from branch> <to branch>',3,_('switch to the specified branch the repository')),
(2,'md5check',3,_('verify integrity of the provided atoms (or world)')),
(2,'md5remote',3,_('verify remote integrity of the provided atoms (or world)')),
None,
(1,'repo',3,_('manage a repository')),
(2,'enable <repo>',3,_('enable the specified repository')),
(2,'disable <repo>',3,_('disable the specified repository')),
(2,'status <repo>',3,_('show the current Server Interface status')),
(2,'package-tag <repo> <tag-string> [atoms]',1,_('clone a package assigning it an arbitrary tag')),
(2,'move <from> <to> [atoms]',1,_('move packages from a repository to another')),
(2,'copy <from> <to> [atoms]',1,_('copy packages from a repository to another')),
(2,'default <repo_id>',2,_('set the default repository')),
None,
(1,'spm',3,_('source package manager functions')),
(2,'compile',4,_('compilation function')),
(3,'categories',2,_('compile packages belonging to the provided categories')),
(4,'--list',2,_('just list packages')),
None,
(1,'deptest',3,_('look for unsatisfied dependencies')),
(1,'libtest',3,_('look for missing libraries')),
(1,'depends',3,_('regenerate the depends table')),
None,
(1,'cleanup',3,_('remove downloaded packages and clean temp. directories)')),
None,
]
options = sys.argv[1:]
# print version
if (' '.join(options).find("--version") != -1) or (' '.join(options).find(" -V") != -1):
print_generic("reagent: "+etpConst['entropyversion'])
sys.exit(0)
# print help
if len(options) < 1 or ' '.join(options).find("--help") != -1 or ' '.join(options).find(" -h") != -1:
print_menu(myopts)
if len(options) < 1:
print_error("not enough parameters")
sys.exit(1)
# preliminary options parsing
_options = []
for opt in options:
if (opt == "--nocolor"):
nocolor()
else:
if (opt == "--quiet"):
etpUi['quiet'] = True
elif (opt == "--verbose"):
etpUi['verbose'] = True
elif (opt == "--ask"):
etpUi['ask'] = True
elif (opt == "--pretend"):
etpUi['pretend'] = True
else:
_options.append(opt)
options = _options
if not entropyTools.isRoot():
print_error("you must be root in order to run "+sys.argv[0])
elif (options[0] == "update"):
import server_reagent
rc = server_reagent.update(options[1:])
server_reagent.Entropy.close_server_databases()
sys.exit(rc)
elif (options[0] == "inject"):
import server_reagent
rc = server_reagent.inject(options[1:])
server_reagent.Entropy.close_server_databases()
sys.exit(rc)
# database tool
elif (options[0] == "database"):
import server_reagent
server_reagent.database(options[1:])
server_reagent.Entropy.close_server_databases()
sys.exit(0)
elif (options[0] == "query"):
import server_query
rc = server_query.query(options[1:])
sys.exit(rc)
elif (options[0] == "repo"):
import server_reagent
rc = server_reagent.repositories(options[1:])
sys.exit(rc)
elif (options[0] == "deptest"):
import server_reagent
server_reagent.Entropy.dependencies_test()
server_reagent.Entropy.close_server_databases()
sys.exit(0)
elif (options[0] == "libtest"):
import server_reagent
rc = server_reagent.Entropy.libraries_test()
x = server_reagent.Entropy.close_server_databases()
sys.exit(0)
# deptest tool
elif (options[0] == "depends"):
import server_reagent
rc = server_reagent.Entropy.depends_table_initialize()
server_reagent.Entropy.close_server_databases()
sys.exit(rc)
# cleanup
elif (options[0] == "cleanup"):
rc = entropyTools.cleanup()
sys.exit(rc)
# deptest tool
elif (options[0] == "spm"):
import server_reagent
rc = server_reagent.spm(options[1:])
server_reagent.Entropy.close_server_databases()
sys.exit(rc)