chiark / gitweb /
Import release 0.1.18 v0.1.18
authorStephen Early <steve@greenend.org.uk>
Tue, 18 Mar 2008 18:21:25 +0000 (18:21 +0000)
committerStephen Early <steve@greenend.org.uk>
Wed, 18 May 2011 18:14:46 +0000 (19:14 +0100)
Makefile.in
NEWS
debian/changelog
debian/compat [new file with mode: 0644]
debian/conffiles [deleted file]
debian/control
debian/default [new file with mode: 0644]
debian/init
debian/rules

index 43df9ebe433c2fdfc07fde0ef7cfaf474bbca697..0158a7c244eca6e02c02320ba257eb41eb79535a 100644 (file)
@@ -18,7 +18,7 @@
 .PHONY:        all clean realclean distclean dist install
 
 PACKAGE:=secnet
-VERSION:=0.1.17
+VERSION:=0.1.18
 
 @SET_MAKE@
 
@@ -74,8 +74,8 @@ DISTFILES:=BUGS COPYING CREDITS INSTALL LICENSE.txt Makefile.in \
        sha1.c site.c slip.c stamp-h.in transform.c tun.c udp.c \
        unaligned.h util.c util.h \
        hackypar.c hackypar.h
-DISTSUBDIRS:=debian/conffiles debian/copyright debian/changelog \
-       debian/control debian/init debian/rules
+DISTSUBDIRS:=debian/copyright debian/changelog debian/control \
+       debian/init debian/rules debian/compat debian/default
 
 %.c:   %.y
 
diff --git a/NEWS b/NEWS
index 9f400049ec0562556798eecd905e3c439d12cb6e..8094c3e79c448870a606cd3aca1224a4fd58b9bc 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -9,6 +9,11 @@ upgrade to version 0.2.0 should just involve installing the package;
 an appropriate 0.2-style configuration file will be generated
 automatically.
 
+* New in version 0.1.18
+
+ipaddr.py now declares its character encoding; required by recent
+versions of Python
+
 * New in version 0.1.17
 
 autoconf updates for cross-compilation / more modern autoconf from
index 975d829b812a91922f620758b983d2d89879322d..d57ca03d4598472732e6c10eee251a2d338e1f72 100644 (file)
@@ -1,5 +1,5 @@
-secnet (0.1.17-1) unstable; urgency=low
+secnet (0.1.18-1) unstable; urgency=low
 
   * New upstream version.
 
- -- Stephen Early <steve@greenend.org.uk>  Sun,  13 Jul 2005 01:00:00 +0100
+ -- Stephen Early <steve@greenend.org.uk>  Tue,  18 Mar 2008 17:45:00 +0000
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/debian/conffiles b/debian/conffiles
deleted file mode 100644 (file)
index 941529d..0000000
+++ /dev/null
@@ -1 +0,0 @@
-/etc/init.d/secnet
index 3d88ed14841950ef2de74414f8bb7fe1d3b515ea..8893cdc19d346b32760491ffc7312ed4bf0ebd91 100644 (file)
@@ -6,7 +6,7 @@ Standards-Version: 3.0.1
 
 Package: secnet
 Architecture: any
-Depends: ${shlibs:Depends}
+Depends: ${shlibs:Depends} ${misc:Depends}
 Recommends: python
 Description: VPN software for distributed networks
  secnet allows multiple private networks, each 'hidden' behind a single
diff --git a/debian/default b/debian/default
new file mode 100644 (file)
index 0000000..63f2c5b
--- /dev/null
@@ -0,0 +1 @@
+RUN_SECNET=no
index 75c21af60c4760be3690e05503b80692bd0875fc..18c273ab3e3345cbeb454fdab8e9150dfd78867f 100644 (file)
@@ -20,8 +20,9 @@ DESC="VPN server"
 
 test -f $DAEMON || exit 0
 test -f /etc/secnet/secnet.conf || exit 0
+test -f /etc/default/secnet && . /etc/default/secnet
 
-set -e
+[ "X$RUN_SECNET" = "Xyes" ] || exit 0
 
 case "$1" in
   start)
index 75606ee4d1d4993da1fae47a3c41bbeb354036f5..3bf636ba9093ccfc1a2cebf6626562f62008bafe 100755 (executable)
@@ -6,9 +6,6 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-# This is the debhelper compatibility version to use.
-export DH_COMPAT=2
-
 build: build-stamp
 build-stamp:
        dh_testdir