commit: 1f28058406ca1e406e85a4996037fd6d34eda591 Author: Dale Showers <gentoo <AT> fictx <DOT> com> AuthorDate: Thu Feb 20 12:41:30 2025 +0000 Commit: Dale Showers <gentoo <AT> fictx <DOT> com> CommitDate: Thu Feb 20 12:45:30 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1f280584
net-voip/re: add 3.20.0 Signed-off-by: Dale Showers <gentoo <AT> fictx.com> net-voip/re/Manifest | 1 + net-voip/re/re-3.20.0.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/net-voip/re/Manifest b/net-voip/re/Manifest index 7f294652c..1440b2c50 100644 --- a/net-voip/re/Manifest +++ b/net-voip/re/Manifest @@ -1,2 +1,3 @@ DIST re-3.18.0.tar.gz 613187 BLAKE2B 584f360c388f1c4d2937348a2a1c2824b885381905f4f66aeb3e6fea0a6ebb397dca86c94fe7b6c2b54de569032a9b35a3676d4bef35668c66cfed8620836dec SHA512 db9c67a60803a224a87aa4104d5a0a349d09946b5bf7c8b18fd121ed7517d25a5412b0516dfc6a386218db9d5020b65ac1253966052a4978075e6bfcb71dc908 DIST re-3.19.0.tar.gz 613021 BLAKE2B 304db418274e99adb93d6b14e114c8ebdfde64e835e18a4e9a01fc8f744914b7276ee7daee58d6f4ad3c58f798721c1fceaae93ba41d4f0dcc5aa897bb9ad40f SHA512 3714112a84add97b4e96cd74352ec13ba5def2ddefc6d549956caec3b4a9122942dd667359b8b66ba51b2a8c597373cb8d45f5b48c0aff782394b8bbdc43e836 +DIST re-3.20.0.tar.gz 615600 BLAKE2B a3f6fb2e03c8964bd9e934e91a29e87fb1b8935d89c8be405a7fe693010017a1301522384f1a02e3d8a0368513d5c8ad4000bc65b7c7ff1d7227756bef0d272b SHA512 4bafd05f4b5d20b988b1cee7ee673235d1bf5cd96caf5597219fe0b1b4509a61edbea628371f5ece384ca3ef881104100d7a425e7f7a327245a99a9c3374e53c diff --git a/net-voip/re/re-3.20.0.ebuild b/net-voip/re/re-3.20.0.ebuild new file mode 100644 index 000000000..6c3757c7a --- /dev/null +++ b/net-voip/re/re-3.20.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Generic library for real-time communications with async IO support" +HOMEPAGE="https://github.com/baresip/re" +SRC_URI="https://github.com/baresip/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="static-libs" + +DEPEND=" + dev-libs/openssl:0= + sys-libs/zlib + " + +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DLIBRE_BUILD_STATIC=$(usex static-libs ON OFF) + ) + cmake_src_configure +}