diff options
| -rw-r--r-- | debian/changelog | 9 | ||||
| -rw-r--r-- | debian/control | 5 | ||||
| -rw-r--r-- | debian/patches/drop_async_generator.patch | 11 | ||||
| -rw-r--r-- | debian/patches/series | 1 | ||||
| -rw-r--r-- | debian/salsa-ci.yml | 2 |
5 files changed, 23 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog index e77bba6..9d51bac 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +python-netfilterqueue (1.1.0-5) unstable; urgency=medium + + * Team upload. + * Drop "Rules-Requires-Root: no": it is now the default + * Bump Standards-Version to 4.7.3, drop Priority: tag + * Patch-out dependency on python3-async-generator + + -- Alexandre Detiste <tchet@debian.org> Sat, 14 Mar 2026 23:26:22 +0100 + python-netfilterqueue (1.1.0-4) unstable; urgency=medium * Standards-Version: 4.7.2. diff --git a/debian/control b/debian/control index 7450ab4..776afa0 100644 --- a/debian/control +++ b/debian/control @@ -2,8 +2,7 @@ Source: python-netfilterqueue Maintainer: Debian Python Team <team+python@tracker.debian.org> Uploaders: Simon Josefsson <simon@josefsson.org>, -Priority: optional -Standards-Version: 4.7.2 +Standards-Version: 4.7.3 Section: python Homepage: https://github.com/oremanj/python-netfilterqueue Build-Depends: @@ -13,14 +12,12 @@ Build-Depends: libnetfilter-queue-dev, pybuild-plugin-pyproject, python3-all-dev, - python3-async-generator <!nocheck>, python3-pytest, python3-pytest-trio <!nocheck>, python3-setuptools, python3-trio <!nocheck>, Vcs-Git: https://salsa.debian.org/python-team/packages/python-netfilterqueue.git Vcs-Browser: https://salsa.debian.org/python-team/packages/python-netfilterqueue -Rules-Requires-Root: no Package: python3-netfilterqueue Architecture: any diff --git a/debian/patches/drop_async_generator.patch b/debian/patches/drop_async_generator.patch new file mode 100644 index 0000000..7e787a8 --- /dev/null +++ b/debian/patches/drop_async_generator.patch @@ -0,0 +1,11 @@ +--- a/tests/conftest.py ++++ b/tests/conftest.py +@@ -9,7 +9,7 @@ + import netfilterqueue + from functools import partial + from typing import Any, AsyncIterator, Callable, Dict, Optional, Tuple +-from async_generator import asynccontextmanager ++from contextlib import asynccontextmanager + from pytest_trio.enable_trio_mode import * # type: ignore + + diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..d07c44b --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +drop_async_generator.patch diff --git a/debian/salsa-ci.yml b/debian/salsa-ci.yml index 582fa48..a0bc994 100644 --- a/debian/salsa-ci.yml +++ b/debian/salsa-ci.yml @@ -1,6 +1,6 @@ include: - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/recipes/debian.yml -- https://salsa.debian.org/debian/licenserecon/raw/main/debian/licenserecon.yml +#- https://salsa.debian.org/debian/licenserecon/raw/main/debian/licenserecon.yml variables: SALSA_CI_DISABLE_APTLY: 0 |
