From c0c9d7bed7c04a12e8694bcef7e0007c7e7df085 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 21 Feb 2007 16:48:08 -0500 Subject: [PATCH] prep for release --- pungi | 2 +- pungi.spec | 5 ++++- setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pungi b/pungi index b2134e22..616d18cd 100755 --- a/pungi +++ b/pungi @@ -139,7 +139,7 @@ if __name__ == '__main__': import sys def get_arguments(): - parser = OptionParser(version="%prog 0.2.5") + parser = OptionParser(version="%prog 0.2.6") 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 03a2c57b..ea7490bc 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.5 +Version: 0.2.6 Release: 1%{?dist} Summary: Distribution compose tool @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Feb 22 2007 Jesse Keating - 0.2.6-1 +- Don't use TMPDIR with buildinstall, it is broken + * Wed Feb 21 2007 Jesse Keating - 0.2.5-1 - Make use of anaconda's TMPDIR support - Put yum tempdirs in the workdir diff --git a/setup.py b/setup.py index 62281be9..8348206a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup import glob setup(name='pungi', - version='0.2.5', + version='0.2.6', description='Distribution compose tool', author='Jesse Keating', author_email='jkeating@redhat.com',