From: Evan Broder Date: Sun, 22 Nov 2009 22:58:19 +0000 (-0500) Subject: Also punt invirt-build-release for the time being. X-Git-Tag: 0.1.5~71 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-dev.git/commitdiff_plain/087aa9bed4872680dd05afe892d7769a3090b90b?ds=sidebyside Also punt invirt-build-release for the time being. It might make an re-appearance in the future, but for the time being, I'd like to have all of our builds go through remctl. svn path=/trunk/packages/invirt-dev/; revision=2555 --- diff --git a/debian/invirt-dev.install b/debian/invirt-dev.install index d0c6b04..2982e0c 100644 --- a/debian/invirt-dev.install +++ b/debian/invirt-dev.install @@ -1,3 +1,2 @@ reprepro-env usr/bin repository-config/* srv/repository/conf -invirt-build-release usr/bin diff --git a/invirt-build-release b/invirt-build-release deleted file mode 100755 index 9dd40c1..0000000 --- a/invirt-build-release +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/bash -distribution=hardy -svnuri="$(invirt-getconf svn.uri)" - -set -e -if [ $# -eq 0 ] ; then - echo " usage: invirt-build-release package_name [package_name [...]]" - exit 1 -fi - -for package; do - rm -rf build-release/$package - svn export $svnuri/trunk/packages/$package build-release/$package - cd build-release/$package - - eval $(perl -ne 'print if s/^(Version|Source|Distribution): /\1=/' \ - <(dpkg-parsechangelog)) - dpkg-buildpackage -us -uc -rfakeroot -S - cd .. - arch_any=0 - sed -ne 's/^Architecture: //p' ${Source}_${Version}.dsc | while read arch; do - case "$arch" in - all) - ;; - any) - arch_any=1;; - *) - echo "invirt-build-release: arch '$Architecture' unimplemented" >&2 - exit 1;; - esac - done - if [ $arch_any -eq 0 ]; then - sbuild -d $distribution --arch-all ${Source}_${Version}.dsc - else - sbuild -d $distribution --arch amd64 --arch-all ${Source}_${Version}.dsc - sbuild -d $distribution --arch i386 ${Source}_${Version}.dsc - fi - - if ! svn ls $svnuri/package_tags/$Source >/dev/null 2>&1; then - svn mkdir $svnuri/package_tags/$Source \ - -m "Create package tags directory" - fi - if ! svn ls $svnuri/package_tags/$Source/$Version >/dev/null 2>&1; then - svn cp $svnuri/trunk/packages/$package $svnuri/package_tags/$Source/$Version \ - -m "Tag $Version of $Source" - else - echo "$(basename $0): tag already exists, not making again" - fi - - [ $Distribution = '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 - reprepro-env copy stable unstable $(sed -ne 's/^Binary: //p' $i) - done - reprepro-env copy stable unstable $Source - - cd .. - rm -rf build-release/$package -done