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 76475139085 for ; Sun, 18 Dec 2016 18:45:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7106E0E0C; Sun, 18 Dec 2016 18:45:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 85E8EE0E0C for ; Sun, 18 Dec 2016 18:45:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 59EF9340F27 for ; Sun, 18 Dec 2016 18:45:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0837291A for ; Sun, 18 Dec 2016 18:45:29 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1482086727.f42e56c6cdca886fc0abb1e9f2e741c0b587b85b.floppym@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-9999.ebuild X-VCS-Directories: net-p2p/transmission/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: f42e56c6cdca886fc0abb1e9f2e741c0b587b85b X-VCS-Branch: master Date: Sun, 18 Dec 2016 18:45: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-Archives-Salt: 15006c17-0940-487b-91c2-9d8833e7fb87 X-Archives-Hash: 9d317729f1f6563d95227cc5a978e06a commit: f42e56c6cdca886fc0abb1e9f2e741c0b587b85b Author: Mike Gilbert gentoo org> AuthorDate: Sun Dec 18 18:45:04 2016 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Dec 18 18:45:27 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f42e56c6 net-p2p/transmission: PolarSSL is dead; use mbed TLS instead Package-Manager: Portage-2.3.3_p7, Repoman-2.3.1 net-p2p/transmission/metadata.xml | 2 +- net-p2p/transmission/transmission-9999.ebuild | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/net-p2p/transmission/metadata.xml b/net-p2p/transmission/metadata.xml index 35f2bcf..e49e57c 100644 --- a/net-p2p/transmission/metadata.xml +++ b/net-p2p/transmission/metadata.xml @@ -7,7 +7,7 @@ Optimize transmission for low-resource systems (smaller cache size, prefer unencrypted peer connections, etc.) - Use PolarSSL instead of OpenSSL + Use mbed TLS instead of OpenSSL Enable XFS filesystem capabilities by using sys-fs/xfsprogs headers (in building of fdlimit(.c)) diff --git a/net-p2p/transmission/transmission-9999.ebuild b/net-p2p/transmission/transmission-9999.ebuild index ade845a..6b8a640 100644 --- a/net-p2p/transmission/transmission-9999.ebuild +++ b/net-p2p/transmission/transmission-9999.ebuild @@ -33,16 +33,16 @@ HOMEPAGE="https://transmissionbt.com/" # MIT is in several libtransmission/ headers LICENSE="|| ( GPL-2 GPL-3 Transmission-OpenSSL-exception ) GPL-2 MIT" SLOT="0" -IUSE="ayatana gtk libressl lightweight nls polarssl qt5 systemd test" +IUSE="ayatana gtk libressl lightweight nls mbedtls qt5 systemd test" RESTRICT="!test? ( test )" RDEPEND=" >=dev-libs/libevent-2.0.10:= - !polarssl? ( + !mbedtls? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) - polarssl? ( >=net-libs/polarssl-1.2:0= ) + mbedtls? ( net-libs/mbedtls:0= ) net-libs/libnatpmp >=net-libs/miniupnpc-1.7:= >=net-misc/curl-7.16.3[ssl] @@ -102,7 +102,7 @@ src_configure() { -DUSE_SYSTEM_UTP=OFF -DUSE_SYSTEM_B64=OFF - -DWITH_CRYPTO=$(usex polarssl polarssl openssl) + -DWITH_CRYPTO=$(usex mbedtls polarssl openssl) -DWITH_INOTIFY=ON -DWITH_LIBAPPINDICATOR=$(usex ayatana ON OFF) -DWITH_SYSTEMD=$(usex systemd ON OFF)