Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2014-01-12 16:45:18 +0400
committerMikkel Krautz <mikkel@krautz.dk>2014-01-12 16:56:39 +0400
commit4323a21b837daf74e7287638c1248810f56c3317 (patch)
tree6e9f93af63b6b35520db5cb0342e6d497179e23e /scripts/release.pl
parentb2d938ba1aefadead721233b2366c3faaf55d9bc (diff)
scripts/release.pl: remove slicer-specific deployment functionality.
Nobody is using release.pl for deploying tarballs automatically anymore. Our builder bots were manually sed'ing out these parts of the code before running release.pl, so by dropping it completely, we can clean up their build scripts a bit.
Diffstat (limited to 'scripts/release.pl')
-rw-r--r--scripts/release.pl4
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/release.pl b/scripts/release.pl
index d90d961dd..6c68745a7 100644
--- a/scripts/release.pl
+++ b/scripts/release.pl
@@ -223,7 +223,3 @@ my $gz=gzopen("mumble-${ver}.tar.gz", "w");
$gz->gzwrite($tar->write());
$gz->gzclose();
$zip->writeToFileNamed("mumble-${ver}.zip");
-
-copy("mumble-${ver}.tar.gz", "../deb-mumble/tarballs/mumble_${ver}.orig.tar.gz");
-system("/usr/bin/gpg", "--armor", "--default-key", "DEBA6F3E", "--sign", "--detach-sign", "--output", "mumble-${ver}.tar.gz.sig", "mumble-${ver}.tar.gz");
-system("/usr/bin/scp", "-4", "mumble-${ver}.tar.gz", "mumble-${ver}.tar.gz.sig", "slicer\@mumble.hive.no:/var/www/snapshot/");