2015-06-25 12:37:23 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2017-08-23 07:39:17 +00:00
|
|
|
from __future__ import print_function
|
2015-06-25 12:37:23 +00:00
|
|
|
|
|
|
|
import argparse
|
2018-04-25 11:11:31 +00:00
|
|
|
import os
|
|
|
|
import sys
|
2015-06-25 12:37:23 +00:00
|
|
|
|
|
|
|
import pungi.ks
|
|
|
|
from pungi.dnf_wrapper import DnfWrapper, Conf
|
|
|
|
from pungi.gather_dnf import Gather, GatherOptions
|
2016-04-06 08:30:50 +00:00
|
|
|
from pungi.profiler import Profiler
|
2017-01-23 09:53:46 +00:00
|
|
|
from pungi.util import temp_dir
|
2015-06-25 12:37:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_parser():
|
|
|
|
parser = argparse.ArgumentParser()
|
2016-04-06 08:30:50 +00:00
|
|
|
parser.add_argument(
|
|
|
|
"--profiler",
|
|
|
|
action="store_true",
|
|
|
|
)
|
2015-06-25 12:37:23 +00:00
|
|
|
parser.add_argument(
|
|
|
|
"--arch",
|
|
|
|
required=True,
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--config",
|
|
|
|
metavar="PATH",
|
|
|
|
required=True,
|
|
|
|
help="path to kickstart config file",
|
|
|
|
)
|
2017-08-14 12:15:18 +00:00
|
|
|
parser.add_argument(
|
|
|
|
"--download-to",
|
|
|
|
metavar='PATH',
|
|
|
|
help="download packages to given directory instead of just printing paths",
|
|
|
|
)
|
2015-06-25 12:37:23 +00:00
|
|
|
|
|
|
|
group = parser.add_argument_group("Repository options")
|
|
|
|
group.add_argument(
|
|
|
|
"--lookaside",
|
|
|
|
action="append",
|
|
|
|
metavar="[REPOID]",
|
|
|
|
help="lookaside repositories",
|
|
|
|
)
|
|
|
|
|
|
|
|
group = parser.add_argument_group("Gather options")
|
|
|
|
group.add_argument(
|
|
|
|
"--nodeps",
|
|
|
|
action="store_true",
|
|
|
|
help="disable resolving dependencies",
|
|
|
|
)
|
|
|
|
group.add_argument(
|
|
|
|
"--selfhosting",
|
|
|
|
action="store_true",
|
|
|
|
help="build a self-hosting tree by following build dependencies (optional)",
|
|
|
|
)
|
|
|
|
group.add_argument(
|
|
|
|
"--fulltree",
|
|
|
|
action="store_true",
|
|
|
|
help="build a tree that includes all packages built from corresponding source rpms (optional)",
|
|
|
|
)
|
|
|
|
group.add_argument(
|
|
|
|
"--greedy",
|
|
|
|
metavar="METHOD",
|
|
|
|
# TODO: read choices from library
|
|
|
|
choices=["none", "all", "build"],
|
|
|
|
)
|
|
|
|
group.add_argument(
|
|
|
|
"--multilib",
|
|
|
|
metavar="[METHOD]",
|
|
|
|
action="append",
|
|
|
|
)
|
|
|
|
return parser
|
|
|
|
|
|
|
|
|
2017-01-23 09:53:46 +00:00
|
|
|
def main(persistdir, cachedir):
|
2015-06-25 12:37:23 +00:00
|
|
|
parser = get_parser()
|
|
|
|
ns = parser.parse_args()
|
|
|
|
|
|
|
|
dnf_conf = Conf(ns.arch)
|
2017-01-23 09:53:46 +00:00
|
|
|
dnf_conf.persistdir = persistdir
|
|
|
|
dnf_conf.cachedir = cachedir
|
2015-06-25 12:37:23 +00:00
|
|
|
dnf_obj = DnfWrapper(dnf_conf)
|
|
|
|
|
|
|
|
gather_opts = GatherOptions()
|
|
|
|
|
|
|
|
if ns.greedy:
|
|
|
|
gather_opts.greedy_method = ns.greedy
|
|
|
|
|
|
|
|
if ns.multilib:
|
|
|
|
gather_opts.multilib_methods = ns.multilib
|
|
|
|
|
|
|
|
if ns.lookaside:
|
|
|
|
gather_opts.lookaside_repos = ns.lookaside
|
|
|
|
|
2015-07-13 12:42:04 +00:00
|
|
|
if ns.fulltree:
|
|
|
|
gather_opts.fulltree = True
|
|
|
|
|
|
|
|
if ns.selfhosting:
|
|
|
|
gather_opts.selfhosting = True
|
|
|
|
|
|
|
|
if ns.nodeps:
|
|
|
|
gather_opts.resolve_deps = False
|
|
|
|
|
2015-07-10 10:43:06 +00:00
|
|
|
ksparser = pungi.ks.get_ksparser(ns.config)
|
|
|
|
|
|
|
|
# read repos from ks
|
|
|
|
for ks_repo in ksparser.handler.repo.repoList:
|
2018-06-08 10:52:50 +00:00
|
|
|
# HACK: lookaside repos first; this is workaround for no repo priority
|
|
|
|
# handling in hawkey
|
2015-07-10 10:43:06 +00:00
|
|
|
if ks_repo.name not in gather_opts.lookaside_repos:
|
|
|
|
continue
|
2018-06-08 10:52:50 +00:00
|
|
|
dnf_obj.add_repo(
|
2019-03-28 11:36:06 +00:00
|
|
|
ks_repo.name, ks_repo.baseurl, enablegroups=False
|
2018-06-08 10:52:50 +00:00
|
|
|
)
|
2015-07-10 10:43:06 +00:00
|
|
|
|
|
|
|
for ks_repo in ksparser.handler.repo.repoList:
|
|
|
|
if ks_repo.name in gather_opts.lookaside_repos:
|
|
|
|
continue
|
2019-03-28 11:36:06 +00:00
|
|
|
dnf_obj.add_repo(ks_repo.name, ks_repo.baseurl)
|
2015-07-10 10:43:06 +00:00
|
|
|
|
2016-04-06 08:30:50 +00:00
|
|
|
with Profiler("DnfWrapper.fill_sack()"):
|
|
|
|
dnf_obj.fill_sack(load_system_repo=False, load_available_repos=True)
|
|
|
|
dnf_obj.read_comps()
|
2015-07-10 10:43:06 +00:00
|
|
|
|
2015-07-13 10:05:03 +00:00
|
|
|
gather_opts.langpacks = dnf_obj.comps_wrapper.get_langpacks()
|
2015-06-25 12:37:23 +00:00
|
|
|
gather_opts.multilib_blacklist = ksparser.handler.multilib_blacklist
|
|
|
|
gather_opts.multilib_whitelist = ksparser.handler.multilib_whitelist
|
|
|
|
gather_opts.prepopulate = ksparser.handler.prepopulate
|
|
|
|
gather_opts.fulltree_excludes = ksparser.handler.fulltree_excludes
|
2018-03-07 12:42:09 +00:00
|
|
|
gather_opts.package_whitelist = ksparser.handler.package_whitelist
|
2015-06-25 12:37:23 +00:00
|
|
|
|
|
|
|
g = Gather(dnf_obj, gather_opts)
|
|
|
|
|
|
|
|
packages, conditional_packages = ksparser.get_packages(dnf_obj)
|
|
|
|
excluded = ksparser.get_excluded_packages(dnf_obj)
|
|
|
|
|
|
|
|
for i in excluded:
|
|
|
|
packages.add("-%s" % i)
|
|
|
|
|
|
|
|
g.gather(packages, conditional_packages)
|
|
|
|
|
2017-08-14 12:15:18 +00:00
|
|
|
if ns.download_to:
|
|
|
|
g.download(ns.download_to)
|
|
|
|
else:
|
|
|
|
print_rpms(g)
|
2016-04-06 08:30:50 +00:00
|
|
|
if ns.profiler:
|
2018-04-25 11:11:31 +00:00
|
|
|
Profiler.print_results(stream=sys.stderr)
|
2015-06-25 12:37:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
def _get_flags(gather_obj, pkg):
|
|
|
|
flags = gather_obj.result_package_flags.get(pkg, [])
|
2017-08-14 14:01:21 +00:00
|
|
|
flags = "(%s)" % ",".join(sorted(f.name.replace('_', '-') for f in flags))
|
2015-06-25 12:37:23 +00:00
|
|
|
return flags
|
|
|
|
|
|
|
|
|
2015-07-10 10:43:06 +00:00
|
|
|
def _get_url(pkg):
|
|
|
|
if pkg.baseurl:
|
|
|
|
result = os.path.join(pkg.baseurl, pkg.location)
|
|
|
|
else:
|
|
|
|
result = os.path.join(pkg.repo.baseurl[0], pkg.location)
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
2015-06-25 12:37:23 +00:00
|
|
|
def print_rpms(gather_obj):
|
|
|
|
for pkg in sorted(gather_obj.result_binary_packages):
|
2017-08-23 07:39:17 +00:00
|
|
|
print("RPM%s: %s" % (_get_flags(gather_obj, pkg), _get_url(pkg)))
|
2015-06-25 12:37:23 +00:00
|
|
|
|
|
|
|
for pkg in sorted(gather_obj.result_debug_packages):
|
2017-08-23 07:39:17 +00:00
|
|
|
print("DEBUGINFO%s: %s" % (_get_flags(gather_obj, pkg), _get_url(pkg)))
|
2015-06-25 12:37:23 +00:00
|
|
|
|
|
|
|
for pkg in sorted(gather_obj.result_source_packages):
|
2017-08-23 07:39:17 +00:00
|
|
|
print("SRPM%s: %s" % (_get_flags(gather_obj, pkg), _get_url(pkg)))
|
2015-06-25 12:37:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2017-01-23 09:53:46 +00:00
|
|
|
with temp_dir(prefix='pungi_dnf_') as persistdir:
|
|
|
|
with temp_dir(prefix='pungi_dnf_cache_') as cachedir:
|
|
|
|
main(persistdir, cachedir)
|