From 4d270948dd5e2d286e29007a563b3d71a72322e9 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 21 Aug 2007 22:04:07 -0400 Subject: [PATCH] Prep for release --- pungi | 2 +- pungi.spec | 15 ++++++++++++++- setup.py | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/pungi b/pungi index 29473410..fff85fa9 100755 --- a/pungi +++ b/pungi @@ -151,7 +151,7 @@ if __name__ == '__main__': import sys def get_arguments(): - parser = OptionParser(version="%prog 0.4.1") + parser = OptionParser(version="%prog 0.5.0") 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 668e9c9d..474593f3 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.4.1 +Version: 0.5.0 Release: 1%{?dist} Summary: Distribution compose tool @@ -46,6 +46,19 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Aug 21 2007 Jesse Keating - 0.5.0-1 +- Rework how source rpms are pulled in + Always pull in 'src' arch packages, just filter them + when not needed. Saves having to reset or create new + yum objects. +- Create a base pungi class that sets logging +- Inherit this class in Gather and Pungi +- Adjust logging to make use of new facility, use right levels +- Drop a note when all done with composing +- Make Gather() no longer a subclass of yum +- Be verbose about what we clean (makefile) +- Create a subclass of yum to work around logging fun + * Wed Aug 01 2007 Jesse Keating - 0.4.1-1 - Create a new yum object for source downloads as yum diff --git a/setup.py b/setup.py index f6abec0b..c221a6c0 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup import glob setup(name='pungi', - version='0.4.1', + version='0.5.1', description='Distribution compose tool', author='Jesse Keating', author_email='jkeating@redhat.com',