From a98588cfddf3d6e88a5f17d7f399b695163c7a85 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 3 May 2024 00:00:22 +0100 Subject: gentoo auto-resync : 03:05:2024 - 00:00:22 --- app-admin/exo/Manifest | 4 ++-- app-admin/exo/exo-1.77.1.ebuild | 36 ------------------------------------ app-admin/exo/exo-1.77.2.ebuild | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 37 insertions(+), 38 deletions(-) delete mode 100644 app-admin/exo/exo-1.77.1.ebuild create mode 100644 app-admin/exo/exo-1.77.2.ebuild (limited to 'app-admin/exo') diff --git a/app-admin/exo/Manifest b/app-admin/exo/Manifest index 5f65a2f974f2..cf4a8fc7ae16 100644 --- a/app-admin/exo/Manifest +++ b/app-admin/exo/Manifest @@ -1,3 +1,3 @@ -DIST exo-1.77.1.gh.tar.gz 11091028 BLAKE2B 0aa0f82cff7e3807bd5237fc9c8f77583eb98c8b10a6c49a529c19f95017e60a752478e093f072f5e7b52b2f9b7386a60786f40938d43f0cef996d77fa969c38 SHA512 815b82761947eaf39b8336eb7f24b5db16b8fb5904b4234cbf20d1b1cec058182079b04f5eca9020475b60f3c9e93410e58e2bf1eafa30f341b9962c542437e4 -EBUILD exo-1.77.1.ebuild 770 BLAKE2B 243cf82a8570636c25247cdfb086d10b205447c3ad2ae526825437ffbc17c510b589f9efd45c30aabb27ce8ba82c08bdd197196f6ae1c95ce3fdb786163f1852 SHA512 6165727e56ea93c24adb0ae54f172e48781f2ede1543e1f8ae91a8b4ddf61c9dbe8135013db709f2819fea165d1a2e61d6f5cf210c53f4189cf39d4ad8bcf69c +DIST exo-1.77.2.gh.tar.gz 11091512 BLAKE2B 879dd3b8d6ce388efd52434dc5f26091360cb115c227dd47f5ece69ba3884b69715bdd2d503ce6145a7a368f19a19d822b16054f446fe70d7583041d494f14db SHA512 7ca505b5f1dc974baab13b5b0ff650aafc5261b2b601f17e35a9f37198ec4d6a9179163f67da360a56d50f1bf2d5d233ef5c1836143a5a306d336a93df95f249 +EBUILD exo-1.77.2.ebuild 737 BLAKE2B c4f34d3a5a04e1559bbf5931a91f0ce7533e5a40eb254563d487875859cc5ce20aacf856bd06c7c34b44186121aaf1ae6bab299809cb2c92b5a9315deeca2226 SHA512 1bb34fa966a02ad1d44c25a44d1392cfd5940a5ea1c4ddde085bdab7daaa348d21d1b3bd687e52c360fa0276b974cafa91eef5f8503f2ac0c3f019ab0fc4ad50 MISC metadata.xml 334 BLAKE2B 230d1a47a3e39f796c16a9e9a622fbc27560c951da0c49adf7aca135970c0c944f42da7eb624c7193d44830c72cf95da9d69d977562853de6a00fd8fb6408977 SHA512 cd1366d99abc260c6f2899000e2a517be9a4c43e921078764fdc996871df34c1827e512087c3eb6f95bf3b685c2f34cbc1f1462eaa303a948640a362b4501b01 diff --git a/app-admin/exo/exo-1.77.1.ebuild b/app-admin/exo/exo-1.77.1.ebuild deleted file mode 100644 index 832c2c26b861..000000000000 --- a/app-admin/exo/exo-1.77.1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Command-line tool for everything at Exoscale: compute, storage, dns" -HOMEPAGE="https://github.com/exoscale/cli" -SRC_URI="https://github.com/exoscale/cli/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" - -IUSE="" -DEPEND=">=dev-lang/go-1.16:=" -RESTRICT="strip" -QA_FLAGS_IGNORED=".*" - -S="${WORKDIR}/cli-${PV}" - -src_compile() { - go build -mod vendor -o ${PN} -ldflags "-X main.version=${PVR}-gentoo -X main.commit=" || die "build failed" -} - -src_test() { - # run at least 'exo version' for test - ./exo version > /dev/null 2>&1 - if [[ $? -ne 0 ]] - then - die "Test failed" - fi -} - -src_install() { - dobin ${PN} -} diff --git a/app-admin/exo/exo-1.77.2.ebuild b/app-admin/exo/exo-1.77.2.ebuild new file mode 100644 index 000000000000..43fbacd8aa32 --- /dev/null +++ b/app-admin/exo/exo-1.77.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit go-module + +DESCRIPTION="Command-line tool for everything at Exoscale: compute, storage, dns" +HOMEPAGE="https://github.com/exoscale/cli" +SRC_URI="https://github.com/exoscale/cli/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" +S="${WORKDIR}/cli-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=">=dev-lang/go-1.16:=" +RESTRICT="strip" + +src_compile() { + ego build -mod vendor -o ${PN} -ldflags "-X main.version=${PVR}-gentoo -X main.commit=" +} + +src_test() { + # run at least 'exo version' for test + ./exo version > /dev/null 2>&1 + if [[ $? -ne 0 ]] + then + die "Test failed" + fi +} + +src_install() { + dobin ${PN} +} -- cgit v1.2.3