From 00dfc69b7e2ecbc921983e7936a57cac230cc00e Mon Sep 17 00:00:00 2001 From: Oliver Freyermuth Date: Sat, 6 Jul 2024 21:38:11 +0200 Subject: [PATCH] sci-physics/voms: add 2.1.0 Signed-off-by: Oliver Freyermuth --- sci-physics/voms/Manifest | 1 + sci-physics/voms/voms-2.1.0.ebuild | 36 ++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 sci-physics/voms/voms-2.1.0.ebuild diff --git a/sci-physics/voms/Manifest b/sci-physics/voms/Manifest index faf119d..cee951e 100644 --- a/sci-physics/voms/Manifest +++ b/sci-physics/voms/Manifest @@ -1,2 +1,3 @@ +DIST voms-2.1.0.tar.gz 482355 BLAKE2B 0e0fd9b9c1c8d700831e10eeb9b700063d512da2a8bc493bbfea05e7c74178c658321ccf2b1268c8d0a43a293b6676669966703ff2932e770991ced9e1935998 SHA512 753e57b04ee7bc3e874b7c749b2e885e7bbe3d2c779315dcfb2176506d65754f2d5997d7ec408e169fd17ea699d9571a13442fba623e9881024920e24119732f DIST voms-2.1.0_rc3.tar.gz 469817 BLAKE2B 5dddb4c5030e1f3361593686547bd940a221c6089c09cddecceda81d1f7adc8bbab5a0030eef100f55e470017aba14e533b76f0585d2992c6fff259ca4fa0345 SHA512 003181764592776359aa67e088f865f9f975b6be2e0f33e3bbee31dbd0e241524b863a8d39163ca549430266fb9250bc948a426ce1baf641381a8b1423a924cd DIST voms-2.1.0_rc4.tar.gz 485649 BLAKE2B 4c52eb590731855d4766a024d2ea4edfb2e9b4c88b39992fffbb85e685fd40415fd8ec773abddf0ed7ce2a8b92b91b53277f0412a8b01cd2cfbd9aefd862379c SHA512 cccc4891ada49ed56f8fa228df109c87995b3d784ce77f25cd4f72c36a3696e6ce90e31ff226b1a3bf246a0031db7047230086e8df566b1e38a8fa4e55eac76f diff --git a/sci-physics/voms/voms-2.1.0.ebuild b/sci-physics/voms/voms-2.1.0.ebuild new file mode 100644 index 0000000..21ddad2 --- /dev/null +++ b/sci-physics/voms/voms-2.1.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +inherit autotools + +MY_PV=$(ver_rs 3 '-') + +DESCRIPTION="The VOMS native service and APIs" +HOMEPAGE="https://italiangrid.github.io/voms/" +SRC_URI="https://github.com/italiangrid/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc +clients server" + +DEPEND="dev-libs/openssl:0=" +RDEPEND="${DEPEND} + >=net-libs/gsoap-2.8.50 + sci-physics/egi-igtf + sci-physics/wlcg-voms" + +src_prepare() { + default + mkdir -p aux src/autogen || die + eautoreconf +} + +src_configure() { + econf \ + $(use_with clients) \ + $(use_with server) +}