public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/
@ 2021-12-17 23:18 Marek Szuba
  0 siblings, 0 replies; 13+ messages in thread
From: Marek Szuba @ 2021-12-17 23:18 UTC (permalink / raw
  To: gentoo-commits

commit:     0ca8f8468c7f4c1e980eee134e106fd62cb784bc
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 17 23:08:39 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Dec 17 23:18:00 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ca8f846

dev-libs/isa-l: disallow overriding AS on amd64

Closes: https://bugs.gentoo.org/829497
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-libs/isa-l/isa-l-2.30.0.ebuild | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/dev-libs/isa-l/isa-l-2.30.0.ebuild b/dev-libs/isa-l/isa-l-2.30.0.ebuild
index 641f57997e4b..1cb5aeb2a2c7 100644
--- a/dev-libs/isa-l/isa-l-2.30.0.ebuild
+++ b/dev-libs/isa-l/isa-l-2.30.0.ebuild
@@ -13,10 +13,12 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
 
-#DEPEND=""
-#RDEPEND=""
-# TODO: yasm version to support avx512?
-BDEPEND="amd64? ( >=dev-lang/nasm-2.15 )"
+BDEPEND="amd64? (
+	|| (
+		>=dev-lang/nasm-2.13
+		>=dev-lang/yasm-1.2.0
+	)
+)"
 
 PATCHES=(
 	"${FILESDIR}"/${PN}-2.30.0_makefile-no-D.patch
@@ -24,6 +26,11 @@ PATCHES=(
 
 src_prepare() {
 	default
+
+	# isa-l does not support arbitrary assemblers on amd64 (and presumably x86),
+	# it must be either nasm or yasm.
+	use amd64 && unset AS
+
 	eautoreconf
 }
 


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/
@ 2021-12-17 23:18 Marek Szuba
  0 siblings, 0 replies; 13+ messages in thread
From: Marek Szuba @ 2021-12-17 23:18 UTC (permalink / raw
  To: gentoo-commits

commit:     03c7155befcb7bb7cc0b3276abad3c5a81d7ba12
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 17 23:15:35 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Dec 17 23:18:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03c7155b

dev-libs/isa-l: add cpu_flags_x86_avx512f support

For the time being users wishing for isa-l to take advantage of this
instruction set must build it using nasm; everyone else can choose
between nasm and yasm.

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-libs/isa-l/{isa-l-2.30.0.ebuild => isa-l-2.30.0-r1.ebuild} | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/dev-libs/isa-l/isa-l-2.30.0.ebuild b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
similarity index 78%
rename from dev-libs/isa-l/isa-l-2.30.0.ebuild
rename to dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
index 1cb5aeb2a2c7..1bd7d4afdd80 100644
--- a/dev-libs/isa-l/isa-l-2.30.0.ebuild
+++ b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
@@ -12,12 +12,15 @@ SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
+IUSE="cpu_flags_x86_avx512f"
 
+# AVX512 support in yasm is still work in progress
 BDEPEND="amd64? (
-	|| (
-		>=dev-lang/nasm-2.13
+	cpu_flags_x86_avx512f? ( >=dev-lang/nasm-2.13 )
+	!cpu_flags_x86_avx512f? ( || (
+		>=dev-lang/nasm-2.11.01
 		>=dev-lang/yasm-1.2.0
-	)
+	) )
 )"
 
 PATCHES=(


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/
@ 2021-12-18  0:32 Marek Szuba
  0 siblings, 0 replies; 13+ messages in thread
From: Marek Szuba @ 2021-12-18  0:32 UTC (permalink / raw
  To: gentoo-commits

commit:     5bfe02835b699f6078c2528f7f31008c0094feed
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 18 00:31:33 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Sat Dec 18 00:32:04 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bfe0283

dev-libs/isa-l: keyword 2.30.0-r1 for ~riscv

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-libs/isa-l/isa-l-2.30.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
index 1bd7d4afdd80..793f5856db3f 100644
--- a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
+++ b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
 IUSE="cpu_flags_x86_avx512f"
 
 # AVX512 support in yasm is still work in progress


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/
@ 2023-05-16 12:09 Arthur Zamarin
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Zamarin @ 2023-05-16 12:09 UTC (permalink / raw
  To: gentoo-commits

commit:     84aa82dcc4af62b0bb0e2cf97a9c82ae80650bd8
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue May 16 12:09:26 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue May 16 12:09:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84aa82dc

dev-libs/isa-l: Keyword 2.30.0-r1 arm, #906454

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-libs/isa-l/isa-l-2.30.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
index 15f8def85106..73a23a860af5 100644
--- a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
+++ b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv"
 IUSE="cpu_flags_x86_avx512f"
 
 # AVX512 support in yasm is still work in progress


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/
@ 2023-05-16 12:09 Arthur Zamarin
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Zamarin @ 2023-05-16 12:09 UTC (permalink / raw
  To: gentoo-commits

commit:     a69484dbbb3ca1a759629fee2eaec92c9bd6d412
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue May 16 12:09:25 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue May 16 12:09:25 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a69484db

dev-libs/isa-l: Keyword 2.30.0-r1 arm64, #906454

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-libs/isa-l/isa-l-2.30.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
index 793f5856db3f..15f8def85106 100644
--- a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
+++ b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv"
+KEYWORDS="~amd64 ~arm64 ~riscv"
 IUSE="cpu_flags_x86_avx512f"
 
 # AVX512 support in yasm is still work in progress


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/
@ 2023-05-17 14:59 Guilherme Amadio
  0 siblings, 0 replies; 13+ messages in thread
From: Guilherme Amadio @ 2023-05-17 14:59 UTC (permalink / raw
  To: gentoo-commits

commit:     8f1379eb02041906f3b8594ab296c0297402d3a8
Author:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
AuthorDate: Wed May 17 14:17:25 2023 +0000
Commit:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Wed May 17 14:58:55 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f1379eb

dev-libs/isa-l: keyword 2.30.0-r1 for ~x86

Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>

 dev-libs/isa-l/isa-l-2.30.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
index 73a23a860af5..0b993e7daf1a 100644
--- a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
+++ b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
 IUSE="cpu_flags_x86_avx512f"
 
 # AVX512 support in yasm is still work in progress


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/
@ 2023-10-31  0:06 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2023-10-31  0:06 UTC (permalink / raw
  To: gentoo-commits

commit:     9436185f824dc6eeebcb3a9b489eb5be4b7916da
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 31 00:06:05 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 31 00:06:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9436185f

dev-libs/isa-l: Stabilize 2.30.0-r1 amd64, #916521

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/isa-l/isa-l-2.30.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
index 0b993e7daf1a..5d8fbc1d2c4b 100644
--- a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
+++ b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86"
 IUSE="cpu_flags_x86_avx512f"
 
 # AVX512 support in yasm is still work in progress


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/
@ 2024-01-31 12:21 Marek Szuba
  0 siblings, 0 replies; 13+ messages in thread
From: Marek Szuba @ 2024-01-31 12:21 UTC (permalink / raw
  To: gentoo-commits

commit:     cb301bb7e5d602f498b6d3d6de36e898b6431cea
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 31 12:19:57 2024 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Jan 31 12:21:10 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb301bb7

dev-libs/isa-l: add missing x86 BDEPEND

Closes: https://bugs.gentoo.org/923347
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-libs/isa-l/isa-l-2.30.0-r1.ebuild | 29 ++++++++++++++++++++---------
 1 file changed, 20 insertions(+), 9 deletions(-)

diff --git a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
index 5998011ab3dd..6cb8319addff 100644
--- a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
+++ b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
@@ -15,13 +15,22 @@ KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86"
 IUSE="cpu_flags_x86_avx512f"
 
 # AVX512 support in yasm is still work in progress
-BDEPEND="amd64? (
-	cpu_flags_x86_avx512f? ( >=dev-lang/nasm-2.13 )
-	!cpu_flags_x86_avx512f? ( || (
-		>=dev-lang/nasm-2.11.01
-		>=dev-lang/yasm-1.2.0
-	) )
-)"
+BDEPEND="
+	amd64? (
+		cpu_flags_x86_avx512f? ( >=dev-lang/nasm-2.13 )
+		!cpu_flags_x86_avx512f? ( || (
+			>=dev-lang/nasm-2.11.01
+			>=dev-lang/yasm-1.2.0
+		) )
+	)
+	x86? (
+		cpu_flags_x86_avx512f? ( >=dev-lang/nasm-2.13 )
+		!cpu_flags_x86_avx512f? ( || (
+			>=dev-lang/nasm-2.11.01
+			>=dev-lang/yasm-1.2.0
+		) )
+	)
+"
 
 PATCHES=(
 	"${FILESDIR}"/${PN}-2.30.0_makefile-no-D.patch
@@ -31,9 +40,11 @@ PATCHES=(
 src_prepare() {
 	default
 
-	# isa-l does not support arbitrary assemblers on amd64 (and presumably x86),
+	# isa-l does not support arbitrary assemblers on amd64 and x86,
 	# it must be either nasm or yasm.
-	use amd64 && unset AS
+	if use amd64 || use x86; then
+		unset AS
+	fi
 
 	eautoreconf
 }


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/
@ 2024-02-01  9:25 Marek Szuba
  0 siblings, 0 replies; 13+ messages in thread
From: Marek Szuba @ 2024-02-01  9:25 UTC (permalink / raw
  To: gentoo-commits

commit:     1ee253aa6283cbe750d69e62e44fc82d8cc18bfc
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  1 09:20:22 2024 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Thu Feb  1 09:25:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ee253aa

dev-libs/isa-l: keyword 2.30.0-r1 for -x86

Build failures. Test failures. Even if it did work, it would be rather
slow because the workaround for the former involves disabling
arch-optimised code paths. Upstream comments in the relevant issue
suggest they do not particularly care for 32-bit PCs.

Probably shouldn't have been keyworded for this arch in the first place.

Bug: https://bugs.gentoo.org/923425
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-libs/isa-l/isa-l-2.30.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
index 6cb8319addff..6e494ec705a8 100644
--- a/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
+++ b/dev-libs/isa-l/isa-l-2.30.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv -x86"
 IUSE="cpu_flags_x86_avx512f"
 
 # AVX512 support in yasm is still work in progress


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/
@ 2024-04-19 12:09 Marek Szuba
  0 siblings, 0 replies; 13+ messages in thread
From: Marek Szuba @ 2024-04-19 12:09 UTC (permalink / raw
  To: gentoo-commits

commit:     53decc8ba264b1a7fe6dc9d81a1e3da628b413ce
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 19 12:06:39 2024 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 12:06:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53decc8b

dev-libs/isa-l: keyword 2.31.0 for -x86

Still broken on this arch. Come to think of it, I think I only re-keyworded
2.31.0 for ~x86 by mistake during the version bump.

See commit 1ee253aa6283cbe750d69e62e44fc82d8cc18bfc for the original
reasoning.

Closes: https://bugs.gentoo.org/930244
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-libs/isa-l/isa-l-2.31.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/isa-l/isa-l-2.31.0.ebuild b/dev-libs/isa-l/isa-l-2.31.0.ebuild
index 2ba069c9d386..a8bd9bde2c95 100644
--- a/dev-libs/isa-l/isa-l-2.31.0.ebuild
+++ b/dev-libs/isa-l/isa-l-2.31.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv -x86"
 IUSE="cpu_flags_x86_avx512f"
 
 # AVX512 support in yasm is still work in progress


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/
@ 2024-10-07 15:50 Michał Górny
  0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2024-10-07 15:50 UTC (permalink / raw
  To: gentoo-commits

commit:     03c48f3c1fa99ebc683d94f3a42a99ba06572b09
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  7 15:48:57 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Oct  7 15:48:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03c48f3c

dev-libs/isa-l: Keyword 2.31.0 ~x86 (all tests pass)

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-libs/isa-l/isa-l-2.31.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/isa-l/isa-l-2.31.0.ebuild b/dev-libs/isa-l/isa-l-2.31.0.ebuild
index a8bd9bde2c95..2ba069c9d386 100644
--- a/dev-libs/isa-l/isa-l-2.31.0.ebuild
+++ b/dev-libs/isa-l/isa-l-2.31.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv -x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
 IUSE="cpu_flags_x86_avx512f"
 
 # AVX512 support in yasm is still work in progress


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/
@ 2024-10-07 17:32 Michał Górny
  0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2024-10-07 17:32 UTC (permalink / raw
  To: gentoo-commits

commit:     13a44cf58ab2e2c28702250df3418ced6339b6f6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  7 16:03:59 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Oct  7 17:32:10 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13a44cf5

dev-libs/isa-l: Prevent ARCH leaking from ebuild env

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-libs/isa-l/isa-l-2.31.0.ebuild | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/dev-libs/isa-l/isa-l-2.31.0.ebuild b/dev-libs/isa-l/isa-l-2.31.0.ebuild
index 2ba069c9d386..0cc8e4e56513 100644
--- a/dev-libs/isa-l/isa-l-2.31.0.ebuild
+++ b/dev-libs/isa-l/isa-l-2.31.0.ebuild
@@ -51,6 +51,11 @@ src_prepare() {
 	eautoreconf
 }
 
+src_compile() {
+	unset ARCH
+	default
+}
+
 src_install() {
 	default
 	find "${ED}" -name '*.la' -delete || die


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/
@ 2024-10-07 17:32 Michał Górny
  0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2024-10-07 17:32 UTC (permalink / raw
  To: gentoo-commits

commit:     0f24bc499b11c7a825606a22934c4415f6b7f11d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  7 16:04:13 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Oct  7 17:32:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f24bc49

dev-libs/isa-l: Keyword 2.31.0 ~sparc

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-libs/isa-l/isa-l-2.31.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/isa-l/isa-l-2.31.0.ebuild b/dev-libs/isa-l/isa-l-2.31.0.ebuild
index 0cc8e4e56513..7d6a84828530 100644
--- a/dev-libs/isa-l/isa-l-2.31.0.ebuild
+++ b/dev-libs/isa-l/isa-l-2.31.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~sparc ~x86"
 IUSE="cpu_flags_x86_avx512f"
 
 # AVX512 support in yasm is still work in progress


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2024-10-07 17:32 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-31 12:21 [gentoo-commits] repo/gentoo:master commit in: dev-libs/isa-l/ Marek Szuba
  -- strict thread matches above, loose matches on Subject: below --
2024-10-07 17:32 Michał Górny
2024-10-07 17:32 Michał Górny
2024-10-07 15:50 Michał Górny
2024-04-19 12:09 Marek Szuba
2024-02-01  9:25 Marek Szuba
2023-10-31  0:06 Sam James
2023-05-17 14:59 Guilherme Amadio
2023-05-16 12:09 Arthur Zamarin
2023-05-16 12:09 Arthur Zamarin
2021-12-18  0:32 Marek Szuba
2021-12-17 23:18 Marek Szuba
2021-12-17 23:18 Marek Szuba

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox