1 #!/bin/sh -- # no runable script, just for vi
5 # we all like colorful messages
6 if expr match
"$(readlink -f /proc/$$/fd/1)" '/dev/pts/[0-9]\+' > /dev
/null
&& \
7 expr match
"$(readlink -f /proc/$$/fd/2)" '/dev/pts/[0-9]\+' > /dev
/null
; then
8 CERROR
="\e[1;31m" # red
9 CWARNING
="\e[1;33m" # yellow
10 CMSG
="\e[1;32m" # green
11 CINFO
="\e[1;96m" # light blue
12 CDEBUG
="\e[1;94m" # blue
13 CNORMAL
="\e[0;39m" # default system console color
14 CDONE
="\e[1;32m" # green
15 CPASS
="\e[1;32m" # green
16 CFAIL
="\e[1;31m" # red
17 CCMD
="\e[1;35m" # pink
20 msgdie
() { echo "${CERROR}E: $1${CNORMAL}" >&2; exit 1; }
21 msgwarn
() { echo "${CWARNING}W: $1${CNORMAL}" >&2; }
22 msgmsg
() { echo "${CMSG}$1${CNORMAL}" >&2; }
23 msginfo
() { echo "${CINFO}I: $1${CNORMAL}" >&2; }
24 msgdebug
() { echo "${CDEBUG}D: $1${CNORMAL}" >&2; }
25 msgdone
() { echo "${CDONE}DONE${CNORMAL}" >&2; }
26 msgnwarn
() { echo -n "${CWARNING}W: $1${CNORMAL}" >&2; }
27 msgnmsg
() { echo -n "${CMSG}$1${CNORMAL}" >&2; }
28 msgninfo
() { echo -n "${CINFO}I: $1${CNORMAL}" >&2; }
29 msgndebug
() { echo -n "${CDEBUG}D: $1${CNORMAL}" >&2; }
32 echo -n "${CINFO}$1${CCMD} " >&2;
33 echo -n "$(echo "$2" | sed -e 's/^aptc/apt-c/' -e 's/^aptg/apt-g/' -e 's/^aptf/apt-f/')${CINFO} " >&2;
35 if [ -n "$1" ]; then shift; else break; fi
37 echo -n "…${CNORMAL} " >&2;
39 msgpass
() { echo "${CPASS}PASS${CNORMAL}" >&2; }
40 msgskip
() { echo "${CWARNING}SKIP${CNORMAL}" >&2; }
41 msgfail
() { echo "${CFAIL}FAIL${CNORMAL}" >&2; TESTFAILURES
=$((TESTFAILURES+1)); }
43 # enable / disable Debugging
44 MSGLEVEL
=${MSGLEVEL:-3}
45 if [ $MSGLEVEL -le 0 ]; then
48 if [ $MSGLEVEL -le 1 ]; then
52 if [ $MSGLEVEL -le 2 ]; then
56 msgpass
() { echo -n " ${CPASS}P${CNORMAL}" >&2; }
57 msgskip
() { echo -n " ${CWARNING}S${CNORMAL}" >&2; }
58 if [ -n "$CFAIL" ]; then
59 msgfail
() { echo -n " ${CFAIL}FAIL${CNORMAL}" >&2; }
61 msgfail
() { echo -n " ###FAILED###" >&2; }
64 if [ $MSGLEVEL -le 3 ]; then
68 if [ $MSGLEVEL -le 4 ]; then
73 if [ "$1" = "debug" -a $MSGLEVEL -le 4 ] ||
74 [ "$1" = "info" -a $MSGLEVEL -le 3 ] ||
75 [ "$1" = "msg" -a $MSGLEVEL -le 2 ] ||
76 [ "$1" = "warn" -a $MSGLEVEL -le 1 ] ||
77 [ "$1" = "die" -a $MSGLEVEL -le 0 ]; then
80 echo "${CDONE}DONE${CNORMAL}" >&2;
85 msgdebug
"Executing: ${CCMD}$*${CDEBUG} "
86 if [ -f .
/aptconfig.conf
]; then
87 APT_CONFIG
=aptconfig.conf LD_LIBRARY_PATH
=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$
*
88 elif [ -f ..
/aptconfig.conf
]; then
89 APT_CONFIG
=..
/aptconfig.conf LD_LIBRARY_PATH
=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$
*
91 LD_LIBRARY_PATH
=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$
*
94 aptconfig
() { runapt apt
-config $
*; }
95 aptcache
() { runapt apt
-cache $
*; }
96 aptcdrom
() { runapt apt
-cdrom $
*; }
97 aptget
() { runapt apt
-get $
*; }
98 aptftparchive
() { runapt apt
-ftparchive $
*; }
99 aptkey
() { runapt apt
-key $
*; }
100 aptmark
() { runapt apt
-mark $
*; }
102 $(which dpkg) --root=${TMPWORKINGDIRECTORY}/rootdir
--force-not-root --force-bad-path --log=${TMPWORKINGDIRECTORY}/rootdir
/var
/log
/dpkg.log $
*
105 if [ -f .
/aptconfig.conf
]; then
106 APT_CONFIG
=aptconfig.conf LD_LIBRARY_PATH
=${BUILDDIRECTORY} $(which aptitude) $
*
107 elif [ -f ..
/aptconfig.conf
]; then
108 APT_CONFIG
=..
/aptconfig.conf LD_LIBRARY_PATH
=${BUILDDIRECTORY} $(which aptitude) $
*
110 LD_LIBRARY_PATH
=${BUILDDIRECTORY} $(which aptitude) $
*
115 APT_CONFIG
=aptconfig.conf LD_LIBRARY_PATH
=${BUILDDIRECTORY} $(which gdb) ${BUILDDIRECTORY}/$1
119 # error if we about to overflow, but ...
120 # "255 failures ought to be enough for everybody"
121 if [ $TESTFAILURES -gt 255 ]; then
122 msgdie
"Total failure count $TESTFAILURES too big"
124 exit $((TESTFAILURES <= 255 ? TESTFAILURES : 255));
128 CURRENTTRAP
="$CURRENTTRAP $1"
129 trap "$CURRENTTRAP exitwithstatus;" 0 HUP INT QUIT ILL ABRT FPE SEGV PIPE TERM
133 TMPWORKINGDIRECTORY
=$(mktemp -d)
134 TESTDIRECTORY
=$(readlink -f $(dirname $0))
135 msgninfo
"Preparing environment for ${CCMD}$(basename $0)${CINFO} in ${TMPWORKINGDIRECTORY}… "
136 BUILDDIRECTORY
="${TESTDIRECTORY}/../../build/bin"
137 test -x "${BUILDDIRECTORY}/apt-get" || msgdie
"You need to build tree first"
138 local OLDWORKINGDIRECTORY
=$(pwd)
139 addtrap
"cd /; rm -rf $TMPWORKINGDIRECTORY; cd $OLDWORKINGDIRECTORY;"
140 cd $TMPWORKINGDIRECTORY
141 mkdir rootdir aptarchive keys
143 mkdir -p etc
/apt
/apt.conf.d etc
/apt
/sources.list.d etc
/apt
/trusted.gpg.d etc
/apt
/preferences.d
144 mkdir -p var
/cache var
/lib var
/log
145 mkdir -p var
/lib
/dpkg
/info var
/lib
/dpkg
/updates var
/lib
/dpkg
/triggers
146 touch var
/lib
/dpkg
/available
148 ln -s ${BUILDDIRECTORY}/methods usr
/lib
/apt
/methods
150 local PACKAGESFILE
=$(echo "$(basename $0)" | sed -e 's/^test-/Packages-/' -e 's/^skip-/Packages-/')
151 if [ -f "${TESTDIRECTORY}/${PACKAGESFILE}" ]; then
152 cp "${TESTDIRECTORY}/${PACKAGESFILE}" aptarchive/Packages
154 local SOURCESSFILE=$(echo "$(basename $0)" | sed -e 's/^test-/Sources-/' -e 's/^skip-/Sources-/')
155 if [ -f "${TESTDIRECTORY}/${SOURCESSFILE}" ]; then
156 cp "${TESTDIRECTORY}/${SOURCESSFILE}" aptarchive
/Sources
158 cp $(find $TESTDIRECTORY -name '*.pub' -o -name '*.sec') keys
/
159 ln -s ${TMPWORKINGDIRECTORY}/keys
/joesixpack.pub rootdir
/etc
/apt
/trusted.gpg.d
/joesixpack.gpg
160 echo "Dir \"${TMPWORKINGDIRECTORY}/rootdir\";" > aptconfig.conf
161 echo "Dir::state::status \"${TMPWORKINGDIRECTORY}/rootdir/var/lib/dpkg/status\";" >> aptconfig.conf
162 echo "Debug::NoLocking \"true\";" >> aptconfig.conf
163 echo "APT::Get::Show-User-Simulation-Note \"false\";" >> aptconfig.conf
164 echo "Dir::Bin::Methods \"${BUILDDIRECTORY}/methods\";" >> aptconfig.conf
165 echo "Dir::Bin::dpkg \"fakeroot\";" >> aptconfig.conf
166 echo "DPKG::options:: \"dpkg\";" >> aptconfig.conf
167 echo "DPKG::options:: \"--root=${TMPWORKINGDIRECTORY}/rootdir\";" >> aptconfig.conf
168 echo "DPKG::options:: \"--force-not-root\";" >> aptconfig.conf
169 echo "DPKG::options:: \"--force-bad-path\";" >> aptconfig.conf
170 if ! $(which dpkg) --assert-multi-arch 2>&1 > /dev
/null
; then
171 echo "DPKG::options:: \"--force-architecture\";" >> aptconfig.conf
# Added to test multiarch before dpkg is ready for it…
173 echo "DPKG::options:: \"--log=${TMPWORKINGDIRECTORY}/rootdir/var/log/dpkg.log\";" >> aptconfig.conf
174 echo 'quiet::NoUpdate "true";' >> aptconfig.conf
176 export PATH
="${PATH}:/usr/local/sbin:/usr/sbin:/sbin"
181 if [ "$1" = "native" -o -z "$1" ]; then
182 eval `aptconfig shell ARCH APT::Architecture`
183 if [ -n "$ARCH" ]; then
186 dpkg
--print-architecture
194 echo "$(aptconfig dump | grep APT::Architecture | cut -d'"' -f 2 | sed '/^$/ d' | sort | uniq | tr '\n' ' ')"
197 configarchitecture
() {
198 local CONFFILE
=rootdir
/etc
/apt
/apt.conf.d
/01multiarch.conf
200 echo "APT::Architecture \"$(getarchitecture $1)\";" > $CONFFILE
202 while [ -n "$1" ]; do
203 echo "APT::Architectures:: \"$(getarchitecture $1)\";" >> $CONFFILE
210 if [ ! -e rootdir
/var
/lib
/dpkg
/status
]; then
211 local STATUSFILE
=$(echo "$(basename $0)" | sed -e 's/^test-/status-/' -e 's/^skip-/status-/')
212 if [ -f "${TESTDIRECTORY}/${STATUSFILE}" ]; then
213 cp "${TESTDIRECTORY}/${STATUSFILE}" rootdir/var/lib/dpkg/status
215 echo -n > rootdir/var/lib/dpkg/status
218 if $(which dpkg) --assert-multi-arch 2>&1 > /dev/null; then
219 local ARCHS="$(getarchitectures)"
220 if echo "$ARCHS" | grep -E -q '[^ ]+ [^ ]+'; then
221 DPKGARCH="$(dpkg --print-architecture)"
222 for ARCH in ${ARCHS}; do
223 if [ "${ARCH}" != "${DPKGARCH}" ]; then dpkg --add-architecture ${ARCH}; fi
225 if [ "0" = "$(dpkg -l dpkg 2> /dev/null | grep '^i' | wc -l)" ]; then
226 # dpkg doesn't really check the version as long as it is fully installed,
227 # but just to be sure we choose one above the required version
228 insertinstalledpackage 'dpkg' "all
" '1.16.2+fake'
234 setupsimplenativepackage() {
238 local RELEASE="${4:-unstable}"
239 local DEPENDENCIES="$5"
240 local DESCRIPTION="$6"
241 local SECTION="${7:-others}"
243 if [ "$SECTION" = "$(echo "$SECTION" | cut -d'/' -f 2)" ]; then
246 DISTSECTION="$(echo "$SECTION" | cut -d'/' -f 1)"
248 local BUILDDIR=incoming/${NAME}-${VERSION}
249 mkdir -p ${BUILDDIR}/debian/source
251 echo "* most suckless software product ever
" > FEATURES
252 test -e debian/copyright || echo "Copyleft by Joe Sixpack
$(date +%Y)" > debian/copyright
253 test -e debian/changelog || echo "$NAME ($VERSION) $RELEASE; urgency
=low
257 -- Joe Sixpack
<joe@example.org
> $(date -R)" > debian/changelog
258 test -e debian/control || echo "Source
: $NAME
261 Maintainer
: Joe Sixpack
<joe@example.org
>
262 Build
-Depends: debhelper
(>= 7)
263 Standards
-Version: 3.9.1
265 Package
: $NAME" > debian/control
266 if [ "$ARCH" = 'all' ]; then
267 echo "Architecture
: all
" >> debian/control
269 echo "Architecture
: any
" >> debian/control
271 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> debian/control
272 if [ -z "$DESCRIPTION" ]; then
273 echo "Description
: an autogenerated dummy
${NAME}=${VERSION}/${RELEASE}
274 If you
find such a package installed on your system
,
275 YOU did something horribly wrong
! They are autogenerated
276 und used only by testcases
for APT and surf no other propose…
" >> debian/control
278 echo "Description
: $DESCRIPTION" >> debian/control
280 test -e debian/compat || echo "7" > debian/compat
281 test -e debian/source/format || echo "3.0 (native
)" > debian/source/format
282 test -e debian/rules || cp /usr/share/doc/debhelper/examples/rules.tiny debian/rules
286 buildsimplenativepackage() {
290 local RELEASE="${4:-unstable}"
291 local DEPENDENCIES="$5"
292 local DESCRIPTION="$6"
293 local SECTION="${7:-others}"
294 local PRIORITY="${8:-optional}"
296 if [ "$SECTION" = "$(echo "$SECTION" | cut -d'/' -f 2)" ]; then
299 DISTSECTION="$(echo "$SECTION" | cut -d'/' -f 1)"
301 local BUILDDIR=${TMPWORKINGDIRECTORY}/incoming/${NAME}-${VERSION}
303 msgninfo "Build package
${NAME} in ${VERSION} for ${RELEASE} in ${DISTSECTION}…
"
304 mkdir -p $BUILDDIR/debian/source
305 echo "* most suckless software product ever
" > ${BUILDDIR}/FEATURES
307 echo '$NAME says \"Hello!\"'" > ${BUILDDIR}/${NAME}
309 echo "Copyleft by Joe Sixpack
$(date +%Y)" > ${BUILDDIR}/debian/copyright
310 echo "$NAME ($VERSION) $RELEASE; urgency
=low
314 -- Joe Sixpack
<joe@example.org
> $(date -R)" > ${BUILDDIR}/debian/changelog
318 Maintainer
: Joe Sixpack
<joe@example.org
>
319 Standards
-Version: 3.9.3" > ${BUILDDIR}/debian/control
320 local BUILDDEPS="$(echo "$DEPENDENCIES" | grep '^Build-')"
321 test -z "$BUILDDEPS" || echo "$BUILDDEPS" >> ${BUILDDIR}/debian/control
323 Package
: $NAME" >> ${BUILDDIR}/debian/control
325 if [ "$ARCH" = 'all' ]; then
326 echo "Architecture
: all
" >> ${BUILDDIR}/debian/control
328 echo "Architecture
: any
" >> ${BUILDDIR}/debian/control
330 local DEPS="$(echo "$DEPENDENCIES" | grep -v '^Build-')"
331 test -z "$DEPS" || echo "$DEPS" >> ${BUILDDIR}/debian/control
332 if [ -z "$DESCRIPTION" ]; then
333 echo "Description
: an autogenerated dummy
${NAME}=${VERSION}/${RELEASE}
334 If you
find such a package installed on your system
,
335 YOU did something horribly wrong
! They are autogenerated
336 und used only by testcases
for APT and surf no other propose…
" >> ${BUILDDIR}/debian/control
338 echo "Description
: $DESCRIPTION" >> ${BUILDDIR}/debian/control
341 echo '3.0 (native)' > ${BUILDDIR}/debian/source/format
342 local SRCS="$( (cd ${BUILDDIR}/..; dpkg-source -b ${NAME}-${VERSION} 2>&1) | grep '^dpkg-source: info: building' | grep -o '[a-z0-9._+~-]*$')"
344 echo "pool
/${SRC}" >> ${BUILDDIR}/../${RELEASE}.${DISTSECTION}.srclist
347 for arch in $(echo "$ARCH" | sed -e 's#,#\n#g' | sed -e "s#^native\$#$(getarchitecture 'native')#"); do
348 rm -rf ${BUILDDIR}/debian
/tmp
349 mkdir -p ${BUILDDIR}/debian
/tmp
/DEBIAN
${BUILDDIR}/debian
/tmp
/usr
/share
/doc
/${NAME} ${BUILDDIR}/debian
/tmp
/usr
/bin
350 cp ${BUILDDIR}/debian
/copyright
${BUILDDIR}/debian
/changelog
${BUILDDIR}/FEATURES
${BUILDDIR}/debian
/tmp
/usr
/share
/doc
/${NAME}
351 cp ${BUILDDIR}/${NAME} ${BUILDDIR}/debian
/tmp
/usr
/bin
/${NAME}-${arch}
352 (cd ${BUILDDIR}; dpkg
-gencontrol -DArchitecture=$arch)
353 (cd ${BUILDDIR}/debian
/tmp
; md5sum $(find usr/ -type f) > DEBIAN
/md5sums
)
355 dpkg
-deb --build ${BUILDDIR}/debian
/tmp
${BUILDDIR}/..
2> /dev
/null
> /dev
/null
356 echo "pool/${NAME}_${VERSION}_${arch}.deb" >> ${BUILDDIR}/..
/${RELEASE}.
${DISTSECTION}.pkglist
359 mkdir -p ${BUILDDIR}/..
/${NAME}_
${VERSION}
360 cp ${BUILDDIR}/debian
/changelog
${BUILDDIR}/..
/${NAME}_
${VERSION}/
361 cp ${BUILDDIR}/debian
/changelog
${BUILDDIR}/..
/${NAME}_
${VERSION}.changelog
370 local ARCH
=$(getarchitecture $4)
371 msgninfo
"Build package $(echo "$BUILDDIR" | grep -o '[^/]*$') for ${RELEASE} in ${SECTION}… "
373 if [ "$ARCH" = "all" ]; then
374 ARCH
="$(dpkg-architecture -qDEB_HOST_ARCH 2> /dev/null)"
376 local BUILT
="$(dpkg-buildpackage -uc -us -a$ARCH 2> /dev/null)"
377 local PKGS
="$( echo "$BUILT" | grep '^dpkg-deb: building package' | cut -d'/' -f 2 | sed -e "s#'\.##")"
378 local SRCS
="$( echo "$BUILT" | grep '^dpkg-source: info: building' | grep -o '[a-z0-9._+~-]*$')"
381 echo "pool/${PKG}" >> ${TMPWORKINGDIRECTORY}/incoming
/${RELEASE}.
${SECTION}.pkglist
384 echo "pool/${SRC}" >> ${TMPWORKINGDIRECTORY}/incoming
/${RELEASE}.
${SECTION}.srclist
390 if [ -d incoming
]; then
391 buildaptarchivefromincoming $
*
393 buildaptarchivefromfiles $
*
397 createaptftparchiveconfig
() {
398 local ARCHS
="$(find pool/ -name '*.deb' | grep -oE '_[a-z0-9-]+\.deb$' | sort | uniq | sed -e '/^_all.deb$/ d' -e 's#^_\([a-z0-9-]*\)\.deb$#\1#' | tr '\n' ' ')"
399 if [ -z "$ARCHS" ]; then
400 # the pool is empty, so we will operate on faked packages - let us use the configured archs
401 ARCHS
="$(getarchitectures)"
404 ArchiveDir "' >> ftparchive.conf
405 echo -n $(readlink -f .) >> ftparchive.conf
407 CacheDir "' >> ftparchive.conf
408 echo -n $(readlink -f ..) >> ftparchive.conf
410 FileListDir "' >> ftparchive.conf
411 echo -n $(readlink -f pool/) >> ftparchive.conf
415 Packages::Compress ". gzip bzip2 lzma xz";
416 Sources::Compress ". gzip bzip2 lzma xz";
417 Contents::Compress ". gzip bzip2 lzma xz";
418 Translation::Compress ". gzip bzip2 lzma xz";
419 LongDescription "false";
423 SrcDirectory "pool/";
429 Label "apttestcases";
431 Description "repository with dummy packages";
432 Architectures "' >> ftparchive.conf
433 echo -n "$ARCHS" >> ftparchive.conf
437 };' >> ftparchive.conf
438 for DIST
in $(find ./pool/ -maxdepth 1 -name '*.pkglist' -type f | cut -d'/' -f 3 | cut -d'.' -f 1 | sort | uniq); do
439 echo -n 'tree "dists/' >> ftparchive.conf
440 echo -n "$DIST" >> ftparchive.conf
442 Architectures "' >> ftparchive.conf
443 echo -n "$ARCHS" >> ftparchive.conf
445 FileList "' >> ftparchive.conf
446 echo -n "${DIST}.\$(SECTION).pkglist" >> ftparchive.conf
448 SourceFileList "' >> ftparchive.conf
449 echo -n "${DIST}.\$(SECTION).srclist" >> ftparchive.conf
451 Sections "' >> ftparchive.conf
452 echo -n "$(find ./pool/ -maxdepth 1 -name "${DIST}.*.pkglist" -type f | cut -d'/' -f 3 | cut -d'.' -f 2 | sort | uniq | tr '\n' ' ')" >> ftparchive.conf
454 };' >> ftparchive.conf
458 buildaptftparchivedirectorystructure
() {
459 local DISTS
="$(grep -i '^tree ' ftparchive.conf | cut -d'/' -f 2 | sed -e 's#".*##')"
460 for DIST
in $DISTS; do
461 local SECTIONS
="$(grep -i -A 5 "dists/$DIST" ftparchive.conf | grep -i 'Sections' | cut -d'"' -f 2)"
462 for SECTION
in $SECTIONS; do
463 local ARCHS
="$(grep -A 5 "dists/$DIST" ftparchive.conf | grep Architectures | cut -d'"' -f 2 | sed -e 's#source##')"
464 for ARCH
in $ARCHS; do
465 mkdir -p dists
/${DIST}/${SECTION}/binary
-${ARCH}
467 mkdir -p dists
/${DIST}/${SECTION}/source
468 mkdir -p dists
/${DIST}/${SECTION}/i18n
478 local DEPENDENCIES
="$5"
479 local PRIORITY
="${6:-optional}"
481 for arch
in $(echo "$ARCH" | sed -e 's#,#\n#g' | sed -e "s#^native\$#$(getarchitecture 'native')#"); do
482 if [ "$arch" = 'all' -o "$arch" = 'none' ]; then
483 ARCHS
="$(getarchitectures)"
487 for BUILDARCH
in $ARCHS; do
488 local PPATH
="aptarchive/dists/${RELEASE}/main/binary-${BUILDARCH}"
489 mkdir -p $PPATH aptarchive
/dists
/${RELEASE}/main
/source
490 touch aptarchive
/dists
/${RELEASE}/main
/source
/Sources
491 local FILE
="${PPATH}/Packages"
496 Maintainer: Joe Sixpack <joe@example.org>" >> $FILE
497 test "$arch" = 'none' || echo "Architecture: $arch" >> $FILE
498 echo "Version: $VERSION
499 Filename: pool/main/${NAME}/${NAME}_${VERSION}_${arch}.deb" >> $FILE
500 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> $FILE
501 echo "Description: an autogenerated dummy ${NAME}=${VERSION}/${RELEASE}
502 If you find such a package installed on your system,
503 YOU did something horribly wrong! They are autogenerated
504 und used only by testcases for APT and surf no other propose…
515 local DEPENDENCIES
="$5"
517 local SPATH
="aptarchive/dists/${RELEASE}/main/source"
519 local FILE
="${SPATH}/Sources"
523 Maintainer: Joe Sixpack <joe@example.org>
524 Architecture: $ARCH" >> $FILE
525 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> $FILE
527 d41d8cd98f00b204e9800998ecf8427e 0 ${NAME}_${VERSION}.dsc
528 d41d8cd98f00b204e9800998ecf8427e 0 ${NAME}_${VERSION}.tar.gz
532 insertinstalledpackage
() {
536 local DEPENDENCIES
="$4"
537 local PRIORITY
="${5:-optional}"
538 local STATUS
="${6:-install ok installed}"
539 local FILE
='rootdir/var/lib/dpkg/status'
540 local INFO
='rootdir/var/lib/dpkg/info'
541 for arch
in $(echo "$ARCH" | sed -e 's#,#\n#g' | sed -e "s#^native\$#$(getarchitecture 'native')#"); do
547 Maintainer: Joe Sixpack <joe@example.org>
548 Version: $VERSION" >> $FILE
549 test "$arch" = 'none' || echo "Architecture: $arch" >> $FILE
550 test -z "$DEPENDENCIES" || echo "$DEPENDENCIES" >> $FILE
551 echo "Description: an autogenerated dummy ${NAME}=${VERSION}/installed
552 If you find such a package installed on your system,
553 YOU did something horribly wrong! They are autogenerated
554 und used only by testcases for APT and surf no other propose…
556 if [ "$(dpkg-query -W --showformat='${Multi-Arch}')" = 'same' ]; then
557 echo -n > ${INFO}/${NAME}:${arch}.list
559 echo -n > ${INFO}/${NAME}.list
565 buildaptarchivefromincoming
() {
566 msginfo
"Build APT archive for ${CCMD}$(basename $0)${CINFO} based on incoming packages…"
568 [ -e pool
] || ln -s ..
/incoming pool
569 [ -e ftparchive.conf
] || createaptftparchiveconfig
570 [ -e dists
] || buildaptftparchivedirectorystructure
571 msgninfo
"\tGenerate Packages, Sources and Contents files… "
572 aptftparchive
-qq generate ftparchive.conf
578 buildaptarchivefromfiles
() {
579 msginfo
"Build APT archive for ${CCMD}$(basename $0)${CINFO} based on prebuild files…"
580 find aptarchive
-name 'Packages' -o -name 'Sources' | while read line
; do
581 msgninfo
"\t${line} file… "
582 cat ${line} | gzip > ${line}.gz
583 cat ${line} | bzip2 > ${line}.bz2
584 cat ${line} | xz
--format=lzma
> ${line}.lzma
585 cat ${line} | xz
> ${line}.xz
591 # can be overridden by testcases for their pleasure
592 getcodenamefromsuite
() { echo -n "$1"; }
593 getreleaseversionfromsuite
() { true
; }
594 getlabelfromsuite
() { true
; }
596 generatereleasefiles
() {
597 # $1 is the Date header and $2 is the ValidUntil header to be set
598 # both should be given in notation date/touch can understand
599 msgninfo
"\tGenerate Release files… "
600 if [ -e aptarchive
/dists
]; then
601 for dir
in $(find ./aptarchive/dists -mindepth 1 -maxdepth 1 -type d); do
602 local SUITE
="$(echo "$dir" | cut -d'/' -f 4)"
603 local CODENAME
="$(getcodenamefromsuite $SUITE)"
604 local VERSION
="$(getreleaseversionfromsuite $SUITE)"
605 local LABEL
="$(getlabelfromsuite $SUITE)"
606 if [ -n "$VERSION" ]; then
607 VERSION
="-o APT::FTPArchive::Release::Version=${VERSION}"
609 if [ -n "$LABEL" ]; then
610 LABEL
="-o APT::FTPArchive::Release::Label=${LABEL}"
612 aptftparchive
-qq release
$dir \
613 -o APT
::FTPArchive
::Release
::Suite
="${SUITE}" \
614 -o APT
::FTPArchive
::Release
::Codename
="${CODENAME}" \
617 | sed -e '/0 Release$/ d' > $dir/Release
# remove the self reference
618 if [ "$SUITE" = "experimental" -o "$SUITE" = "experimental2" ]; then
620 NotAutomatic: yes' $dir/Release
622 if [ -n "$1" -a "$1" != "now" ]; then
623 sed -i "s/^Date: .*$/Date: $(date -d "$1" '+%a, %d %b %Y %H:%M:%S %Z')/" $dir/Release
627 Valid-Until: $(date -d "$2" '+%a, %d %b %Y %H:%M:%S %Z')" $dir/Release
631 aptftparchive
-qq release .
/aptarchive
| sed -e '/0 Release$/ d' > aptarchive
/Release
# remove the self reference
633 if [ -n "$1" -a "$1" != "now" ]; then
634 for release
in $(find ./aptarchive -name 'Release'); do
635 touch -d "$1" $release
641 setupdistsaptarchive
() {
642 local APTARCHIVE
=$(readlink -f ./aptarchive)
643 rm -f root
/etc
/apt
/sources.list.d
/apt
-test-*-deb.list
644 rm -f root
/etc
/apt
/sources.list.d
/apt
-test-*-deb-src.list
645 for DISTS
in $(find ./aptarchive/dists/ -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 4); do
646 SECTIONS
=$(find ./aptarchive/dists/${DISTS}/ -mindepth 1 -maxdepth 1 -type d | cut -d'/' -f 5 | tr '\n' ' ')
647 msgninfo
"\tadd deb and deb-src sources.list lines for ${CCMD}${DISTS} ${SECTIONS}${CINFO}… "
648 echo "deb file://$APTARCHIVE $DISTS $SECTIONS" > rootdir
/etc
/apt
/sources.list.d
/apt
-test-${DISTS}-deb.list
649 echo "deb-src file://$APTARCHIVE $DISTS $SECTIONS" > rootdir
/etc
/apt
/sources.list.d
/apt
-test-${DISTS}-deb-src.list
654 setupflataptarchive
() {
655 local APTARCHIVE
=$(readlink -f ./aptarchive)
656 if [ -f ${APTARCHIVE}/Packages
]; then
657 msgninfo
"\tadd deb sources.list line… "
658 echo "deb file://$APTARCHIVE /" > rootdir
/etc
/apt
/sources.list.d
/apt
-test-archive-deb.list
661 rm -f rootdir
/etc
/apt
/sources.list.d
/apt
-test-archive-deb.list
663 if [ -f ${APTARCHIVE}/Sources
]; then
664 msgninfo
"\tadd deb-src sources.list line… "
665 echo "deb-src file://$APTARCHIVE /" > rootdir
/etc
/apt
/sources.list.d
/apt
-test-archive-deb-src.list
668 rm -f rootdir
/etc
/apt
/sources.list.d
/apt
-test-archive-deb-src.list
674 if [ -e aptarchive
/dists
]; then
680 msgninfo
"\tSync APT's cache with the archive… "
686 local SIGNER
="${1:-Joe Sixpack}"
687 msgninfo
"\tSign archive with $SIGNER key… "
689 for KEY
in $(find keys/ -name '*.sec'); do
690 SECKEYS
="$SECKEYS --secret-keyring $KEY"
693 for KEY
in $(find keys/ -name '*.pub'); do
694 PUBKEYS
="$PUBKEYS --keyring $KEY"
696 for RELEASE
in $(find aptarchive/ -name Release); do
697 gpg
--yes --no-default-keyring $SECKEYS $PUBKEYS --default-key "$SIGNER" -abs -o ${RELEASE}.gpg
${RELEASE}
698 gpg
--yes --no-default-keyring $SECKEYS $PUBKEYS --default-key "$SIGNER" --clearsign -o "$(echo "${RELEASE}" | sed 's#/Release$#/InRelease#')" $RELEASE
703 changetowebserver
() {
704 if which weborf
> /dev
/null
; then
705 weborf
-xb aptarchive
/ 2>&1 > /dev
/null
&
707 elif which gatling
> /dev
/null
; then
709 gatling
-p 8080 -F -S 2>&1 > /dev
/null
&
712 elif which lighttpd
> /dev
/null
; then
713 echo "server.document-root = \"$(readlink -f ./aptarchive)\"
715 server.stat-cache-engine = \"disable\"" > lighttpd.conf
716 lighttpd
-t -f lighttpd.conf
>/dev
/null
|| msgdie
'Can not change to webserver: our lighttpd config is invalid'
717 lighttpd
-D -f lighttpd.conf
2>/dev
/null
>/dev
/null
&
720 msgdie
'You have to install weborf or lighttpd first'
723 local APTARCHIVE
="file://$(readlink -f ./aptarchive)"
724 for LIST
in $(find rootdir/etc/apt/sources.list.d/ -name 'apt-test-*.list'); do
725 sed -i $LIST -e "s#$APTARCHIVE#http://localhost:8080/#"
731 mkdir -p rootdir
/media
/cdrom
/.disk
732 local CD
="$(readlink -f rootdir/media/cdrom)"
733 echo "acquire::cdrom::mount \"${CD}\";" > rootdir
/etc
/apt
/apt.conf.d
/00cdrom
734 echo 'acquire::cdrom::autodetect 0;' >> rootdir
/etc
/apt
/apt.conf.d
/00cdrom
735 echo -n "$1" > ${CD}/.disk
/info
736 if [ ! -d aptarchive
/dists
]; then
737 msgdie
'Flat file archive cdroms can not be created currently'
740 mv aptarchive
/dists
$CD
741 ln -s "$(readlink -f ./incoming)" $CD/pool
742 find rootdir
/etc
/apt
/sources.list.d
/ -name 'apt-test-*.list' -delete
746 local DIFFTEXT
="$($(which diff) -u $* | sed -e '/^---/ d' -e '/^+++/ d' -e '/^@@/ d')"
747 if [ -n "$DIFFTEXT" ]; then
759 msgtest
"Test for correctness of file" "$FILE"
761 echo -n "" | checkdiff
$FILE - && msgpass
|| msgfail
763 echo "$*" | checkdiff
$FILE - && msgpass
|| msgfail
768 msgtest
"Test for no output of" "$*"
769 test -z "$($* 2>&1)" && msgpass
|| msgfail
773 local COMPAREFILE
=$(mktemp)
774 addtrap
"rm $COMPAREFILE;"
775 echo "$1" > $COMPAREFILE
777 msgtest
"Test for equality of" "$*"
778 $
* 2>&1 | checkdiff
$COMPAREFILE - && msgpass
|| msgfail
782 local COMPAREFILE1
=$(mktemp)
783 local COMPAREFILE2
=$(mktemp)
784 local COMPAREAGAINST
=$(mktemp)
785 addtrap
"rm $COMPAREFILE1 $COMPAREFILE2 $COMPAREAGAINST;"
786 echo "$1" > $COMPAREFILE1
787 echo "$2" > $COMPAREFILE2
789 msgtest
"Test for equality OR of" "$*"
790 $
* 2>&1 1> $COMPAREAGAINST
791 (checkdiff
$COMPAREFILE1 $COMPAREAGAINST 1> /dev
/null
||
792 checkdiff
$COMPAREFILE2 $COMPAREAGAINST 1> /dev
/null
) && msgpass
||
793 ( echo "\n${CINFO}Diff against OR 1${CNORMAL}" "$(checkdiff $COMPAREFILE1 $COMPAREAGAINST)" \
794 "\n${CINFO}Diff against OR 2${CNORMAL}" "$(checkdiff $COMPAREFILE2 $COMPAREAGAINST)" &&
799 local VIRTUAL
="N: Can't select versions from package '$1' as it is purely virtual"
802 while [ -n "$1" ]; do
804 N: Can't select versions from package '$1' as it is purely virtual"
805 PACKAGE
="${PACKAGE} $1"
808 msgtest
"Test for virtual packages" "apt-cache show $PACKAGE"
810 N: No packages found"
811 local COMPAREFILE
=$(mktemp)
812 addtrap
"rm $COMPAREFILE;"
813 local ARCH
="$(getarchitecture 'native')"
814 echo "$VIRTUAL" | sed -e "s/:$ARCH//" -e 's/:all//' > $COMPAREFILE
815 aptcache show
-q=0 $PACKAGE 2>&1 | checkdiff
$COMPAREFILE - && msgpass
|| msgfail
819 msgtest
"Test for non-existent packages" "apt-cache show $*"
820 local SHOWPKG
="$(aptcache show $* 2>&1 | grep '^Package: ')"
821 if [ -n "$SHOWPKG" ]; then
830 testdpkginstalled
() {
831 msgtest
"Test for correctly installed package(s) with" "dpkg -l $*"
832 local PKGS
="$(dpkg -l $* 2>/dev/null | grep '^i' | wc -l)"
833 if [ "$PKGS" != $# ]; then
835 dpkg
-l $
* | grep '^[a-z]'
842 testdpkgnotinstalled
() {
843 msgtest
"Test for correctly not-installed package(s) with" "dpkg -l $*"
844 local PKGS
="$(dpkg -l $* 2> /dev/null | grep '^i' | wc -l)"
845 if [ "$PKGS" != 0 ]; then
847 dpkg
-l $
* | grep '^[a-z]'
855 local COMPAREFILE
=$(mktemp)
856 addtrap
"rm $COMPAREFILE;"
858 msgtest
'Test for correctly marked as auto-installed' "$*"
859 while [ -n "$1" ]; do echo "$1"; shift; done | sort > $COMPAREFILE
861 msgtest
'Test for correctly marked as auto-installed' 'no package'
862 echo -n > $COMPAREFILE
864 aptmark showauto
2>&1 | checkdiff
$COMPAREFILE - && msgpass
|| msgfail
868 echo "STOPPED execution. Press enter to continue"