* [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/
@ 2018-03-23 8:24 Michał Górny
0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2018-03-23 8:24 UTC (permalink / raw
To: gentoo-commits
commit: efe2f748b658164a3b9ca0dd32ea2c70ee6048c2
Author: Conrad Kostecki <ck+gentoo <AT> bl4ckb0x <DOT> de>
AuthorDate: Thu Mar 22 23:43:26 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 23 08:24:39 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efe2f748
dev-util/statifier: added new ebuild
Closes: https://bugs.gentoo.org/649522
Closes: https://github.com/gentoo/gentoo/pull/7349
dev-util/statifier/Manifest | 1 +
dev-util/statifier/metadata.xml | 12 +++++++++
dev-util/statifier/statifier-1.7.4.ebuild | 44 +++++++++++++++++++++++++++++++
3 files changed, 57 insertions(+)
diff --git a/dev-util/statifier/Manifest b/dev-util/statifier/Manifest
new file mode 100644
index 00000000000..b27b88532ec
--- /dev/null
+++ b/dev-util/statifier/Manifest
@@ -0,0 +1 @@
+DIST statifier-1.7.4.tar.gz 73245 BLAKE2B 897b78b31aa4f148b6a6a986251ba9d4f40ebad3209f71896ffffb71e06ab25d337a4a79adc0217592051f917bc71428d3032f6216ec053f62c4632edef474d5 SHA512 22d4873130bafe06144c8f6ce7089aa25e3eb047bbee5709344fee1e8d85b24aac689c88d34537fe4a690e231d768e56a2fa13672b9eccf27d945b3f8bcda756
diff --git a/dev-util/statifier/metadata.xml b/dev-util/statifier/metadata.xml
new file mode 100644
index 00000000000..54d5423c406
--- /dev/null
+++ b/dev-util/statifier/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>ck+gentoo@bl4ckb0x.de</email>
+ <name>Conrad Kostecki</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/dev-util/statifier/statifier-1.7.4.ebuild b/dev-util/statifier/statifier-1.7.4.ebuild
new file mode 100644
index 00000000000..2e2867cd1b9
--- /dev/null
+++ b/dev-util/statifier/statifier-1.7.4.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux executables"
+HOMEPAGE="http://statifier.sourceforge.net"
+SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+LICENSE="GPL-2"
+IUSE=""
+
+RDEPEND="app-shells/bash
+ sys-apps/coreutils
+ virtual/awk"
+
+src_prepare() {
+ # Respect users CFLAGS and LDFLAGS
+ sed -i -e 's/-Wall -O2/$(CFLAGS) $(LDFLAGS)/g' src/Makefile || die
+
+ # Apply user patches
+ eapply_user
+}
+
+src_configure() {
+ # Fix permissions, as configure is not marked executable
+ chmod +x configure || die
+ econf
+}
+
+src_compile() {
+ # Package complains with MAKEOPTS > -j1
+ emake -j1
+}
+
+src_install() {
+ # Package complains with MAKEOPTS > -j1
+ emake -j1 DESTDIR="${D}" install
+
+ # Install docs
+ einstalldocs
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/
@ 2018-03-25 17:27 Michał Górny
0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2018-03-25 17:27 UTC (permalink / raw
To: gentoo-commits
commit: 5841ca2f526067efc8c7b0a8b76e46b4e2593b25
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Sat Mar 24 15:52:53 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Mar 25 17:27:20 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5841ca2f
dev-util/statifier: Don't compile 32-bit on amd64 no-multilib profile
Closes: https://bugs.gentoo.org/651260
Closes: https://github.com/gentoo/gentoo/pull/7571
dev-util/statifier/statifier-1.7.4.ebuild | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/dev-util/statifier/statifier-1.7.4.ebuild b/dev-util/statifier/statifier-1.7.4.ebuild
index 2e2867cd1b9..a90f4825f90 100644
--- a/dev-util/statifier/statifier-1.7.4.ebuild
+++ b/dev-util/statifier/statifier-1.7.4.ebuild
@@ -3,6 +3,10 @@
EAPI="6"
+MULTILIB_COMPAT=( abi_x86_{32,64} )
+
+inherit multilib-build
+
DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux executables"
HOMEPAGE="http://statifier.sourceforge.net"
SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz"
@@ -20,6 +24,11 @@ src_prepare() {
# Respect users CFLAGS and LDFLAGS
sed -i -e 's/-Wall -O2/$(CFLAGS) $(LDFLAGS)/g' src/Makefile || die
+ # Don't compile 32-bit on amd64 no-multilib profile
+ if ! use abi_x86_32; then
+ sed -i -e 's/ELF32 .*/ELF32 := no/g' configs/config.x86_64 || die
+ fi
+
# Apply user patches
eapply_user
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/
@ 2018-05-07 19:22 Thomas Deutschmann
0 siblings, 0 replies; 10+ messages in thread
From: Thomas Deutschmann @ 2018-05-07 19:22 UTC (permalink / raw
To: gentoo-commits
commit: d253b4093fcaaa3b82d346cbdb017fba984be34d
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon May 7 18:06:11 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon May 7 19:22:43 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d253b409
dev-util/statifier: x86 stable (bug #655014)
Package-Manager: Portage-2.3.34, Repoman-2.3.9
dev-util/statifier/statifier-1.7.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/statifier/statifier-1.7.4.ebuild b/dev-util/statifier/statifier-1.7.4.ebuild
index a90f4825f90..d2d528c0f89 100644
--- a/dev-util/statifier/statifier-1.7.4.ebuild
+++ b/dev-util/statifier/statifier-1.7.4.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux ex
HOMEPAGE="http://statifier.sourceforge.net"
SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/
@ 2018-05-08 7:11 Agostino Sarubbo
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo @ 2018-05-08 7:11 UTC (permalink / raw
To: gentoo-commits
commit: 532a8840f7e2d3e5a78132a2a2d89c6cfa19b272
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue May 8 07:08:30 2018 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue May 8 07:08:30 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=532a8840
dev-util/statifier: amd64 stable wrt bug #655014
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="amd64"
dev-util/statifier/statifier-1.7.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/statifier/statifier-1.7.4.ebuild b/dev-util/statifier/statifier-1.7.4.ebuild
index d2d528c0f89..08b4f7afec9 100644
--- a/dev-util/statifier/statifier-1.7.4.ebuild
+++ b/dev-util/statifier/statifier-1.7.4.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux ex
HOMEPAGE="http://statifier.sourceforge.net"
SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/
@ 2020-08-09 20:00 Conrad Kostecki
0 siblings, 0 replies; 10+ messages in thread
From: Conrad Kostecki @ 2020-08-09 20:00 UTC (permalink / raw
To: gentoo-commits
commit: 80602ed04b32152f6a047f4307ec13c433178c5a
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 9 17:11:29 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Aug 9 20:00:21 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80602ed0
dev-util/statifier: bump to EAPI=7
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-util/statifier/statifier-1.7.4-r1.ebuild | 57 ++++++++++++++++++++++++++++
1 file changed, 57 insertions(+)
diff --git a/dev-util/statifier/statifier-1.7.4-r1.ebuild b/dev-util/statifier/statifier-1.7.4-r1.ebuild
new file mode 100644
index 00000000000..046c0699da9
--- /dev/null
+++ b/dev-util/statifier/statifier-1.7.4-r1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MULTILIB_COMPAT=( abi_x86_{32,64} )
+
+inherit multilib-build toolchain-funcs
+
+DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux executables"
+HOMEPAGE="http://statifier.sourceforge.net"
+SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+LICENSE="GPL-2"
+
+RDEPEND="
+ app-shells/bash
+ sys-apps/coreutils
+ virtual/awk
+"
+
+PATCHES=(
+ # Respect users CFLAGS and LDFLAGS
+ "${FILESDIR}"/${PN}-1.7.4-fix-build-system.patch
+)
+
+src_prepare() {
+ default
+
+ # Don't compile 32-bit on amd64 no-multilib profile
+ if ! use abi_x86_32; then
+ sed -i -e 's/ELF32 .*/ELF32 := no/g' configs/config.x86_64 || die
+ fi
+}
+
+src_configure() {
+ tc-export CC
+
+ # Fix permissions, as configure is not marked executable
+ chmod +x configure || die
+ econf
+}
+
+src_compile() {
+ # Package complains with MAKEOPTS > -j1
+ emake -j1
+}
+
+src_install() {
+ # Package complains with MAKEOPTS > -j1
+ emake -j1 DESTDIR="${ED}" install
+
+ # Install docs
+ einstalldocs
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/
@ 2020-09-20 15:59 Conrad Kostecki
0 siblings, 0 replies; 10+ messages in thread
From: Conrad Kostecki @ 2020-09-20 15:59 UTC (permalink / raw
To: gentoo-commits
commit: 2a71544224f70c97980bafacc7ab5a360224b2a8
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 20 15:58:31 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Sep 20 15:58:58 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a715442
dev-util/statifier: fix compilation
Closes: https://bugs.gentoo.org/743298
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-util/statifier/statifier-1.7.4-r1.ebuild | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/dev-util/statifier/statifier-1.7.4-r1.ebuild b/dev-util/statifier/statifier-1.7.4-r1.ebuild
index 5bdd7e9ca4e..f5697dd1a24 100644
--- a/dev-util/statifier/statifier-1.7.4-r1.ebuild
+++ b/dev-util/statifier/statifier-1.7.4-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=7
MULTILIB_COMPAT=( abi_x86_{32,64} )
-inherit multilib-build toolchain-funcs
+inherit flag-o-matic multilib-build toolchain-funcs
DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux executables"
HOMEPAGE="http://statifier.sourceforge.net"
@@ -32,13 +32,16 @@ src_prepare() {
# Don't compile 32-bit on amd64 no-multilib profile
if ! use abi_x86_32; then
- sed -i -e 's/ELF32 .*/ELF32 := no/g' configs/config.x86_64 || die
+ sed -e 's/ELF32 .*/ELF32 := no/g' -i configs/config.x86_64 || die
fi
}
src_configure() {
tc-export CC
+ # Debug flags are known to cause compile failure
+ filter-flags "-g*"
+
# Fix permissions, as configure is not marked executable
chmod +x configure || die
econf
@@ -53,6 +56,5 @@ src_install() {
# Package complains with MAKEOPTS > -j1
emake -j1 DESTDIR="${ED}" install
- # Install docs
einstalldocs
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/
@ 2020-09-20 21:52 Thomas Deutschmann
0 siblings, 0 replies; 10+ messages in thread
From: Thomas Deutschmann @ 2020-09-20 21:52 UTC (permalink / raw
To: gentoo-commits
commit: 506626519c41ce9701adcf65e9e90e3b78dfb0d9
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 20 21:47:41 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Sep 20 21:52:00 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50662651
dev-util/statifier: x86 stable (bug #741332)
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-util/statifier/statifier-1.7.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/statifier/statifier-1.7.4-r1.ebuild b/dev-util/statifier/statifier-1.7.4-r1.ebuild
index f5697dd1a24..64a5975d6e7 100644
--- a/dev-util/statifier/statifier-1.7.4-r1.ebuild
+++ b/dev-util/statifier/statifier-1.7.4-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux ex
HOMEPAGE="http://statifier.sourceforge.net"
SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
SLOT="0"
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/
@ 2020-09-24 6:46 Agostino Sarubbo
0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo @ 2020-09-24 6:46 UTC (permalink / raw
To: gentoo-commits
commit: 3fad7bb016b41ee7f1d9381990eb1f982e47b76a
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 24 06:42:50 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Sep 24 06:46:29 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fad7bb0
dev-util/statifier: amd64 stable wrt bug #741332
Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-util/statifier/statifier-1.7.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/statifier/statifier-1.7.4-r1.ebuild b/dev-util/statifier/statifier-1.7.4-r1.ebuild
index 64a5975d6e7..553d4ee5f44 100644
--- a/dev-util/statifier/statifier-1.7.4-r1.ebuild
+++ b/dev-util/statifier/statifier-1.7.4-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux ex
HOMEPAGE="http://statifier.sourceforge.net"
SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
SLOT="0"
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/
@ 2020-09-24 20:20 Conrad Kostecki
0 siblings, 0 replies; 10+ messages in thread
From: Conrad Kostecki @ 2020-09-24 20:20 UTC (permalink / raw
To: gentoo-commits
commit: 912abc766edede6a7114f5d3a9cf0c60dd853eff
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 24 20:20:08 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Sep 24 20:20:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=912abc76
dev-util/statifier: drop old version
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-util/statifier/statifier-1.7.4.ebuild | 58 -------------------------------
1 file changed, 58 deletions(-)
diff --git a/dev-util/statifier/statifier-1.7.4.ebuild b/dev-util/statifier/statifier-1.7.4.ebuild
deleted file mode 100644
index 7ade05bbc42..00000000000
--- a/dev-util/statifier/statifier-1.7.4.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MULTILIB_COMPAT=( abi_x86_{32,64} )
-
-inherit multilib-build toolchain-funcs
-
-DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux executables"
-HOMEPAGE="http://statifier.sourceforge.net"
-SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz"
-
-KEYWORDS="amd64 x86"
-SLOT="0"
-LICENSE="GPL-2"
-
-RDEPEND="
- app-shells/bash
- sys-apps/coreutils
- virtual/awk
-"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.7.4-clang.patch
- "${FILESDIR}"/${PN}-1.7.4-fix-build-system.patch
- "${FILESDIR}"/${PN}-1.7.4-musl.patch
-)
-
-src_prepare() {
- default
-
- # Don't compile 32-bit on amd64 no-multilib profile
- if ! use abi_x86_32; then
- sed -i -e 's/ELF32 .*/ELF32 := no/g' configs/config.x86_64 || die
- fi
-}
-
-src_configure() {
- tc-export CC
-
- # Fix permissions, as configure is not marked executable
- chmod +x configure || die
- econf
-}
-
-src_compile() {
- # Package complains with MAKEOPTS > -j1
- emake -j1
-}
-
-src_install() {
- # Package complains with MAKEOPTS > -j1
- emake -j1 DESTDIR="${D}" install
-
- # Install docs
- einstalldocs
-}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/
@ 2020-10-10 10:39 Conrad Kostecki
0 siblings, 0 replies; 10+ messages in thread
From: Conrad Kostecki @ 2020-10-10 10:39 UTC (permalink / raw
To: gentoo-commits
commit: b84b103a077869ba2b320375e02018f63923ce71
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 9 20:45:38 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Oct 10 10:37:01 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b84b103a
dev-util/statifier: add x32 abi
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-util/statifier/statifier-1.7.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/statifier/statifier-1.7.4-r1.ebuild b/dev-util/statifier/statifier-1.7.4-r1.ebuild
index 553d4ee5f44..1899394b0d7 100644
--- a/dev-util/statifier/statifier-1.7.4-r1.ebuild
+++ b/dev-util/statifier/statifier-1.7.4-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-MULTILIB_COMPAT=( abi_x86_{32,64} )
+MULTILIB_COMPAT=( abi_x86_{32,x32,64} )
inherit flag-o-matic multilib-build toolchain-funcs
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2020-10-10 10:39 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-10 10:39 [gentoo-commits] repo/gentoo:master commit in: dev-util/statifier/ Conrad Kostecki
-- strict thread matches above, loose matches on Subject: below --
2020-09-24 20:20 Conrad Kostecki
2020-09-24 6:46 Agostino Sarubbo
2020-09-20 21:52 Thomas Deutschmann
2020-09-20 15:59 Conrad Kostecki
2020-08-09 20:00 Conrad Kostecki
2018-05-08 7:11 Agostino Sarubbo
2018-05-07 19:22 Thomas Deutschmann
2018-03-25 17:27 Michał Górny
2018-03-23 8:24 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox