From c4ba907d54a19f5f415645d8d853de0a49f56394 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Dec 17 2008 02:53:43 +0000 Subject: 0.4.5 --- diff --git a/mash.py b/mash.py index 51ffc81..7920960 100755 --- a/mash.py +++ b/mash.py @@ -23,7 +23,7 @@ import mash.config def main(): usage = "usage: %prog [options] " - parser = OptionParser(usage, version='%prog 0.4.4') + parser = OptionParser(usage, version='%prog 0.4.5') parser.add_option("-o","--outputdir",default="", dest="outputdir", help="output directory") parser.add_option("-c","--config", default="/etc/mash/mash.conf", dest="config", diff --git a/mash.spec b/mash.spec index 0964d3e..bd20ab0 100644 --- a/mash.spec +++ b/mash.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: mash -Version: 0.4.4 +Version: 0.4.5 Release: 1%{?dist} Summary: Koji buildsystem to yum repository converter Group: Development/Tools @@ -9,7 +9,7 @@ License: GPL URL: http://people.redhat.com/notting/mash/ Source0: http://people.redhat.com/notting/mash/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -Requires: yum, createrepo >= 0.9.2, koji +Requires: yum, createrepo, koji Conflicts: pungi < 1.0.0 BuildRequires: python-devel BuildArch: noarch @@ -44,6 +44,10 @@ rm -rf $RPM_BUILD_ROOT /var/cache/mash %changelog +* Tue Dec 16 2008 Bill Nottingham 0.4.5-1 +- fix caching bug with respect to epochs +- work with both python createrepo API and commandline createrepo + * Tue Dec 16 2008 Bill Nottingham 0.4.4-1 - Mark gstreamer plugins as multilib (#252173) - Some more multilib devel blacklisting, including php. (#342851) diff --git a/setup.py b/setup.py index 4c6748c..a2036b3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup import glob setup(name='mash', - version='0.4.4', + version='0.4.5', description='Build system -> repository tool', author='Bill Nottingham', author_email='notting@redhat.com',