aboutsummaryrefslogtreecommitdiff
path: root/pbuilder-checkparams
blob: 104ce035173a49b6527b3e8ecd63d6745481eaf3 (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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#! /bin/bash 
# this is sourced from pbuilder packages to process the optional parameters.
#   pbuilder -- personal Debian package builder
#   Copyright (C) 2001-2003 Junichi Uekawa
#
#   This program is free software; you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation; either version 2 of the License, or
#   (at your option) any later version.
#
#   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; if not, write to the Free Software
#   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

. /usr/lib/pbuilder/pbuilder-loadconfig
. /usr/lib/pbuilder/pbuilder-modules

#default value for this option is !empty!
INTERNAL_BUILD_UML=""
CHROOTEXEC=""
OVERRIDE_APTLINES="no"
BINARY_ARCH="no"
PBUILDER_BUILD_LOGFILE=
USE_PKGNAME_LOGFILE=""

while [ -n "$1" ]; do 
    case "$1" in 
	--basetgz) 
	    BASETGZ=$(readlink -f "$2");
	    shift; shift;
	    ;;
	--buildplace)
	    BUILDPLACE=$(readlink -f "$2");
	    shift; shift;
	    ;;
	--mirror)
	    MIRRORSITE="$2";
	    shift; shift;
	    ;;
	--nonusmirror)
	    NONUSMIRRORSITE="$2";
	    shift; shift;
	    ;;
	--othermirror)
	    OTHERMIRROR="$2";
	    shift; shift;
	    ;;
	--http-proxy)
	    export http_proxy="$2";
	    shift; shift;
	    ;;
	--distribution)
	    DISTRIBUTION="$2";
	    shift; shift;
	    ;;
	--buildresult)
	    BUILDRESULT=$(readlink -f "$2");
	    shift; shift;
	    ;;
	--removepackages)
	    REMOVEPACKAGES="$2";
	    shift; shift;
	    ;;
	--configfile)
	    . "$2";
	    shift; shift; 
	    ;;
	--extrapackages)
	    EXTRAPACKAGES="$2";
	    shift; shift;
	    ;;
	--hookdir)
	    HOOKDIR="$2";
	    shift; shift;
	    ;;
	--debemail)
	    DEBEMAIL="$2";
	    shift; shift;
	    ;;
	--debbuildopts)
	    DEBBUILDOPTS="$2";
	    shift; shift;
	    ;;
	--logfile)
	    exec > $(readlink -f "$2");
	    exec 2>&1
	    PBUILDER_BUILD_LOGFILE=$(readlink -f "$2")
	    shift; shift;
	    ;;
	--pkgname-logfile)
	    USE_PKGNAME_LOGFILE="yes"
	    shift; 
	    ;;
	--aptconfdir)
	    APTCONFDIR="$2";
	    shift; shift;
	    ;;
	--timeout)
	    TIMEOUT_TIME="$2"
	    shift; shift;
	    ;;
	--help)
	    showhelp
	    ;;
	--override-config)
	    OVERRIDE_APTLINES="yes"
	    shift;
	    ;;
	--binary-arch)
	    BINARY_ARCH="yes"
	    DEBBUILDOPTS="${DEBBUILDOPTS} -B"
	    shift;
	    ;;
	## pdebuild option
	--auto-debsign)
	    AUTO_DEBSIGN="yes"
	    shift;
	    ;;
	--buildsourceroot*)
	    BUILDSOURCEROOTCMD="$2";
	    shift; shift;
	    ;;
	--pbuilderroot*)
	    PBUILDERROOTCMD="$2";
	    shift; shift;
	    ;;
	## internal options.
	--internal-chrootexec)
	    # specify custom chrootexec function -- this is internal debugging function
	    CHROOTEXEC="$2"
	    shift; shift;
	    ;;
	--internal-build-uml|--no-targz)
	    # specify this option if I am running inside UML.
	    echo " -> Running in pbuilder-user-mode-linux mode"
	    INTERNAL_BUILD_UML="yes"
	    shift; 
	    ;;

	--) # this is an empty option, to no longer process.
	    shift; 
	    break;
	    ;;
	--*)
	    echo "Error: Unknown option [$1] was specified " >&2 
	    exit 1;
	    ;;
	*)
	    break;
	    ;;
  esac
done

BUILDPLACE=${BUILDPLACE?"Build root directory is not defined"}

# the default is to add a PID in the buildplace specified in the config file.
BASEBUILDPLACE="$BUILDPLACE"
if [ ! "${INTERNAL_BUILD_UML}" = "yes" ]; then
    BUILDPLACE="$BUILDPLACE/$$"
fi
if [ -z "${CHROOTEXEC}" ]; then
    CHROOTEXEC="chroot $BUILDPLACE "
fi

case "$PBCURRENTCOMMANDLINEOPERATION" in 
    login|pdebuild)
	# don't do anything if it is "login", or pdebuild
	;;
    *)
# line from kobras@debian.org
	if [ "$DEBIAN_FRONTEND" = "noninteractive" -o "$DEBIAN_FRONTEND" = "Noninteractive" ]; then
	    exec < /dev/null
	fi
	;;
esac