commit
1d64d3d4a8
@ -1 +0,0 @@
|
|||||||
12
|
|
@ -1,24 +1,46 @@
|
|||||||
Source: nm-tray
|
Source: nm-tray
|
||||||
|
Maintainer: Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
|
||||||
|
XSBC-Original-Maintainer: LXQt Packaging Team <pkg-lxqt-devel@lists.alioth.debian.org>
|
||||||
|
Uploaders: Alf Gaida <agaida@siduction.org>,
|
||||||
|
ChangZhuo Chen (陳昌倬) <czchen@debian.org>,
|
||||||
|
Simon Quigley <tsimonq2@ubuntu.com>
|
||||||
Section: net
|
Section: net
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
|
Build-Depends: debhelper-compat (= 12),
|
||||||
Uploaders: Simon Quigley <tsimonq2@ubuntu.com>
|
cmake,
|
||||||
Build-Depends: cmake,
|
libkf5networkmanagerqt-dev,
|
||||||
debhelper (>= 12),
|
modemmanager-qt-dev,
|
||||||
libkf5networkmanagerqt-dev (>= 5.36.0),
|
qttools5-dev,
|
||||||
qtbase5-dev (>= 5.4.0),
|
qttools5-dev-tools
|
||||||
qttools5-dev (>= 5.4.0)
|
Standards-Version: 4.4.1
|
||||||
Standards-Version: 4.4.0
|
|
||||||
Homepage: https://github.com/palinek/nm-tray
|
Homepage: https://github.com/palinek/nm-tray
|
||||||
Vcs-Browser: https://phab.lubuntu.me/source/nm-tray/
|
Vcs-Browser: https://salsa.debian.org/lxqt-team/nm-tray
|
||||||
Vcs-Git: https://phab.lubuntu.me/source/nm-tray.git
|
Vcs-Git: https://salsa.debian.org/lxqt-team/nm-tray.git
|
||||||
|
Rules-Requires-Root: no
|
||||||
|
|
||||||
Package: nm-tray
|
Package: nm-tray
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Depends: ${misc:Depends},
|
Depends: ${misc:Depends},
|
||||||
${shlibs:Depends}
|
${shlibs:Depends},
|
||||||
Description: simple NetworkManager front end
|
network-manager,
|
||||||
|
qterminal | x-terminal-emulator
|
||||||
|
Recommends: nm-tray-l10n
|
||||||
|
Description: Simple Network Manager frontend written in Qt
|
||||||
nm-tray is a simple NetworkManager front end with information icon residing
|
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
|
in system tray (like e.g. nm-applet). It's a pure Qt application. For
|
||||||
interaction with NetworkManager it uses API provided by
|
interaction with NetworkManager it uses API provided by KF5::NetworkManagerQt
|
||||||
KF5::NetworkManagerQt -> plain DBus communication.
|
-> plain DBus communication.
|
||||||
|
.
|
||||||
|
This package contain the application files.
|
||||||
|
|
||||||
|
Package: nm-tray-l10n
|
||||||
|
Architecture: all
|
||||||
|
Multi-Arch: foreign
|
||||||
|
Section: localization
|
||||||
|
Depends: ${misc:Depends},
|
||||||
|
qttranslations5-l10n
|
||||||
|
Description: Language package for nm-tray
|
||||||
|
nm-tray is a simple NetworkManager front end with information icon residing
|
||||||
|
in system tray (like e.g. nm-applet).
|
||||||
|
.
|
||||||
|
This package contains the l10n files needed by nm-tray.
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
README.md
|
@ -0,0 +1,6 @@
|
|||||||
|
[DEFAULT]
|
||||||
|
debian-branch = debian/sid
|
||||||
|
upstream-branch = upstream/latest
|
||||||
|
pristine-tar = True
|
||||||
|
compression = xz
|
||||||
|
|
@ -0,0 +1,2 @@
|
|||||||
|
# there will be no manpage in nearer future
|
||||||
|
nm-tray: binary-without-manpage usr/bin/nm-tray
|
@ -0,0 +1 @@
|
|||||||
|
usr/share/nm-tray
|
@ -0,0 +1,3 @@
|
|||||||
|
etc/xdg/autostart/nm-tray-autostart.desktop
|
||||||
|
usr/share/applications/nm-tray.desktop
|
||||||
|
usr/bin/nm-tray
|
@ -1,11 +1,14 @@
|
|||||||
Description: Add missing include for used class
|
From 4563dabee3cbee13bc9d23a4a5d0ddda1526b43f Mon Sep 17 00:00:00 2001
|
||||||
Author: Palo Kisa <palo.kisa@gmail.com>
|
From: Palo Kisa <palo.kisa@gmail.com>
|
||||||
Applied-Upstream: https://github.com/palinek/nm-tray/commit/4563dabee3cbee13bc9d23a4a5d0ddda1526b43f
|
Date: Tue, 1 Oct 2019 12:03:43 +0200
|
||||||
|
Subject: [PATCH] nmmodel: Add include for used class
|
||||||
|
|
||||||
---
|
---
|
||||||
src/nmmodel.cpp | 1 +
|
src/nmmodel.cpp | 1 +
|
||||||
1 file changed, 1 insertion(+)
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
|
diff --git a/src/nmmodel.cpp b/src/nmmodel.cpp
|
||||||
|
index d779801..ac70307 100644
|
||||||
--- a/src/nmmodel.cpp
|
--- a/src/nmmodel.cpp
|
||||||
+++ b/src/nmmodel.cpp
|
+++ b/src/nmmodel.cpp
|
||||||
@@ -45,6 +45,7 @@ COPYRIGHT_HEADER*/
|
@@ -45,6 +45,7 @@ COPYRIGHT_HEADER*/
|
@ -1,17 +1,21 @@
|
|||||||
#!/usr/bin/make -f
|
#!/usr/bin/make -f
|
||||||
|
# export DH_VERBOSE=1
|
||||||
|
|
||||||
export DH_VERBOSE = 1
|
export LC_ALL=C.UTF-8
|
||||||
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||||
export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
|
export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
|
||||||
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh $@ -buildsystem cmake
|
dh ${@} --buildsystem cmake
|
||||||
|
|
||||||
|
|
||||||
override_dh_auto_configure:
|
override_dh_auto_configure:
|
||||||
dh_auto_configure --\
|
dh_auto_configure -- \
|
||||||
-DPULL_TRANSLATIONS=OFF \
|
-DUPDATE_TRANSLATIONS=NO \
|
||||||
-DUPDATE_TRANSLATIONS=OFF \
|
-DWITH_MODEMMANAGER_SUPPORT=YES \
|
||||||
-DDOM_PLUGIN=YES \
|
-DDOM_PLUGIN=YES \
|
||||||
|
-DPULL_TRANSLATIONS=NO \
|
||||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
||||||
|
|
||||||
|
override_dh_missing:
|
||||||
|
dh_missing --fail-missing
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
tar-ignore=.gitignore
|
@ -0,0 +1,6 @@
|
|||||||
|
Name: nm-tray
|
||||||
|
Bug-Database: https://github.com/palinek/nm-tray/issues
|
||||||
|
Bug-Submit: https://github.com/palinek/nm-tray/issues/new
|
||||||
|
Changelog: https://github.com/palinek/nm-tray/commits/master
|
||||||
|
Repository: https://github.com/palinek/nm-tray
|
||||||
|
Repository-Browse: https://github.com/palinek/nm-tray
|
@ -1,3 +1,3 @@
|
|||||||
version=3
|
version=4
|
||||||
opts="filenamemangle=s/(?:.*\/)?v?(\d[\d.]*)\.tar\.gz/$1.tar.gz/" \
|
opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/nm-tray-$1\.tar\.gz/ \
|
||||||
https://github.com/palinek/nm-tray/tags (?:.*/)?v?(\d[\d.]*)\.tar\.gz
|
https://github.com/palinek/nm-tray/tags .*/v?(\d\S+)\.tar\.gz
|
||||||
|
Loading…
Reference in new issue