diff --git a/debian/.gitignore b/debian/.gitignore new file mode 100644 index 0000000..f72fb78 --- /dev/null +++ b/debian/.gitignore @@ -0,0 +1,4 @@ +.debhelper +debhelper-build-stamp +files +python3-pcapng* diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..edebdcf --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +python-pcapng (2.1.1-1) unstable; urgency=medium + + * Import release 2.1.1 + + -- Luc Verhaegen Tue, 16 Dec 2025 13:33:15 +0100 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..a1f287b --- /dev/null +++ b/debian/control @@ -0,0 +1,21 @@ +Source: python-pcapng +Section: python +Priority: optional +Maintainer: Luc Verhaegen +Uploaders: + Luc Verhaegen +Build-Depends: + debhelper-compat (= 13), + dh-sequence-python3, + python3-all, + python3-setuptools-scm, +Standards-Version: 4.7.2 +Homepage: https://github.com/rshk/python-pcapng + +Package: python3-pcapng +Architecture: all +Depends: + ${python3:Depends}, +Description: module to parse pcapng files + Python library to parse the pcap-ng format used by newer versions of + dumpcap & similar tools (wireshark, winpcap, ...). diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..973f348 --- /dev/null +++ b/debian/rules @@ -0,0 +1,5 @@ +#!/usr/bin/make -f +UPSTREAM_GIT := https://github.com/rshk/python-pcapng + +%: + dh $@ --buildsystem=pybuild