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 620A1138334 for ; Fri, 29 Jun 2018 07:39:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B5AFE0891; Fri, 29 Jun 2018 07:39:28 +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 E056DE0891 for ; Fri, 29 Jun 2018 07:39:27 +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 6C065335C71 for ; Fri, 29 Jun 2018 07:39:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2524348 for ; Fri, 29 Jun 2018 07:39:23 +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: <1530257956.47c0313dd95bf0284fd9eef981f742124f1d2d01.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/x265/files/, media-libs/x265/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/x265/files/non_x86.patch media-libs/x265/x265-2.8.ebuild X-VCS-Directories: media-libs/x265/ media-libs/x265/files/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 47c0313dd95bf0284fd9eef981f742124f1d2d01 X-VCS-Branch: master Date: Fri, 29 Jun 2018 07:39:23 +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: cfcdea1b-f1f5-428a-8189-c6c114584fe9 X-Archives-Hash: 18ca275fba7f8d8378bfec8b872dc83b commit: 47c0313dd95bf0284fd9eef981f742124f1d2d01 Author: Alexis Ballier gentoo org> AuthorDate: Fri Jun 29 07:39:06 2018 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Fri Jun 29 07:39:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47c0313d media-libs/x265: backport upstream patch to fix build error Package-Manager: Portage-2.3.41, Repoman-2.3.9 media-libs/x265/files/non_x86.patch | 20 ++++++++++++++++++++ media-libs/x265/x265-2.8.ebuild | 1 + 2 files changed, 21 insertions(+) diff --git a/media-libs/x265/files/non_x86.patch b/media-libs/x265/files/non_x86.patch new file mode 100644 index 00000000000..3c7e389329a --- /dev/null +++ b/media-libs/x265/files/non_x86.patch @@ -0,0 +1,20 @@ +# HG changeset patch +# User Jayashree +# Date 1527224165 -19800 +# Fri May 25 10:26:05 2018 +0530 +# Node ID 4504219210793536d921ee4e0b3058698c630bf4 +# Parent cc2c5e46f3c87d27e3602af30b06ba6a0fbe2704 +Fix build error on on ppc64le + +diff -r cc2c5e46f3c8 -r 450421921079 source/common/param.cpp +--- a/source/common/param.cpp Mon May 21 18:42:29 2018 +0530 ++++ b/source/common/param.cpp Fri May 25 10:26:05 2018 +0530 +@@ -633,7 +633,7 @@ + if (bValueWasNull) + p->cpuid = atobool(value); + else +- p->cpuid = parseCpuName(value, bError); ++ p->cpuid = parseCpuName(value, bError, false); + #endif + } + OPT("fps") diff --git a/media-libs/x265/x265-2.8.ebuild b/media-libs/x265/x265-2.8.ebuild index b7f4c3f2050..7f60a7f1134 100644 --- a/media-libs/x265/x265-2.8.ebuild +++ b/media-libs/x265/x265-2.8.ebuild @@ -31,6 +31,7 @@ PATCHES=( "${FILESDIR}/arm.patch" "${FILESDIR}/neon.patch" "${FILESDIR}/ppc64.patch" + "${FILESDIR}/non_x86.patch" ) src_unpack() {