File: build-recipe-dsc

package info (click to toggle)
obs-build 20141024-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,528 kB
  • ctags: 280
  • sloc: perl: 7,019; sh: 2,357; ansic: 255; makefile: 92
file content (104 lines) | stat: -rw-r--r-- 4,281 bytes parent folder | download
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#
# dsc specific functions.
#
################################################################
#
# Copyright (c) 1995-2014 SUSE Linux Products GmbH
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or 3 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program (see the file COPYING); if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#
################################################################

recipe_setup_dsc() {
    TOPDIR=/usr/src/packages
    rm -rf "$BUILD_ROOT$TOPDIR"
    mkdir -p "$BUILD_ROOT$TOPDIR"
    mkdir -p "$BUILD_ROOT$TOPDIR/OTHER"
    mkdir -p "$BUILD_ROOT$TOPDIR/SOURCES"
    mkdir -p "$BUILD_ROOT/$TOPDIR/DEBS"
    chown -R "$ABUILD_UID:$ABUILD_GID" "$BUILD_ROOT$TOPDIR"
    cp -p "$MYSRCDIR"/* $BUILD_ROOT$TOPDIR/SOURCES/
    # FIX to work with baselibs_$PROJ etc
    if test -e "$MYSRCDIR/baselibs-deb.conf" ; then
	echo "dsc build and baselibs-deb.conf present: forcing --baselibs to true"
	CREATE_BASELIBS=true
    fi
}

recipe_prepare_dsc() {
    rm -rf "$BUILD_ROOT$TOPDIR/BUILD"
    mkdir -p "$BUILD_ROOT$TOPDIR/SOURCES.DEB"
    chown -R "$ABUILD_UID:$ABUILD_GID" "$BUILD_ROOT$TOPDIR"
    DEB_TRANSFORM=
    DEB_SOURCEDIR="$TOPDIR/SOURCES"
    DEB_DSCFILE="$RECIPEFILE"
    for f in $BUILD_ROOT$TOPDIR/SOURCES/debian.* ; do 
	test -f $f && DEB_TRANSFORM=true
    done
    if test -n "$DEB_TRANSFORM" ; then 
	CHANGELOGARGS=
	test -n "$CHANGELOG" -a -f "$BUILD_ROOT/.build-changelog" && CHANGELOGARGS="--changelog $BUILD_ROOT/.build-changelog"
	echo "running debian transformer..."
	if ! debtransform $CHANGELOGARGS $BUILD_ROOT$TOPDIR/SOURCES $BUILD_ROOT$TOPDIR/SOURCES/$RECIPEFILE $BUILD_ROOT$TOPDIR/SOURCES.DEB ; then 
	    echo "debian transforming failed."
	    cleanup_and_exit 1
	fi
	DEB_SOURCEDIR=$TOPDIR/SOURCES.DEB
	for DEB_DSCFILE in $BUILD_ROOT/$DEB_SOURCEDIR/*.dsc ; do : ; done 
	DEB_DSCFILE="${DEB_DSCFILE##*/}"
    fi
    $CHROOT su -c "dpkg-source -x $DEB_SOURCEDIR/$DEB_DSCFILE $TOPDIR/BUILD" - $BUILD_USER
}

recipe_build_dsc() {
    # Checks to see if a build script should be used
    # this allows the build environment to be manipulated
    # and alternate build commands can be used
    # Debian policy requires to build with single CPU by default
    #       if test -n "$BUILD_JOBS" ; then
    #           DSC_BUILD_JOBS="-j$BUILD_JOBS"
    #       fi
    DSC_BUILD_CMD="$(queryconfig --dist "$BUILD_DIST" --archpath "$BUILD_ARCH" --configdir "$CONFIG_DIR" substitute dsc:build_cmd)"
    test -z "$DSC_BUILD_CMD" && DSC_BUILD_CMD="dpkg-buildpackage -us -uc $DSC_BUILD_JOBS"
    if test -e $BUILD_ROOT/$TOPDIR/SOURCES/build.script ; then
	echo "Sourcing build.script to build - it should normally run 'dpkg-buildpackage -us -uc'"
	DSC_BUILD_CMD="source $TOPDIR/SOURCES/build.script"
	chmod +x $BUILD_ROOT/$TOPDIR/SOURCES/build.script
    fi

    if test -n "$RUN_SHELL"; then
	$CHROOT su -
    else
	$CHROOT su -c "cd $TOPDIR/BUILD && $DSC_BUILD_CMD" - $BUILD_USER < /dev/null && BUILD_SUCCEEDED=true
	if test "$BUILD_SUCCEEDED" = true -a "$DO_CHECKS" != "false"; then
	   DEB_CHANGESFILE=${RECIPEFILE%.dsc}_"$($CHROOT su -c 'dpkg-architecture -qDEB_BUILD_ARCH')".changes
	   $CHROOT su -c "which lintian > /dev/null && cd $TOPDIR && echo Running lintian && (set -x && lintian -i $DEB_SOURCEDIR/$DEB_DSCFILE)" - $BUILD_USER < /dev/null
	fi
    fi

    for DEB in $BUILD_ROOT/$TOPDIR/*.deb ; do
	test -e "$DEB" && mv "$DEB" "$BUILD_ROOT/$TOPDIR/DEBS"
    done

    # link used sources over to DEB directory
    ln $BUILD_ROOT/$DEB_SOURCEDIR/$DEB_DSCFILE $BUILD_ROOT/$TOPDIR/DEBS/
    while read f ; do
	ln $BUILD_ROOT/$DEB_SOURCEDIR/$f $BUILD_ROOT/$TOPDIR/DEBS/
    done < <(sed -ne '/^Files:/,$s/^ ................................ [0-9][0-9]* //p' < $BUILD_ROOT/$DEB_SOURCEDIR/$DEB_DSCFILE)
}

recipe_resultdirs_dsc() {
    echo DEBS
}