]>
Commit | Line | Data |
---|---|---|
b093a199 DK |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
9962ae93 | 4 | TESTDIR=$(readlink -f $(dirname $0)) |
b093a199 DK |
5 | . $TESTDIR/framework |
6 | setupenvironment | |
01a6e24c | 7 | configarchitecture 'i386' |
b093a199 | 8 | |
01a6e24c DK |
9 | buildsimplenativepackage 'unrelated' 'all' '1' 'unstable' |
10 | buildsimplenativepackage 'po-debconf' 'all' '1.0.16' 'unstable' | |
11 | buildsimplenativepackage 'debhelper' 'all' '8.0.0' 'unstable' 'Depends: po-debconf' | |
b093a199 DK |
12 | setupaptarchive |
13 | ||
14 | aptget install unrelated debhelper -qq 2>&1 > /dev/null | |
01a6e24c | 15 | testdpkginstalled 'unrelated' 'debhelper' 'po-debconf' |
b093a199 | 16 | |
ec7f904e | 17 | testmarkedauto 'po-debconf' |
b093a199 | 18 | aptget remove debhelper -y -qq 2>&1 > /dev/null |
5cf733e1 | 19 | testdpkgnotinstalled 'debhelper' |
87bc1c45 | 20 | testdpkginstalled 'po-debconf' 'unrelated' |
01a6e24c DK |
21 | |
22 | echo 'APT::NeverAutoRemove { "^debc.*nf$"; };' > rootdir/etc/apt/apt.conf.d/00autoremove | |
23 | testequal 'Reading package lists... | |
24 | Building dependency tree... | |
25 | Reading state information... | |
26 | The following packages will be REMOVED: | |
27 | po-debconf | |
28 | 0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. | |
29 | Remv po-debconf [1.0.16]' aptget autoremove -s | |
30 | testdpkginstalled 'po-debconf' | |
31 | ||
32 | echo 'APT::NeverAutoRemove { "^po-debconf$"; };' > rootdir/etc/apt/apt.conf.d/00autoremove | |
b093a199 | 33 | aptget autoremove -y -qq 2>&1 > /dev/null |
01a6e24c | 34 | testdpkginstalled 'po-debconf' |
b093a199 | 35 | |
01a6e24c DK |
36 | echo 'APT::NeverAutoRemove { "^po-.*$"; };' > rootdir/etc/apt/apt.conf.d/00autoremove |
37 | aptget autoremove -y -qq 2>&1 > /dev/null | |
38 | testdpkginstalled "po-debconf" | |
39 | ||
40 | rm rootdir/etc/apt/apt.conf.d/00autoremove | |
41 | aptget autoremove -y -qq 2>&1 > /dev/null | |
5cf733e1 | 42 | testdpkgnotinstalled 'po-debconf' |
ec7f904e | 43 | testmarkedauto |
b093a199 DK |
44 | |
45 | sed -i rootdir/var/log/apt/history.log -e '/^Commandline: / d' -e '/^Start-Date: / d' -e '/^End-Date: / d' | |
01a6e24c | 46 | testfileequal 'rootdir/var/log/apt/history.log' ' |
b093a199 DK |
47 | Install: unrelated:i386 (1), debhelper:i386 (8.0.0), po-debconf:i386 (1.0.16, automatic) |
48 | ||
49 | Remove: debhelper:i386 (8.0.0) | |
50 | ||
51 | Remove: po-debconf:i386 (1.0.16)' |