From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2828915800F for ; Wed, 8 Feb 2023 12:10:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 226FFE07E1; Wed, 8 Feb 2023 12:10:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E6640E07D3 for ; Wed, 8 Feb 2023 12:10:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2F58E33E4AD for ; Wed, 8 Feb 2023 12:10:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC5568AC for ; Wed, 8 Feb 2023 12:09:57 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1675817306.8373b3b69d0e63b81a4f111b718c3dfde9112f46.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/mautrix/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/mautrix/mautrix-0.19.2.ebuild X-VCS-Directories: dev-python/mautrix/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 8373b3b69d0e63b81a4f111b718c3dfde9112f46 X-VCS-Branch: master Date: Wed, 8 Feb 2023 12:09:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e458213c-6061-4d54-a72b-624a7a6fdbee X-Archives-Hash: 856c797329d0736ca400f65580f08101 commit: 8373b3b69d0e63b81a4f111b718c3dfde9112f46 Author: Julien Roy jroy ca> AuthorDate: Wed Feb 8 00:45:42 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Feb 8 00:48:26 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8373b3b6 dev-python/mautrix: add optfeature ffmpeg Signed-off-by: Julien Roy jroy.ca> dev-python/mautrix/mautrix-0.19.2.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/mautrix/mautrix-0.19.2.ebuild b/dev-python/mautrix/mautrix-0.19.2.ebuild index 75042c921..c8fc1efb6 100644 --- a/dev-python/mautrix/mautrix-0.19.2.ebuild +++ b/dev-python/mautrix/mautrix-0.19.2.ebuild @@ -6,7 +6,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{9..10} ) -inherit distutils-r1 +inherit distutils-r1 optfeature DESCRIPTION="A Python 3 asyncio Matrix framework" HOMEPAGE="https://github.com/mautrix/python/" @@ -35,3 +35,7 @@ RDEPEND=" DEPEND="${RDEPEND}" distutils_enable_tests pytest + +pkg_postinst() { + optfeature "media transcoding" media-video/ffmpeg +}