summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-13 08:05:17 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-03-13 08:24:56 +0000
commit92d76cb730cdb2d4f2deb138d76054eb98537ce6 (patch)
tree4820bf7543f7a5a7c183629f4816d92a5f1ea946
parentAdding upstream version 1.1.0+debian. (diff)
downloaddnsjit-92d76cb730cdb2d4f2deb138d76054eb98537ce6.tar.xz
dnsjit-92d76cb730cdb2d4f2deb138d76054eb98537ce6.zip
Adding debian version 1.1.0+debian-1.debian/1.1.0+debian-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r--debian/changelog6
-rw-r--r--debian/control30
-rw-r--r--debian/copyright42
-rwxr-xr-xdebian/rules14
-rw-r--r--debian/source/format1
5 files changed, 93 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..18ffe3b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+dnsjit (1.1.0+debian-1) sid; urgency=medium
+
+ * Initial upload to sid (Closes: #985126).
+ * Rebuilding upstream tarball without debian directory.
+
+ -- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 13 Mar 2021 08:55:13 +0100
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..5ebd3de
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,30 @@
+Source: dnsjit
+Section: utils
+Priority: optional
+Maintainer: Daniel Baumann <daniel.baumann@progress-linux.org>
+Build-Depends:
+ debhelper-compat (= 13),
+ libck-dev,
+ libgnutls28-dev,
+ liblmdb-dev,
+ libluajit-5.1-dev,
+ libnghttp2-dev,
+ libpcap-dev,
+ libuv1-dev,
+ luajit,
+Rules-Requires-Root: no
+Standards-Version: 4.5.1
+Homepage: https://www.dns-oarc.net/tools/dnsjit
+Vcs-Browser: https://git.progress-linux.org/users/daniel.baumann/debian/packages/dnsjit
+Vcs-Git: https://git.progress-linux.org/users/daniel.baumann/debian/packages/dnsjit
+
+Package: dnsjit
+Section: utils
+Architecture: any
+Depends:
+ ${misc:Depends},
+ ${shlibs:Depends},
+Description: Engine for capturing, parsing and replaying DNS
+ dnsjit is a combination of different DNS related tools around Lua to create a
+ script-based engine for capturing, parsing and statistics gathering of DNS
+ messages while also providing facilities for replaying DNS traffic.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..19c61b0
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,42 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: dnsjit
+Upstream-Contact: Jerry Lundström <jerry@dns-oarc.net>
+Source: https://github.com/DNS-OARC/dnsjit
+
+Files: *
+Copyright: 2018-2021 OARC, Inc.
+License: GPL-3+
+
+Files: src/filter/copy.*
+ src/filter/ipsplit.*
+ src/lib/base64url.*
+ src/lib/trie.*
+ src/lib/trie/*
+ src/output/dnssim.*
+ src/output/dnssim/*
+ src/test/test-base64url.sh
+ src/test/test-ipsplit.sh
+ src/test/test-trie.sh
+Copyright: 2018-2020 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
+License: GPL-3+
+
+Files: debian/*
+Copyright: 2021 Daniel Baumann <daniel.baumann@progress-linux.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 <http://www.gnu.org/licenses/>.
+ .
+ The full text of the GNU General Public License version 3
+ can be found in the file /usr/share/common-licenses/GPL-3.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..3256c4d
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+
+%:
+ dh ${@}
+
+execute_after_dh_install:
+ # Removing useless files
+ rm -f debian/dnsjit/usr/share/doc/dnsjit/LICENSE
+ rm -f debian/dnsjit/usr/share/doc/dnsjit/README.md
+
+execute_after_dh_installexamples:
+ # Moving examples
+ mkdir -p debian/dnsjit/usr/share/doc/dnsjit/examples
+ mv debian/dnsjit/usr/share/doc/dnsjit/*.lua debian/dnsjit/usr/share/doc/dnsjit/examples
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)