* [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/
@ 2021-08-17 2:14 Matthew Thode
0 siblings, 0 replies; 13+ messages in thread
From: Matthew Thode @ 2021-08-17 2:14 UTC (permalink / raw
To: gentoo-commits
commit: da7f497cceaf6f6d314f8a26ea170348d20c4339
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 17 02:13:30 2021 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Tue Aug 17 02:13:41 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da7f497c
dev-libs/icinga-php-thirdparty: 0.10.0 add for icingaweb2
Bug: https://bugs.gentoo.org/802213
Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
dev-libs/icinga-php-thirdparty/Manifest | 1 +
.../icinga-php-thirdparty-0.10.0.ebuild | 21 +++++++++++++++++++++
dev-libs/icinga-php-thirdparty/metadata.xml | 8 ++++++++
3 files changed, 30 insertions(+)
diff --git a/dev-libs/icinga-php-thirdparty/Manifest b/dev-libs/icinga-php-thirdparty/Manifest
new file mode 100644
index 00000000000..7af52bb80e9
--- /dev/null
+++ b/dev-libs/icinga-php-thirdparty/Manifest
@@ -0,0 +1 @@
+DIST icinga-php-thirdparty-0.10.0.tar.gz 576508 BLAKE2B 3e07262415340c413bf79aa3031cf3679f0374c85dad9c41ffed78f65379837fc87df8433ea201b02455bde5c1fee1406f5b149b9d5b39cd726407657bdafb54 SHA512 3f5b6caad23860cecf5f06d165b01211af5284cb3dcb635bdcf4c2118b03c96de40a6d86cd0bccbe0f817ae87cc5d09aa2709ca90f55b948cf975c69dc234e95
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0.ebuild
new file mode 100644
index 00000000000..845e00a29bb
--- /dev/null
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Icinga PHP libraries for Icinga Web 2."
+HOMEPAGE="https://github.com/Icinga/icinga-php-library"
+SRC_URI="https://github.com/Icinga/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="amd64 x86"
+
+DEPEND="dev-lang/php:*"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_install() {
+ insinto "/usr/share/icinga-php/vendor"
+ doins -r "${S}"/vendor/
+}
diff --git a/dev-libs/icinga-php-thirdparty/metadata.xml b/dev-libs/icinga-php-thirdparty/metadata.xml
new file mode 100644
index 00000000000..3ffdeb4af3b
--- /dev/null
+++ b/dev-libs/icinga-php-thirdparty/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>prometheanfire@gentoo.org</email>
+ <name>Matthew Thode</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/
@ 2021-08-23 15:25 Matthew Thode
0 siblings, 0 replies; 13+ messages in thread
From: Matthew Thode @ 2021-08-23 15:25 UTC (permalink / raw
To: gentoo-commits
commit: 10959773be9ab657e06b589fcd1ea0665820f7f8
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 23 15:24:30 2021 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Mon Aug 23 15:25:07 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10959773
dev-libs/icinga-php-thirdparty: install lib to correct dir
Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --force
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
...thirdparty-0.10.0.ebuild => icinga-php-thirdparty-0.10.0-r1.ebuild} | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild
similarity index 94%
rename from dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0.ebuild
rename to dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild
index 845e00a29bb..3b297eb0073 100644
--- a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0.ebuild
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild
@@ -17,5 +17,6 @@ BDEPEND=""
src_install() {
insinto "/usr/share/icinga-php/vendor"
- doins -r "${S}"/vendor/
+ cd "${S}"
+ doins -r *
}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/
@ 2022-05-10 0:55 Matthew Thode
0 siblings, 0 replies; 13+ messages in thread
From: Matthew Thode @ 2022-05-10 0:55 UTC (permalink / raw
To: gentoo-commits
commit: c17bd451613dd6ebff53d236818c7f78dfe79e1e
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Tue May 10 00:55:21 2022 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Tue May 10 00:55:31 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c17bd451
dev-libs/icinga-php-thirdparty: update description
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild
index 27a8b44d5df1..4bbb21e3af1a 100644
--- a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Icinga PHP libraries for Icinga Web 2"
-HOMEPAGE="https://github.com/Icinga/icinga-php-library"
+HOMEPAGE="https://github.com/Icinga/icinga-php-thirdparty"
SRC_URI="https://github.com/Icinga/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/
@ 2022-06-22 4:41 Matthew Thode
0 siblings, 0 replies; 13+ messages in thread
From: Matthew Thode @ 2022-06-22 4:41 UTC (permalink / raw
To: gentoo-commits
commit: 1ba9ccb093531140a0d3a02ea3cb3414f35d9752
Author: Anton Fischl <github <AT> fischl-online <DOT> de>
AuthorDate: Wed Jun 22 04:07:50 2022 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Wed Jun 22 04:41:33 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ba9ccb0
dev-libs/icinga-php-thirdparty: bump 0.11.0
Signed-off-by: Anton Fischl <github <AT> fischl-online.de>
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
dev-libs/icinga-php-thirdparty/Manifest | 1 +
.../icinga-php-thirdparty-0.11.0.ebuild | 22 ++++++++++++++++++++++
2 files changed, 23 insertions(+)
diff --git a/dev-libs/icinga-php-thirdparty/Manifest b/dev-libs/icinga-php-thirdparty/Manifest
index 7af52bb80e93..e0fa0aea78f9 100644
--- a/dev-libs/icinga-php-thirdparty/Manifest
+++ b/dev-libs/icinga-php-thirdparty/Manifest
@@ -1 +1,2 @@
DIST icinga-php-thirdparty-0.10.0.tar.gz 576508 BLAKE2B 3e07262415340c413bf79aa3031cf3679f0374c85dad9c41ffed78f65379837fc87df8433ea201b02455bde5c1fee1406f5b149b9d5b39cd726407657bdafb54 SHA512 3f5b6caad23860cecf5f06d165b01211af5284cb3dcb635bdcf4c2118b03c96de40a6d86cd0bccbe0f817ae87cc5d09aa2709ca90f55b948cf975c69dc234e95
+DIST icinga-php-thirdparty-0.11.0.tar.gz 764914 BLAKE2B b9fbe66252edf5f504feab16392c60f4edf142d3644d13c29ba4f0291df40f8b4e3163f6bb97d944827a8a3d88728b5bf1c05ad193a078f889ba917714746c00 SHA512 5a2b9218a0426de6b560845db36e8e113a8be786eaf4ab57ff4f5e0ef485dc426cb0f203b4b45c3b791adb852098b64f2a0099c9909506594502edb2b4d4ee35
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild
new file mode 100644
index 000000000000..db39b492539b
--- /dev/null
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Icinga PHP libraries for Icinga Web 2"
+HOMEPAGE="https://github.com/Icinga/icinga-php-thirdparty"
+SRC_URI="https://github.com/Icinga/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="dev-lang/php:*"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_install() {
+ insinto "/usr/share/icinga-php/vendor"
+ cd "${S}"
+ doins -r *
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/
@ 2022-08-11 0:30 Matthew Thode
0 siblings, 0 replies; 13+ messages in thread
From: Matthew Thode @ 2022-08-11 0:30 UTC (permalink / raw
To: gentoo-commits
commit: 57c84f6b12e2a91bc955d05bb2e42297caebb405
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 11 00:28:35 2022 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Thu Aug 11 00:30:07 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57c84f6b
dev-libs/icinga-php-thirdparty: 0.11.0 stable amd64/x86
Bug: https://bugs.gentoo.org/864403
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild
index db39b492539b..4bbb21e3af1a 100644
--- a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/Icinga/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
DEPEND="dev-lang/php:*"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/
@ 2023-09-29 16:50 Matthew Thode
0 siblings, 0 replies; 13+ messages in thread
From: Matthew Thode @ 2023-09-29 16:50 UTC (permalink / raw
To: gentoo-commits
commit: f090fbb91eda6d5d6b4b354631d6b8ab6d651188
Author: Anton Fischl <github <AT> fischl-online <DOT> de>
AuthorDate: Fri Sep 29 16:03:00 2023 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Sep 29 16:49:58 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f090fbb9
dev-libs/icinga-php-thirdparty: add 0.12.0
Signed-off-by: Anton Fischl <github <AT> fischl-online.de>
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
dev-libs/icinga-php-thirdparty/Manifest | 1 +
.../icinga-php-thirdparty-0.12.0.ebuild | 22 ++++++++++++++++++++++
2 files changed, 23 insertions(+)
diff --git a/dev-libs/icinga-php-thirdparty/Manifest b/dev-libs/icinga-php-thirdparty/Manifest
index e0fa0aea78f9..af9673e72790 100644
--- a/dev-libs/icinga-php-thirdparty/Manifest
+++ b/dev-libs/icinga-php-thirdparty/Manifest
@@ -1,2 +1,3 @@
DIST icinga-php-thirdparty-0.10.0.tar.gz 576508 BLAKE2B 3e07262415340c413bf79aa3031cf3679f0374c85dad9c41ffed78f65379837fc87df8433ea201b02455bde5c1fee1406f5b149b9d5b39cd726407657bdafb54 SHA512 3f5b6caad23860cecf5f06d165b01211af5284cb3dcb635bdcf4c2118b03c96de40a6d86cd0bccbe0f817ae87cc5d09aa2709ca90f55b948cf975c69dc234e95
DIST icinga-php-thirdparty-0.11.0.tar.gz 764914 BLAKE2B b9fbe66252edf5f504feab16392c60f4edf142d3644d13c29ba4f0291df40f8b4e3163f6bb97d944827a8a3d88728b5bf1c05ad193a078f889ba917714746c00 SHA512 5a2b9218a0426de6b560845db36e8e113a8be786eaf4ab57ff4f5e0ef485dc426cb0f203b4b45c3b791adb852098b64f2a0099c9909506594502edb2b4d4ee35
+DIST icinga-php-thirdparty-0.12.0.tar.gz 14204157 BLAKE2B f8a084cf0299dcca2e90ef97982c46d38f8ccd1c25d87e7106b22f4b91f49f9bbed8c31bf51af10083be28283d93be8d54c083450fd9563f4cc09cf35cdb270a SHA512 c087261712d486fba026128d7fd06590e824024d192d4d5feea902dbdb7134fca7b0e1d82aa4a5246859ca55303a6aed40a57b5aaf37e6652abb68549c8c48ea
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild
new file mode 100644
index 000000000000..72aaf1dbf4fe
--- /dev/null
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Icinga PHP libraries for Icinga Web 2"
+HOMEPAGE="https://github.com/Icinga/icinga-php-thirdparty"
+SRC_URI="https://github.com/Icinga/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="dev-lang/php:*"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_install() {
+ insinto "/usr/share/icinga-php/vendor"
+ cd "${S}"
+ doins -r *
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/
@ 2023-10-22 17:38 Matthew Thode
0 siblings, 0 replies; 13+ messages in thread
From: Matthew Thode @ 2023-10-22 17:38 UTC (permalink / raw
To: gentoo-commits
commit: 30c1c560a9f5f5dc1ab0cf4c4f96386b6cfd3cf6
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 22 17:37:30 2023 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Sun Oct 22 17:37:30 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30c1c560
dev-libs/icinga-php-thirdparty: stabilize 0.12.0 for amd64, x86
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild
index 72aaf1dbf4fe..9b47ddec8290 100644
--- a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/Icinga/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
DEPEND="dev-lang/php:*"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/
@ 2024-06-29 23:29 Louis Sautier
0 siblings, 0 replies; 13+ messages in thread
From: Louis Sautier @ 2024-06-29 23:29 UTC (permalink / raw
To: gentoo-commits
commit: d978e23e494a8ac302c0028cc7d7e42b95b91d8a
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 29 21:45:11 2024 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sat Jun 29 23:25:03 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d978e23e
dev-libs/icinga-php-thirdparty: keyword 0.12.0 for ~arm64
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild
index 9b47ddec8290..751114044575 100644
--- a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021-2023 Gentoo Authors
+# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/Icinga/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
DEPEND="dev-lang/php:*"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/
@ 2024-06-29 23:29 Louis Sautier
0 siblings, 0 replies; 13+ messages in thread
From: Louis Sautier @ 2024-06-29 23:29 UTC (permalink / raw
To: gentoo-commits
commit: cf6f3097dc7ba6bc90368a60d2d84684b2a50675
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 29 23:03:31 2024 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sat Jun 29 23:25:03 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf6f3097
dev-libs/icinga-php-thirdparty: add gh upstream, remove empty BDEPEND
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild | 3 +--
dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild | 3 +--
dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild | 1 -
dev-libs/icinga-php-thirdparty/metadata.xml | 3 +++
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild
index 4bbb21e3af1a..eeb50eb5635a 100644
--- a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021-2022 Gentoo Authors
+# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -13,7 +13,6 @@ KEYWORDS="amd64 x86"
DEPEND="dev-lang/php:*"
RDEPEND="${DEPEND}"
-BDEPEND=""
src_install() {
insinto "/usr/share/icinga-php/vendor"
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild
index 4bbb21e3af1a..eeb50eb5635a 100644
--- a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021-2022 Gentoo Authors
+# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -13,7 +13,6 @@ KEYWORDS="amd64 x86"
DEPEND="dev-lang/php:*"
RDEPEND="${DEPEND}"
-BDEPEND=""
src_install() {
insinto "/usr/share/icinga-php/vendor"
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild
index 751114044575..c395d9e46e98 100644
--- a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.0.ebuild
@@ -13,7 +13,6 @@ KEYWORDS="amd64 ~arm64 x86"
DEPEND="dev-lang/php:*"
RDEPEND="${DEPEND}"
-BDEPEND=""
src_install() {
insinto "/usr/share/icinga-php/vendor"
diff --git a/dev-libs/icinga-php-thirdparty/metadata.xml b/dev-libs/icinga-php-thirdparty/metadata.xml
index 5c76f7a3fc67..20f8ced55e5e 100644
--- a/dev-libs/icinga-php-thirdparty/metadata.xml
+++ b/dev-libs/icinga-php-thirdparty/metadata.xml
@@ -5,4 +5,7 @@
<email>prometheanfire@gentoo.org</email>
<name>Matthew Thode</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">Icinga/icinga-php-thirdparty</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/
@ 2024-07-06 23:04 Louis Sautier
0 siblings, 0 replies; 13+ messages in thread
From: Louis Sautier @ 2024-07-06 23:04 UTC (permalink / raw
To: gentoo-commits
commit: 3677a0f4600a75c415b6eec4891535cd359248dc
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 6 23:00:00 2024 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sat Jul 6 23:03:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3677a0f4
dev-libs/icinga-php-thirdparty: add 0.12.1
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-libs/icinga-php-thirdparty/Manifest | 1 +
.../icinga-php-thirdparty-0.12.1.ebuild | 21 +++++++++++++++++++++
2 files changed, 22 insertions(+)
diff --git a/dev-libs/icinga-php-thirdparty/Manifest b/dev-libs/icinga-php-thirdparty/Manifest
index af9673e72790..2e6e36d2f876 100644
--- a/dev-libs/icinga-php-thirdparty/Manifest
+++ b/dev-libs/icinga-php-thirdparty/Manifest
@@ -1,3 +1,4 @@
DIST icinga-php-thirdparty-0.10.0.tar.gz 576508 BLAKE2B 3e07262415340c413bf79aa3031cf3679f0374c85dad9c41ffed78f65379837fc87df8433ea201b02455bde5c1fee1406f5b149b9d5b39cd726407657bdafb54 SHA512 3f5b6caad23860cecf5f06d165b01211af5284cb3dcb635bdcf4c2118b03c96de40a6d86cd0bccbe0f817ae87cc5d09aa2709ca90f55b948cf975c69dc234e95
DIST icinga-php-thirdparty-0.11.0.tar.gz 764914 BLAKE2B b9fbe66252edf5f504feab16392c60f4edf142d3644d13c29ba4f0291df40f8b4e3163f6bb97d944827a8a3d88728b5bf1c05ad193a078f889ba917714746c00 SHA512 5a2b9218a0426de6b560845db36e8e113a8be786eaf4ab57ff4f5e0ef485dc426cb0f203b4b45c3b791adb852098b64f2a0099c9909506594502edb2b4d4ee35
DIST icinga-php-thirdparty-0.12.0.tar.gz 14204157 BLAKE2B f8a084cf0299dcca2e90ef97982c46d38f8ccd1c25d87e7106b22f4b91f49f9bbed8c31bf51af10083be28283d93be8d54c083450fd9563f4cc09cf35cdb270a SHA512 c087261712d486fba026128d7fd06590e824024d192d4d5feea902dbdb7134fca7b0e1d82aa4a5246859ca55303a6aed40a57b5aaf37e6652abb68549c8c48ea
+DIST icinga-php-thirdparty-0.12.1.tar.gz 14301833 BLAKE2B 41e114f412f0257e67f2e129b524c208cd008c7fd6fb7a2194d1c9eac8cd655970fc52ad2648ced0458d13646d565066bc172b79553a799fe6729d3e4971e161 SHA512 1cc5ea8238eae6dd9a0a14cd898532d10dd2a44fb17072d113da9c32b2d383dc6970a1f55e7badac060f4fcee683b7ad1aef3268d37fd462bcd2bff2eb1f4298
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.1.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.1.ebuild
new file mode 100644
index 000000000000..935ba3f3b7f9
--- /dev/null
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Icinga PHP libraries for Icinga Web 2"
+HOMEPAGE="https://github.com/Icinga/icinga-php-thirdparty"
+SRC_URI="https://github.com/Icinga/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+DEPEND="dev-lang/php:*"
+RDEPEND="${DEPEND}"
+
+src_install() {
+ insinto "/usr/share/icinga-php/vendor"
+ cd "${S}"
+ doins -r *
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/
@ 2024-10-18 18:11 Louis Sautier
0 siblings, 0 replies; 13+ messages in thread
From: Louis Sautier @ 2024-10-18 18:11 UTC (permalink / raw
To: gentoo-commits
commit: bcfbeaa1312017ae714f05260af5602cdbd4ada0
Author: Tomáš Mózes <hydrapolic <AT> gmail <DOT> com>
AuthorDate: Fri Sep 27 06:08:55 2024 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Fri Oct 18 18:03:31 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcfbeaa1
dev-libs/icinga-php-thirdparty: drop 0.10.0-r1, 0.11.0
Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/38794
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-libs/icinga-php-thirdparty/Manifest | 2 --
.../icinga-php-thirdparty-0.10.0-r1.ebuild | 21 ---------------------
.../icinga-php-thirdparty-0.11.0.ebuild | 21 ---------------------
3 files changed, 44 deletions(-)
diff --git a/dev-libs/icinga-php-thirdparty/Manifest b/dev-libs/icinga-php-thirdparty/Manifest
index 2e6e36d2f876..f7603ea085e6 100644
--- a/dev-libs/icinga-php-thirdparty/Manifest
+++ b/dev-libs/icinga-php-thirdparty/Manifest
@@ -1,4 +1,2 @@
-DIST icinga-php-thirdparty-0.10.0.tar.gz 576508 BLAKE2B 3e07262415340c413bf79aa3031cf3679f0374c85dad9c41ffed78f65379837fc87df8433ea201b02455bde5c1fee1406f5b149b9d5b39cd726407657bdafb54 SHA512 3f5b6caad23860cecf5f06d165b01211af5284cb3dcb635bdcf4c2118b03c96de40a6d86cd0bccbe0f817ae87cc5d09aa2709ca90f55b948cf975c69dc234e95
-DIST icinga-php-thirdparty-0.11.0.tar.gz 764914 BLAKE2B b9fbe66252edf5f504feab16392c60f4edf142d3644d13c29ba4f0291df40f8b4e3163f6bb97d944827a8a3d88728b5bf1c05ad193a078f889ba917714746c00 SHA512 5a2b9218a0426de6b560845db36e8e113a8be786eaf4ab57ff4f5e0ef485dc426cb0f203b4b45c3b791adb852098b64f2a0099c9909506594502edb2b4d4ee35
DIST icinga-php-thirdparty-0.12.0.tar.gz 14204157 BLAKE2B f8a084cf0299dcca2e90ef97982c46d38f8ccd1c25d87e7106b22f4b91f49f9bbed8c31bf51af10083be28283d93be8d54c083450fd9563f4cc09cf35cdb270a SHA512 c087261712d486fba026128d7fd06590e824024d192d4d5feea902dbdb7134fca7b0e1d82aa4a5246859ca55303a6aed40a57b5aaf37e6652abb68549c8c48ea
DIST icinga-php-thirdparty-0.12.1.tar.gz 14301833 BLAKE2B 41e114f412f0257e67f2e129b524c208cd008c7fd6fb7a2194d1c9eac8cd655970fc52ad2648ced0458d13646d565066bc172b79553a799fe6729d3e4971e161 SHA512 1cc5ea8238eae6dd9a0a14cd898532d10dd2a44fb17072d113da9c32b2d383dc6970a1f55e7badac060f4fcee683b7ad1aef3268d37fd462bcd2bff2eb1f4298
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild
deleted file mode 100644
index eeb50eb5635a..000000000000
--- a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.10.0-r1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Icinga PHP libraries for Icinga Web 2"
-HOMEPAGE="https://github.com/Icinga/icinga-php-thirdparty"
-SRC_URI="https://github.com/Icinga/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-DEPEND="dev-lang/php:*"
-RDEPEND="${DEPEND}"
-
-src_install() {
- insinto "/usr/share/icinga-php/vendor"
- cd "${S}"
- doins -r *
-}
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild
deleted file mode 100644
index eeb50eb5635a..000000000000
--- a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Icinga PHP libraries for Icinga Web 2"
-HOMEPAGE="https://github.com/Icinga/icinga-php-thirdparty"
-SRC_URI="https://github.com/Icinga/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-DEPEND="dev-lang/php:*"
-RDEPEND="${DEPEND}"
-
-src_install() {
- insinto "/usr/share/icinga-php/vendor"
- cd "${S}"
- doins -r *
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/
@ 2024-10-25 22:09 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2024-10-25 22:09 UTC (permalink / raw
To: gentoo-commits
commit: a23110c1a6f11a9b7c8e298520bd1b16a8313e4d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 25 22:08:53 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 25 22:08:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a23110c1
dev-libs/icinga-php-thirdparty: Stabilize 0.12.1 amd64, #942175
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.1.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.1.ebuild
index 935ba3f3b7f9..f8849924ddc6 100644
--- a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.1.ebuild
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/Icinga/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
DEPEND="dev-lang/php:*"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/
@ 2024-10-25 22:37 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2024-10-25 22:37 UTC (permalink / raw
To: gentoo-commits
commit: c413a7d333953e068960b264081d63bfe3d9ae81
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 25 22:36:53 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 25 22:36:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c413a7d3
dev-libs/icinga-php-thirdparty: Stabilize 0.12.1 x86, #942175
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.1.ebuild b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.1.ebuild
index f8849924ddc6..c395d9e46e98 100644
--- a/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.1.ebuild
+++ b/dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.12.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/Icinga/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
DEPEND="dev-lang/php:*"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 13+ messages in thread
end of thread, other threads:[~2024-10-25 22:37 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-22 17:38 [gentoo-commits] repo/gentoo:master commit in: dev-libs/icinga-php-thirdparty/ Matthew Thode
-- strict thread matches above, loose matches on Subject: below --
2024-10-25 22:37 Sam James
2024-10-25 22:09 Sam James
2024-10-18 18:11 Louis Sautier
2024-07-06 23:04 Louis Sautier
2024-06-29 23:29 Louis Sautier
2024-06-29 23:29 Louis Sautier
2023-09-29 16:50 Matthew Thode
2022-08-11 0:30 Matthew Thode
2022-06-22 4:41 Matthew Thode
2022-05-10 0:55 Matthew Thode
2021-08-23 15:25 Matthew Thode
2021-08-17 2:14 Matthew Thode
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox