Codebase list icingaweb2-module-pnp / 7b948fc
Adding debian version 1.1.0-1. Signed-off-by: David Kunz <david.kunz@dknet.ch> David Kunz authored 5 years ago System Administration committed 4 years ago
7 changed file(s) with 83 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 icingaweb2-module-pnp (1.1.0-1) unstable; urgency=medium
1
2 * Initial release (Closes: #921106)
3
4 -- David Kunz <david.kunz@dknet.ch> Mon, 12 Aug 2019 15:50:16 +0200
0 Source: icingaweb2-module-pnp
1 Section: admin
2 Priority: optional
3 Maintainer: David Kunz <david.kunz@dknet.ch>
4 Build-Depends:
5 debhelper-compat (= 12),
6 Standards-Version: 4.4.0
7 Homepage: https://github.com/Icinga/icingaweb2-module-pnp
8 Vcs-Browser: https://salsa.debian.org/david-guest/icingaweb2-module-pnp
9 Vcs-Git: https://salsa.debian.org/david-guest/icingaweb2-module-pnp.git
10
11 Package: icingaweb2-module-pnp
12 Section: admin
13 Architecture: all
14 Depends:
15 icingaweb2,
16 ${misc:Depends}
17 Enhances:
18 icingaweb2,
19 Description: view beautiful graphs in the host/service detail view
20 Icinga Web 2 is a very modular, fast and simple web interface for your Icinga
21 monitoring environment.
22 .
23 This module integrates PNP into Icinga Web 2 and allows you to view beautiful
24 graphs in the host/service detail view.
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: icingaweb2-module-pnp
2 Upstream-Contact: Icinga Development Team <icinga-devel@lists.icinga.org>
3 Source: https://github.com/Icinga/icingaweb2-module-pnp/releases
4
5 Files: *
6 Copyright: 2013-2018 Icinga Development Team <icinga-devel@lists.icinga.org>
7 License: GPL-2+
8
9 Files: debian/*
10 Copyright: 2019 David Kunz <david.kunz@dknet.ch>
11 License: GPL-2+
12
13 License: GPL-2+
14 This program is free software: you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 2 of the License.
17 .
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22 .
23 You should have received a copy of the GNU General Public License
24 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 .
26 The complete text of the GNU General Public License
27 can be found in /usr/share/common-licenses/GPL-2 file, or
28 (at your option) any later version.
0 CHANGELOG.md
1 README.md
0 #!/usr/bin/make -f
1
2 MODULE := pnp
3 DEBDIR := debian/icingaweb2-module-$(MODULE)
4
5 %:
6 dh ${@}
7
8
9 override_dh_auto_install:
10 mkdir -p $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE)
11 find . -maxdepth 1 -mindepth 1 -and -not -name debian -and -not -name ".git*" -exec cp -a {} $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE) \;
12
13 # remove useless files
14 rm -f $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE)/AUTHORS
15 find $(DEBDIR)/usr/share/icingaweb2/modules/$(MODULE) -name LICENSE -exec rm -f {} \;
16
17 # enable module
18 mkdir -p $(DEBDIR)/etc/icingweb2/enabledModules
19 ln -s /usr/share/icingaweb2/modules/$(MODULE) $(DEBDIR)/etc/icingweb2/enabledModules/$(MODULE)
0 3.0 (quilt)
0 abort-on-upstream-changes