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
|
#!/bin/bash
# -*- mode: sh; coding: utf-8 -*-
# Copyright © 2006 Peter Eisentraut <petere@debian.org>
# Copyright © 2009 Jonas Smedegaard <dr@jones.dk>
#
# 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, 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, see <http://www.gnu.org/licenses/>.
# Test distutils arch package + extra package w/ dh_python{2,3}
. testsuite_functions
options $@
setup_workdir
cat <<EOF >$WORKDIR/debian/rules
#!/usr/bin/make -f
DEB_TAR_SRCDIR=distutils-test-0.1
include debian/testsuite.mk
include \$(_cdbs_package_root_dir)/1/rules/debhelper.mk.in
include \$(_cdbs_package_root_dir)/1/class/python-distutils.mk.in
DEB_PYTHON_DESTDIR = \$(CURDIR)/debian/\$(cdbs_curpkg)
EOF
chmod +x $WORKDIR/debian/rules
cat >>$WORKDIR/debian/control <<EOF
Package: python-cdbs-testsuite
Architecture: any
Description: common build system test suite
This package is part of the testsuite for the CDBS build system. If you've
managed to install this, something has gone horribly wrong.
Package: python3-cdbs-testsuite
Architecture: any
Description: common build system test suite
This package is part of the testsuite for the CDBS build system. If you've
managed to install this, something has gone horribly wrong.
EOF
cp -R distutils/* $WORKDIR
sed -i 's/^#EXT#/ /g' $WORKDIR/setup.py
touch $WORKDIR/foo.c
build_package
dpkg -c $WORKDIR/../python-cdbs-testsuite_0.1_*.deb \
| grep -q '/usr/lib/python.*/dist-packages/testing/foo.py' \
|| return_fail
dpkg -c $WORKDIR/../python3-cdbs-testsuite_0.1_*.deb \
| grep -q '/usr/lib/python3/dist-packages/testing/foo.py' \
|| return_fail
clean_workdir
return_pass
|