From 3e5bece9c92314988e946d6a8f965e59c8bef402 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Jun 22 2012 20:04:58 +0000 Subject: 0.5.28 --- diff --git a/mash.py b/mash.py index 2ddc24b..a4277df 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.5.27') + parser = OptionParser(usage, version='%prog 0.5.28') 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 d6c135e..6dbe833 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.5.27 +Version: 0.5.28 Release: 1%{?dist} Summary: Koji buildsystem to yum repository converter Group: Development/Tools @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT /var/cache/mash %changelog +* Fri Jun 22 2012 Bill Nottingham 0.5.28-1 +- fix configuration initialization to be consistent (also fixes #668326) + * Thu Jun 21 2012 Bill Nottingham 0.5.27-1 - explicitly whitelist redhat-lsb, to handle packaging changes thereof diff --git a/setup.py b/setup.py index 2e4ab50..085f136 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup import glob setup(name='mash', - version='0.5.27', + version='0.5.28', description='Build system -> repository tool', author='Bill Nottingham', author_email='notting@redhat.com',