summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2024-11-21 18:43:38 +0100
committerDaniel Baumann <daniel@debian.org>2024-11-21 18:43:38 +0100
commit99d1450b5d2ed23d10b67e1031dde1c83b77d5c2 (patch)
tree3dcda83614a9e95750d2d3960a1d9e9bc01f3e6d
parentAdding upstream version 0.5. (diff)
downloaddag-scrubber-debian/0.5-1.tar.xz
dag-scrubber-debian/0.5-1.zip
Adding debian version 0.5-1.HEADdebian/0.5-1debian
Signed-off-by: Daniel Baumann <daniel@debian.org>
-rw-r--r--debian/changelog5
-rw-r--r--debian/control31
-rw-r--r--debian/copyright28
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/source/format1
5 files changed, 69 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..62fc460
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+dag-scrubber (0.5-1) unstable; urgency=low
+
+ * Initial upload to sid (Closes: #FIXME).
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 21 Nov 2024 18:36:13 +0100
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..79df6f4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,31 @@
+Source: dag-scrubber
+Section: utils
+Priority: optional
+Maintainer: Daniel Baumann <daniel@debian.org>
+Build-Depends:
+ debhelper-compat (= 13),
+ libcryptopant-dev,
+ libpcap-dev,
+ libssl-dev,
+Rules-Requires-Root: no
+Standards-Version: 4.7.0
+Homepage: https://ant.isi.edu/software/dag_scrubber/
+
+Package: dag-scrubber
+Section: utils
+Architecture: any
+Depends:
+ ${misc:Depends},
+ ${shlibs:Depends},
+Description: IP address anonymization (pcap and ERF format)
+ DAG scrubber is a tool for anonymizing network packet traces by scrubbing
+ packets of user data and optionally doing IP address anonymization.
+ .
+ It supports both pcap and ERF format and the following kinds of scrubbing:
+ .
+ * remove payloads, leaving only network and transport headers
+ * anonymize all or part of IP addresses (v4 and v6) using cryptopan
+ (prefix-preserving)
+ * anonymize VLAN tags and MAC addresses
+ .
+ All are optional.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..3622adc
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,28 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: dag_scrubber
+Upstream-Contact: Yuri Pradkin <yuri@isi.edu>
+Source: https://ant.isi.edu/software/dag_scrubber/
+
+Files: *
+Copyright: 2004-2024 University of Southern California <ant@isi.edu>
+License: GPL-2
+
+Files: debian/*
+Copyright: 2024 Daniel Baumann <daniel@debian.org>
+License: GPL-2
+
+License: GPL-2
+ 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 2 of the License.
+ .
+ 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-2 file.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..000210b
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh ${@}
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)