diff options
author | Daniel Baumann <daniel@debian.org> | 2024-11-21 15:51:49 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2024-11-21 16:01:33 +0100 |
commit | 9b5b9bbf9bbd494f3a8d9803c0c4db80d02485d0 (patch) | |
tree | 335a4aa003c93675373e7af0097f0b871117a29d | |
parent | Adding upstream version 1.7.3+dfsg. (diff) | |
download | packetq-debian.tar.xz packetq-debian.zip |
Adding debian version 1.7.3+dfsg-1.HEADdebian/1.7.3+dfsg-1debian
Signed-off-by: Daniel Baumann <daniel@debian.org>
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/control | 25 | ||||
-rw-r--r-- | debian/copyright | 40 | ||||
-rw-r--r-- | debian/packetq.docs | 1 | ||||
-rw-r--r-- | debian/packetq.examples | 1 | ||||
-rwxr-xr-x | debian/rules | 8 | ||||
-rw-r--r-- | debian/source/format | 1 | ||||
-rw-r--r-- | debian/watch | 4 |
8 files changed, 85 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..9b1fd53 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +packetq (1.7.3+dfsg-1) unstable; urgency=low + + * Initial upload to sid (Closes: #991251). + + -- Daniel Baumann <daniel@debian.org> Thu, 21 Nov 2024 15:35:22 +0100 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..bfe3bca --- /dev/null +++ b/debian/control @@ -0,0 +1,25 @@ +Source: packetq +Section: utils +Priority: optional +Maintainer: Daniel Baumann <daniel@debian.org> +Build-Depends: + debhelper-compat (= 13), + libmaxminddb-dev, + pkgconf, + zlib1g-dev, +Rules-Requires-Root: no +Standards-Version: 4.7.0 +Homepage: https://www.dns-oarc.net/tools/packetq + +Package: packetq +Section: utils +Architecture: any +Depends: + ${misc:Depends}, + ${shlibs:Depends}, +Description: tool to run SQL queries on PCAP files + PacketQ is a command line tool to run SQL queries directly on PCAP files, the + results can be outputted as JSON (default), formatted/compact CSV and XML. + . + It also contain a very simplistic web-server in order to inspect PCAP files + remotely. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..558001d --- /dev/null +++ b/debian/copyright @@ -0,0 +1,40 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: paketq +Upstream-Contact: Jerry Lundström <jerry@dns-oarc.net> +Source: https://github.com/DNS-OARC/packetq +Files-Excluded: + html + html_NG + +Files: * +Copyright: 2017-2024 OARC, Inc. + 2011-2017 IIS - The Internet Foundation in Sweden +License: GPL-3+ + +Files: src/Murmur/MurmurHash3.* +Copyright: Austin Appleby +License: PD + +Files: debian/* +Copyright: 2024 Daniel Baumann <daniel@debian.org> +License: GPL-3+ + +License: GPL-3+ + 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 3 of the License, 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 <https://www.gnu.org/licenses/>. + . + The complete text of the GNU General Public License + can be found in /usr/share/common-licenses/GPL-3 file. + +License: PD + The author hereby disclaims copyright to this source code. diff --git a/debian/packetq.docs b/debian/packetq.docs new file mode 100644 index 0000000..dd44972 --- /dev/null +++ b/debian/packetq.docs @@ -0,0 +1 @@ +*.md diff --git a/debian/packetq.examples b/debian/packetq.examples new file mode 100644 index 0000000..adc0d36 --- /dev/null +++ b/debian/packetq.examples @@ -0,0 +1 @@ +collector_sample/* diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..1349f71 --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f + +%: + dh ${@} + +execute_after_dh_auto_install: + # removing unneeded files + rm -f debian/packetq/usr/share/doc/packetq/COPYING diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..a28d653 --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +version=4 +opts="dversionmangle=s/\+dfsg\d*$// \ +filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/packetq-$1\.tar\.gz/" \ +https://github.com/DNS-OARC/packetq/tags .*/v?(\d\S+)\.tar\.gz |