Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-library/
Date: Tue, 01 Nov 2022 19:04:17
Message-Id: 1667329407.9c71eaabdc9d127a65cee396cd65f3bdad4c7a87.prometheanfire@gentoo
1 commit: 9c71eaabdc9d127a65cee396cd65f3bdad4c7a87
2 Author: Tomáš Mózes <hydrapolic <AT> gmail <DOT> com>
3 AuthorDate: Tue Nov 1 09:37:49 2022 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 19:03:27 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c71eaab
7
8 dev-libs/icinga-php-library: add 0.10.0
9
10 Closes: https://bugs.gentoo.org/878993
11 Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com>
12 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
13
14 dev-libs/icinga-php-library/Manifest | 1 +
15 .../icinga-php-library-0.10.0.ebuild | 23 ++++++++++++++++++++++
16 2 files changed, 24 insertions(+)
17
18 diff --git a/dev-libs/icinga-php-library/Manifest b/dev-libs/icinga-php-library/Manifest
19 index 11894031e170..f1f458399b0a 100644
20 --- a/dev-libs/icinga-php-library/Manifest
21 +++ b/dev-libs/icinga-php-library/Manifest
22 @@ -1,2 +1,3 @@
23 +DIST icinga-php-library-0.10.0.tar.gz 2756161 BLAKE2B 327b9e2939dc4c511fb282faae0b7ca1801d22bd0fac38b9f694dc924e26d6bdd469d0118ef44e93a42d5480b2bb15ff5ec6aec19e00e5ae33c9c40d78643f9f SHA512 9619e5b68bb58f7f6264633ca1a24de84dcd78626d4675ecbf3fbe8601031ffcbc4c227e9029d5ad87e1be04cad562c93911fdcbda889046cdb9a416dd195530
24 DIST icinga-php-library-0.6.1.tar.gz 2159137 BLAKE2B 93287845a6c06653faca1850b18c880d023d4bf22c707616a21b92bd252661c811a33c7515fbf19a06936358244c7703bae83cc2e44dee460fe7a46bfa82d345 SHA512 64800727e60630224993bda89494921a3e10f14ccb43b8f57d023b372806ce9253cdf7f6e933df8b494ef0369784714ac857fb288f7f08880c29e8643f25e2ec
25 DIST icinga-php-library-0.8.1.tar.gz 2183054 BLAKE2B 56108f3251211c05ba29827ece49ea1b27bc22b0f0ae459a2f34d5f2ed106ebac1e14c15e1f69c4a3d862d163a0e1265ccb9e5ab0123e24a18e72549af1ee951 SHA512 3da7ad25c569651bc29757a89971d9dfce4cae177619ef70bcb93f1c155400b68ee8b76279b4914454edef41de0cb4d729c47446df622b04494987e0bf4e1098
26
27 diff --git a/dev-libs/icinga-php-library/icinga-php-library-0.10.0.ebuild b/dev-libs/icinga-php-library/icinga-php-library-0.10.0.ebuild
28 new file mode 100644
29 index 000000000000..c2b93055e450
30 --- /dev/null
31 +++ b/dev-libs/icinga-php-library/icinga-php-library-0.10.0.ebuild
32 @@ -0,0 +1,23 @@
33 +# Copyright 2021-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +DESCRIPTION="Icinga PHP libraries for Icinga Web 2"
39 +HOMEPAGE="https://github.com/Icinga/icinga-php-library"
40 +MY_GITHUB_AUTHOR="Icinga"
41 +SRC_URI="https://github.com/${MY_GITHUB_AUTHOR}/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +DEPEND="dev-lang/php:*"
48 +RDEPEND="${DEPEND}"
49 +BDEPEND=""
50 +
51 +src_install() {
52 + insinto "/usr/share/icinga-php/ipl"
53 + cd "${S}"
54 + doins -r *
55 +}