← Back to team overview

elementary-dev-community team mailing list archive

[Merge] lp:~elementary-dev-community/capnet-assist/deb-packaging into lp:capnet-assist

 

Cameron Norman has proposed merging lp:~elementary-dev-community/capnet-assist/deb-packaging into lp:capnet-assist.

Requested reviews:
  elementary Apps team (elementary-apps)

For more details, see:
https://code.launchpad.net/~elementary-dev-community/capnet-assist/deb-packaging/+merge/261323

These are basically the changes that the MATE dev made, except I made the package non-native instead of native (https://www.debian.org/doc/manuals/maint-guide/first.en.html#non-native-dh-make).
-- 
Your team elementary Developer Community is subscribed to branch lp:~elementary-dev-community/capnet-assist/deb-packaging.
=== added directory 'debian'
=== added file 'debian/changelog'
--- debian/changelog	1970-01-01 00:00:00 +0000
+++ debian/changelog	2015-06-07 02:32:42 +0000
@@ -0,0 +1,5 @@
+capnet-assist (0.1-1) trusty; urgency=low
+
+  * Initial release
+
+ -- Cody Garver <cody@xxxxxxxxxxxxxxxx>  Mon, 06 Apr 2015 19:47:02 -0500

=== added file 'debian/compat'
--- debian/compat	1970-01-01 00:00:00 +0000
+++ debian/compat	2015-06-07 02:32:42 +0000
@@ -0,0 +1,1 @@
+9

=== added file 'debian/control'
--- debian/control	1970-01-01 00:00:00 +0000
+++ debian/control	2015-06-07 02:32:42 +0000
@@ -0,0 +1,34 @@
+Source: capnet-assist
+Section: net
+Priority: optional
+Maintainer: Cody Garver <cody@xxxxxxxxxxxxxxxx>
+Build-Depends: cmake (>= 2.8),
+               debhelper (>= 9),
+               libglib2.0-dev,
+               libgtk-3-dev,
+               libwebkitgtk-3.0-dev,
+               valac (>= 0.18)
+Standards-Version: 3.9.6
+Homepage: https://launchpad.net/capnet-assist
+Vcs-Bzr: https://code.launchpad.net/capnet-assist
+Vcs-Browser: http://bazaar.launchpad.net/~elementary-apps/capnet-assist/trunk/files
+
+Package: capnet-assist
+Architecture: any
+Depends: network-manager, ${misc:Depends}, ${shlibs:Depends}
+Description: Captive login detector (debugging symbols)
+ A small WebKit app only to make a user log in when a
+ captive portal is detected.
+
+Package: capnet-assist-dbg
+Architecture: any
+Section: debug
+Priority: extra
+Depends: capnet-assist (= ${binary:Version}), ${misc:Depends}
+Pre-Depends: dpkg (>= 1.15.6)
+Enhances: capnet-assist
+Description: Captive login detector (debugging symbols)
+ A small WebKit app only to make a user log in when a
+ captive portal is detected.
+ .
+ This package contains debugging symbols for capnet-assist.

=== added file 'debian/copyright'
--- debian/copyright	1970-01-01 00:00:00 +0000
+++ debian/copyright	2015-06-07 02:32:42 +0000
@@ -0,0 +1,30 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: capnet-assist
+Upstream-Contact: Cody Garver <cody@xxxxxxxxxxxxxxxx>
+Source: https://launchpad.net/capnet-assist
+
+Files: debian/*
+Copyright: 2013-2015 Cody Garver <cody@xxxxxxxxxxxxxxxx>
+           2015 Martin Wimpress <code@xxxxxxxxxxx>
+License: GPL-3
+
+Files: *
+Copyright: 2013 Sergio Spinatelli <spinatelli.sergio@xxxxxxxxx>
+License: GPL-3
+
+License: GPL-3
+ This program 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 3 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 <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".

=== added file 'debian/install'
--- debian/install	1970-01-01 00:00:00 +0000
+++ debian/install	2015-06-07 02:32:42 +0000
@@ -0,0 +1,1 @@
+90captive_portal_test /etc/NetworkManager/dispatcher.d/

=== added file 'debian/rules'
--- debian/rules	1970-01-01 00:00:00 +0000
+++ debian/rules	2015-06-07 02:32:42 +0000
@@ -0,0 +1,19 @@
+#!/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.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@ 
+
+override_dh_strip:
+	dh_strip --dbg-package=capnet-assist-dbg
+
+override_dh_auto_install:
+	dh_auto_install --destdir=debian/capnet-assist

=== added directory 'debian/source'
=== added file 'debian/source/format'
--- debian/source/format	1970-01-01 00:00:00 +0000
+++ debian/source/format	2015-06-07 02:32:42 +0000
@@ -0,0 +1,1 @@
+3.0 (quilt)