Import Debian changes 1.1~pre3-1
tinc (1.1~pre3-1) experimental; urgency=low * New upstream release. * Bump Standards-Version. * Enable parallel builds. * Bump debian/compat to 9, so tinc gets build with hardening flags. * Move tinc-gui to its own package.
This commit is contained in:
commit
cfba637f96
143 changed files with 13983 additions and 4872 deletions
2
debian/NEWS
vendored
2
debian/NEWS
vendored
|
|
@ -1,6 +1,6 @@
|
|||
tinc (1.1~pre2-1) experimental; urgency=low
|
||||
|
||||
* tinc-1.1 has separate control utility, tincctl, which is now used
|
||||
tinc-1.1 has separate control utility, tincctl, which is now used
|
||||
to start/stop tinc instances, to reload configuration, to get
|
||||
various information about running tincd (including dump of nodes
|
||||
and connections) and so on. tincd still reacts to some signals
|
||||
|
|
|
|||
10
debian/changelog
vendored
10
debian/changelog
vendored
|
|
@ -1,3 +1,13 @@
|
|||
tinc (1.1~pre3-1) experimental; urgency=low
|
||||
|
||||
* New upstream release.
|
||||
* Bump Standards-Version.
|
||||
* Enable parallel builds.
|
||||
* Bump debian/compat to 9, so tinc gets build with hardening flags.
|
||||
* Move tinc-gui to its own package.
|
||||
|
||||
-- Guus Sliepen <guus@debian.org> Sun, 14 Oct 2012 23:51:21 +0200
|
||||
|
||||
tinc (1.1~pre2-2) experimental; urgency=low
|
||||
|
||||
* add forgotten build-depend on libncurses5-dev for new `tincctl top'
|
||||
|
|
|
|||
2
debian/compat
vendored
2
debian/compat
vendored
|
|
@ -1 +1 @@
|
|||
7
|
||||
9
|
||||
|
|
|
|||
16
debian/control
vendored
16
debian/control
vendored
|
|
@ -2,8 +2,8 @@ Source: tinc
|
|||
Section: net
|
||||
Priority: optional
|
||||
Maintainer: Guus Sliepen <guus@debian.org>
|
||||
Standards-Version: 3.9.2
|
||||
Build-Depends: libssl-dev (>>1.0.0), debhelper (>= 7.0.50~), texi2html, texinfo, zlib1g-dev, liblzo2-dev, libncurses5-dev, libevent-dev
|
||||
Standards-Version: 3.9.3
|
||||
Build-Depends: libssl-dev (>>1.0.0), debhelper (>= 9), texi2html, texinfo, zlib1g-dev, liblzo2-dev, libncurses5-dev, libevent-dev, libreadline-dev
|
||||
Homepage: http://www.tinc-vpn.org/
|
||||
|
||||
Package: tinc
|
||||
|
|
@ -14,3 +14,15 @@ Description: Virtual Private Network daemon
|
|||
(VPN). One daemon can handle multiple connections, so you can
|
||||
create an entire (moderately sized) VPN with only one daemon per
|
||||
participating computer.
|
||||
|
||||
Package: tinc-gui
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}, python, python-wxgtk2.8, tinc (>= 1.1~pre3-1)
|
||||
Description: graphical user interface for tinc
|
||||
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.
|
||||
.
|
||||
This package contains a GUI that can interact with a running tinc daemon,
|
||||
showing the known nodes, edges and subnets of a VPN.
|
||||
|
|
|
|||
7
debian/rules
vendored
7
debian/rules
vendored
|
|
@ -9,8 +9,13 @@
|
|||
# Uncomment this to turn on verbose mode.
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
#include /usr/share/dpkg/buildflags.mk
|
||||
|
||||
%:
|
||||
dh $@
|
||||
dh $@ --parallel
|
||||
|
||||
override_dh_auto_configure:
|
||||
dh_auto_configure -- --disable-uml --disable-vde
|
||||
|
||||
override_dh_auto_build:
|
||||
dh_auto_build
|
||||
|
|
|
|||
2
debian/tinc-gui.install
vendored
Normal file
2
debian/tinc-gui.install
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
usr/bin/tinc-gui
|
||||
usr/share/man/man8/tinc-gui.*
|
||||
6
debian/tinc.install
vendored
Normal file
6
debian/tinc.install
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
usr/sbin/tincd
|
||||
usr/sbin/tincctl
|
||||
usr/share/man/man5
|
||||
usr/share/man/man8/tincd.*
|
||||
usr/share/man/man8/tincctl.*
|
||||
usr/share/info
|
||||
Loading…
Add table
Add a link
Reference in a new issue