public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Georgy Yakovlev" <gyakovlev@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libtgvoip/
Date: Sun, 22 Jan 2023 23:36:46 +0000 (UTC)	[thread overview]
Message-ID: <1674429944.41be7afec788dfe31e34f260bbe0f2be5945f2a2.gyakovlev@gentoo> (raw)

commit:     41be7afec788dfe31e34f260bbe0f2be5945f2a2
Author:     Esteve Varela Colominas <esteve.varela <AT> gmail <DOT> com>
AuthorDate: Sat Jan 21 10:21:45 2023 +0000
Commit:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Sun Jan 22 23:25:44 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41be7afe

media-libs/libtgvoip: Bump to 2.4.4_p20221208

Signed-off-by: Esteve Varela Colominas <esteve.varela <AT> gmail.com>
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>

 media-libs/libtgvoip/Manifest                      |  1 +
 .../libtgvoip/libtgvoip-2.4.4_p20221208.ebuild     | 63 ++++++++++++++++++++++
 media-libs/libtgvoip/metadata.xml                  |  3 ++
 3 files changed, 67 insertions(+)

diff --git a/media-libs/libtgvoip/Manifest b/media-libs/libtgvoip/Manifest
index c9192c7802f4..fbc66f47c8e8 100644
--- a/media-libs/libtgvoip/Manifest
+++ b/media-libs/libtgvoip/Manifest
@@ -1,2 +1,3 @@
 DIST libtgvoip-2.4.4_p20220117.tar.gz 1098045 BLAKE2B 752b3b26f511316b8261d9ebb833e2b74df91377daca255fbbeefb18b3ab3811b97eaee1d9965e95ed9d215467e6ff5dc857369d381d470570cb87c3bfec33af SHA512 b9d8e354e9b8f9226d5e06397fdf3c91f71fee890db7d180dffae2e3fb6f74bca1c31b7f87049257c3edf44c2171780ed5781877cf8f2d40b2d56c1f5385ef77
 DIST libtgvoip-2.4.4_p20220503.tar.gz 1098061 BLAKE2B 5389a3783fa5179d10a18ef0282ab65d1526c829852095718384c2ba476ebfb1ee1f997f71b47424ef60a826055bc63d0d2dde7980de98c978860d72717ffefb SHA512 68f1e5b46df3b974d39333949e586ed00243044ff4bcac31937cba7eced6266fdacfd6ff3c6453f7dfa64ec82dd3aeafa251411dc85de0aae26b2cd0d8a79013
+DIST libtgvoip-2.4.4_p20221208.tar.gz 1098020 BLAKE2B 6f1eae38e4396ca3b88ab4337176a6076d5f9008b2a865cd286265a9b73d83d44c2cc6828b65dcb580a897a19badeab502395e2128a15c276ae796ac1ab0da68 SHA512 62243629890b1c13f1dbbffae4f82964a0fe23d2071852730674ccbef31126c6e205cfa526f07ba1549ef8eae31e371fb4335ce5f95fd649560bee2b3b530e64

diff --git a/media-libs/libtgvoip/libtgvoip-2.4.4_p20221208.ebuild b/media-libs/libtgvoip/libtgvoip-2.4.4_p20221208.ebuild
new file mode 100644
index 000000000000..4bd604dec9f6
--- /dev/null
+++ b/media-libs/libtgvoip/libtgvoip-2.4.4_p20221208.ebuild
@@ -0,0 +1,63 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic autotools
+
+DESCRIPTION="VoIP library for Telegram clients"
+HOMEPAGE="https://github.com/telegramdesktop/libtgvoip"
+
+LIBTGVOIP_COMMIT="0ffe2e51bfe14b533b860002f1c2e87e5f8c00c0"
+SRC_URI="https://github.com/telegramdesktop/libtgvoip/archive/${LIBTGVOIP_COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${LIBTGVOIP_COMMIT}"
+
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv"
+IUSE="+dsp +alsa pulseaudio"
+
+DEPEND="
+	dev-libs/openssl:=
+	media-libs/opus
+	alsa? ( media-libs/alsa-lib )
+	dsp? ( media-libs/tg_owt:= )
+	pulseaudio? ( media-sound/pulseaudio )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+REQUIRED_USE="
+	|| ( alsa pulseaudio )
+"
+
+src_prepare() {
+	# Will be controlled by us
+	sed -i -e '/^CFLAGS += -DTGVOIP_NO_DSP/d' Makefile.am || die
+	# https://bugs.gentoo.org/717210
+	echo 'libtgvoip_la_LIBTOOLFLAGS = --tag=CXX' >> Makefile.am || die
+	default
+	eautoreconf
+}
+
+src_configure() {
+	# Not using the CMake build despite being the preferred one, because
+	# it's lacking relevant configure options.
+	local myconf=(
+		--disable-dsp  # WebRTC is linked from tg_owt
+		$(use_with alsa)
+		$(use_with pulseaudio pulse)
+	)
+	if use dsp; then
+		append-cppflags "-I${ESYSROOT}/usr/include/tg_owt"
+		append-cppflags "-I${ESYSROOT}/usr/include/tg_owt/third_party/abseil-cpp"
+		append-libs '-ltg_owt'
+	else
+		append-cppflags '-DTGVOIP_NO_DSP'
+	fi
+	econf "${myconf[@]}"
+}
+
+src_install() {
+	default
+	find "${D}" -name '*.la' -delete || die
+}

diff --git a/media-libs/libtgvoip/metadata.xml b/media-libs/libtgvoip/metadata.xml
index 12ff7670bc20..0837c875ba4e 100644
--- a/media-libs/libtgvoip/metadata.xml
+++ b/media-libs/libtgvoip/metadata.xml
@@ -12,4 +12,7 @@
 	<use>
 		<flag name="dsp">Enable signal processing (echo cancellation, noise suppression, and automatic gain control)</flag>
 	</use>
+	<upstream>
+		<remote-id type="github">telegramdesktop/libtgvoip</remote-id>
+	</upstream>
 </pkgmetadata>


             reply	other threads:[~2023-01-22 23:36 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-22 23:36 Georgy Yakovlev [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-06  2:05 [gentoo-commits] repo/gentoo:master commit in: media-libs/libtgvoip/ Yixun Lan
2024-10-23 10:49 Yixun Lan
2024-09-04  2:32 Yixun Lan
2024-03-03 22:12 Sam James
2024-01-02  6:06 WANG Xuerui
2023-12-11 13:25 Yixun Lan
2023-09-11  1:02 Sam James
2023-04-17 20:24 Georgy Yakovlev
2023-03-30 17:57 Arthur Zamarin
2023-02-01 19:27 Andreas Sturmlechner
2023-01-21 16:53 Sam James
2022-08-02 22:07 Georgy Yakovlev
2022-04-15  6:04 Sam James
2022-03-20 20:40 Arthur Zamarin
2022-02-16 19:43 Georgy Yakovlev
2022-02-16 19:43 Georgy Yakovlev
2022-02-07  6:32 Sam James
2022-01-10  8:38 Agostino Sarubbo
2022-01-07 17:01 Georgy Yakovlev
2022-01-07 17:01 Georgy Yakovlev
2021-12-10 21:31 Georgy Yakovlev
2021-12-10 21:31 Georgy Yakovlev
2021-09-24 17:33 Georgy Yakovlev
2021-08-05 16:42 Georgy Yakovlev
2021-08-04  6:39 Agostino Sarubbo
2021-06-28  8:38 Georgy Yakovlev
2021-06-28  8:38 Georgy Yakovlev
2021-06-12  1:18 Sam James
2021-05-03 17:01 Georgy Yakovlev
2021-05-02 17:48 Mikle Kolyada
2021-04-23 19:06 Georgy Yakovlev
2021-04-22 12:08 Sam James
2021-03-25 19:31 Georgy Yakovlev
2021-03-25 19:31 Georgy Yakovlev
2021-02-28 20:26 Georgy Yakovlev
2020-11-03  9:07 Georgy Yakovlev
2020-11-01  5:30 Sam James
2020-10-31 21:25 Georgy Yakovlev
2020-10-31  0:40 Georgy Yakovlev
2020-10-29  7:58 Georgy Yakovlev
2020-10-27  5:59 Georgy Yakovlev
2020-10-27  5:54 Georgy Yakovlev
2020-10-26  8:03 Georgy Yakovlev
2020-07-17 17:58 Georgy Yakovlev
2020-07-17 15:05 Agostino Sarubbo
2020-07-08 21:48 Georgy Yakovlev
2020-07-01 17:02 Georgy Yakovlev
2020-07-01 17:02 Georgy Yakovlev
2020-07-01  6:06 Georgy Yakovlev
2020-06-29 23:39 Georgy Yakovlev
2020-06-04  1:56 Georgy Yakovlev
2020-05-25  7:04 Georgy Yakovlev
2020-05-14 13:22 Agostino Sarubbo
2020-05-02  0:43 Georgy Yakovlev
2020-04-21  8:52 Agostino Sarubbo
2020-03-15 19:14 Georgy Yakovlev
2020-02-22  1:30 Georgy Yakovlev
2020-02-12 22:42 Georgy Yakovlev
2020-02-12  5:25 Georgy Yakovlev

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1674429944.41be7afec788dfe31e34f260bbe0f2be5945f2a2.gyakovlev@gentoo \
    --to=gyakovlev@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox