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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9053B158083 for ; Sun, 22 Sep 2024 11:08:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCB44E2E2D; Sun, 22 Sep 2024 11:08:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9DBD8E2E2A for ; Sun, 22 Sep 2024 11:08:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DA9E134347E for ; Sun, 22 Sep 2024 11:08:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 793F619CB for ; Sun, 22 Sep 2024 11:08:54 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1727003269.4b7ffaeaa89f7cc50efc5e6b947f2853a0956aae.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/x265/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/x265/x265-3.5-r5.ebuild media-libs/x265/x265-3.5-r6.ebuild media-libs/x265/x265-3.6-r1.ebuild media-libs/x265/x265-3.6.ebuild media-libs/x265/x265-9999.ebuild X-VCS-Directories: media-libs/x265/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4b7ffaeaa89f7cc50efc5e6b947f2853a0956aae X-VCS-Branch: master Date: Sun, 22 Sep 2024 11:08:54 +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: 28712258-7b65-4119-88a8-16d68c89f6b1 X-Archives-Hash: 6c18a45d96e21259455f2fdabcd4b5c8 commit: 4b7ffaeaa89f7cc50efc5e6b947f2853a0956aae Author: Paul Zander gmail com> AuthorDate: Fri Sep 20 22:56:26 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 22 11:07:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b7ffaea media-libs/x265: build cli for native_abi only, fix bug 939909 Old logic was $(multilib_is_native_abi || echo "-DENABLE_CLI=OFF"), so we need ! here. Closes: https://bugs.gentoo.org/939909 Signed-off-by: Paul Zander gmail.com> Closes: https://github.com/gentoo/gentoo/pull/38717 Signed-off-by: Sam James gentoo.org> media-libs/x265/{x265-3.5-r5.ebuild => x265-3.5-r6.ebuild} | 4 ++-- media-libs/x265/{x265-3.6.ebuild => x265-3.6-r1.ebuild} | 4 ++-- media-libs/x265/x265-9999.ebuild | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/media-libs/x265/x265-3.5-r5.ebuild b/media-libs/x265/x265-3.5-r6.ebuild similarity index 97% rename from media-libs/x265/x265-3.5-r5.ebuild rename to media-libs/x265/x265-3.5-r6.ebuild index c9db10613904..f38a58ad7981 100644 --- a/media-libs/x265/x265-3.5-r5.ebuild +++ b/media-libs/x265/x265-3.5-r6.ebuild @@ -6,7 +6,7 @@ EAPI=8 inherit cmake flag-o-matic multilib-minimal multibuild DESCRIPTION="Library for encoding video streams into the H.265/HEVC format" -HOMEPAGE="http://x265.org/ https://bitbucket.org/multicoreware/x265_git/" +HOMEPAGE="https://www.x265.org/ https://bitbucket.org/multicoreware/x265_git/" if [[ ${PV} = 9999* ]]; then inherit git-r3 @@ -108,7 +108,7 @@ multilib_src_configure() { -DGIT_ARCHETYPE=1 #814116 -DLIB_INSTALL_DIR="$(get_libdir)" ) - if multilib_is_native_abi; then + if ! multilib_is_native_abi; then mycmakeargs+=( -DENABLE_CLI="no" ) diff --git a/media-libs/x265/x265-3.6.ebuild b/media-libs/x265/x265-3.6-r1.ebuild similarity index 97% rename from media-libs/x265/x265-3.6.ebuild rename to media-libs/x265/x265-3.6-r1.ebuild index ba013c73d378..7fe46d01d35a 100644 --- a/media-libs/x265/x265-3.6.ebuild +++ b/media-libs/x265/x265-3.6-r1.ebuild @@ -6,7 +6,7 @@ EAPI=8 inherit cmake flag-o-matic multilib-minimal multibuild DESCRIPTION="Library for encoding video streams into the H.265/HEVC format" -HOMEPAGE="http://x265.org/ https://bitbucket.org/multicoreware/x265_git/" +HOMEPAGE="https://www.x265.org/ https://bitbucket.org/multicoreware/x265_git/" if [[ ${PV} = 9999* ]]; then inherit git-r3 @@ -108,7 +108,7 @@ multilib_src_configure() { -DGIT_ARCHETYPE=1 #814116 -DLIB_INSTALL_DIR="$(get_libdir)" ) - if multilib_is_native_abi; then + if ! multilib_is_native_abi; then mycmakeargs+=( -DENABLE_CLI="no" ) diff --git a/media-libs/x265/x265-9999.ebuild b/media-libs/x265/x265-9999.ebuild index bf2855a23f64..472c0eb7e4fd 100644 --- a/media-libs/x265/x265-9999.ebuild +++ b/media-libs/x265/x265-9999.ebuild @@ -6,7 +6,7 @@ EAPI=8 inherit cmake flag-o-matic multilib-minimal multibuild DESCRIPTION="Library for encoding video streams into the H.265/HEVC format" -HOMEPAGE="http://x265.org/ https://bitbucket.org/multicoreware/x265_git/" +HOMEPAGE="https://www.x265.org/ https://bitbucket.org/multicoreware/x265_git/" if [[ ${PV} = 9999* ]]; then inherit git-r3 @@ -108,7 +108,7 @@ multilib_src_configure() { -DGIT_ARCHETYPE=1 #814116 -DLIB_INSTALL_DIR="$(get_libdir)" ) - if multilib_is_native_abi; then + if ! multilib_is_native_abi; then mycmakeargs+=( -DENABLE_CLI="no" )