예제 #1
0
파일: lock.py 프로젝트: jgarte/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._repository_id = None
     self._action_lock = True
     self._client = False
     self._quiet = False
     self._name = EitLock.NAME
예제 #2
0
파일: lock.py 프로젝트: Sabayon/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._repository_id = None
     self._action_lock = True
     self._client = False
     self._quiet = False
     self._name = EitLock.NAME
예제 #3
0
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._packages = []
     self._from_branch = None
     self._to_branch = None
     self._repository_id = None
     self._ask = True
     self._copy = True
예제 #4
0
파일: branch.py 프로젝트: Sabayon/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._packages = []
     self._from_branch = None
     self._to_branch = None
     self._repository_id = None
     self._ask = True
     self._copy = True
예제 #5
0
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._ask = True
     self._pretend = False
     self._all = False
     self._repositories = []
     self._cleanup_only = False
     self._conservative = False
예제 #6
0
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._source = None
     self._dest = None
     self._deps = False
     self._ask = True
     self._packages = []
     self._copy = True
     # execute package name and slot updates
     self._conservative = False
예제 #7
0
파일: cp.py 프로젝트: Sabayon/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._source = None
     self._dest = None
     self._deps = False
     self._ask = True
     self._packages = []
     self._copy = True
     # execute package name and slot updates
     self._conservative = False
예제 #8
0
파일: commit.py 프로젝트: jgarte/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     # ask user before any critical operation
     self._ask = True
     # interactively ask for packages to be staged, etc
     self._interactive = False
     # execute package name and slot updates
     self._conservative = False
     # list of package dependencies to re-package, if any
     self._repackage = []
     # execute actions only for given atoms, if any
     self._packages = []
예제 #9
0
파일: cleanup.py 프로젝트: jgarte/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     # ask user before any critical operation
     self._ask = True
     self._pretend = False
     self._days = None
예제 #10
0
파일: graph.py 프로젝트: Sabayon/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._packages = []
     self._complete = False
     self._quiet = False
     self._repository_id = None
예제 #11
0
파일: own.py 프로젝트: Sabayon/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._paths = []
     self._quiet = False
     self._verbose = False
     self._repository_id = None
예제 #12
0
파일: key.py 프로젝트: Sabayon/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._nsargs = None
     self._gpg_msg_shown = False
예제 #13
0
파일: revgraph.py 프로젝트: jgarte/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._packages = []
     self._complete = False
     self._quiet = False
     self._repository_id = None
예제 #14
0
파일: files.py 프로젝트: Sabayon/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._quiet = False
     self._packages = []
예제 #15
0
파일: deps.py 프로젝트: jgarte/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._packages = []
예제 #16
0
파일: inject.py 프로젝트: jgarte/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._packages = []
     # ask user before any critical operation
     self._ask = True
     self._reset_revision = False
예제 #17
0
파일: test.py 프로젝트: Sabayon/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._nsargs = None
     self._ask = False
예제 #18
0
파일: remove.py 프로젝트: Sabayon/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._packages = []
     self._from = None
     self._nodeps = False
     self._ask = True
예제 #19
0
파일: merge.py 프로젝트: jgarte/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._merge_branch = None
     self._ask = True
예제 #20
0
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._sync = False
예제 #21
0
파일: key.py 프로젝트: jgarte/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._nsargs = None
     self._gpg_msg_shown = False
예제 #22
0
파일: notice.py 프로젝트: Sabayon/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._repository_id = None
예제 #23
0
파일: notice.py 프로젝트: jgarte/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._repository_id = None
예제 #24
0
파일: test.py 프로젝트: jgarte/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._nsargs = None
     self._ask = False
예제 #25
0
파일: inject.py 프로젝트: Sabayon/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._packages = []
     # ask user before any critical operation
     self._ask = True
     self._reset_revision = False
예제 #26
0
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._packages = []
     self._quiet = False
예제 #27
0
파일: remove.py 프로젝트: jgarte/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._packages = []
     self._from = None
     self._nodeps = False
     self._ask = True
예제 #28
0
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._ask = True
예제 #29
0
파일: own.py 프로젝트: jgarte/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._paths = []
     self._quiet = False
     self._verbose = False
     self._repository_id = None
예제 #30
0
파일: list.py 프로젝트: jgarte/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._repositories = []
     self._quiet = False
     self._verbose = False
     self._injected = False
예제 #31
0
파일: deps.py 프로젝트: Sabayon/entropy
 def __init__(self, args):
     EitCommand.__init__(self, args)
     self._packages = []