source: trunk/dassbuild/usr/bin/dassbuild_osc.sh @ 762

Last change on this file since 762 was 762, checked in by joergs, 14 years ago

set keyword Id

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1#!/bin/bash
2
3#
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
8#
9
10
11# environment variables:
12#   OSBS_PROJECT (e.g. home:dassit) or config file "OSC_PACKAGE" (e.g. home:dassit/dasscm)
13
14BUILDUSER=$USER
15[ -z $DEST_DIR ] && DEST_DIR="/tmp/build.$BUILDUSER"
16BUILDTEMP=$DEST_DIR/buildsrc/
17
18if [ -r OSC_LOCAL ]; then
19    LOCAL_BUILD="yes"
20fi
21
22
23dassbuild_prepare.sh $*
24RT=$?
25if [ $RT -eq 1 ]; then
26    echo "nothing more to do"
27    exit 0
28elif [ $RT -gt 1 ]; then
29    echo "error: failed to prepare sources"
30    exit 1
31fi
32
33# TODO: get this info from svn_build_prepare.sh? seperate script?
34if [ -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)
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)
43fi
44
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`
50
51if [ -z "$PACKAGE" ]; then
52    echo "nothing to build found!"
53    exit 1
54fi
55
56echo "Version: $VERSION"
57
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#
63if [ -r OSC_PACKAGE ]; then
64    OSC_PACKAGE=`cat OSC_PACKAGE`
65elif [ "$OSBS_PROJECT" ]; then
66    OSC_PACKAGE="$OSBS_PROJECT/$PACKAGE"
67else
68    OSC_PACKAGE="home:$BUILDUSER/$PACKAGE"
69fi
70
71# remove double slashes (/)
72OSC_PACKAGE=`sed 's|/[/]*|/|g' <<< $OSC_PACKAGE`
73
74osc co $OSC_PACKAGE || {
75    echo
76    echo 'An existing "openSUSE Build Service" project must be specified.'
77    echo 'To specify it, use the config file OSC_PACKAGE or the environment variable OSBS_PROJECT'
78    exit 1
79}
80# rsync is not usable, because ":" is interpretaded as remote host
81#rsync -av "$BUILDSRC_DIR/*" "$OSC_PACKAGE/."
82#cp -av $BUILDSRC_DIR/* $OSC_PACKAGE/.
83
84cd $OSC_PACKAGE || exit 1
85# rsync -a: -rlptgoD
86# but we don't want to check for timestamps
87# NOTE: this doesn't help, if the data (tar.bz2)
88#   contains dynamic data like the Changes file
89rsync --checksum -r -v --delete $BUILDSRC_DIR/. . --exclude .osc
90
91if [ "$LOCAL_BUILD" ]; then
92    echo 'skipped. Use
93# local build:
94# osc repos | while read DIST ARCH; do osc build --no-verify $DIST $ARCH; done
95# '
96else
97    osc addremove
98    osc commit -m "release $VERSION"
99fi
100
Note: See TracBrowser for help on using the repository browser.