Some cleanup in debian $foo

move .gitignore into /debian
simplify rules
fix maintainer and vcs fields
ubuntu/cosmic
Alf Gaida 10 years ago committed by Andrew Lee (李健秋)
parent 57038aab19
commit 9151da67bb

1
.gitignore vendored

@ -1 +0,0 @@
/test

9
debian/.gitignore vendored

@ -0,0 +1,9 @@
/*.debhelper
/*.log
/*.substvars
/files
/libsysstat-qt5-0/
/libsysstat-qt5-0-dbg/
/libsysstat-qt5-0-dev/
/tmp

7
debian/control vendored

@ -1,9 +1,10 @@
Source: libsysstat Source: libsysstat
Section: libs Section: libs
Priority: optional Priority: optional
Maintainer: Debian LXQt Maintainers <lxqt-debian@lists.lxde.org> Maintainer: LXQt Packaging Team <pkg-lxqt-devel@lists.alioth.debian.org>
Uploaders: Uploaders:
Alf Gaida <agaida@siduction.org> Alf Gaida <agaida@siduction.org>
ChangZhuo Chen (陳昌倬) <czchen@gmail.com>,
Build-Depends: Build-Depends:
cmake (>= 3.0.2), cmake (>= 3.0.2),
debhelper (>= 9), debhelper (>= 9),
@ -12,8 +13,8 @@ Build-Depends:
qttools5-dev-tools (>= 5.3.2), qttools5-dev-tools (>= 5.3.2),
Standards-Version: 3.9.6 Standards-Version: 3.9.6
Homepage: https://github.com/lxde/libsysstat Homepage: https://github.com/lxde/libsysstat
#Vcs-Git: git://anonscm.debian.org/collab-maint/libsysstat.git Vcs-Git: git://anonscm.debian.org/pkg-lxqt/libsysstat.git
#Vcs-Browser: http://anonscm.debian.org/?p=collab-maint/libsysstat.git;a=summary Vcs-Browser: http://anonscm.debian.org/cgit/pkg-lxqt/libsysstat.git
Package: libsysstat-qt5-0 Package: libsysstat-qt5-0
Architecture: any Architecture: any

11
debian/copyright vendored

@ -12,21 +12,18 @@ Copyright: 2014-2015 Alf Gaida <agaida@siduction.org>
License: LGPL-2.1+ License: LGPL-2.1+
License: LGPL-2.1+ License: LGPL-2.1+
This package is free software; you can redistribute it and/or This program or library is free software; you can redistribute it
modify it under the terms of the GNU Lesser General Public and/or modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version. 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, This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details. 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 On Debian systems, the complete text of the GNU Lesser General
Public License can be found in "/usr/share/common-licenses/LGPL-2.1". Public License version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1".
License: GPL-2.0+ License: GPL-2.0+
This package is free software; you can redistribute it and/or modify This package is free software; you can redistribute it and/or modify

4
debian/rules vendored

@ -5,7 +5,7 @@ DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
%: %:
dh ${@} --buildsystem cmake --parallel dh ${@} --buildsystem cmake --parallel --dbg-package=libsysstat-qt5-0-dbg
override_dh_install: override_dh_install:
@ -14,5 +14,3 @@ override_dh_install:
override_dh_auto_configure: override_dh_auto_configure:
dh_auto_configure -- -DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)" dh_auto_configure -- -DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)"
override_dh_strip:
dh_strip --dbg-package=libsysstat-qt5-0-dbg

Loading…
Cancel
Save