Author: gnichols Date: 2011-07-05 21:03:23 +0000 (Tue, 05 Jul 2011) New Revision: 966
Modified: trunk/tools/v7-release.py Log: 702695 - v7 server should have it's own package
Modified: trunk/tools/v7-release.py =================================================================== --- trunk/tools/v7-release.py 2011-07-05 21:01:44 UTC (rev 965) +++ trunk/tools/v7-release.py 2011-07-05 21:03:23 UTC (rev 966) @@ -25,7 +25,6 @@ distDir = "/home/gnichols/dist/v7"
sourceTar = "%s/v7-%s-%s.el%s.tar.bz2" % (buildDir, v7.version.version, v7.version.release, v7.version.rhel_version) -serverSourceTar = "%s/v7-server-%s-%s.el%s.tar.bz2" % (buildDir, v7.version.version, v7.version.release, v7.version.rhel_version)
print "building for RHEL %s" % v7.version.rhel_version
@@ -35,15 +34,11 @@
#copy the spec file shutil.copy(os.path.join(buildDir, "v7.spec"), "v7.spec") -shutil.copy(os.path.join(buildDir, "v7-server.spec"), "v7-server.spec")
# upload the tarball command = "make upload FILES=%s" % sourceTar print command os.system(command) -command = "make upload FILES=%s" % serverSourceTar -print command -os.system(command)
# commit the new source and spec command = "cvs commit -m "R%s" . " % v7.version.release
v7-commits@lists.stg.fedorahosted.org