From f3b5a6661476942bd15a3f80f806663cf6b46fec Mon Sep 17 00:00:00 2001 From: Ondrej Nosek Date: Thu, 29 Mar 2018 14:11:58 +0200 Subject: [PATCH] 4.1.23 release Signed-off-by: Ondrej Nosek --- doc/conf.py | 2 +- pungi.spec | 48 ++++++++++++++++++++++++++++++++++++++++++++++-- setup.py | 2 +- 3 files changed, 48 insertions(+), 4 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index de09b66e..7d3b21d6 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -53,7 +53,7 @@ copyright = u'2016, Red Hat, Inc.' # The short X.Y version. version = '4.1' # The full version, including alpha/beta/rc tags. -release = '4.1.22' +release = '4.1.23' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pungi.spec b/pungi.spec index 3d5673f6..7c529140 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,5 +1,5 @@ Name: pungi -Version: 4.1.22 +Version: 4.1.23 Release: 1%{?dist} Summary: Distribution compose tool @@ -27,7 +27,7 @@ Requires: repoview Requires: python-lockfile Requires: kobo >= 0.6 Requires: kobo-rpmlib -Requires: python-productmd +Requires: python-productmd >= 1.11 Requires: python-kickstart Requires: libselinux-python Requires: createrepo_c @@ -104,6 +104,50 @@ nosetests --exe cd tests && ./test_compose.sh %changelog +* Thu Mar 29 2018 Ondrej Nosek - 4.1.23-1 +- Update documentation section 'contributing' (onosek) +- Write module metadata (onosek) +- Support multilib in GatherSourceModule (jkaluza) +- ostree: Always substitute basearch (lsedlar) +- If sigkeys is specified, require at least one (puiterwijk) +- Allow setting in in variants.xml to get the modules + from this Koji tag. (jkaluza) +- Move Modulemd import to pungi/__init__.py to remove duplicated code. + (jkaluza) +- Use Modulemd.Module for 'variant.arch_mmds' instead of yaml dump (jkaluza) +- Fix modular content in non-modular variant (lsedlar) +- Remove the filtered RPMs from module metadata even in case all RPMs are + filtered out. (jkaluza) +- pkgset: Allow empty list of modules (lsedlar) +- buildinstall: Add option to disable it (lsedlar) +- Use libmodulemd instead of modulemd Python module (jkaluza) +- gather: Fix package set whitelist (lsedlar) +- pkgset: Merge initial package set without checks (lsedlar) +- pkgset: Remove check for unique name (lsedlar) +- gather: Honor package whitelist (lsedlar) +- Write package whitelist for each variant (lsedlar) +- image-build: Accept tar.xz extension for docker images (lsedlar) +- pkgset: Correctly detect single tag for variant (lsedlar) +- Remove comps groups from purely modular variants (lsedlar) +- gather: Allow filtering debuginfo packages (lsedlar) +- Move ostree phase and pipelines for running phases (onosek) +- Other repo for OstreeInstaller (onosek) +- Add modulemd metadata to repo even without components (jkaluza) +- Correct fix for volume ID substition sorting by length (awilliam) +- Ordering processing for volume ID substitutions (onosek) +- Disable multilib for modules (jkaluza) +- scm: Stop decoding output of post-clone command (lsedlar) +- Remove useless shebang (lsedlar) +- source_koji.py: Properly handle unset pkgset_koji_tag (otaylor) +- pkgset: Only use package whitelist if enabled (lsedlar) +- Fail early if input packages are unsigned (jkaluza) +- Allow composing from tag with unsigned packages (jkaluza) +- Ostree can use pkgset repos (onosek) +- Support multiple sources in one variant (lsedlar) +- gather: Set lookaside flag focorrectly (lsedlar) +- gather: Try getting srpm from the same repo as rpm (lsedlar) +- Minor correction for python backward compatibility (onosek) + * Wed Jan 24 2018 Ondrej Nosek - 4.1.22-1 - Better INFO messages about modules (onosek) - Updates composes should be marked as supported (lsedlar) diff --git a/setup.py b/setup.py index a1a26c2b..2e587705 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages = sorted(packages) setup( name = "pungi", - version = "4.1.22", + version = "4.1.23", description = "Distribution compose tool", url = "https://pagure.io/pungi", author = "Dennis Gilmore",