From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1072801-garchives=archives.gentoo.org@lists.gentoo.org>
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 49CBB138335
	for <garchives@archives.gentoo.org>; Sat, 16 Feb 2019 18:04:48 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 214D6E08AA;
	Sat, 16 Feb 2019 18:04:47 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id DD0D0E08A6
	for <gentoo-commits@lists.gentoo.org>; Sat, 16 Feb 2019 18:04:46 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 56A30335CF5
	for <gentoo-commits@lists.gentoo.org>; Sat, 16 Feb 2019 18:04:45 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id A0042501
	for <gentoo-commits@lists.gentoo.org>; Sat, 16 Feb 2019 18:04:43 +0000 (UTC)
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" <asturm@gentoo.org>
Message-ID: <1550340268.2b8cf9a9bdb6e7f414068652963536155ccd791b.asturm@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/srt/
X-VCS-Repository: repo/gentoo
X-VCS-Files: net-libs/srt/srt-1.3.1-r1.ebuild net-libs/srt/srt-9999.ebuild
X-VCS-Directories: net-libs/srt/
X-VCS-Committer: asturm
X-VCS-Committer-Name: Andreas Sturmlechner
X-VCS-Revision: 2b8cf9a9bdb6e7f414068652963536155ccd791b
X-VCS-Branch: master
Date: Sat, 16 Feb 2019 18:04:43 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 9a59a7e5-f405-4799-9e52-df0464c8fcc5
X-Archives-Hash: 8e27abf9d87ca29b7fc9df952d16815e

commit:     2b8cf9a9bdb6e7f414068652963536155ccd791b
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 16 17:17:54 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Feb 16 18:04:28 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b8cf9a9

net-libs/srt: EAPI-7 bump, missing slot op, missing $MULTILIB_USEDEP

Drop unused USE doc.

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-libs/srt/{srt-9999.ebuild => srt-1.3.1-r1.ebuild} | 16 ++++++++--------
 net-libs/srt/srt-9999.ebuild                          | 18 +++++++++++-------
 2 files changed, 19 insertions(+), 15 deletions(-)

diff --git a/net-libs/srt/srt-9999.ebuild b/net-libs/srt/srt-1.3.1-r1.ebuild
similarity index 82%
copy from net-libs/srt/srt-9999.ebuild
copy to net-libs/srt/srt-1.3.1-r1.ebuild
index 6ba9d871779..c5284092389 100644
--- a/net-libs/srt/srt-9999.ebuild
+++ b/net-libs/srt/srt-1.3.1-r1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit cmake-multilib
 
@@ -18,22 +18,23 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-IUSE="doc libressl gnutls test"
+IUSE="gnutls libressl"
 
-RDEPEND="
-	gnutls? ( net-libs/gnutls )
+DEPEND="
+	gnutls? ( net-libs/gnutls:=[${MULTILIB_USEDEP}] )
 	!gnutls? (
 		!libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
 		libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] )
 	)
 "
-DEPEND="${RDEPEND}
-	test? ( dev-cpp/gtest )"
-RESTRICT="!test? ( test )"
+RDEPEND="${DEPEND}"
+
 DOCS=( README.md )
 
 PATCHES=(
 	"${FILESDIR}/${PN}-always-GNUInstallDirs.patch"
+	"${FILESDIR}/${P}-no-rpath.patch"
+	"${FILESDIR}/${P}-use-destdir-for-symlinks-09afc227e0880b12a98e18ee8182f89c3a80e3a6.patch"
 )
 
 src_prepare() {
@@ -45,7 +46,6 @@ src_prepare() {
 src_configure() {
 	local mycmakeargs=(
 		-DUSE_GNUTLS=$(usex gnutls)
-		-DENABLE_UNITTESTS=$(usex test)
 	)
 	cmake-multilib_src_configure
 }

diff --git a/net-libs/srt/srt-9999.ebuild b/net-libs/srt/srt-9999.ebuild
index 6ba9d871779..7cdc3dc723e 100644
--- a/net-libs/srt/srt-9999.ebuild
+++ b/net-libs/srt/srt-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit cmake-multilib
 
@@ -18,18 +18,22 @@ fi
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-IUSE="doc libressl gnutls test"
+IUSE="gnutls libressl test"
 
-RDEPEND="
-	gnutls? ( net-libs/gnutls )
+BDEPEND="
+	test? ( dev-cpp/gtest )
+"
+DEPEND="
+	gnutls? ( net-libs/gnutls:=[${MULTILIB_USEDEP}] )
 	!gnutls? (
 		!libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
 		libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] )
 	)
 "
-DEPEND="${RDEPEND}
-	test? ( dev-cpp/gtest )"
+RDEPEND="${DEPEND}"
+
 RESTRICT="!test? ( test )"
+
 DOCS=( README.md )
 
 PATCHES=(