summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
41d24f5)
Also wait to parse the .dsc file until we've made it.
svn path=/trunk/packages/invirt-dev/; revision=1860
* add i386 to apt repo
* extend invirt-build-release to handle amd64 + i386
* add i386 to apt repo
* extend invirt-build-release to handle amd64 + i386
+ * invirt-build-release: clean up some shell and some perl
-- Greg Price <price@mit.edu> Fri, 19 Dec 2008 23:37:02 -0500
-- Greg Price <price@mit.edu> Fri, 19 Dec 2008 23:37:02 -0500
svn export $svnuri/trunk/packages/$package build-release/$package
cd build-release/$package
svn export $svnuri/trunk/packages/$package build-release/$package
cd build-release/$package
- eval `perl '-F:\s+' -lane 'print $F[0]."=".$F[1] if /^Version|^Source|^Distribution/' \
- <(dpkg-parsechangelog)`
- eval $(perl '-F:\s+' -lane 'print $F[0]."=".$F[1] if /^Binary|Architecture/' <"../${Source}_${Version}.dsc")
-
+ eval $(perl -ne 'print if s/^(Version|Source|Distribution): /\1=/' \
+ <(dpkg-parsechangelog))
dpkg-buildpackage -us -uc -rfakeroot -S
cd ..
dpkg-buildpackage -us -uc -rfakeroot -S
cd ..
+ eval $(perl -ne 'print if s/^(Architecture): /\1=/' ${Source}_${Version}.dsc)
case $Architecture in
all)
case $Architecture in
all)
- sbuild -A -d hardy "${Source}_${Version}.dsc";;
+ sbuild -A -d hardy ${Source}_${Version}.dsc;;
- sbuild -d hardy-amd64 "${Source}_${Version}.dsc"
- sbuild -d hardy-i386 "${Source}_${Version}.dsc";;
+ sbuild -d hardy-amd64 ${Source}_${Version}.dsc
+ sbuild -d hardy-i386 ${Source}_${Version}.dsc;;
- echo "invirt-build-release: architecture '$Architecture' not 'all' or 'any'" >&2
+ echo "invirt-build-release: arch '$Architecture' unimplemented" >&2
fi
[ $Distribution = 'unstable' ] \
fi
[ $Distribution = 'unstable' ] \
- || echo "$(basename $0): warning: Distribution is ${Distribution}, script expects unstable"
+ || echo "$(basename $0): warning: Distribution is $Distribution, script expects unstable"
changesfile=`pwd`/${Source}_*${Version}*.changes
for i in $changesfile; do
reprepro-env include unstable $i
changesfile=`pwd`/${Source}_*${Version}*.changes
for i in $changesfile; do
reprepro-env include unstable $i
- reprepro-env copy stable unstable \
- $(perl '-F:\s+' -lane 'print $F[1]." " if /^Binary/' <$i)
+ reprepro-env copy stable unstable $(sed -ne 's/^Binary: //p' $i)
- reprepro-env copy stable unstable ${Source}
+ reprepro-env copy stable unstable $Source
+ rm -rf build-release/$package