From: "Georgy Yakovlev" <gyakovlev@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libtgvoip/
Date: Wed, 1 Jul 2020 17:02:24 +0000 (UTC) [thread overview]
Message-ID: <1593622910.a50c198f0fb25ba5cbc2a4c83826f654d80a97f7.gyakovlev@gentoo> (raw)
commit: a50c198f0fb25ba5cbc2a4c83826f654d80a97f7
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 1 16:45:45 2020 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Wed Jul 1 17:01:50 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a50c198f
media-libs/libtgvoip: bump to new snapshot
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
media-libs/libtgvoip/Manifest | 1 +
.../libtgvoip/libtgvoip-2.4.4_p20200701.ebuild | 53 ++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/media-libs/libtgvoip/Manifest b/media-libs/libtgvoip/Manifest
index 570522f059a..6b798fe8f50 100644
--- a/media-libs/libtgvoip/Manifest
+++ b/media-libs/libtgvoip/Manifest
@@ -1,3 +1,4 @@
DIST libtgvoip-2.4.4_p20200430.tar.gz 1481816 BLAKE2B 82bf6b880f28c9b63f547e473547298e25ea3b7e35b3a832a7375b0ae3a745ea3b5d55f5e635ec678e388a608532a14de85f50828da1dbc9ed77dc23be64b9e0 SHA512 f3130c50dfa7d3f710809bb72fb71d1b246bc91e9f8f413e704499011c8ff01f87a7226315f7cfd6edf2d2b8b6c875508185f516792ff5db74556aface33cdb4
DIST libtgvoip-2.4.4_p20200525.tar.gz 1482357 BLAKE2B 9324165a2818f3d6907fb80403c8df83e196e7566161d781f5608c2bc4fc0f34a4b69883202ac1a9d20d783d363534c11436cedcd24fa93c092eaca97369734e SHA512 5c9fbbccde8fb7dbe8076cda53a3ec80f633493c9b3016627307463dca3426623703cd28ea7ad360bd9ff7c062edecd04787b9f8a32c439cc6622d8680d624c0
DIST libtgvoip-2.4.4_p20200627.tar.gz 1090601 BLAKE2B 243ee9c85224f903579581c217c7cec818311bd77af0fedb937c1bdb64bf92441c5c0d72515e1fee31b4a89faf59d0a3e3447cdb458303116cfde887e333faa2 SHA512 73a861ea2dba9afcae061e5d8ac0e03d1c65dc7b5e65bcacb3a95d74e816fe96604f24e042e7cf0d67723281c39f85f4337eb2fde275d68e50b0104f29f42271
+DIST libtgvoip-2.4.4_p20200701.tar.gz 1090571 BLAKE2B e1e3bf129e124aa907e15afaefb1ea2ae44fcb7ab6670e7727ac388ef498c21978f668760022ec002fafecdf51b85d872364025f2282acc88532ef3b994c4e14 SHA512 44f650509d0c6d15adcb5bb5a4af66432c808fece5169844f37d4eb3fb25f729a1caa1c2cf68a6764d134e187b156a86e93b383984f2d4dd86a69cb3e9b2b888
diff --git a/media-libs/libtgvoip/libtgvoip-2.4.4_p20200701.ebuild b/media-libs/libtgvoip/libtgvoip-2.4.4_p20200701.ebuild
new file mode 100644
index 00000000000..65f68701687
--- /dev/null
+++ b/media-libs/libtgvoip/libtgvoip-2.4.4_p20200701.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+EGIT_COMMIT="ad55e7403ab7f268304ae9045eddef479a574ae5"
+
+DESCRIPTION="VoIP library for Telegram clients"
+HOMEPAGE="https://github.com/telegramdesktop/libtgvoip"
+SRC_URI="https://github.com/telegramdesktop/libtgvoip/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64"
+IUSE="+alsa +dsp libressl pulseaudio"
+
+DEPEND="
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ media-libs/opus:=
+ alsa? ( media-libs/alsa-lib )
+ pulseaudio? ( media-sound/pulseaudio )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+REQUIRED_USE="|| ( alsa pulseaudio )"
+
+S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
+
+src_prepare() {
+ default
+ sed -i 's/-std=gnu++0x/-std=gnu++17/' Makefile.am || die
+ eautoreconf
+}
+
+src_configure() {
+ local myconf=(
+ --disable-static
+ $(use_enable dsp)
+ $(use_with alsa)
+ $(use_with pulseaudio pulse)
+ )
+
+ econf "${myconf[@]}"
+}
+
+src_install() {
+ default
+ find "${D}" -name '*.la' -delete || die
+}
next reply other threads:[~2020-07-01 17:02 UTC|newest]
Thread overview: 60+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-01 17:02 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-22 23:36 Georgy Yakovlev
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 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=1593622910.a50c198f0fb25ba5cbc2a4c83826f654d80a97f7.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