summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Retout <tim@retout.co.uk>2014-04-21 21:34:37 +0100
committerTim Retout <tim@retout.co.uk>2014-04-21 21:34:53 +0100
commit8fbd3ac302097cb1e1505b021730f09888d7d4f2 (patch)
tree6ce4cb75c30fee6916a8c554bf0938da1eb53059
parent211d209cfb4fb463a15dcd74003ee67c7b6ecf26 (diff)
Add Debian packaging for version 0.1.1-1
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control21
-rw-r--r--debian/copyright35
-rwxr-xr-xdebian/rules6
-rw-r--r--debian/source/format1
6 files changed, 69 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..8b6f9b0
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+apt-transport-tor (0.1.1-1) unstable; urgency=medium
+
+ * Initial release. (Closes: #745259)
+
+ -- Tim Retout <diocles@debian.org> Mon, 21 Apr 2014 20:20:00 +0100
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..eb191cc
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,21 @@
+Source: apt-transport-tor
+Section: admin
+Priority: optional
+Maintainer: Tim Retout <diocles@debian.org>
+Build-Depends: debhelper (>= 9), dh-autoreconf, libapt-pkg-dev, libcurl4-gnutls-dev
+Standards-Version: 3.9.5.0
+Homepage: https://github.com/diocles/apt-transport-tor
+
+Package: apt-transport-tor
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, tor
+Description: APT transport for anonymous package downloads via Tor
+ Provides support in APT for downloading packages anonymously via the Tor
+ network.
+ .
+ APT already includes mechanisms for guaranteeing the authenticity of the
+ packages you download. However, an adversary sniffing your network traffic
+ can still see what software you are installing.
+ .
+ Install apt-transport-tor, edit your sources.list to include only tor://
+ URLs, and you can "apt-get install anarchism" without fear of reprisals.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..a6de25f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,35 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: apt-transport-tor
+Source: https://github.com/diocles/apt-transport-tor/releases
+
+Files: *
+Copyright: Copyright 2014 Tim Retout <diocles@debian.org>,
+ 1997, 1998, 1999 Jason Gunthorpe and others.
+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, 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 package; if not, write to the Free
+ Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ Boston, MA 02110-1301 USA
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.
+
+Files: debian/*
+Copyright: Copyright 2014 Tim Retout <diocles@debian.org>
+License: GPL-2+
+ The Debian packaging is licensed under the same terms as
+ apt-transport-tor itself; either release 0.1, or any later
+ release you may have available.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..63844c9
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+%:
+ dh $@ --with autoreconf
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)