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 29EF1138334 for ; 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 19130E08A6; 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 E2BA6E08AA for ; 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 4E4BD335CF2 for ; Sat, 16 Feb 2019 18:04:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B36CF540 for ; Sat, 16 Feb 2019 18:04:43 +0000 (UTC) From: "Andreas Sturmlechner" 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" Message-ID: <1550340272.2035856de226e328c4021dd74370b63cedd86e98.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.ebuild X-VCS-Directories: net-libs/srt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2035856de226e328c4021dd74370b63cedd86e98 X-VCS-Branch: master Date: Sat, 16 Feb 2019 18:04:43 +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: e67220ad-c1a9-4003-ac44-cc738f945e44 X-Archives-Hash: 972685a8a8038aa042a23939816f9b42 commit: 2035856de226e328c4021dd74370b63cedd86e98 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Feb 16 17:22:27 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Feb 16 18:04:32 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2035856d net-libs/srt: Drop 1.3.1 (r0) Package-Manager: Portage-2.3.60, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/srt/srt-1.3.1.ebuild | 50 ------------------------------------------- 1 file changed, 50 deletions(-) diff --git a/net-libs/srt/srt-1.3.1.ebuild b/net-libs/srt/srt-1.3.1.ebuild deleted file mode 100644 index f73f9d54a82..00000000000 --- a/net-libs/srt/srt-1.3.1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-multilib - -DESCRIPTION="Open-source implementation of the Secure Real-time Transport Protocol (SRTP)" -HOMEPAGE="https://github.com/Haivision/srt" - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/Haivision/${PN}.git" - inherit git-r3 -else - SRC_URI="https://github.com/Haivision/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 -sparc ~x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos" -fi - -LICENSE="LGPL-2.1" -SLOT="0" -IUSE="doc libressl gnutls" - -RDEPEND=" - gnutls? ( net-libs/gnutls ) - !gnutls? ( - !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] ) - libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] ) - ) -" -DEPEND="${RDEPEND}" -DOCS=( README.md ) - -PATCHES=( - "${FILESDIR}/${PN}-always-GNUInstallDirs.patch" - "${FILESDIR}/${P}-no-rpath.patch" - "${FILESDIR}/${P}-use-destdir-for-symlinks-09afc227e0880b12a98e18ee8182f89c3a80e3a6.patch" -) - -src_prepare() { - cmake-utils_src_prepare - sed -i -e "s:hcrypt_ut.c::" "${S}"/haicrypt/*.maf || die - sed -i -e 's:DESTINATION lib:DESTINATION lib${LIB_SUFFIX}:' CMakeLists.txt || die -} - -src_configure() { - local mycmakeargs=( - -DUSE_GNUTLS=$(usex gnutls) - ) - cmake-multilib_src_configure -}