From fec15e37fbd6b9d6f194e95c1a7880cca470c426 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Jan 17 2008 21:33:07 +0000 Subject: Update to 0.3.0 --- diff --git a/mash.py b/mash.py index 594706e..9dc4eee 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.2.10') + parser = OptionParser(usage, version='%prog 0.3.0') 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 7219c77..db8aab6 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.2.10 +Version: 0.3.0 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, koji +Requires: yum, createrepo >= 0.9.2, koji Conflicts: pungi < 1.0.0 BuildRequires: python-devel BuildArch: noarch @@ -34,7 +34,6 @@ mv $RPM_BUILD_ROOT/%{_bindir}/mash.py $RPM_BUILD_ROOT/%{_bindir}/mash %clean rm -rf $RPM_BUILD_ROOT - %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README TODO @@ -44,6 +43,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/mash %changelog +* Thu Jan 17 2008 Bill Nottingham 0.3.0-1 +- use createrepo's python API +- allow running without local koji storage + * Mon Nov 19 2007 Bill Nottingham 0.2.10-1 - handle non Packages/ repositories better (#350391) diff --git a/setup.py b/setup.py index 2bd1515..16fe34c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup import glob setup(name='mash', - version='0.2.10', + version='0.3.0', description='Build system -> repository tool', author='Bill Nottingham', author_email='notting@redhat.com',