]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
add 'tarballs' target, to generate compressed source tarballs
authorBrian Warner <warner@allmydata.com>
Thu, 31 Jan 2008 03:45:14 +0000 (20:45 -0700)
committerBrian Warner <warner@allmydata.com>
Thu, 31 Jan 2008 03:45:14 +0000 (20:45 -0700)
Makefile
misc/make-tarballs.sh [new file with mode: 0644]

index 7150a1b59f49b8ecb72b18714a36a3ff3850ff61..4d04b3ffbb63061cecc80743839bf87d79832b3d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -315,6 +315,12 @@ clean:
 find-trailing-spaces:
        $(PYTHON) misc/find-trailing-spaces.py -r src
 
+# TARBALL GENERATION
+.PHONY: tarballs
+tarballs:
+       $(PYTHON) setup.py sdist
+       chmod +x misc/make-tarballs.sh
+       V=$(VER) ./misc/make-tarballs.sh
 
 # DEBIAN PACKAGING
 
diff --git a/misc/make-tarballs.sh b/misc/make-tarballs.sh
new file mode 100644 (file)
index 0000000..82bad37
--- /dev/null
@@ -0,0 +1,28 @@
+#!/bin/sh -e
+
+# this is called (with e.g. V=0.7.0-175) after a 'setup.py sdist' has been
+# executed, so there will be a dist/allmydata-tahoe-${VER}.tar.gz present.
+
+echo "creating tarballs for tahoe version '${V}'"
+
+# we leave the original .tar.gz in place, put a decompressed copy in .tar,
+# and then compress it with a number of other compressors.
+gunzip -c -d dist/allmydata-tahoe-${V}.tar.gz >dist/allmydata-tahoe-${V}.tar
+
+bzip2 -k dist/allmydata-tahoe-${V}.tar
+
+# rzip comes from the 'rzip' package
+rzip -k -9 dist/allmydata-tahoe-${V}.tar
+
+# 7z comes from the 'p7zip-full' package
+7z a dist/allmydata-tahoe-${V}.tar.7z dist/allmydata-tahoe-${V}.tar
+
+# lrzip is destructive (no -k option)
+# it is disabled because I cannot find a debian package for it. zooko, where
+# did you find this thing?
+#lrzip -M dist/allmydata-tahoe-${V}.tar
+# since we disabled lrzip, we should remove the .tar file
+rm dist/allmydata-tahoe-${V}.tar
+
+#time rsync --partial --progress allmydata-tahoe-${V}.tar.* zooko@allmydata.org:/var/www/source/tahoe/
+