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 C7F78138334 for ; Sat, 18 Aug 2018 08:30:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61A0FE0869; Sat, 18 Aug 2018 08:30:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3C186E0869 for ; Sat, 18 Aug 2018 08:30:21 +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 7E71B33E695 for ; Sat, 18 Aug 2018 08:30:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D090395 for ; Sat, 18 Aug 2018 08:30:17 +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: <1534580232.f637952fbb392711490a5836dcba6ee1ce006d66.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/flvstreamer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/flvstreamer/flvstreamer-2.1c.ebuild X-VCS-Directories: media-video/flvstreamer/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f637952fbb392711490a5836dcba6ee1ce006d66 X-VCS-Branch: master Date: Sat, 18 Aug 2018 08:30:17 +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: 438170c4-bbf7-4c72-8926-4dc9c76c9f98 X-Archives-Hash: 07e355a6e04b50c4cea89867c8578c70 commit: f637952fbb392711490a5836dcba6ee1ce006d66 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Aug 18 08:17:12 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Aug 18 08:17:12 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f637952f media-video/flvstreamer: EAPI-7 bump Thanks-to: Michael Mair-Keimberger (iamnr3) gmail.com> Closes: https://bugs.gentoo.org/663804 Closes: https://github.com/gentoo/gentoo/pull/9198 media-video/flvstreamer/flvstreamer-2.1c.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/media-video/flvstreamer/flvstreamer-2.1c.ebuild b/media-video/flvstreamer/flvstreamer-2.1c.ebuild index f8aed0990fb..2989c8af30d 100644 --- a/media-video/flvstreamer/flvstreamer-2.1c.ebuild +++ b/media-video/flvstreamer/flvstreamer-2.1c.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" +EAPI=7 inherit toolchain-funcs @@ -13,12 +13,13 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~ppc x86" IUSE="" + S="${WORKDIR}/${PN}" src_prepare() { + default #fix Makefile ( bug #298535 and bug #318353) - sed -i 's/\$(MAKEFLAGS)//g' Makefile \ - || die "failed to fixe Makefile" + sed -i 's/\$(MAKEFLAGS)//g' Makefile || die "failed to fix Makefile" } src_compile() { @@ -30,6 +31,6 @@ src_compile() { } src_install() { - dobin {${PN},streams} || die "dobin failed" - dodoc README ChangeLog || die "dodoc failed" + dobin {${PN},streams} + dodoc README ChangeLog }