4.1.2 release
Signed-off-by: Dennis Gilmore <dennis@ra.ausil.us>
This commit is contained in:
parent
5f12c8c9ce
commit
36e7279a5e
@ -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.1")
|
parser = OptionParser("%prog [--help] [options]", version="%prog 4.1.2")
|
||||||
|
|
||||||
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.1'
|
release = '4.1.2'
|
||||||
|
|
||||||
# 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.
|
||||||
|
15
pungi.spec
15
pungi.spec
@ -1,5 +1,5 @@
|
|||||||
Name: pungi
|
Name: pungi
|
||||||
Version: 4.1.1
|
Version: 4.1.2
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Distribution compose tool
|
Summary: Distribution compose tool
|
||||||
|
|
||||||
@ -65,6 +65,19 @@ nosetests --exe --with-cov --cov-report html --cov-config tox.ini
|
|||||||
#cd tests && ./test_compose.sh
|
#cd tests && ./test_compose.sh
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Apr 05 2016 Dennis Gilmore <dennis@ausil.us> - 4.1.2-1
|
||||||
|
- Merge #257 `[ostree] Enable marking ostree phase as failable` (ausil)
|
||||||
|
- [ostree] Enable marking ostree phase as failable (lsedlar)
|
||||||
|
- [koji-wrapper] Initialize wrappers sequentially (lsedlar)
|
||||||
|
- [createiso] Simplify code, test phase (lsedlar)
|
||||||
|
- [createiso] Move runroot work to separate script (lsedlar)
|
||||||
|
- [ostree] Use explicit work directory (lsedlar)
|
||||||
|
- [ostree] Rename atomic to ostree (lsedlar)
|
||||||
|
- [ostree] Move cloning config repo to chroot (lsedlar)
|
||||||
|
- [ostree] Fix call to kobo.shortcuts.run (lsedlar)
|
||||||
|
- [atomic] Stop creating the os directory (lsedlar)
|
||||||
|
- [checksum] Add arch to file name (lsedlar)
|
||||||
|
|
||||||
* Fri Apr 01 2016 Dennis Gilmore <dennis@ausil.us> - 4.1.1-1
|
* Fri Apr 01 2016 Dennis Gilmore <dennis@ausil.us> - 4.1.1-1
|
||||||
- install scripts (dennis)
|
- install scripts (dennis)
|
||||||
- Merge #242 `Fix wrong file permissions` (ausil)
|
- Merge #242 `Fix wrong file permissions` (ausil)
|
||||||
|
8
setup.py
8
setup.py
@ -25,7 +25,7 @@ packages = sorted(packages)
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "pungi",
|
name = "pungi",
|
||||||
version = "4.1.1", # make sure it matches with pungi.__version__
|
version = "4.1.2", # 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",
|
||||||
@ -34,12 +34,14 @@ setup(
|
|||||||
|
|
||||||
packages = packages,
|
packages = packages,
|
||||||
scripts = [
|
scripts = [
|
||||||
|
'bin/comps_filter',
|
||||||
'bin/pungi',
|
'bin/pungi',
|
||||||
'bin/pungi-config-validate',
|
'bin/pungi-config-validate',
|
||||||
'bin/pungi-koji',
|
'bin/pungi-createiso',
|
||||||
'bin/comps_filter',
|
|
||||||
'bin/pungi-fedmsg-notification',
|
'bin/pungi-fedmsg-notification',
|
||||||
|
'bin/pungi-koji',
|
||||||
'bin/pungi-make-ostree',
|
'bin/pungi-make-ostree',
|
||||||
|
'bin/pungi-pylorax-find-templates',
|
||||||
],
|
],
|
||||||
data_files = [
|
data_files = [
|
||||||
('/usr/share/pungi', glob.glob('share/*.xsl')),
|
('/usr/share/pungi', glob.glob('share/*.xsl')),
|
||||||
|
Loading…
Reference in New Issue
Block a user