releng r936 - in trunk/tools: . smoketesting
- From: ovitters svn gnome org
- To: svn-commits-list gnome org
- Subject: releng r936 - in trunk/tools: . smoketesting
- Date: Thu, 31 Jan 2008 22:58:50 +0000 (GMT)
Author: ovitters
Date: Thu Jan 31 22:58:49 2008
New Revision: 936
URL: http://svn.gnome.org/viewvc/releng?rev=936&view=rev
Log:
* smoketesting/convert-to-tarballs.py: Ensure gtksourceview-1.0 is
written to the versions file as gtksourceview (no '-1.0').
Modified:
trunk/tools/ChangeLog
trunk/tools/smoketesting/convert-to-tarballs.py
Modified: trunk/tools/smoketesting/convert-to-tarballs.py
==============================================================================
--- trunk/tools/smoketesting/convert-to-tarballs.py (original)
+++ trunk/tools/smoketesting/convert-to-tarballs.py Thu Jan 31 22:58:49 2008
@@ -844,6 +844,7 @@
subdirs = {}
for module in modules_sorted:
try:
+ real_module = self.options.get_real_name(module)
index = self.all_tarballs.index(module)
version = self.all_versions[index]
subdir = self.options.get_subdir(module)
@@ -851,10 +852,10 @@
if not subdirs.has_key(subdir):
subdirs[subdir] = []
subdirs[subdir].append ('%s:%s:%s:%s\n' %
- (release_set, module, version, subdir))
+ (release_set, real_module, version, subdir))
else:
versions.write('%s:%s:%s:\n' %
- (release_set, module, version))
+ (release_set, real_module, version))
except:
print 'No version found for %s' % module
subdirs_keys = subdirs.keys()
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]