summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog22
-rw-r--r--debian/compat1
-rw-r--r--debian/control28
-rw-r--r--debian/copyright35
-rwxr-xr-xdebian/rules6
-rw-r--r--debian/source/format1
6 files changed, 93 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..4271ae5
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,22 @@
+apt-transport-tor (0.2.1-1) unstable; urgency=medium
+
+ * New version 0.2.1
+ + Hardcodes User-Agent string, so all apt-transport-tor users
+ will look the same, regardless of the software version.
+ + You can now write "tor+http://" instead of "tor://".
+ + HTTPS is now also supported, with "tor+https://" URLs.
+
+ -- Tim Retout <diocles@debian.org> Sun, 20 Jul 2014 14:06:59 +0100
+
+apt-transport-tor (0.1.1-2) unstable; urgency=medium
+
+ * debian/control: Update description to give less of a false sense
+ of security. (Closes: #746773)
+
+ -- Tim Retout <diocles@debian.org> Sun, 15 Jun 2014 17:29:51 +0100
+
+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..4ac2252
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,28 @@
+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 make it very difficult for anyone intercepting your
+ network traffic to be able to tell that you are installing Debian packages,
+ or which packages you are installing.
+ .
+ Please note that this approach is only as secure as Tor itself - this
+ software cannot protect you from an attacker who has access to your local
+ machine. In addition, attackers may be able to correlate your network
+ traffic with the packets coming out of an exit node, so do be careful.
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)