Last change
on this file since 22 was
22,
checked in by hartmans, 17 years ago
|
Bug fix
|
-
Property svn:executable set to
*
|
File size:
817 bytes
|
Rev | Line | |
---|
[16] | 1 | #!/bin/bash |
---|
[10] | 2 | svnuri=file:///afs/sipb.mit.edu/project/xen/svn |
---|
| 3 | |
---|
| 4 | set -e |
---|
| 5 | if [ $# -ne 1 ] ; then |
---|
| 6 | echo " usage: sx-build-release trunk/packages/package_name" |
---|
| 7 | exit 1 |
---|
| 8 | fi |
---|
| 9 | |
---|
| 10 | if [ -d build-release ] ; then |
---|
| 11 | echo "a previous build release directory exists; please clean up" |
---|
| 12 | exit 1 |
---|
| 13 | fi |
---|
| 14 | |
---|
| 15 | package=$1 |
---|
| 16 | svn co $svnuri/$package build-release |
---|
| 17 | olddir=`pwd` |
---|
| 18 | cd build-release/`basename $package` |
---|
[16] | 19 | eval `perl '-F:\s+' -lane 'print $F[0]."=".$F[1] if /^Version|^Source|^Distribution/' \ |
---|
| 20 | <(dpkg-parsechangelog)` |
---|
[10] | 21 | |
---|
[16] | 22 | |
---|
[10] | 23 | dpkg-buildpackage -us -uc -rfakeroot |
---|
[16] | 24 | svn mkdir $svnuri/package_tags/$Source -m "Create package tags directory" ||true |
---|
[12] | 25 | svn cp $svnuri/$package $svnuri/package_tags/$Source/$Version -m "Tag $Version of $Source" |
---|
[22] | 26 | reprepro-env include $Distribution ../${Source}_*${Version}.changes |
---|
[10] | 27 | |
---|
| 28 | cd $olddir |
---|
| 29 | rm -rf build-release |
---|
Note: See
TracBrowser
for help on using the repository browser.