repo/proj/guru:dev commit in: net-voip/re/
"Dale Showers" <[email protected]>
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1787058360.b7a33f2d0aa60d40b103c9f51d36b7acd9a74a05.gentoo@gentoo> |
commit: b7a33f2d0aa60d40b103c9f51d36b7acd9a74a05
Author: Dale Showers <gentoo <AT> fictx <DOT> com>
AuthorDate: Tue Aug 18 13:01:55 2026 +0000
Commit: Dale Showers <gentoo <AT> fictx <DOT> com>
CommitDate: Tue Aug 18 13:06:00 2026 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b7a33f2d
net-voip/re: add 4.10.0
Signed-off-by: Dale Showers <gentoo <AT> fictx.com>
net-voip/re/Manifest | 1 +
net-voip/re/re-4.10.0.ebuild | 30 ++++++++++++++++++++++++++++++
2 files changed, 31 insertions(+)
diff --git a/net-voip/re/Manifest b/net-voip/re/Manifest
index 12ef6f4000..d6cf5f8b40 100644
--- a/net-voip/re/Manifest
+++ b/net-voip/re/Manifest
@@ -1 +1,2 @@
+DIST re-4.10.0.tar.gz 638152 BLAKE2B d873afe86701a09e9d4422d766b0d027b5d4e58a02c7c839c4121a2ae0ff450457bf5e699081ce75e32e2ed58648a5b868fa29f4385e84dbd84818e2ad0bd70d SHA512 a0da0078662f6d46ad6cfc981fe3ecdee02f9b82e7902691cf164b71002f37694142a5d484ed8c6d5428f16599da9ef2fc4bcf1792818a534e76f3dd72c739ed
DIST re-4.8.0.tar.gz 636577 BLAKE2B 9523fd223a1f38847a02ec81ffdf87059417a2be3088b79471ba0809febaf5a1f346a6d4cad64fbf6f72a7284cf0f700b94e3aa88ba7973642fe8bed0b9134cf SHA512 3f86f7b898ccc6b0b2dfecde82fe7ae17fcd507a3c50017b8ef792868c09c742ce723e49fdbac2162dc15fcb66c5518c53ed32297ebc8e3df09c651dd0323286
diff --git a/net-voip/re/re-4.10.0.ebuild b/net-voip/re/re-4.10.0.ebuild
new file mode 100644
index 0000000000..3dfe3cf7ef
--- /dev/null
+++ b/net-voip/re/re-4.10.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=
+ virtual/zlib:=
+ "
+
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ local mycmakeargs=(
+ -DLIBRE_BUILD_STATIC=$(usex static-libs ON OFF)
+ )
+ cmake_src_configure
+}