correct problem with handling dirs with a space in the filename
authorSeth Vidal <skvidal@linux.duke.edu>
Mon, 11 Oct 2004 11:43:41 +0000 (11:43 +0000)
committerSeth Vidal <skvidal@linux.duke.edu>
Mon, 11 Oct 2004 11:43:41 +0000 (11:43 +0000)
update version number

Makefile
createrepo.spec
genpkgmetadata.py

index c7f24e81e671d58467a5cc6a891d1a619ae2ac29..d88624fbec055c2a2fb106bba4f3eec678dbfb1a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 PACKAGE = createrepo
-VERSION = 0.3.9
+VERSION = 0.4.0
 SHELL = /bin/sh
 top_srcdir = .
 srcdir = .
index 418b7abe57f5c3ffcba3745006216dba32ce0190..30de8dd90768d532d65f1d79ea85c0f6c0e560d9 100644 (file)
@@ -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 <skvidal@phy.duke.edu>
+- 0.4.0
+
 * Thu Sep 30 2004 Seth Vidal <skvidal@phy.duke.edu>
 - 0.3.9
 - fix for groups checksum creation
index 33cfb0c2cf9cecbca590818673671a4b43cb9677..ce047d81c13401d79cd5e619fae7cc1b9bc4bd02 100755 (executable)
@@ -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.'))