diff options
author | Anton Fischl <github@fischl-online.de> | 2022-06-22 06:07:50 +0200 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2022-06-21 23:41:33 -0500 |
commit | 1ba9ccb093531140a0d3a02ea3cb3414f35d9752 (patch) | |
tree | 758a2efd857a79e76f504118dc18bea2b80753a6 /dev-libs/icinga-php-thirdparty | |
parent | net-dns/libidn: drop USE=doc (diff) | |
download | gentoo-1ba9ccb093531140a0d3a02ea3cb3414f35d9752.tar.gz gentoo-1ba9ccb093531140a0d3a02ea3cb3414f35d9752.tar.bz2 gentoo-1ba9ccb093531140a0d3a02ea3cb3414f35d9752.zip |
dev-libs/icinga-php-thirdparty: bump 0.11.0
Signed-off-by: Anton Fischl <github@fischl-online.de>
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'dev-libs/icinga-php-thirdparty')
-rw-r--r-- | dev-libs/icinga-php-thirdparty/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/icinga-php-thirdparty/icinga-php-thirdparty-0.11.0.ebuild | 22 |
2 files changed, 23 insertions, 0 deletions
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 * +} |