commit: f686693f6dffadea2ce6c7c903dbfda354183b7a Author: Patrick Lauer <patrick <AT> gentoo <DOT> org> AuthorDate: Mon May 19 09:32:19 2025 +0000 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org> CommitDate: Mon May 19 09:32:42 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f686693f
net-proxy/haproxy-dataplaneapi: add 3.1.5 Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org> net-proxy/haproxy-dataplaneapi/Manifest | 2 ++ .../haproxy-dataplaneapi-3.1.5.ebuild | 27 ++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/net-proxy/haproxy-dataplaneapi/Manifest b/net-proxy/haproxy-dataplaneapi/Manifest index e50931f6a82e..ab5a31ed9aaa 100644 --- a/net-proxy/haproxy-dataplaneapi/Manifest +++ b/net-proxy/haproxy-dataplaneapi/Manifest @@ -1,2 +1,4 @@ DIST haproxy-dataplaneapi-3.0.3-vendor.tar.xz 2921660 BLAKE2B 9a23c19c93aa349770d10dafc13d3c4cd49e32b3e32be42efa93caec290341d538dab481959489f055193221e830f3c9259dd8579a49615b2c61676173d82c7e SHA512 4cda2790f6af14e3cade41ff84d2b61a31c88ef3a873dff01042c5f25b4a2e0947e49c402e60473b3fee555db4bee9f004a007e316c3dc38a940159081360562 DIST haproxy-dataplaneapi-3.0.3.tar.gz 922986 BLAKE2B 4e313ad60a4754a41719be370c71826729e44ea2d01220f9710810ef558402e4ee5c7efa881c0cd3919abeee4830ccafda40874a2ee37ac7727851cefa8ec9e6 SHA512 dec30d8bd5c92ec4bae88090b8f22d3aedbd14db14f87cade64e79887faf3b50e7ca6f7fbbaf506ac393a09947479ca1acdd985661cf9384940a8f8ecfdb387a +DIST haproxy-dataplaneapi-3.1.5-vendor.tar.xz 2620736 BLAKE2B dbb843f93680cfa62f62cc73abd111e451b5e2877d91acbb0130c2553da57effdae639ad6e795ab5ea71119b6084924b3cff13137259d7f6debaf1fae26e0845 SHA512 25c56935d8105605251c46b76ae519c941891e65c674b3a2467bdecb6b187087418675540b8bbcdca9607e946ade46388834d80e390d9a76017545ab91907087 +DIST haproxy-dataplaneapi-3.1.5.tar.gz 956585 BLAKE2B fee63a14108de5590f36e9efe96586b178ba81fbd348c087adc86edcb0b981139443f706d89d2e89e366663fef396d9507ac34acc333f5e2b022b1fd34717846 SHA512 0357364c69172d83122fd07b49d84ec123e55b3ec63f262c8965f9848cdeb9b22496a57d0da6481fa4d0b6d10e76165068bee865d7255d87c5548c4567eaa2e0 diff --git a/net-proxy/haproxy-dataplaneapi/haproxy-dataplaneapi-3.1.5.ebuild b/net-proxy/haproxy-dataplaneapi/haproxy-dataplaneapi-3.1.5.ebuild new file mode 100644 index 000000000000..a113aa99ca10 --- /dev/null +++ b/net-proxy/haproxy-dataplaneapi/haproxy-dataplaneapi-3.1.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit go-module + +DESCRIPTION="haproxy dataplane api / sidecar" +HOMEPAGE="https://github.com/haproxytech/dataplaneapi https://www.haproxy.com/documentation/dataplaneapi/latest/" + +SRC_URI="https://github.com/haproxytech/dataplaneapi/archive/v${PV}.tar.gz -> ${P}.tar.gz + http://gentooexperimental.org/~patrick/${P}-vendor.tar.xz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +S="${WORKDIR}/dataplaneapi-${PV}" + +src_compile() { + ego build -o ./build/dataplaneapi ./cmd/dataplaneapi/ +} + +src_install() { + dobin build/dataplaneapi + dodoc README.md +}
