aboutsummaryrefslogtreecommitdiffstats
path: root/tools/make-obs
blob: aeec70ada6d0f944416bba4683b0196ca174ceab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
# create OpenSUSE Build System (OBS) source package
#
# this needs to be run on a (Debian-based) system with:
#
# * apkg
# * dpkg-buildpackage
#
# run from project root containing distro/ dir:
#
#     ./tools/make-obs [path/to/archive.tar.gz]
#
# supply archives as optional arguments to build from,
# otherwise archive will be built from sources by apkg
#
# output at ./pkg/obs/ (removed on each run)
set -o errexit -o nounset

OUTDIR="pkg/obs"
APKG_OPTS="-O $OUTDIR"

if [ -z $@ ]; then
    echo "building OBS srcpkg from project files"
else
    AR=$1
    echo "building OBS srcpkg from specified archive(s)"
    APKG_OPTS="-a $AR $APKG_OPTS"
fi

if [ -n "$RELEASE" ]; then
    echo "custom release: $RELEASE"
    APKG_OPTS="-r $RELEASE $APKG_OPTS"
fi

set -o xtrace
: removing existing output files at output dir: $OUTDIR
rm -rf "$OUTDIR"
: making debian source package from archive
apkg srcpkg $APKG_OPTS -d debian
: removing extra debian source package files
rm -f $OUTDIR/*_source.*
: rendering RPM template
apkg srcpkg $APKG_OPTS -d fedora --render-template
: fixing RPM .spec to use debian source archive
sed -i 's/^\(Source0:\s\+\).*/\1bird2_%{version}.orig.tar.gz/' $OUTDIR/*.spec
echo "OBS srcpkg ready at: $OUTDIR"