diff --git a/pungi b/pungi index 8b0dcb9e..2c882420 100755 --- a/pungi +++ b/pungi @@ -139,7 +139,7 @@ if __name__ == '__main__': import sys def get_arguments(): - parser = OptionParser(version="%prog 0.2.7") + parser = OptionParser(version="%prog 0.2.8") parser.add_option("--destdir", default="*CONFFILE*", dest="destdir", help='destination directory (defaults to current directory)') parser.add_option("-c", "--conf", default='/etc/pungi/pungi.conf', dest="config", diff --git a/pungi.spec b/pungi.spec index 59f6e477..33579a7f 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: pungi -Version: 0.2.7 +Version: 0.2.8 Release: 1%{?dist} Summary: Distribution compose tool @@ -46,6 +46,12 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Mar 09 2007 Jesse Keating - 0.2.8-1 +- Call createrepo ourselves for the tree, not buildinstall's job +- Convert from commands to subprocess for things we call out +- Add kickstart %packages syntax support to package manifest +- Make the list we hand off to yum to search for as unique as we can + * Wed Feb 28 2007 Jesse Keating - 0.2.7-1 - Fix gathering of srpms (thanks skvidal) - Update comps from F7 Test2 diff --git a/setup.py b/setup.py index 4b3d2e91..840e2c89 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup import glob setup(name='pungi', - version='0.2.7', + version='0.2.8', description='Distribution compose tool', author='Jesse Keating', author_email='jkeating@redhat.com',