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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 25204158086 for ; Thu, 21 Oct 2021 20:37:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 677D6E0887; Thu, 21 Oct 2021 20:37:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 48256E0886 for ; Thu, 21 Oct 2021 20:37:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 09A043435B0 for ; Thu, 21 Oct 2021 20:37:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A476156 for ; Thu, 21 Oct 2021 20:37:29 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1634848549.192f80c2a3164d59488ea4082cd86e892a2e03cf.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/transmission/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/transmission/metadata.xml net-p2p/transmission/transmission-3.00-r1.ebuild net-p2p/transmission/transmission-9999.ebuild X-VCS-Directories: net-p2p/transmission/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 192f80c2a3164d59488ea4082cd86e892a2e03cf X-VCS-Branch: master Date: Thu, 21 Oct 2021 20:37:29 +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: 63adba38-1788-4f3f-9481-1602aadfaff4 X-Archives-Hash: 016fe80235a79f5d7b576f3bf1ae550b commit: 192f80c2a3164d59488ea4082cd86e892a2e03cf Author: Conrad Kostecki gentoo org> AuthorDate: Thu Oct 21 20:35:49 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu Oct 21 20:35:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=192f80c2 net-p2p/transmission: add cli use flag This adds the option to enable the command-line client. Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> net-p2p/transmission/metadata.xml | 1 + net-p2p/transmission/transmission-3.00-r1.ebuild | 3 ++- net-p2p/transmission/transmission-9999.ebuild | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/net-p2p/transmission/metadata.xml b/net-p2p/transmission/metadata.xml index d88ae8a19a1..6e518af5a18 100644 --- a/net-p2p/transmission/metadata.xml +++ b/net-p2p/transmission/metadata.xml @@ -6,6 +6,7 @@ Mike Gilbert + Build command-line client Optimize transmission for low-resource systems (smaller cache size, prefer unencrypted peer connections, etc.) Use mbed TLS instead of OpenSSL diff --git a/net-p2p/transmission/transmission-3.00-r1.ebuild b/net-p2p/transmission/transmission-3.00-r1.ebuild index 04d96b8b6ff..e02291fd6cb 100644 --- a/net-p2p/transmission/transmission-3.00-r1.ebuild +++ b/net-p2p/transmission/transmission-3.00-r1.ebuild @@ -21,7 +21,7 @@ HOMEPAGE="https://transmissionbt.com/" # MIT is in several libtransmission/ headers LICENSE="|| ( GPL-2 GPL-3 Transmission-OpenSSL-exception ) GPL-2 MIT" SLOT="0" -IUSE="appindicator gtk lightweight nls mbedtls qt5 static-libs systemd test" +IUSE="appindicator cli gtk lightweight nls mbedtls qt5 static-libs systemd test" RESTRICT="!test? ( test )" ACCT_DEPEND=" @@ -88,6 +88,7 @@ src_configure() { local mycmakeargs=( -DCMAKE_INSTALL_DOCDIR=share/doc/${PF} + -DENABLE_CLI=$(usex cli ON OFF) -DENABLE_GTK=$(usex gtk ON OFF) -DENABLE_LIGHTWEIGHT=$(usex lightweight ON OFF) -DENABLE_NLS=$(usex nls ON OFF) diff --git a/net-p2p/transmission/transmission-9999.ebuild b/net-p2p/transmission/transmission-9999.ebuild index 328bd3b3d14..87e1cd8915b 100644 --- a/net-p2p/transmission/transmission-9999.ebuild +++ b/net-p2p/transmission/transmission-9999.ebuild @@ -21,7 +21,7 @@ HOMEPAGE="https://transmissionbt.com/" # MIT is in several libtransmission/ headers LICENSE="|| ( GPL-2 GPL-3 Transmission-OpenSSL-exception ) GPL-2 MIT" SLOT="0" -IUSE="appindicator gtk lightweight nls mbedtls qt5 static-libs systemd test" +IUSE="appindicator cli gtk lightweight nls mbedtls qt5 static-libs systemd test" RESTRICT="!test? ( test )" ACCT_DEPEND=" @@ -84,6 +84,7 @@ src_configure() { local mycmakeargs=( -DCMAKE_INSTALL_DOCDIR=share/doc/${PF} + -DENABLE_CLI=$(usex cli ON OFF) -DENABLE_GTK=$(usex gtk ON OFF) -DENABLE_LIGHTWEIGHT=$(usex lightweight ON OFF) -DENABLE_NLS=$(usex nls ON OFF)