Release 1.1.0
This commit is contained in:
parent
5fafe9c962
commit
93ad1c3f57
2
pungi
2
pungi
@ -115,7 +115,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(version="%prog 1.0.2")
|
parser = OptionParser(version="%prog 1.1.0")
|
||||||
|
|
||||||
def set_config(option, opt_str, value, parser, config):
|
def set_config(option, opt_str, value, parser, config):
|
||||||
config.set('default', option.dest, value)
|
config.set('default', option.dest, value)
|
||||||
|
14
pungi.spec
14
pungi.spec
@ -1,7 +1,7 @@
|
|||||||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
|
|
||||||
Name: pungi
|
Name: pungi
|
||||||
Version: 1.0.2
|
Version: 1.1.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Distribution compose tool
|
Summary: Distribution compose tool
|
||||||
|
|
||||||
@ -51,6 +51,18 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Sep 14 2007 Jesse Keating <jkeating@redhat.com> - 1.1.0-1
|
||||||
|
- Create repoview content in the tree
|
||||||
|
- Move the .composeinfo file into the directory we actually publish
|
||||||
|
- Remove python2.5 needs (Mark McLoughlin)
|
||||||
|
- Consolidate the download code for easier maint. (Mark McLoughlin)
|
||||||
|
- Create a config class that can make using pungi modules easier. (Mark
|
||||||
|
McLoughlin)
|
||||||
|
- Use url line in kickstart files as a repo
|
||||||
|
- Fix a bug with default dest dir (notting)
|
||||||
|
- Include a man page (dcantrell)
|
||||||
|
- Fix a bug with file:// based repos
|
||||||
|
|
||||||
* Thu Aug 30 2007 Jesse Keating <jkeating@redhat.com> - 1.0.2-1
|
* Thu Aug 30 2007 Jesse Keating <jkeating@redhat.com> - 1.0.2-1
|
||||||
- Fix some bugs with source iso creation
|
- Fix some bugs with source iso creation
|
||||||
- Add source repo to kickstart file
|
- Add source repo to kickstart file
|
||||||
|
2
setup.py
2
setup.py
@ -2,7 +2,7 @@ from distutils.core import setup
|
|||||||
import glob
|
import glob
|
||||||
|
|
||||||
setup(name='pungi',
|
setup(name='pungi',
|
||||||
version='1.0.2',
|
version='1.1.0',
|
||||||
description='Distribution compose tool',
|
description='Distribution compose tool',
|
||||||
author='Jesse Keating',
|
author='Jesse Keating',
|
||||||
author_email='jkeating@redhat.com',
|
author_email='jkeating@redhat.com',
|
||||||
|
Loading…
Reference in New Issue
Block a user