From: Seth Vidal Date: Mon, 11 Oct 2004 11:43:41 +0000 (+0000) Subject: correct problem with handling dirs with a space in the filename X-Git-Tag: upstream/0.9.9~280 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a6d2bd23e9728da50bb609447b20c569381f71c6;p=tools%2Fcreaterepo.git correct problem with handling dirs with a space in the filename update version number --- diff --git a/Makefile b/Makefile index c7f24e8..d88624f 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PACKAGE = createrepo -VERSION = 0.3.9 +VERSION = 0.4.0 SHELL = /bin/sh top_srcdir = . srcdir = . diff --git a/createrepo.spec b/createrepo.spec index 418b7ab..30de8dd 100644 --- a/createrepo.spec +++ b/createrepo.spec @@ -1,6 +1,6 @@ Summary: Creates a common metadata repository Name: createrepo -Version: 0.3.9 +Version: 0.4.0 Release: 1 License: GPL Group: System Environment/Base @@ -33,6 +33,9 @@ rpm packages %{_bindir}/%{name} %changelog +* Mon Oct 11 2004 Seth Vidal +- 0.4.0 + * Thu Sep 30 2004 Seth Vidal - 0.3.9 - fix for groups checksum creation diff --git a/genpkgmetadata.py b/genpkgmetadata.py index 33cfb0c..ce047d8 100755 --- a/genpkgmetadata.py +++ b/genpkgmetadata.py @@ -33,7 +33,7 @@ from zlib import error as zlibError from gzip import write32u, FNAME import dumpMetadata -__version__ = '0.3.9' +__version__ = '0.4.0' def errorprint(stuff): print >> sys.stderr, stuff @@ -179,7 +179,8 @@ def parseArgs(args): except ValueError, e: errorprint(_('Options Error: %s') % e) usage() - + + # make sure our dir makes sense before we continue if len(argsleft) > 1: errorprint(_('Error: Only one directory allowed per run.'))