parent
cc83478664
commit
05d03d8d51
@ -1 +0,0 @@
|
||||
12
|
@ -1,24 +1,46 @@
|
||||
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
|
||||
Priority: optional
|
||||
Maintainer: Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
|
||||
Uploaders: Simon Quigley <tsimonq2@ubuntu.com>
|
||||
Build-Depends: cmake,
|
||||
debhelper (>= 12),
|
||||
libkf5networkmanagerqt-dev (>= 5.36.0),
|
||||
qtbase5-dev (>= 5.4.0),
|
||||
qttools5-dev (>= 5.4.0)
|
||||
Standards-Version: 4.4.0
|
||||
Build-Depends: debhelper-compat (= 12),
|
||||
cmake,
|
||||
libkf5networkmanagerqt-dev,
|
||||
modemmanager-qt-dev,
|
||||
qttools5-dev,
|
||||
qttools5-dev-tools
|
||||
Standards-Version: 4.4.1
|
||||
Homepage: https://github.com/palinek/nm-tray
|
||||
Vcs-Browser: https://phab.lubuntu.me/source/nm-tray/
|
||||
Vcs-Git: https://phab.lubuntu.me/source/nm-tray.git
|
||||
Vcs-Browser: https://salsa.debian.org/lxqt-team/nm-tray
|
||||
Vcs-Git: https://salsa.debian.org/lxqt-team/nm-tray.git
|
||||
Rules-Requires-Root: no
|
||||
|
||||
Package: nm-tray
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends},
|
||||
${shlibs:Depends}
|
||||
Description: simple NetworkManager front end
|
||||
${shlibs:Depends},
|
||||
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
|
||||
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.
|
||||
interaction with NetworkManager it uses API provided by KF5::NetworkManagerQt
|
||||
-> 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
|
||||
Author: Palo Kisa <palo.kisa@gmail.com>
|
||||
Applied-Upstream: https://github.com/palinek/nm-tray/commit/4563dabee3cbee13bc9d23a4a5d0ddda1526b43f
|
||||
From 4563dabee3cbee13bc9d23a4a5d0ddda1526b43f Mon Sep 17 00:00:00 2001
|
||||
From: Palo Kisa <palo.kisa@gmail.com>
|
||||
Date: Tue, 1 Oct 2019 12:03:43 +0200
|
||||
Subject: [PATCH] nmmodel: Add include for used class
|
||||
|
||||
---
|
||||
src/nmmodel.cpp | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/src/nmmodel.cpp b/src/nmmodel.cpp
|
||||
index d779801..ac70307 100644
|
||||
--- a/src/nmmodel.cpp
|
||||
+++ b/src/nmmodel.cpp
|
||||
@@ -45,6 +45,7 @@ COPYRIGHT_HEADER*/
|
@ -1,17 +1,21 @@
|
||||
#!/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_CFLAGS_MAINT_APPEND = -Wall -pedantic
|
||||
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
||||
|
||||
%:
|
||||
dh $@ -buildsystem cmake
|
||||
|
||||
dh ${@} --buildsystem cmake
|
||||
|
||||
override_dh_auto_configure:
|
||||
dh_auto_configure --\
|
||||
-DPULL_TRANSLATIONS=OFF \
|
||||
-DUPDATE_TRANSLATIONS=OFF \
|
||||
dh_auto_configure -- \
|
||||
-DUPDATE_TRANSLATIONS=NO \
|
||||
-DWITH_MODEMMANAGER_SUPPORT=YES \
|
||||
-DDOM_PLUGIN=YES \
|
||||
-DPULL_TRANSLATIONS=NO \
|
||||
-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
|
||||
opts="filenamemangle=s/(?:.*\/)?v?(\d[\d.]*)\.tar\.gz/$1.tar.gz/" \
|
||||
https://github.com/palinek/nm-tray/tags (?:.*/)?v?(\d[\d.]*)\.tar\.gz
|
||||
version=4
|
||||
opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/nm-tray-$1\.tar\.gz/ \
|
||||
https://github.com/palinek/nm-tray/tags .*/v?(\d\S+)\.tar\.gz
|
||||
|
Loading…
Reference in new issue