summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2018-12-24 05:25:31 -0500
committerReinhard Tartler <siretart@tauware.de>2018-12-24 07:38:37 -0500
commitbb38eca6a0a6e3271b606a3cbe192914a8326e8c (patch)
treef9dc434a4fd086bb5614e56f4428b131a96f57e0 /debian
parent5e4789b9a21cab3315801e1750670e10a1c86a2a (diff)
initial packaging
Diffstat (limited to 'debian')
-rw-r--r--debian/README.Debian6
-rw-r--r--debian/README.source10
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control19
-rw-r--r--debian/copyright38
-rwxr-xr-xdebian/rules8
-rw-r--r--debian/slirp4netns.docs1
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch4
10 files changed, 93 insertions, 0 deletions
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..39b561b
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,6 @@
+slirp4netns for Debian
+---------------------
+
+<possible notes regarding this package - if none, delete this file>
+
+ -- Reinhard Tartler <siretart@tauware.de> Sun, 23 Dec 2018 12:53:15 -0500
diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..5e95f1b
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,10 @@
+slirp4netns for Debian
+---------------------
+
+<this file describes information about the source package, see Debian policy
+manual section 4.14. You WILL either need to modify or delete this file>
+
+
+
+ -- Reinhard Tartler <siretart@tauware.de> Sun, 23 Dec 2018 12:53:15 -0500
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..458aaa5
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+slirp4netns (0.1~git20181119.5e4789b-1) unstable; urgency=medium
+
+ * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
+
+ -- Reinhard Tartler <siretart@tauware.de> Sun, 23 Dec 2018 12:53:15 -0500
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..2f92ea3
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,19 @@
+Source: slirp4netns
+Section: unknown
+Priority: misc
+Maintainer: Reinhard Tartler <siretart@tauware.de>
+Build-Depends: debhelper (>= 9), autotools-dev, dh-autoreconf, automake, autoconf
+Standards-Version: 3.9.8
+Homepage: https://github.com/rootless-containers/slirp4netns
+Vcs-Git: https://salsa.debian.org/collab-maint/slirp4netns.git
+
+Package: slirp4netns
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: User-mode networking for unprivileged network namespaces
+ slirp4netns provides user-mode networking for unprivileged network
+ namespaces.
+ .
+ slirp4netns allows connecting a network namespace to the Internet in a
+ completely unprivileged way, by connecting a TAP device in a network
+ namespace to the usermode TCP/IP stack ("slirp").
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..64751ef
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: slirp4netns
+Source: <url://example.com>
+
+Files: *
+Copyright: <years> <put author's name and email here>
+ <years> <likewise for another author>
+License: <special license>
+ <Put the license of the package here indented by 1 space>
+ <This follows the format of Description: lines in control file>
+ .
+ <Including paragraphs>
+
+# If you want to use GPL v2 or later for the /debian/* files use
+# the following clauses, or change it to suit. Delete these two lines
+Files: debian/*
+Copyright: 2018 Reinhard Tartler <siretart@tauware.de>
+License: GPL-2+
+ This package 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, or
+ (at your option) any later version.
+ .
+ This package 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/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.
+# Please avoid picking licenses with terms that are more restrictive than the
+# packaged work, as it may make Debian's contributions unacceptable upstream.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..13fe50e
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --with autoreconf
+
+override_dh_auto_test:
+ if unshare -r /bin/true 2>/dev/null; then dh_auto_test; else \
+ echo "WARNING: Skipping test suite, user namespaces not available"; fi
diff --git a/debian/slirp4netns.docs b/debian/slirp4netns.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/slirp4netns.docs
@@ -0,0 +1 @@
+README.md
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..3ad81a7
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=4
+opts="mode=git, pgpmode=none, pretty=0.1~git%cd.%h" \
+ https://github.com/rootless-containers/slirp4netns \
+ HEAD debian uupdate