stretch-happy Releases files
[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 # Clean configuration file
26 rm -fr $DIR/freeside/debian/freeside-ng-selfservice.conffiles
27
28 # Pull any changes
29 cd $DIR/freeside
30 git checkout -- debian/changelog
31 git pull
32 #STATUS=`git pull`
33
34 # Add the build information to changelog
35 if [ $FS_REPO != "stable" ]; then
36         dch -b --newversion $GIT_VERSION-$DATE "Auto-Build"
37 fi
38
39 # Using pbuilder and pdebuild in chroot instead of building directly : dpkg-buildpackage -b -rfakeroot -uc -us
40
41 pdebuild --pbuilderroot sudo --debbuildopts "-b -rfakeroot -uc -us" --buildresult $TARGET --architecture all -- --distribution $DISTRO  --basetgz /var/cache/pbuilder/$DISTRO.tgz
42
43 #--buildresult gets the file where it needs to be, may need to clean up DIR
44
45 cd $DIR && rm -f freeside_*
46 cd $TARGET && rm -f *.gz
47
48 apt-ftparchive -qq packages ./ >Packages
49 gzip -c Packages >Packages.gz
50 bzip2 -c Packages >Packagez.bz2
51 apt-ftparchive -qq sources ./ >Sources
52 gzip -c Sources >Sources.gz
53 bzip2 -c Sources >Sources.bz2
54 apt-ftparchive -qq release ./ >Release