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 33B3D1382C5 for ; Thu, 25 Feb 2021 15:38:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8702FE096F; Thu, 25 Feb 2021 15:38:26 +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 6BB8BE0960 for ; Thu, 25 Feb 2021 15:38:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 76ED4340F60 for ; Thu, 25 Feb 2021 15:38:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 112644E9 for ; Thu, 25 Feb 2021 15:38:24 +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: <1614267485.d8e44c3634b67dbe61f710bce45d618a05199e24.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.4.2.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: d8e44c3634b67dbe61f710bce45d618a05199e24 X-VCS-Branch: master Date: Thu, 25 Feb 2021 15:38:24 +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: b984da3a-50a7-4a42-8446-d48cd3ff3a5c X-Archives-Hash: a28d519ccf5b6a44ec9850b8223dd3c9 commit: d8e44c3634b67dbe61f710bce45d618a05199e24 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Feb 25 11:33:19 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Feb 25 15:38:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8e44c36 net-libs/srt: Switch to cmake.eclass Closes: https://bugs.gentoo.org/770568 Package-Manager: Portage-3.0.15, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/srt/srt-1.4.2.ebuild | 3 ++- net-libs/srt/srt-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/net-libs/srt/srt-1.4.2.ebuild b/net-libs/srt/srt-1.4.2.ebuild index 262ecbb7e3d..35ef265603d 100644 --- a/net-libs/srt/srt-1.4.2.ebuild +++ b/net-libs/srt/srt-1.4.2.ebuild @@ -3,6 +3,7 @@ EAPI=7 +CMAKE_ECLASS=cmake inherit cmake-multilib DESCRIPTION="Secure Reliable Transport (SRT) library and tools" @@ -37,7 +38,7 @@ PATCHES=( ) src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare sed -i -e "s:hcrypt_ut.c::" "${S}"/haicrypt/*.maf || die } diff --git a/net-libs/srt/srt-9999.ebuild b/net-libs/srt/srt-9999.ebuild index a75247ff1f8..80a73bd9e54 100644 --- a/net-libs/srt/srt-9999.ebuild +++ b/net-libs/srt/srt-9999.ebuild @@ -3,6 +3,7 @@ EAPI=7 +CMAKE_ECLASS=cmake inherit cmake-multilib DESCRIPTION="Secure Reliable Transport (SRT) library and tools" @@ -41,7 +42,7 @@ PATCHES=( ) src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare sed -i -e "s:hcrypt_ut.c::" haicrypt/*.maf || die }