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 CC1161396D9 for ; Tue, 17 Oct 2017 05:35:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D632CE0BE9; Tue, 17 Oct 2017 05:35:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 A1C41E0BE9 for ; Tue, 17 Oct 2017 05:35:31 +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 DDC1F33BEA7 for ; Tue, 17 Oct 2017 05:35:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A22A1314 for ; Tue, 17 Oct 2017 05:35:28 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1508218505.26dceaebced3d049d5234de197b7d36f15832f86.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/ffmpeg/ffmpeg-3.2.6.ebuild media-video/ffmpeg/ffmpeg-3.2.7.ebuild media-video/ffmpeg/ffmpeg-3.3.3.ebuild media-video/ffmpeg/ffmpeg-3.3.4.ebuild media-video/ffmpeg/ffmpeg-3.4.ebuild media-video/ffmpeg/ffmpeg-9999.ebuild media-video/ffmpeg/metadata.xml X-VCS-Directories: media-video/ffmpeg/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 26dceaebced3d049d5234de197b7d36f15832f86 X-VCS-Branch: master Date: Tue, 17 Oct 2017 05:35:28 +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: 3a5b758e-57ae-4e2d-b071-cf696a7e6b8d X-Archives-Hash: ecd7ab850b682715890163dc97c8d046 commit: 26dceaebced3d049d5234de197b7d36f15832f86 Author: Marty E. Plummer protonmail com> AuthorDate: Tue Oct 17 00:03:53 2017 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Tue Oct 17 05:35:05 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26dceaeb media-video/ffmpeg: use get_exeext on fftools_* Otherwise build will fail at building tools/aviocat instead of tools/aviocat.exe and so on. Package-Manager: Portage-2.3.11, Repoman-2.3.3 media-video/ffmpeg/ffmpeg-3.2.6.ebuild | 4 ++-- media-video/ffmpeg/ffmpeg-3.2.7.ebuild | 4 ++-- media-video/ffmpeg/ffmpeg-3.3.3.ebuild | 4 ++-- media-video/ffmpeg/ffmpeg-3.3.4.ebuild | 4 ++-- media-video/ffmpeg/ffmpeg-3.4.ebuild | 4 ++-- media-video/ffmpeg/ffmpeg-9999.ebuild | 4 ++-- media-video/ffmpeg/metadata.xml | 20 ++++++++++---------- 7 files changed, 22 insertions(+), 22 deletions(-) diff --git a/media-video/ffmpeg/ffmpeg-3.2.6.ebuild b/media-video/ffmpeg/ffmpeg-3.2.6.ebuild index b80c746f8b2..4ff6951374b 100644 --- a/media-video/ffmpeg/ffmpeg-3.2.6.ebuild +++ b/media-video/ffmpeg/ffmpeg-3.2.6.ebuild @@ -433,7 +433,7 @@ multilib_src_compile() { if multilib_is_native_abi; then for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then - emake V=1 tools/${i} + emake V=1 tools/${i}$(get_exeext) fi done fi @@ -445,7 +445,7 @@ multilib_src_install() { if multilib_is_native_abi; then for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then - dobin tools/${i} + dobin tools/${i}$(get_exeext) fi done fi diff --git a/media-video/ffmpeg/ffmpeg-3.2.7.ebuild b/media-video/ffmpeg/ffmpeg-3.2.7.ebuild index 15961769e9c..5cf850715a9 100644 --- a/media-video/ffmpeg/ffmpeg-3.2.7.ebuild +++ b/media-video/ffmpeg/ffmpeg-3.2.7.ebuild @@ -433,7 +433,7 @@ multilib_src_compile() { if multilib_is_native_abi; then for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then - emake V=1 tools/${i} + emake V=1 tools/${i}$(get_exeext) fi done fi @@ -445,7 +445,7 @@ multilib_src_install() { if multilib_is_native_abi; then for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then - dobin tools/${i} + dobin tools/${i}$(get_exeext) fi done fi diff --git a/media-video/ffmpeg/ffmpeg-3.3.3.ebuild b/media-video/ffmpeg/ffmpeg-3.3.3.ebuild index 7152de0c54a..9c490223fed 100644 --- a/media-video/ffmpeg/ffmpeg-3.3.3.ebuild +++ b/media-video/ffmpeg/ffmpeg-3.3.3.ebuild @@ -466,7 +466,7 @@ multilib_src_compile() { if multilib_is_native_abi; then for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then - emake V=1 tools/${i} + emake V=1 tools/${i}$(get_exeext) fi done @@ -485,7 +485,7 @@ multilib_src_install() { if multilib_is_native_abi; then for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then - dobin tools/${i} + dobin tools/${i}$(get_exeext) fi done diff --git a/media-video/ffmpeg/ffmpeg-3.3.4.ebuild b/media-video/ffmpeg/ffmpeg-3.3.4.ebuild index 527fc20e356..d3e88130938 100644 --- a/media-video/ffmpeg/ffmpeg-3.3.4.ebuild +++ b/media-video/ffmpeg/ffmpeg-3.3.4.ebuild @@ -467,7 +467,7 @@ multilib_src_compile() { if multilib_is_native_abi; then for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then - emake V=1 tools/${i} + emake V=1 tools/${i}$(get_exeext) fi done @@ -486,7 +486,7 @@ multilib_src_install() { if multilib_is_native_abi; then for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then - dobin tools/${i} + dobin tools/${i}$(get_exeext) fi done diff --git a/media-video/ffmpeg/ffmpeg-3.4.ebuild b/media-video/ffmpeg/ffmpeg-3.4.ebuild index 265ef86db52..5fc93de56d5 100644 --- a/media-video/ffmpeg/ffmpeg-3.4.ebuild +++ b/media-video/ffmpeg/ffmpeg-3.4.ebuild @@ -446,7 +446,7 @@ multilib_src_compile() { if multilib_is_native_abi; then for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then - emake V=1 tools/${i} + emake V=1 tools/${i}$(get_exeext) fi done @@ -465,7 +465,7 @@ multilib_src_install() { if multilib_is_native_abi; then for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then - dobin tools/${i} + dobin tools/${i}$(get_exeext) fi done diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild index 41b89ca5e01..fa68683f56f 100644 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild @@ -446,7 +446,7 @@ multilib_src_compile() { if multilib_is_native_abi; then for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then - emake V=1 tools/${i} + emake V=1 tools/${i}$(get_exeext) fi done @@ -465,7 +465,7 @@ multilib_src_install() { if multilib_is_native_abi; then for i in "${FFTOOLS[@]}" ; do if use fftools_${i} ; then - dobin tools/${i} + dobin tools/${i}$(get_exeext) fi done diff --git a/media-video/ffmpeg/metadata.xml b/media-video/ffmpeg/metadata.xml index a0b4d7e7ad7..a23d63c7c23 100644 --- a/media-video/ffmpeg/metadata.xml +++ b/media-video/ffmpeg/metadata.xml @@ -1,10 +1,10 @@ - - media-video@gentoo.org - - + + media-video@gentoo.org + + Enables Adaptive Multi-Rate Audio support Enables Adaptive Multi-Rate Audio encoding support with media-libs/vo-amrwbenc. Enables optimizations for armv5te processors. @@ -56,10 +56,10 @@ Enables net-libs/zeromq support with the zmq/azmq filters. Enables media-libs/zimg based scale filter. Enables media-libs/zvbi based teletext decoder. - - - For building against. This is the only slot that provides - headers and command line tools. Binary compatibility slots come and go - as required, so always pin dependencies to this slot when appropriate. - + + + For building against. This is the only slot that provides + headers and command line tools. Binary compatibility slots come and go + as required, so always pin dependencies to this slot when appropriate. +