From fa281291f8b0bd828861436f3e1207ddcd0995ce Mon Sep 17 00:00:00 2001 From: Bruce Leidl Date: Wed, 20 Jan 2016 21:33:02 +0000 Subject: [PATCH] Initial packaging --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 25 ++++++++++++++++++++++ debian/copyright | 37 +++++++++++++++++++++++++++++++++ debian/fw-daemon-gnome.install | 1 + debian/fw-daemon-gnome.postinst | 19 +++++++++++++++++ debian/fw-daemon-gnome.prerm | 11 ++++++++++ debian/fw-daemon.install | 2 ++ debian/fw-daemon.postinst | 18 ++++++++++++++++ debian/fw-daemon.postrm | 11 ++++++++++ debian/fw-daemon.service | 8 +++++++ debian/gbp.conf | 11 ++++++++++ debian/rules | 15 +++++++++++++ debian/source/format | 1 + 14 files changed, 165 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/fw-daemon-gnome.install create mode 100644 debian/fw-daemon-gnome.postinst create mode 100644 debian/fw-daemon-gnome.prerm create mode 100644 debian/fw-daemon.install create mode 100644 debian/fw-daemon.postinst create mode 100644 debian/fw-daemon.postrm create mode 100644 debian/fw-daemon.service create mode 100644 debian/gbp.conf create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..11aad3d --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +fw-daemon (0.0.1-1) unstable; urgency=medium + + * Initial release + + -- Bruce Leidl Sat, 16 Jan 2016 23:54:55 +0000 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..3589368 --- /dev/null +++ b/debian/control @@ -0,0 +1,25 @@ +Source: fw-daemon +Section: devel +Priority: extra +Maintainer: Bruce Leidl +Build-Depends: debhelper (>= 9), + dh-golang, + dh-systemd, + golang-go +Standards-Version: 3.9.6 +Homepage: https://github.com/subgraph/fw-daemon +Vcs-Git: https://github.com/subgraph/fw-daemon.git +XS-Go-Import-Path: github.com/subgraph/fw-daemon + +Package: fw-daemon +Architecture: any +Built-Using: ${misc:Built-Using} +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: Subgraph Application Firewall + Subgraph Firewall A desktop application firewall for Subgraph OS. + +Package: fw-daemon-gnome +Depends: gnome-shell, fw-daemon (= ${binary:Version}) +Architecture: all +Description: Subgraph Application Firewall Gnome Shell Extension diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..bccb32a --- /dev/null +++ b/debian/copyright @@ -0,0 +1,37 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: fw-daemon +Source: https://github.com/subgraph/fw-daemon + +Files: * +Copyright: 2015 Subgraph +License: BSD-3-Clause + +Files: debian/* +Copyright: 2016 Subgraph +License: BSD-3-Clause +Comment: Debian packaging is licensed under the same terms as upstream + +License: BSD-3-Clause + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the University nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE HOLDERS OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/debian/fw-daemon-gnome.install b/debian/fw-daemon-gnome.install new file mode 100644 index 0000000..dac8dab --- /dev/null +++ b/debian/fw-daemon-gnome.install @@ -0,0 +1 @@ +gnome-shell/firewall@subgraph.com usr/share/gnome-shell/extensions diff --git a/debian/fw-daemon-gnome.postinst b/debian/fw-daemon-gnome.postinst new file mode 100644 index 0000000..10769b0 --- /dev/null +++ b/debian/fw-daemon-gnome.postinst @@ -0,0 +1,19 @@ +#!/bin/sh + +set -e + +case $1 in + configure) + pkill -HUP gnome-shell + gnome-shell-extension-tool --enable-extension=firewall@subgraph.com + ;; + abort-upgrade|abort-remove|abort-deconfigure) + ;; + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + diff --git a/debian/fw-daemon-gnome.prerm b/debian/fw-daemon-gnome.prerm new file mode 100644 index 0000000..358ffeb --- /dev/null +++ b/debian/fw-daemon-gnome.prerm @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +if [ "$1" = "remove" ]; then + gnome-shell-extension-tool --disable-extension=firewall@subgraph.com +fi + +#DEBHELPER# + + diff --git a/debian/fw-daemon.install b/debian/fw-daemon.install new file mode 100644 index 0000000..0e19ea0 --- /dev/null +++ b/debian/fw-daemon.install @@ -0,0 +1,2 @@ +usr/bin/fw-daemon usr/sbin +sources/etc/dbus-1/system.d/com.subgraph.Firewall.conf etc/dbus-1/system.d/ diff --git a/debian/fw-daemon.postinst b/debian/fw-daemon.postinst new file mode 100644 index 0000000..f7fa773 --- /dev/null +++ b/debian/fw-daemon.postinst @@ -0,0 +1,18 @@ +#!/bin/sh + +set -e + +case $1 in + configure) + systemctl reload dbus.service + ;; + abort-upgrade|abort-remove|abort-deconfigure) + ;; + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + diff --git a/debian/fw-daemon.postrm b/debian/fw-daemon.postrm new file mode 100644 index 0000000..2dd4a06 --- /dev/null +++ b/debian/fw-daemon.postrm @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +if [ "$1" = "remove" ]; then + systemctl reload dbus.service +fi + +#DEBHELPER# + + diff --git a/debian/fw-daemon.service b/debian/fw-daemon.service new file mode 100644 index 0000000..8f8dc39 --- /dev/null +++ b/debian/fw-daemon.service @@ -0,0 +1,8 @@ +[Unit] +Description=Subgraph Firewall Daemon + +[Service] +ExecStart=/usr/sbin/fw-daemon + +[Install] +WantedBy=multi-user.target diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..34586af --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,11 @@ +[DEFAULT] +pristine-tar = True +debian-branch = debian + +[buildpackage] +upstream-tag = v%(version)s +pristine-tar-commit = True +export-dir = ../build-area +tarball-dir = ../tarballs + + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..53e3ad1 --- /dev/null +++ b/debian/rules @@ -0,0 +1,15 @@ +#!/usr/bin/make -f + +#export DH_VERBOSE=1 + +export DH_OPTIONS + +export DH_GOPKG := github.com/subgraph/fw-daemon + +%: + dh $@ --buildsystem=golang --with=golang,systemd + +override_dh_auto_install: + dh_auto_install + rm -rf $(CURDIR)/debian/fw-daemon/usr/share/gocode + 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)