From c46d8da153ac658c8bd145376e22b1218db1090a Mon Sep 17 00:00:00 2001 From: kali Date: Sun, 22 Jul 2012 21:10:15 -0700 Subject: initial import --- debian/README.Debian | 6 ++ debian/README.source | 9 ++ debian/changelog | 5 + debian/compat | 1 + debian/control | 19 ++++ debian/copyright | 38 +++++++ debian/docs | 2 + debian/files | 1 + debian/init.d.ex | 154 +++++++++++++++++++++++++++ debian/menu.ex | 2 + debian/patches/fix-manpage | 35 ++++++ debian/patches/series | 1 + debian/postinst.ex | 39 +++++++ debian/postrm.ex | 37 +++++++ debian/preinst.ex | 35 ++++++ debian/prerm.ex | 38 +++++++ debian/python-leap-client.cron.d.ex | 4 + debian/python-leap-client.debhelper.log | 48 +++++++++ debian/python-leap-client.default.ex | 10 ++ debian/python-leap-client.doc-base.EX | 20 ++++ debian/python-leap-client.install | 2 + debian/python-leap-client.postinst.debhelper | 7 ++ debian/python-leap-client.prerm.debhelper | 12 +++ debian/python-leap-client.substvars | 4 + debian/rules | 59 ++++++++++ debian/source/format | 1 + debian/watch.ex | 23 ++++ 27 files changed, 612 insertions(+) create mode 100644 debian/README.Debian create mode 100644 debian/README.source create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100644 debian/files create mode 100644 debian/init.d.ex create mode 100644 debian/menu.ex create mode 100644 debian/patches/fix-manpage create mode 100644 debian/patches/series create mode 100644 debian/postinst.ex create mode 100644 debian/postrm.ex create mode 100644 debian/preinst.ex create mode 100644 debian/prerm.ex create mode 100644 debian/python-leap-client.cron.d.ex create mode 100644 debian/python-leap-client.debhelper.log create mode 100644 debian/python-leap-client.default.ex create mode 100644 debian/python-leap-client.doc-base.EX create mode 100644 debian/python-leap-client.install create mode 100644 debian/python-leap-client.postinst.debhelper create mode 100644 debian/python-leap-client.prerm.debhelper create mode 100644 debian/python-leap-client.substvars create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100644 debian/watch.ex (limited to 'debian') diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 00000000..045d9700 --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,6 @@ +python-leap-client for Debian +----------------------------- + + + + -- unknown Sat, 21 Jul 2012 00:11:05 -0700 diff --git a/debian/README.source b/debian/README.source new file mode 100644 index 00000000..eae9eabd --- /dev/null +++ b/debian/README.source @@ -0,0 +1,9 @@ +python-leap-client for Debian +----------------------------- + + + + + + diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..41dd76f2 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +python-leap-client (0.1.0-1) unstable; urgency=low + + * Initial release (Closes: #nnnn) + + -- unknown Sat, 21 Jul 2012 00:11:05 -0700 diff --git a/debian/compat b/debian/compat new file mode 100644 index 00000000..45a4fb75 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 00000000..d4b38f25 --- /dev/null +++ b/debian/control @@ -0,0 +1,19 @@ +Source: python-leap-client +Section: unknown +Priority: extra +Maintainer: kali +Standards-Version: 3.9.3 +Homepage: http://leap.se +#Vcs-Git: git://git.debian.org/collab-maint/python-leap-client.git +#Vcs-Browser: http://git.debian.org/?p=collab-maint/python-leap-client.git;a=summary +X-Python-Version: >= 2.7 + +Package: python-leap-client +Architecture: any +#XXX ??? +Depends: ${shlibs:Depends}, ${misc:Depends} +Depends: openvpn, python-qt4 +#XXX should deprecate python-support methinks +Build-Depends: debhelper (>= 8.0.0), python-support, pyqt4-dev-tools, python-sphinx +Description: the encrypted interned toolkit + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..a5907f48 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,38 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: python-leap-client +Source: + +Files: * +Copyright: + +License: + + + . + + +# If you want to use GPL v2 or later for the /debian/* files use +# the following clauses, or change it to suit. Delete these two lines +Files: debian/* +Copyright: 2012 unknown +License: GPL-2+ + This package 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 package 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 program. If not, see + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. +# Please avoid to pick license terms that are more restrictive than the +# packaged work, as it may make Debian's contributions unacceptable upstream. diff --git a/debian/docs b/debian/docs new file mode 100644 index 00000000..e953f2c6 --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +CHANGES.txt +README.txt diff --git a/debian/files b/debian/files new file mode 100644 index 00000000..1aed53a8 --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +python-leap-client_0.1.0-1_i386.deb unknown extra diff --git a/debian/init.d.ex b/debian/init.d.ex new file mode 100644 index 00000000..3eec795a --- /dev/null +++ b/debian/init.d.ex @@ -0,0 +1,154 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: python-leap-client +# Required-Start: $network $local_fs +# Required-Stop: +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: +# Description: +# <...> +# <...> +### END INIT INFO + +# Author: unknown + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC=python-leap-client # Introduce a short description here +NAME=python-leap-client # Introduce the short server's name here +DAEMON=/usr/sbin/python-leap-client # Introduce the server's location here +DAEMON_ARGS="" # Arguments to run the daemon with +PIDFILE=/var/run/$NAME.pid +SCRIPTNAME=/etc/init.d/$NAME + +# Exit if the package is not installed +[ -x $DAEMON ] || exit 0 + +# Read configuration variable file if it is present +[ -r /etc/default/$NAME ] && . /etc/default/$NAME + +# Load the VERBOSE setting and other rcS variables +. /lib/init/vars.sh + +# Define LSB log_* functions. +# Depend on lsb-base (>= 3.0-6) to ensure that this file is present. +. /lib/lsb/init-functions + +# +# Function that starts the daemon/service +# +do_start() +{ + # Return + # 0 if daemon has been started + # 1 if daemon was already running + # 2 if daemon could not be started + start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \ + || return 1 + start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \ + $DAEMON_ARGS \ + || return 2 + # Add code here, if necessary, that waits for the process to be ready + # to handle requests from services started subsequently which depend + # on this one. As a last resort, sleep for some time. +} + +# +# Function that stops the daemon/service +# +do_stop() +{ + # Return + # 0 if daemon has been stopped + # 1 if daemon was already stopped + # 2 if daemon could not be stopped + # other if a failure occurred + start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME + RETVAL="$?" + [ "$RETVAL" = 2 ] && return 2 + # Wait for children to finish too if this is a daemon that forks + # and if the daemon is only ever run from this initscript. + # If the above conditions are not satisfied then add some other code + # that waits for the process to drop all resources that could be + # needed by services started subsequently. A last resort is to + # sleep for some time. + start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON + [ "$?" = 2 ] && return 2 + # Many daemons don't delete their pidfiles when they exit. + rm -f $PIDFILE + return "$RETVAL" +} + +# +# Function that sends a SIGHUP to the daemon/service +# +do_reload() { + # + # If the daemon can reload its configuration without + # restarting (for example, when it is sent a SIGHUP), + # then implement that here. + # + start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME + return 0 +} + +case "$1" in + start) + [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC " "$NAME" + do_start + case "$?" in + 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; + 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; + esac + ;; + stop) + [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME" + do_stop + case "$?" in + 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; + 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; + esac + ;; + status) + status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? + ;; + #reload|force-reload) + # + # If do_reload() is not implemented then leave this commented out + # and leave 'force-reload' as an alias for 'restart'. + # + #log_daemon_msg "Reloading $DESC" "$NAME" + #do_reload + #log_end_msg $? + #;; + restart|force-reload) + # + # If the "reload" option is implemented then remove the + # 'force-reload' alias + # + log_daemon_msg "Restarting $DESC" "$NAME" + do_stop + case "$?" in + 0|1) + do_start + case "$?" in + 0) log_end_msg 0 ;; + 1) log_end_msg 1 ;; # Old process is still running + *) log_end_msg 1 ;; # Failed to start + esac + ;; + *) + # Failed to stop + log_end_msg 1 + ;; + esac + ;; + *) + #echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2 + echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2 + exit 3 + ;; +esac + +: diff --git a/debian/menu.ex b/debian/menu.ex new file mode 100644 index 00000000..0ac5a68c --- /dev/null +++ b/debian/menu.ex @@ -0,0 +1,2 @@ +?package(python-leap-client):needs="X11|text|vc|wm" section="Applications/see-menu-manual"\ + title="python-leap-client" command="/usr/bin/python-leap-client" diff --git a/debian/patches/fix-manpage b/debian/patches/fix-manpage new file mode 100644 index 00000000..e279eb11 --- /dev/null +++ b/debian/patches/fix-manpage @@ -0,0 +1,35 @@ +Description: + TODO: Put a short summary on the line above and replace this paragraph + with a longer explanation of this change. Complete the meta-information + with other relevant fields (see below for details). To make it easier, the + information below has been extracted from the changelog. Adjust it or drop + it. + . + python-leap-client (0.1.0-1) unstable; urgency=low + . + * Initial release (Closes: #nnnn) +Author: unknown + +--- +The information above should follow the Patch Tagging Guidelines, please +checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here +are templates for supplementary fields that you might want to add: + +Origin: , +Bug: +Bug-Debian: http://bugs.debian.org/ +Bug-Ubuntu: https://launchpad.net/bugs/ +Forwarded: +Reviewed-By: +Last-Update: + +--- python-leap-client-0.1.0.orig/docs/leap.1 ++++ python-leap-client-0.1.0/docs/leap.1 +@@ -29,6 +29,6 @@ http://leap.se + You can report bugs at the bugtracker site of leap: + http://leap.se/code + .SH AUTHOR +-Kali ++This manpage written by kali for the debian package, but obviously can be used for any other distribution. + .SH SEE ALSO + .BR PolicyKit.conf (7) diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 00000000..15e5320a --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +fix-manpage diff --git a/debian/postinst.ex b/debian/postinst.ex new file mode 100644 index 00000000..888928ca --- /dev/null +++ b/debian/postinst.ex @@ -0,0 +1,39 @@ +#!/bin/sh +# postinst script for python-leap-client +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + configure) + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 diff --git a/debian/postrm.ex b/debian/postrm.ex new file mode 100644 index 00000000..5048c8e2 --- /dev/null +++ b/debian/postrm.ex @@ -0,0 +1,37 @@ +#!/bin/sh +# postrm script for python-leap-client +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 diff --git a/debian/preinst.ex b/debian/preinst.ex new file mode 100644 index 00000000..8aeafcfe --- /dev/null +++ b/debian/preinst.ex @@ -0,0 +1,35 @@ +#!/bin/sh +# preinst script for python-leap-client +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `install' +# * `install' +# * `upgrade' +# * `abort-upgrade' +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + install|upgrade) + ;; + + abort-upgrade) + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 diff --git a/debian/prerm.ex b/debian/prerm.ex new file mode 100644 index 00000000..19cc6ca1 --- /dev/null +++ b/debian/prerm.ex @@ -0,0 +1,38 @@ +#!/bin/sh +# prerm script for python-leap-client +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + remove|upgrade|deconfigure) + ;; + + failed-upgrade) + ;; + + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 diff --git a/debian/python-leap-client.cron.d.ex b/debian/python-leap-client.cron.d.ex new file mode 100644 index 00000000..693a391e --- /dev/null +++ b/debian/python-leap-client.cron.d.ex @@ -0,0 +1,4 @@ +# +# Regular cron jobs for the python-leap-client package +# +0 4 * * * root [ -x /usr/bin/python-leap-client_maintenance ] && /usr/bin/python-leap-client_maintenance diff --git a/debian/python-leap-client.debhelper.log b/debian/python-leap-client.debhelper.log new file mode 100644 index 00000000..c9704cfa --- /dev/null +++ b/debian/python-leap-client.debhelper.log @@ -0,0 +1,48 @@ +dh_auto_configure +dh_auto_build +dh_auto_test +dh_prep +dh_installdirs +dh_auto_install +dh_install +dh_installdocs +override_dh_installchangelogs dh_installchangelogs +dh_installchangelogs +dh_installexamples +dh_installman +dh_installcatalogs +dh_installcron +dh_installdebconf +dh_installemacsen +dh_installifupdown +dh_installinfo +dh_installinit +dh_installmenu +dh_installmime +dh_installmodules +dh_installlogcheck +dh_installlogrotate +dh_installpam +dh_installppp +dh_installudev +dh_installwm +dh_installxfonts +dh_installgsettings +dh_bugfiles +dh_ucf +dh_lintian +dh_gconf +dh_icons +dh_perl +dh_usrlocal +dh_link +dh_compress +dh_fixperms +dh_strip +dh_makeshlibs +dh_shlibdeps +dh_installdeb +dh_gencontrol +dh_md5sums +dh_builddeb +dh_builddeb diff --git a/debian/python-leap-client.default.ex b/debian/python-leap-client.default.ex new file mode 100644 index 00000000..131c9f87 --- /dev/null +++ b/debian/python-leap-client.default.ex @@ -0,0 +1,10 @@ +# Defaults for python-leap-client initscript +# sourced by /etc/init.d/python-leap-client +# installed at /etc/default/python-leap-client by the maintainer scripts + +# +# This is a POSIX shell fragment +# + +# Additional options that are passed to the Daemon. +DAEMON_OPTS="" diff --git a/debian/python-leap-client.doc-base.EX b/debian/python-leap-client.doc-base.EX new file mode 100644 index 00000000..e70c2917 --- /dev/null +++ b/debian/python-leap-client.doc-base.EX @@ -0,0 +1,20 @@ +Document: python-leap-client +Title: Debian python-leap-client Manual +Author: +Abstract: This manual describes what python-leap-client is + and how it can be used to + manage online manuals on Debian systems. +Section: unknown + +Format: debiandoc-sgml +Files: /usr/share/doc/python-leap-client/python-leap-client.sgml.gz + +Format: postscript +Files: /usr/share/doc/python-leap-client/python-leap-client.ps.gz + +Format: text +Files: /usr/share/doc/python-leap-client/python-leap-client.text.gz + +Format: HTML +Index: /usr/share/doc/python-leap-client/html/index.html +Files: /usr/share/doc/python-leap-client/html/*.html diff --git a/debian/python-leap-client.install b/debian/python-leap-client.install new file mode 100644 index 00000000..11edacf0 --- /dev/null +++ b/debian/python-leap-client.install @@ -0,0 +1,2 @@ +#usr/share/polkit-1/actions/net.openvpn.gui.leap +polkit/net.openvpn.gui.leap.policy usr/share/polkit-1/actions/ diff --git a/debian/python-leap-client.postinst.debhelper b/debian/python-leap-client.postinst.debhelper new file mode 100644 index 00000000..8b32391c --- /dev/null +++ b/debian/python-leap-client.postinst.debhelper @@ -0,0 +1,7 @@ + +# Automatically added by dh_python2: +if which pycompile >/dev/null 2>&1; then + pycompile -p python-leap-client +fi + +# End automatically added section diff --git a/debian/python-leap-client.prerm.debhelper b/debian/python-leap-client.prerm.debhelper new file mode 100644 index 00000000..5ebc7ff1 --- /dev/null +++ b/debian/python-leap-client.prerm.debhelper @@ -0,0 +1,12 @@ + +# Automatically added by dh_python2: +if which pyclean >/dev/null 2>&1; then + pyclean -p python-leap-client +else + dpkg -L python-leap-client | grep \.py$ | while read file + do + rm -f "${file}"[co] >/dev/null + done +fi + +# End automatically added section diff --git a/debian/python-leap-client.substvars b/debian/python-leap-client.substvars new file mode 100644 index 00000000..80ba5c85 --- /dev/null +++ b/debian/python-leap-client.substvars @@ -0,0 +1,4 @@ +python:Versions=2.7 +python:Provides=python2.7-leap-client +python:Depends=python (>= 2.7), python (<< 2.8), python (>= 2.6.6-7~), python +misc:Depends= diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..ec47a76b --- /dev/null +++ b/debian/rules @@ -0,0 +1,59 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. +# +# + +# needed??? +# DEB_PYTHON_SYSTEM=pysupport + +# Uncomment this to turn on verbose mode. +#DH_VERBOSE=1 + +PYTHON2=$(shell pyversions -vr) + +%: + dh $@ --with python2 + #,sphinxdoc + +ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) + +# run tests! +# +test-python%: + python$* setup.py test -vv + +override_dh_auto_test: $(PYTHON2:%=test-python%) $(PYTHON3:%=test-python%) +endif + +#dh_auto_build should be enough to build the python2 version + +#build-python%: +# python$* setup.py build + +#override_dh_auto_build: $(PYTHON3:%=build-python%) +# dh_auto_build + +#install-python%: +# python$* setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb + +#override_dh_auto_install: $(PYTHON3:%=install-python%) +# dh_auto_install + +override_dh_installchangelogs: + dh_installchangelogs -k CHANGES.txt + +# build and install sphinx docs +# +#override_dh_installdocs: +# python setup.py build_sphinx +# dh_installdocs build/sphinx/html + +override_dh_auto_clean: + dh_auto_clean + rm -rf build + rm -rf *.egg-info diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 00000000..163aaf8d --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch.ex b/debian/watch.ex new file mode 100644 index 00000000..791fbd7d --- /dev/null +++ b/debian/watch.ex @@ -0,0 +1,23 @@ +# Example watch control file for uscan +# Rename this file to "watch" and then you can run the "uscan" command +# to check for upstream updates and more. +# See uscan(1) for format + +# Compulsory line, this is a version 3 file +version=3 + +# Uncomment to examine a Webpage +# +#http://www.example.com/downloads.php python-leap-client-(.*)\.tar\.gz + +# Uncomment to examine a Webserver directory +#http://www.example.com/pub/python-leap-client-(.*)\.tar\.gz + +# Uncommment to examine a FTP server +#ftp://ftp.example.com/pub/python-leap-client-(.*)\.tar\.gz debian uupdate + +# Uncomment to find new files on sourceforge, for devscripts >= 2.9 +# http://sf.net/python-leap-client/python-leap-client-(.*)\.tar\.gz + +# Uncomment to find new files on GooglePages +# http://example.googlepages.com/foo.html python-leap-client-(.*)\.tar\.gz -- cgit v1.2.3