summaryrefslogtreecommitdiff
path: root/scripts/build_debian_package.sh
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2016-05-19 22:04:48 -0300
committerdrebs <drebs@leap.se>2016-06-08 12:42:20 -0300
commite94324c7a4d4e293fe3e38fa3c1becec146372e9 (patch)
tree1cc8c980698615a2b6fe65e3b99bf840eafab412 /scripts/build_debian_package.sh
parent929650db7d74011614b4c30ad1dc838f5ecbc266 (diff)
[refactor] reorganize scripts dir
Diffstat (limited to 'scripts/build_debian_package.sh')
-rwxr-xr-xscripts/build_debian_package.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/scripts/build_debian_package.sh b/scripts/build_debian_package.sh
deleted file mode 100755
index b9fb93a9..00000000
--- a/scripts/build_debian_package.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-
-# This script generates Soledad Debian packages.
-#
-# When invoking this script, you should pass a git repository URL and the name
-# of the branch that contains the code you wish to build the packages from.
-#
-# The script will clone the given branch from the given repo, as well as the
-# main Soledad repo in github which contains the most up-to-date debian
-# branch. It will then merge the desired branch into the debian branch and
-# build the packages.
-
-if [ $# -ne 2 ]; then
- echo "Usage: ${0} <url> <branch>"
- exit 1
-fi
-
-SOLEDAD_MAIN_REPO=git://github.com/leapcode/soledad.git
-
-url=$1
-branch=$2
-workdir=`mktemp -d`
-
-git clone -b ${branch} ${url} ${workdir}/soledad
-export GIT_DIR=${workdir}/soledad/.git
-export GIT_WORK_TREE=${workdir}/soledad
-git remote add leapcode ${SOLEDAD_MAIN_REPO}
-git fetch leapcode
-git checkout -b debian/experimental leapcode/debian/experimental
-git merge --no-edit ${branch}
-(cd ${workdir}/soledad && debuild -uc -us)
-echo "Packages generated in ${workdir}"