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
|
#!/bin/sh
extra_arch=""
if [ x"${pkg_perl_architecture:-}" != x ]; then
extra_arch="Architecture: ${pkg_perl_architecture}"
fi
cat <<EOF
Test-Command: /usr/share/pkg-perl-autopkgtest/runner build-deps
Depends: @, @builddeps@, pkg-perl-autopkgtest, ${pkg_perl_extra_depends:-}
Restrictions: skippable, ${pkg_perl_extra_restrictions:-}
Features: test-name=autodep8-perl-build-deps
${extra_arch}
Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps
Depends: @, pkg-perl-autopkgtest, ${pkg_perl_extra_depends:-}
Restrictions: skippable, superficial, ${pkg_perl_extra_restrictions:-}
Features: test-name=autodep8-perl
${extra_arch}
Test-Command: /usr/share/pkg-perl-autopkgtest/runner runtime-deps-and-recommends
Depends: @, @recommends@, pkg-perl-autopkgtest, ${pkg_perl_extra_depends:-}
Restrictions: skippable, superficial, ${pkg_perl_extra_restrictions:-}
Features: test-name=autodep8-perl-recommends
${extra_arch}
EOF
|