[720] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | #
|
---|
[759] | 4 | # dassbuild_prepare.sh:
|
---|
| 5 | # creates the directory $DEST/buildsrc/src/$NAME
|
---|
| 6 | # and stores there the modified SPEC-file
|
---|
| 7 | # and the generated tar.gz-archive
|
---|
[720] | 8 | #
|
---|
| 9 |
|
---|
[759] | 10 |
|
---|
[739] | 11 | # environment variables:
|
---|
| 12 | # OSBS_PROJECT (e.g. home:dassit) or config file "OSC_PACKAGE" (e.g. home:dassit/dasscm)
|
---|
| 13 |
|
---|
[720] | 14 | BUILDUSER=$USER
|
---|
| 15 | [ -z $DEST_DIR ] && DEST_DIR="/tmp/build.$BUILDUSER"
|
---|
| 16 | BUILDTEMP=$DEST_DIR/buildsrc/
|
---|
| 17 |
|
---|
[739] | 18 | if [ -r OSC_LOCAL ]; then
|
---|
| 19 | LOCAL_BUILD="yes"
|
---|
[720] | 20 | fi
|
---|
| 21 |
|
---|
| 22 |
|
---|
[750] | 23 | dassbuild_prepare.sh $*
|
---|
[725] | 24 | RT=$?
|
---|
| 25 | if [ $RT -eq 1 ]; then
|
---|
| 26 | echo "nothing more to do"
|
---|
| 27 | exit 0
|
---|
| 28 | elif [ $RT -gt 1 ]; then
|
---|
| 29 | echo "error: failed to prepare sources"
|
---|
[722] | 30 | exit 1
|
---|
[725] | 31 | fi
|
---|
[720] | 32 |
|
---|
[722] | 33 | # TODO: get this info from svn_build_prepare.sh? seperate script?
|
---|
[720] | 34 | if [ -z "$1" ]; then
|
---|
| 35 | # without parameter, we are in source directory
|
---|
| 36 | SPECFILE=$(ls *.spec | awk '{print $1}')
|
---|
| 37 | PACKAGE=$(sed -n -e 's/^Name:\W*//pi' <$SPECFILE)
|
---|
[722] | 38 | # use Version from BUILDSRC,
|
---|
| 39 | # because it has been modified by svn_build_prepare
|
---|
| 40 | #VERSION=$(sed -n -e 's/^Version:\W*//pi' <$SPECFILE)
|
---|
| 41 | BUILDSRC_DIR=${BUILDTEMP}/src/${PACKAGE}
|
---|
| 42 | VERSION=$(sed -n -e 's/^Version:\W*//pi' <$BUILDSRC_DIR/$SPECFILE)
|
---|
[720] | 43 | fi
|
---|
| 44 |
|
---|
[722] | 45 | # RPMs can be handeld directly by osc
|
---|
| 46 | # elif [ -r "$1" ]; then
|
---|
| 47 | # # parameter is src.rpm file
|
---|
| 48 | # PACKAGE=`rpm -qp --qf "%{NAME}" $1`
|
---|
| 49 | # VERSION=`rpm -qp --qf "%{VERSION}" $1`
|
---|
[720] | 50 |
|
---|
| 51 | if [ -z "$PACKAGE" ]; then
|
---|
| 52 | echo "nothing to build found!"
|
---|
| 53 | exit 1
|
---|
| 54 | fi
|
---|
| 55 |
|
---|
[722] | 56 | echo "Version: $VERSION"
|
---|
[720] | 57 |
|
---|
[739] | 58 | #
|
---|
| 59 | # get the openSUSE build service project
|
---|
| 60 | # check for file "OSC_PACKAGE" first,
|
---|
| 61 | # if it is not found, use the variable OSBC_PROJECT
|
---|
| 62 | #
|
---|
| 63 | if [ -r OSC_PACKAGE ]; then
|
---|
| 64 | OSC_PACKAGE=`cat OSC_PACKAGE`
|
---|
| 65 | elif [ "$OSBS_PROJECT" ]; then
|
---|
| 66 | OSC_PACKAGE="$OSBS_PROJECT/$PACKAGE"
|
---|
| 67 | else
|
---|
| 68 | OSC_PACKAGE="home:$BUILDUSER/$PACKAGE"
|
---|
| 69 | fi
|
---|
| 70 |
|
---|
[821] | 71 | for i in $OSC_PACKAGE; do
|
---|
| 72 | # remove double slashes (/)
|
---|
| 73 | OSC_PACKAGE=`sed 's|/[/]*|/|g' <<< $i`
|
---|
[739] | 74 |
|
---|
[821] | 75 | osc co $OSC_PACKAGE || {
|
---|
| 76 | echo
|
---|
| 77 | echo 'An existing "openSUSE Build Service" project must be specified.'
|
---|
| 78 | echo 'To specify it, use the config file OSC_PACKAGE or the environment variable OSBS_PROJECT'
|
---|
| 79 | exit 1
|
---|
| 80 | }
|
---|
| 81 | # rsync is not usable, because ":" is interpretaded as remote host
|
---|
| 82 | #rsync -av "$BUILDSRC_DIR/*" "$OSC_PACKAGE/."
|
---|
| 83 | #cp -av $BUILDSRC_DIR/* $OSC_PACKAGE/.
|
---|
[720] | 84 |
|
---|
[821] | 85 | cd $OSC_PACKAGE || exit 1
|
---|
| 86 | # rsync -a: -rlptgoD
|
---|
| 87 | # but we don't want to check for timestamps
|
---|
| 88 | # NOTE: this doesn't help, if the data (tar.bz2)
|
---|
| 89 | # contains dynamic data like the Changes file
|
---|
| 90 | rsync --checksum -r -v --delete $BUILDSRC_DIR/. . --exclude .osc
|
---|
[720] | 91 |
|
---|
[821] | 92 | if [ "$LOCAL_BUILD" ]; then
|
---|
| 93 | echo 'skipped. Use
|
---|
| 94 | # local build:
|
---|
| 95 | # osc repos | while read DIST ARCH; do osc build --no-verify $DIST $ARCH; done
|
---|
| 96 | # '
|
---|
| 97 | else
|
---|
| 98 | osc addremove
|
---|
| 99 | osc commit -m "release $VERSION"
|
---|
| 100 | fi
|
---|
| 101 | cd -
|
---|
| 102 | done
|
---|