X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=contrib%2Fpush-easyinstall.sh;fp=contrib%2Fpush-easyinstall.sh;h=0000000000000000000000000000000000000000;hb=cf8f7ffedb36dbfaa5f1f413c42b976c4fda1142;hp=e9511fa2e942c9924b8ca0231171bcb18a5d9aa5;hpb=fa2dd842abb5feedea3e2253255722fcaecc3c6f;p=citadel.git diff --git a/contrib/push-easyinstall.sh b/contrib/push-easyinstall.sh deleted file mode 100644 index e9511fa2e..000000000 --- a/contrib/push-easyinstall.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -# This script updates your Easy Install repository from git. - -#export BRANCH=master -#export BRANCH=811592051c9c28dfd815d8e36b4006a7b78d6d66 -export BRANCH=v8.24 - -export BASE=`pwd` -rm -vfr citadel 2>/dev/null -/usr/bin/git clone git://git.citadel.org/appl/gitroot/citadel.git -cd $BASE/citadel - -/usr/bin/git checkout $BRANCH - -for module in libcitadel citadel webcit textclient -do - echo bootstrap of $module starting - cd $BASE/citadel/${module} - ./bootstrap - /usr/bin/git log -1 --pretty=%H . >../${module}-easyinstall.sum - cd .. - tar cvhzf ${module}-easyinstall.tar.gz \ - --exclude .git \ - --exclude "tests/testdata" \ - --exclude debian \ - ${module} - mv -vf ${module}-easyinstall.tar.gz .. && mv -vf ${module}-easyinstall.sum .. -done - -cd $BASE -rm -vfr citadel - -echo Done.