net-voip/re: add 4.2.0

Signed-off-by: Dale Showers <gentoo@fictx.com>
This commit is contained in:
Dale Showers
2025-10-20 07:28:57 -04:00
parent 6edd55d984
commit 9e2288fbcd
2 changed files with 31 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST re-3.23.0.tar.gz 621962 BLAKE2B 6a032539d36f058346fbf6d82cb53fa755bd05f2ca2337cd26554b2c005ad27a444fe25f82a9cb44cb7f0854e3b4f2b5222525b875e004fd445224ac11d484b8 SHA512 460ebb7fee54d26dff7aab6420455073c3c90708eff8ef3a9a2cdc6922deeeb6b950d3791bc17d773bb1955513b2f300428fb364d13130d51536b6ef07aa7e9c
DIST re-3.24.0.tar.gz 625022 BLAKE2B c8f9c1c0519a656f769227fe8e6efe478926b9edf736b3dadef77fb316f6005a6f4116161ba3eafae2f5d917982bf837c9a22b07a4859d8223529c2c2d7f5fc6 SHA512 0be44d16ce57bac88f094a40651e528c4486225d1b017b5d586cc78ad02bc095358f6bebab9c7d9eea76996ece7efd71549da8ced7f4f736ab962f61ecbc8511
DIST re-4.2.0.tar.gz 626620 BLAKE2B 8dfea3b19dad28e5c28c2f11d7adc3473bf2438712a44e926b35c4635dfde54744b93fbc4fa4bc0a1c158ec1c0fd85a028dee7ea0e9cf5e82585fa498d6f0faf SHA512 32a77235b5d48433a908942fa5e4da6a3e06efe9ade59339d9191f199adc5bf1ff3e505fc641fd61594140b036e013fb656714f4dd5657dde87588413edf1441

View File

@@ -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
}