Fix a typo where sx-build-release didn't upload the source package
[invirt/packages/invirt-dev.git] / sx-build-release
index 813a9bb..4e67c76 100755 (executable)
@@ -15,7 +15,9 @@ cd build-release/$package
 eval  `perl '-F:\s+' -lane 'print  $F[0]."=".$F[1] if /^Version|^Source|^Distribution/' \
     <(dpkg-parsechangelog)`
 
-dpkg-buildpackage -k"$(invirt-getconf apt.keyid)" -rfakeroot
+dpkg-buildpackage -us -uc -rfakeroot -S
+cd ..
+sbuild -A -d hardy-amd64 "${Source}_${Version}.dsc"
 
 if ! svn ls $svnuri/package_tags/$Source >/dev/null 2>&1; then
   svn mkdir $svnuri/package_tags/$Source \
@@ -28,13 +30,15 @@ else
   echo "$(basename $0): tag already exists, not making again"
 fi
 
-cd ..
 [ $Distribution = 'unstable' ] \
  || echo "$(basename $0): warning: Distribution is ${Distribution}, script expects unstable"
 changesfile=`pwd`/${Source}_*${Version}*.changes
-reprepro-env include unstable $changesfile
-reprepro-env copy stable unstable ${Source} \
-  $(perl '-F:\s+' -lane 'print $F[1]." " if /^Binary/' <$changesfile)
+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)
+done
+reprepro-env copy stable unstable ${Source}
 
 cd ..
 rm -rf build-release