summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-26 13:03:30 +0400
committerAndrew Dolgov <[email protected]>2013-03-26 13:03:30 +0400
commitbe8612c438c666798c9a80a606e5dcca93c111c0 (patch)
tree2280095571510c8eeedb4f99a05b014f364e29d4 /utils
parent24c0e2e57ddbe97123c8dbb3d52d6e67f89a4ea0 (diff)
remove release deb/tarball scripts
Diffstat (limited to 'utils')
-rwxr-xr-xutils/create-release-deb.sh23
-rwxr-xr-xutils/create-release-tarball.sh6
2 files changed, 0 insertions, 29 deletions
diff --git a/utils/create-release-deb.sh b/utils/create-release-deb.sh
deleted file mode 100755
index df2369afc..000000000
--- a/utils/create-release-deb.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh -ei
-
-if [ -z $1 ]; then
- echo usage: $0 VERSION
- exit 1
-fi
-
-git clone . dpkg-tmp/tt-rss
-cd dpkg-tmp/tt-rss
-git checkout $1
-
-debuild -i -us -uc
-#debuild -i -us -uc -b -aamd64
-
-cd ..
-
-if [ ! -z "$DEPLOY_DEBS" ]; then
- reprepro -b /var/www/apt include unstable tt-rss*_i386.changes
- #reprepro -b /var/www/apt include unstable tt-rss*_amd64.changes
-fi
-
-#cd ..
-#rm -rf dpkg-tmp
diff --git a/utils/create-release-tarball.sh b/utils/create-release-tarball.sh
deleted file mode 100755
index 935f0862c..000000000
--- a/utils/create-release-tarball.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-if [ -z $1 ]; then
- echo usage: $0 VERSION
- exit 1
-fi
-
-git archive --format=tar --prefix=tt-rss-$1/ $1 | gzip >tt-rss-$1.tar.gz