From 96617c8483061544bdcf07542fad3093cc226c9f Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mar 03 2016 19:07:12 +0000 Subject: 4.0.7 release Signed-off-by: Dennis Gilmore --- diff --git a/bin/pungi b/bin/pungi index e95072f..75c161b 100755 --- a/bin/pungi +++ b/bin/pungi @@ -200,7 +200,7 @@ if __name__ == '__main__': today = time.strftime('%Y%m%d', time.localtime()) def get_arguments(config): - parser = OptionParser("%prog [--help] [options]", version="%prog 4.0.6") + parser = OptionParser("%prog [--help] [options]", version="%prog 4.0.7") def set_config(option, opt_str, value, parser, config): config.set('pungi', option.dest, value) diff --git a/pungi.spec b/pungi.spec index 923ed30..a45bb5e 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,5 +1,5 @@ Name: pungi -Version: 4.0.6 +Version: 4.0.7 Release: 1%{?dist} Summary: Distribution compose tool @@ -8,6 +8,11 @@ License: GPLv2 URL: https://fedorahosted.org/pungi Source0: https://fedorahosted.org/pungi/attachment/wiki/%{version}/%{name}-%{version}.tar.bz2 BuildRequires: python-nose, python-nose-cov, python-mock +BuildRequires: python-devel, python-setuptools, python2-productmd +BuildRequires: python-lockfile, kobo, kobo-rpmlib, python-kickstart, createrepo_c +BuildRequires: python-lxml, libselinux-python, yum-utils, lorax +BuildRequires: yum => 3.4.3-28, createrepo >= 0.4.11 + Requires: createrepo >= 0.4.11 Requires: yum => 3.4.3-28 Requires: lorax >= 22.1 @@ -65,6 +70,19 @@ nosetests --exe --with-cov --cov-report html --cov-config tox.ini #cd tests && ./test_compose.sh %changelog +* Thu Mar 03 2016 Dennis Gilmore - 4.0.7-1 +- Limit the variants with config option 'tree_variants' (dennis) +- [createrepo-wrapper] Fix --deltas argument (lsedlar) +- [createrepo-wrapper] Add tests (lsedlar) +- [koji-wrapper] Retry watching on connection errors (lsedlar) +- [createrepo-wrapper] Refactor code (lsedlar) +- [paths] Use variant.uid explicitly (lsedlar) +- [createrepo] Add tests (lsedlar) +- [createrepo] Refactor code (lsedlar) +- [image-build] Fix resolving git urls (lsedlar) +- [testphase] Don't run repoclosure for empty variants (lsedlar) +- [live-images] No manifest for appliances (lsedlar) + * Fri Feb 26 2016 Dennis Gilmore - 4.0.6-1 - push the 4.0 docs toa 4.0 branch (dennis) - [live-images] Rename log file (lsedlar) diff --git a/setup.py b/setup.py index 81fa0c4..b6c390e 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages = sorted(packages) setup( name = "pungi", - version = "4.0.6", # make sure it matches with pungi.__version__ + version = "4.0.7", # make sure it matches with pungi.__version__ description = "Distribution compose tool", url = "https://pagure.io/pungi", author = "Dennis Gilmore",