mirror of https://github.com/subgraph/fw-daemon
parent
caaa32a052
commit
fa281291f8
@ -0,0 +1,5 @@
|
|||||||
|
fw-daemon (0.0.1-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Initial release
|
||||||
|
|
||||||
|
-- Bruce Leidl <bruce@subgraph.com> Sat, 16 Jan 2016 23:54:55 +0000
|
@ -0,0 +1 @@
|
|||||||
|
9
|
@ -0,0 +1,25 @@
|
|||||||
|
Source: fw-daemon
|
||||||
|
Section: devel
|
||||||
|
Priority: extra
|
||||||
|
Maintainer: Bruce Leidl <bruce@subgraph.com>
|
||||||
|
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
|
@ -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.
|
@ -0,0 +1 @@
|
|||||||
|
gnome-shell/firewall@subgraph.com usr/share/gnome-shell/extensions
|
@ -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#
|
||||||
|
|
@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ "$1" = "remove" ]; then
|
||||||
|
gnome-shell-extension-tool --disable-extension=firewall@subgraph.com
|
||||||
|
fi
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
|
||||||
|
|
@ -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/
|
@ -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#
|
||||||
|
|
@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ "$1" = "remove" ]; then
|
||||||
|
systemctl reload dbus.service
|
||||||
|
fi
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
|
||||||
|
|
@ -0,0 +1,8 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Subgraph Firewall Daemon
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
ExecStart=/usr/sbin/fw-daemon
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
@ -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
|
||||||
|
|
||||||
|
|
@ -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
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
3.0 (quilt)
|
Loading…
Reference in new issue