source: trunk/packages/invirt-dev/invirt-build-release @ 1671

Last change on this file since 1671 was 1671, checked in by broder, 15 years ago

Support building multiple packages in sequence with invirt-build-release

  • Property svn:executable set to *
File size: 1.5 KB
Line 
1#!/bin/bash
2svnuri="$(invirt-getconf svn.uri)"
3
4set -e
5if  [ $# -eq 0 ] ; then
6        echo " usage: invirt-build-release package_name [package_name [...]]"
7        exit 1
8fi
9
10for package; do
11    rm -rf build-release/$package
12    svn export $svnuri/trunk/packages/$package build-release/$package
13    cd build-release/$package
14   
15    eval  `perl '-F:\s+' -lane 'print  $F[0]."=".$F[1] if /^Version|^Source|^Distribution/' \
16        <(dpkg-parsechangelog)`
17   
18    dpkg-buildpackage -us -uc -rfakeroot -S
19    cd ..
20    sbuild -A -d hardy-amd64 "${Source}_${Version}.dsc"
21   
22    if ! svn ls $svnuri/package_tags/$Source >/dev/null 2>&1; then
23        svn mkdir $svnuri/package_tags/$Source \
24            -m "Create package tags directory"
25    fi
26    if ! svn ls $svnuri/package_tags/$Source/$Version >/dev/null 2>&1; then
27        svn cp $svnuri/trunk/packages/$package $svnuri/package_tags/$Source/$Version \
28            -m "Tag $Version of $Source"
29    else
30        echo "$(basename $0): tag already exists, not making again"
31    fi
32   
33    [ $Distribution = 'unstable' ] \
34        || echo "$(basename $0): warning: Distribution is ${Distribution}, script expects unstable"
35    changesfile=`pwd`/${Source}_*${Version}*.changes
36    for i in $changesfile; do
37        reprepro-env include unstable $i
38        reprepro-env copy stable unstable \
39            $(perl '-F:\s+' -lane 'print $F[1]." " if /^Binary/' <$i)
40    done
41    reprepro-env copy stable unstable ${Source}
42   
43    cd ..
44    rm -rf build-release
45done
Note: See TracBrowser for help on using the repository browser.