| 12345678910111213141516171819202122232425262728293031323334353637 |
- #!/bin/sh
- set -e
- TESTDIR=$(readlink -f $(dirname $0))
- . $TESTDIR/framework
- setupenvironment
- configarchitecture 'native'
- setupsimplenativepackage 'compiz-core' 'native' '1.0' 'unstable'
- BUILDDIR='incoming/compiz-core-1.0'
- mkdir -p ${BUILDDIR}/debian/compiz-core/etc
- echo 'foo=bar;' > ${BUILDDIR}/compiz.conf
- echo 'compiz.conf /etc/compiz.conf' >> ${BUILDDIR}/debian/install
- buildpackage "$BUILDDIR" 'unstable' 'main' 'native'
- rm -rf "$BUILDDIR"
- setupaptarchive
- testdpkgnotinstalled compiz-core
- testsuccess aptget install compiz-core
- testdpkginstalled compiz-core
- testsuccess aptget remove compiz-core -y
- testdpkgnotinstalled compiz-core
- msgtest 'Check that conffiles are still around for' 'compiz-core'
- dpkg -l compiz-core | grep -q '^rc' && msgpass || msgfail
- testequal 'Reading package lists...
- Building dependency tree...
- Reading state information...
- The following packages will be REMOVED:
- compiz-core*
- 0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
- Purg compiz-core' aptget purge compiz-core -s
|