Import Debian changes 1.0.9-1
tinc (1.0.9-1) unstable; urgency=low
* New upstream release.
- Binds IPv6 sockets only to IPv6. Closes: #440150
* Update copyright file. Closes: #482566
This commit is contained in:
commit
4812d2eb3d
53 changed files with 6947 additions and 1219 deletions
8
debian/changelog
vendored
8
debian/changelog
vendored
|
|
@ -1,3 +1,11 @@
|
|||
tinc (1.0.9-1) unstable; urgency=low
|
||||
|
||||
* New upstream release.
|
||||
- Binds IPv6 sockets only to IPv6. Closes: #440150
|
||||
* Update copyright file. Closes: #482566
|
||||
|
||||
-- Guus Sliepen <guus@debian.org> Fri, 26 Dec 2008 13:25:05 +0100
|
||||
|
||||
tinc (1.0.8-2) unstable; urgency=low
|
||||
|
||||
* Include Portugese debconf translation. Closes: #434191
|
||||
|
|
|
|||
7
debian/control
vendored
7
debian/control
vendored
|
|
@ -2,16 +2,15 @@ Source: tinc
|
|||
Section: net
|
||||
Priority: optional
|
||||
Maintainer: Guus Sliepen <guus@debian.org>
|
||||
Standards-Version: 3.7.2
|
||||
Standards-Version: 3.8.0
|
||||
Build-Depends: libssl-dev, debhelper (>= 4.1.16), gettext, texi2html, texinfo, zlib1g-dev, cdbs, liblzo2-dev
|
||||
Homepage: http://www.tinc-vpn.org/
|
||||
|
||||
Package: tinc
|
||||
Architecture: any
|
||||
Depends: debconf | debconf-2.0, ${shlibs:Depends}
|
||||
Depends: debconf | debconf-2.0, ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: Virtual Private Network daemon
|
||||
tinc is a daemon with which you can create a virtual private network
|
||||
(VPN). One daemon can handle multiple connections, so you can
|
||||
create an entire (moderately sized) VPN with only one daemon per
|
||||
participating computer.
|
||||
.
|
||||
Homepage: http://www.tinc-vpn.org/
|
||||
|
|
|
|||
12
debian/copyright
vendored
12
debian/copyright
vendored
|
|
@ -7,12 +7,16 @@ Upstream Authors:
|
|||
Guus Sliepen <guus@tinc-vpn.org>
|
||||
Ivo Timmermans <ivo@tinc-vpn.org>
|
||||
|
||||
Copyright: GPL version 2. On Debian GNU/Linux systems, the complete
|
||||
text of the GNU General Public License can be found in
|
||||
/usr/share/common-licenses/GPL.
|
||||
Copyright (C) 1998-2005 Ivo Timmermans
|
||||
1998-2008 Guus Sliepen <guus@tinc-vpn.org>
|
||||
|
||||
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.
|
||||
|
||||
The following is the text from /usr/share/doc/tinc/COPYING.README:
|
||||
On Debian GNU/Linux systems, the complete text of the GNU General Public
|
||||
License version 2 can be found in /usr/share/common-licenses/GPL-2.
|
||||
|
||||
The following applies to tinc:
|
||||
|
||||
|
|
|
|||
2
debian/doc-base.tinc
vendored
2
debian/doc-base.tinc
vendored
|
|
@ -3,7 +3,7 @@ Title: tinc Manual
|
|||
Author: Ivo Timmermans, Guus Sliepen
|
||||
Abstract: This manual describes how to set up a Virtual Private
|
||||
Network with tinc.
|
||||
Section: net
|
||||
Section: System/Security
|
||||
|
||||
Format: HTML
|
||||
Files: /usr/share/doc/tinc/tinc*.html
|
||||
|
|
|
|||
2
debian/prerm
vendored
2
debian/prerm
vendored
|
|
@ -1,5 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
# Automatically added by dh_installinit, edited for use with debconf
|
||||
if [ -x "/etc/init.d/tinc" ]; then
|
||||
if [ -e /usr/share/debconf/confmodule ] ; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue