Add module obsoletes feature
JIRA: MODULAR-113 Merges: https://pagure.io/pungi/pull-request/1578 Signed-off-by: Filip Valder <fvalder@redhat.com>
This commit is contained in:
parent
42f668d969
commit
fe986d68b9
11 changed files with 124 additions and 24 deletions
|
|
@ -509,6 +509,16 @@ class WorkPaths(object):
|
|||
makedirs(path)
|
||||
return path
|
||||
|
||||
def module_obsoletes_dir(self, create_dir=True):
|
||||
"""
|
||||
Example:
|
||||
work/global/module_obsoletes
|
||||
"""
|
||||
path = os.path.join(self.topdir(create_dir=create_dir), "module_obsoletes")
|
||||
if create_dir:
|
||||
makedirs(path)
|
||||
return path
|
||||
|
||||
def pkgset_file_cache(self, pkgset_name):
|
||||
"""
|
||||
Returns the path to file in which the cached version of
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue