Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • stefanor/libvirt-python
  • janitor-team/proposed/libvirt-python
  • paelzer-guest/libvirt-python
  • libvirt-team/libvirt-python
  • agx/libvirt-python
5 results
Show changes
Commits on Source (4)
libvirt-python (9.0.0-1~1.gbp6f8187) UNRELEASED; urgency=medium
** SNAPSHOT build @6f818766fd1731d288258fd4cffc91141c888495 **
libvirt-python (9.0.0-1) unstable; urgency=medium
* [5cf8728] New upstream version 9.0.0
-- Guido Günther <agx@sigxcpu.org> Wed, 01 Feb 2023 10:03:34 +0100
* [badae7a] Depend on setuptools (Closes: #1030176)
* [698bacb] Add lxml for tests
* [9f7e10c] d/control: Bump standards version
* [f93bac2] d/control: Add Rules-Requires-Root
* [591b770] Use dh-sequence-python3.
Thanks to Jochen Sprickerhof
* [f5cd9bc] Use autopkgtest-pkg-pybuild for autopkgtests.
Thanks to Jochen Sprickerhof
-- Guido Günther <agx@sigxcpu.org> Wed, 01 Feb 2023 10:52:00 +0100
libvirt-python (8.0.0-1) unstable; urgency=medium
......
......@@ -3,7 +3,7 @@ Section: python
Priority: optional
Maintainer: Guido Günther <agx@sigxcpu.org>
Build-Depends: debhelper-compat (=13),
dh-python,
dh-sequence-python3,
pkg-config,
python3-all-dev,
python3-lxml <!nocheck>,
......@@ -14,6 +14,8 @@ Standards-Version: 4.6.2
Vcs-Git: https://salsa.debian.org/libvirt-team/libvirt-python.git
Vcs-Browser: https://salsa.debian.org/libvirt-team/libvirt-python
Homepage: http://libvirt.org
Rules-Requires-Root: no
Testsuite: autopkgtest-pkg-pybuild
Package: python3-libvirt
Architecture: any
......
......@@ -9,4 +9,4 @@ include /usr/share/dpkg/buildflags.mk
#export DH_VERBOSE=1
%:
dh $@ --with python3 --buildsystem=pybuild
dh $@ --buildsystem=pybuild
Tests: smoke3
Depends:
python3-all,
python3-libvirt,
python3-pytest
Restrictions: allow-stderr
#!/bin/sh
set -e
set -x
cp -a tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"
for py in $(py3versions -s); do
$py -m pytest -v
done
echo 'Smoke test of python3 version succesful'
exit 0