no longer supporting deb7
[freeside.git] / bin / freeside-debian-releases.sh
1 #!/bin/bash
2
3 DISTRO="$1"
4 FS_VERSION="$2"
5 FS_REPO="$3"
6
7 if [[ $# -ne 3 ]]
8   then
9     echo "We need 3 arguments"
10     exit;
11 fi
12
13 DATE=`date +"%Y%m%d"`
14 DIR="/home/autobuild/packages/staging/freeside$FS_VERSION/$FS_REPO"
15 TARGET="/home/autobuild/public_html/freeside$FS_VERSION-$DISTRO-$FS_REPO"
16
17 if [ ! -d "$DIR" -a -d $TARGET ]; then
18
19 echo "Staging or Target directories do not exist"
20
21 fi
22
23 GIT_VERSION=`grep '^$VERSION' $DIR/freeside/FS/FS.pm | cut -d\' -f2`
24
25 # Pull any changes
26 cd $DIR/freeside
27 git checkout -- debian/changelog
28 git pull
29 #STATUS=`git pull`
30
31 # Add the build information to changelog
32 if [ $FS_REPO != "stable" ]; then
33         dch -b --newversion $GIT_VERSION-$DATE "Auto-Build"
34 fi
35
36 # Using pbuilder and pdebuild in chroot instead of building directly : dpkg-buildpackage -b -rfakeroot -uc -us
37
38 pdebuild --pbuilderroot sudo --debbuildopts "-b -rfakeroot -uc -us" --buildresult $TARGET --architecture all -- --distribution $DISTRO  --basetgz /var/cache/pbuilder/$DISTRO.tgz
39
40 #--buildresult gets the file where it needs to be, may need to clean up DIR
41
42 cd $DIR && rm -f freeside_*
43 cd $TARGET && rm -f *.gz
44
45 apt-ftparchive -qq packages ./ >Packages
46 gzip -c Packages >Packages.gz
47 #bzip2 -c Packages >Packagez.bz2
48 apt-ftparchive -qq sources ./ >Sources
49 gzip -c Sources >Sources.gz
50 #bzip2 -c Sources >Sources.bz2
51 rm *bz2 || true
52 apt-ftparchive -qq release ./ >Release