diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..23d4a40 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +nm-tray (0.3.0-0ubuntu1) UNRELEASED; urgency=medium + + * Initial release. + + -- Simon Quigley Sat, 10 Feb 2018 19:35:07 -0600 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b4de394 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +11 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..e018185 --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +Source: nm-tray +Section: net +Priority: optional +Maintainer: Lubuntu Developers +Uploaders: Simon Quigley , + Julien Lavergne +Build-Depends: debhelper (>= 11), + libkf5networkmanagerqt-dev (>= 5.24.0), + qtbase5-dev (>= 5.4.0) +Standards-Version: 4.1.3 +Homepage: https://github.com/palinek/nm-tray + +Package: nm-tray +Architecture: any +Depends: libkf5networkmanagerqt-dev (>= 5.24.0), + ${misc:Depends}, + ${shlibs:Depends} +Description: simple NetworkManager front end + nm-tray is a simple NetworkManager front end with information icon residing + in system tray (like e.g. nm-applet). It's a pure Qt application. For + interaction with NetworkManager it uses API provided by + KF5::NetworkManagerQt -> plain DBus communication. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..1a9a23a --- /dev/null +++ b/debian/copyright @@ -0,0 +1,27 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: nm-tray +Upstream-Contact: Palo Kisa +Source: https://github.com/palinek/nm-tray + +Files: * +Copyright: 2015-2017 Palo Kisa +License: GPL-2+ + +Files: debian/* +Copyright: 2018 Lubuntu Developers +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". diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..ec6bcea --- /dev/null +++ b/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +export DH_VERBOSE = 1 +export DEB_BUILD_MAINT_OPTIONS = hardening=+all +export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + +%: + dh $@ 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)