From b8f9f3094fc2b9cfbd4be5210532a9660834eeea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Nosek?= Date: Fri, 9 Dec 2022 22:26:23 +0000 Subject: [PATCH] New upstream release 4.3.7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ondřej Nosek --- 1641.patch | 104 ----------------------------------------------------- pungi.spec | 22 ++++++++++-- sources | 2 +- 3 files changed, 20 insertions(+), 108 deletions(-) delete mode 100644 1641.patch diff --git a/1641.patch b/1641.patch deleted file mode 100644 index 115773d9..00000000 --- a/1641.patch +++ /dev/null @@ -1,104 +0,0 @@ -From 479849042f118508a7d4ee27a7444c002ac9e119 Mon Sep 17 00:00:00 2001 -From: Lubomír Sedlář -Date: Nov 03 2022 10:11:01 +0000 -Subject: init: Filter comps for modular variants with tags - - -Modular variants can either be specified by a list of modules, or by a -list of Koji tags. In terms of comps preprocessing there should not be -any difference between the two. - -Resolves: https://pagure.io/pungi/issue/1640 -Signed-off-by: Lubomír Sedlář - ---- - -diff --git a/pungi/phases/init.py b/pungi/phases/init.py -index a78c0dc..a99bc59 100644 ---- a/pungi/phases/init.py -+++ b/pungi/phases/init.py -@@ -165,12 +165,18 @@ def write_variant_comps(compose, arch, variant): - run(cmd) - - comps = CompsWrapper(comps_file) -- if variant.groups or variant.modules is not None or variant.type != "variant": -- # Filter groups if the variant has some, or it's a modular variant, or -- # is not a base variant. -+ # Filter groups if the variant has some, or it's a modular variant, or -+ # is not a base variant. -+ if ( -+ variant.groups -+ or variant.modules is not None -+ or variant.modular_koji_tags is not None -+ or variant.type != "variant" -+ ): - unmatched = comps.filter_groups(variant.groups) - for grp in unmatched: - compose.log_warning(UNMATCHED_GROUP_MSG % (variant.uid, arch, grp)) -+ - contains_all = not variant.groups and not variant.environments - if compose.conf["comps_filter_environments"] and not contains_all: - # We only want to filter environments if it's enabled by configuration -diff --git a/tests/helpers.py b/tests/helpers.py -index 7aa7452..e221b83 100644 ---- a/tests/helpers.py -+++ b/tests/helpers.py -@@ -79,6 +79,7 @@ class MockVariant(mock.Mock): - self.variants = {} - self.pkgsets = set() - self.modules = None -+ self.modular_koji_tags = None - self.name = name - self.nsvc_to_pkgset = defaultdict(lambda: mock.Mock(rpms_by_arch={})) - -diff --git a/tests/test_initphase.py b/tests/test_initphase.py -index 1fb80c4..2ddb82c 100644 ---- a/tests/test_initphase.py -+++ b/tests/test_initphase.py -@@ -499,6 +499,45 @@ class TestWriteVariantComps(PungiTestCase): - - @mock.patch("pungi.phases.init.run") - @mock.patch("pungi.phases.init.CompsWrapper") -+ def test_run_filter_for_modular_koji_tags(self, CompsWrapper, run): -+ compose = DummyCompose(self.topdir, {}) -+ variant = compose.variants["Server"] -+ variant.groups = [] -+ variant.modular_koji_tags = ["f38-modular"] -+ comps = CompsWrapper.return_value -+ comps.filter_groups.return_value = [] -+ -+ init.write_variant_comps(compose, "x86_64", variant) -+ -+ self.assertEqual( -+ run.mock_calls, -+ [ -+ mock.call( -+ [ -+ "comps_filter", -+ "--arch=x86_64", -+ "--keep-empty-group=conflicts", -+ "--keep-empty-group=conflicts-server", -+ "--variant=Server", -+ "--output=%s/work/x86_64/comps/comps-Server.x86_64.xml" -+ % self.topdir, -+ self.topdir + "/work/global/comps/comps-global.xml", -+ ] -+ ) -+ ], -+ ) -+ self.assertEqual( -+ CompsWrapper.call_args_list, -+ [mock.call(self.topdir + "/work/x86_64/comps/comps-Server.x86_64.xml")], -+ ) -+ self.assertEqual(comps.filter_groups.call_args_list, [mock.call([])]) -+ self.assertEqual( -+ comps.filter_environments.mock_calls, [mock.call(variant.environments)] -+ ) -+ self.assertEqual(comps.write_comps.mock_calls, [mock.call()]) -+ -+ @mock.patch("pungi.phases.init.run") -+ @mock.patch("pungi.phases.init.CompsWrapper") - def test_run_report_unmatched(self, CompsWrapper, run): - compose = DummyCompose(self.topdir, {}) - variant = compose.variants["Server"] - diff --git a/pungi.spec b/pungi.spec index 1c462298..8aaf9b48 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,14 +1,13 @@ %{?python_enable_dependency_generator} Name: pungi -Version: 4.3.6 -Release: 2%{?dist} +Version: 4.3.7 +Release: 1%{?dist} Summary: Distribution compose tool License: GPLv2 URL: https://pagure.io/pungi Source0: https://pagure.io/releases/%{name}/%{name}-%{version}.tar.bz2 -Patch: https://pagure.io/pungi/pull-request/1641.patch BuildRequires: make BuildRequires: python3-pytest @@ -139,6 +138,23 @@ rm %{buildroot}%{_bindir}/pungi %{_bindir}/%{name}-wait-for-signed-ostree-handler %changelog +* Fri Dec 09 2022 Ondřej Nosek - 4.3.7-1 +- osbuild: test passing of rich repos from configuration (lsedlar) +- osbuild: support specifying `package_sets` for repos (thozza) +- osbuild: don't use `util.get_repo_urls()` (thozza) +- osbuild: update schema and config documentation (thozza) +- Speed up tests by 30 seconds (lsedlar) +- Stop sending compose paths to CTS (lsedlar) +- Report errors from CTS (lsedlar) +- createiso: Create Joliet tree with xorriso (lsedlar) +- init: Filter comps for modular variants with tags (lsedlar) +- Retry failed cts requests (hlin) +- Ignore existing kerberos ticket for CTS auth (lsedlar) +- osbuild: support specifying upload_options (thozza) +- osbuild: accept only a single image type in the configuration (thozza) +- Add Jenkinsfile for CI (hlin) +- profiler: Flush stdout before printing (lsedlar) + * Mon Nov 07 2022 Lubomír Sedlář - 4.3.6-2 - Stop including comps in modular repos diff --git a/sources b/sources index 72a88b42..f6059be3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (pungi-4.3.6.tar.bz2) = cbeb9b1064c0d0883fff9822a668fd76d166b183b163eddba9aec8aa548cdf0ad63e12ad5c04dd2973b0c35010af7482e64368e01ffa7b4875c36a273573fbe6 +SHA512 (pungi-4.3.7.tar.bz2) = 1c9390408598d160140f8e028afc069924361f787c835a4db058fcb89932a98de558a3614448f73c804484d30fa4e53f2f667e175038c6f4a0e2eb22b0654dd0