4.1.3 release
Signed-off-by: Dennis Gilmore <dennis@ausil.us>
This commit is contained in:
parent
cb271dc5ac
commit
4f76425c9f
@ -200,7 +200,7 @@ if __name__ == '__main__':
|
|||||||
today = time.strftime('%Y%m%d', time.localtime())
|
today = time.strftime('%Y%m%d', time.localtime())
|
||||||
|
|
||||||
def get_arguments(config):
|
def get_arguments(config):
|
||||||
parser = OptionParser("%prog [--help] [options]", version="%prog 4.1.2")
|
parser = OptionParser("%prog [--help] [options]", version="%prog 4.1.3")
|
||||||
|
|
||||||
def set_config(option, opt_str, value, parser, config):
|
def set_config(option, opt_str, value, parser, config):
|
||||||
config.set('pungi', option.dest, value)
|
config.set('pungi', option.dest, value)
|
||||||
|
@ -53,7 +53,7 @@ copyright = u'2016, Red Hat, Inc.'
|
|||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '4.1'
|
version = '4.1'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '4.1.2'
|
release = '4.1.3'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
30
pungi.spec
30
pungi.spec
@ -1,5 +1,5 @@
|
|||||||
Name: pungi
|
Name: pungi
|
||||||
Version: 4.1.2
|
Version: 4.1.3
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Distribution compose tool
|
Summary: Distribution compose tool
|
||||||
|
|
||||||
@ -8,6 +8,12 @@ License: GPLv2
|
|||||||
URL: https://fedorahosted.org/pungi
|
URL: https://fedorahosted.org/pungi
|
||||||
Source0: https://fedorahosted.org/pungi/attachment/wiki/%{version}/%{name}-%{version}.tar.bz2
|
Source0: https://fedorahosted.org/pungi/attachment/wiki/%{version}/%{name}-%{version}.tar.bz2
|
||||||
BuildRequires: python-nose, python-nose-cov, python-mock
|
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
|
||||||
|
BuildRequires: gettext, git-core, cvs
|
||||||
|
|
||||||
Requires: createrepo >= 0.4.11
|
Requires: createrepo >= 0.4.11
|
||||||
Requires: yum => 3.4.3-28
|
Requires: yum => 3.4.3-28
|
||||||
Requires: lorax >= 22.1
|
Requires: lorax >= 22.1
|
||||||
@ -42,10 +48,12 @@ A tool to create anaconda based installation trees/isos of a set of rpms.
|
|||||||
%{__python} setup.py build
|
%{__python} setup.py build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf %{buildroot}
|
||||||
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
|
||||||
%{__install} -d $RPM_BUILD_ROOT/var/cache/pungi
|
%{__install} -d %{buildroot}/var/cache/pungi
|
||||||
%{__install} -d $RPM_BUILD_ROOT/%{_mandir}/man8
|
%{__install} -d %{buildroot}/%{_mandir}/man8
|
||||||
|
# this script has to be run by python3 and setup.py is too dumb
|
||||||
|
sed -i 's|/usr/bin/python$|/usr/bin/python3|' %{buildroot}/%{_bindir}/pungi-pylorax-find-templates
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
@ -61,10 +69,20 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
./tests/data/specs/build.sh
|
./tests/data/specs/build.sh
|
||||||
python2 setup.py test
|
python2 setup.py test
|
||||||
nosetests --exe --with-cov --cov-report html --cov-config tox.ini
|
nosetests --exe --with-cov --cov-report html --cov-config tox.ini
|
||||||
#TODO: enable compose test
|
|
||||||
cd tests && ./test_compose.sh
|
cd tests && ./test_compose.sh
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Apr 08 2016 Dennis Gilmore <dennis@ausil.us> - 4.1.3-1
|
||||||
|
- enable the compose test (dennis)
|
||||||
|
- [ostree-installer] Copy all lorax outputs (lsedlar)
|
||||||
|
- [ostree] Log to stdout as well (lsedlar)
|
||||||
|
- [ostree-installer] Use separate directory for logs (lsedlar)
|
||||||
|
- Merge #260 `Maybe fix ostree?` (ausil)
|
||||||
|
- [ostree-installer] Put lorax output into work dir (lsedlar)
|
||||||
|
- [ostree] Add test check for modified repo baseurl (lsedlar)
|
||||||
|
- [ostree] Move cloning repo back to compose box (lsedlar)
|
||||||
|
- [ostree] Mount ostree directory in koji (lsedlar)
|
||||||
|
|
||||||
* Wed Apr 05 2016 Dennis Gilmore <dennis@ausil.us> - 4.1.2-1
|
* Wed Apr 05 2016 Dennis Gilmore <dennis@ausil.us> - 4.1.2-1
|
||||||
- Merge #257 `[ostree] Enable marking ostree phase as failable` (ausil)
|
- Merge #257 `[ostree] Enable marking ostree phase as failable` (ausil)
|
||||||
- [ostree] Enable marking ostree phase as failable (lsedlar)
|
- [ostree] Enable marking ostree phase as failable (lsedlar)
|
||||||
|
2
setup.py
2
setup.py
@ -25,7 +25,7 @@ packages = sorted(packages)
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "pungi",
|
name = "pungi",
|
||||||
version = "4.1.2", # make sure it matches with pungi.__version__
|
version = "4.1.3", # make sure it matches with pungi.__version__
|
||||||
description = "Distribution compose tool",
|
description = "Distribution compose tool",
|
||||||
url = "https://pagure.io/pungi",
|
url = "https://pagure.io/pungi",
|
||||||
author = "Dennis Gilmore",
|
author = "Dennis Gilmore",
|
||||||
|
Loading…
Reference in New Issue
Block a user