Some cleanup in debian $foo
.gitignore moved to ./debian fixed maintainer fields fixed vcs fields fixed LGPL simplified debian/rules
This commit is contained in:
parent
b2ce570f60
commit
e0a469d3e9
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +0,0 @@
|
||||
/test
|
16
debian/.gitignore
vendored
Normal file
16
debian/.gitignore
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
/*.debhelper
|
||||
/*.log
|
||||
/*.substvars
|
||||
/files
|
||||
|
||||
/lxqt-globalkeys/
|
||||
/liblxqt-globalkeys0/
|
||||
/liblxqt-globalkeys0-dev/
|
||||
/liblxqt-globalkeys-ui0/
|
||||
/liblxqt-globalkeys-ui0-dev/
|
||||
/lxqt-globalkeys-qt5
|
||||
/liblxqt-globalkeys-qt5-0
|
||||
/liblxqt-globalkeys-qt5-0-dev
|
||||
/liblxqt-globalkeys-ui-qt5-0
|
||||
/liblxqt-globalkeys-ui-qt5-0-dev
|
||||
/tmp
|
10
debian/control
vendored
10
debian/control
vendored
@ -1,7 +1,7 @@
|
||||
Source: lxqt-globalkeys
|
||||
Section: x11
|
||||
Priority: optional
|
||||
Maintainer: Debian LXQt Maintainers <lxqt-debian@lists.lxde.org>
|
||||
Maintainer: LXQt Packaging Team <pkg-lxqt-devel@lists.alioth.debian.org>
|
||||
Uploaders:
|
||||
Alf Gaida <agaida@siduction.org>,
|
||||
ChangZhuo Chen (陳昌倬) <czchen@gmail.com>
|
||||
@ -10,16 +10,16 @@ Build-Depends:
|
||||
debhelper (>= 9),
|
||||
libx11-dev,
|
||||
pkg-config,
|
||||
libkf5windowsystem-dev (>= 5.4.0),
|
||||
libkf5windowsystem-dev (>= 5.5.0),
|
||||
liblxqt0-dev (>= 0.9.0),
|
||||
libqt5x11extras5-dev (>= 5.3.2),
|
||||
libqt5xdg-dev (>= 1.0.0),
|
||||
libqt5xdg-dev (>= 1.1.0),
|
||||
qttools5-dev (>= 5.3.2),
|
||||
qttools5-dev-tools (>= 5.3.2),
|
||||
Standards-Version: 3.9.6
|
||||
Homepage: https://github.com/lxde/lxqt-globalkeys
|
||||
#Vcs-Git: git://anonscm.debian.org/collab-maint/lxqt-globalkeys.git
|
||||
#Vcs-Browser: http://anonscm.debian.org/?p=collab-maint/lxqt-globalkeys.git;a=summary
|
||||
Vcs-Git: git://anonscm.debian.org/pkg-lxqt/lxqt-globalkeys.git
|
||||
Vcs-Browser: http://anonscm.debian.org/cgit/pkg-lxqt/lxqt-globalkeys.git
|
||||
|
||||
Package: lxqt-globalkeys
|
||||
Architecture: any
|
||||
|
35
debian/copyright
vendored
35
debian/copyright
vendored
@ -11,6 +11,20 @@ Files: debian/*
|
||||
Copyright: 2014-2015 Alf Gaida <agaida@siduction.org>
|
||||
License: LGPL-2.1+
|
||||
|
||||
License: LGPL-2.1+
|
||||
This program or library is free software; you can redistribute it
|
||||
and/or modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
.
|
||||
This program or library 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
|
||||
Lesser General Public License for more details.
|
||||
.
|
||||
On Debian systems, the complete text of the GNU Lesser General
|
||||
Public License can be found in "/usr/share/common-licenses/LGPL-2.1".
|
||||
|
||||
License: GPL-2.0+
|
||||
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
|
||||
@ -22,26 +36,5 @@ License: GPL-2.0+
|
||||
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 2 can be found in "/usr/share/common-licenses/GPL-2".
|
||||
|
||||
License: LGPL-2.1+
|
||||
This package is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 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
|
||||
Lesser 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 Lesser General
|
||||
Public License can be found in "/usr/share/common-licenses/LGPL-2.1".
|
||||
|
||||
|
5
debian/rules
vendored
5
debian/rules
vendored
@ -5,11 +5,8 @@ DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
||||
|
||||
|
||||
%:
|
||||
dh ${@} --buildsystem cmake --parallel
|
||||
dh ${@} --buildsystem cmake --parallel --list-missing --fail-missing
|
||||
|
||||
|
||||
override_dh_install:
|
||||
dh_install --list-missing --fail-missing
|
||||
|
||||
override_dh_auto_configure:
|
||||
dh_auto_configure -- -DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)"
|
||||
|
Loading…
x
Reference in New Issue
Block a user