From: "Haelwenn Monnier" <contact@hacktivis.me>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-libs/gcompat/
Date: Wed, 20 Mar 2024 19:39:22 +0000 (UTC) [thread overview]
Message-ID: <1710963553.c5baf4e402b9a78fcc2768351dab4736959b3f04.lanodan@gentoo> (raw)
commit: c5baf4e402b9a78fcc2768351dab4736959b3f04
Author: Haelwenn (lanodan) Monnier <contact <AT> hacktivis <DOT> me>
AuthorDate: Wed Mar 20 19:31:53 2024 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Wed Mar 20 19:39:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c5baf4e4
sys-libs/gcompat: new package, add 1.1.0
Signed-off-by: Haelwenn (lanodan) Monnier <contact <AT> hacktivis.me>
sys-libs/gcompat/Manifest | 1 +
sys-libs/gcompat/gcompat-1.1.0.ebuild | 58 +++++++++++++++++++++++++++++++++++
sys-libs/gcompat/metadata.xml | 11 +++++++
3 files changed, 70 insertions(+)
diff --git a/sys-libs/gcompat/Manifest b/sys-libs/gcompat/Manifest
new file mode 100644
index 0000000000..3c9b4b0526
--- /dev/null
+++ b/sys-libs/gcompat/Manifest
@@ -0,0 +1 @@
+DIST gcompat-1.1.0.tar.xz 27456 BLAKE2B 60b008a08eb4841e24a5d810c7ed354e12b06d2e4046df6cf6e19ce01aca29dd5d18027c5c87b66c6821fd5f9677ce236ac6e1826339b294e936e5b90b5ad444 SHA512 fbaa5b5410bde295df11f72cf946aa81ab7d46a919a75e75f70e339d429e38f0fa9283400cbcd4bf8c646011300065f53788ffc584d6fbb093bf4dbd28e766ab
diff --git a/sys-libs/gcompat/gcompat-1.1.0.ebuild b/sys-libs/gcompat/gcompat-1.1.0.ebuild
new file mode 100644
index 0000000000..6e5d56674c
--- /dev/null
+++ b/sys-libs/gcompat/gcompat-1.1.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 2018-2020 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib-minimal flag-o-matic
+
+DESCRIPTION="The GNU C Library compatibility layer for musl"
+HOMEPAGE="https://git.adelielinux.org/adelie/gcompat"
+KEYWORDS="~amd64 ~x86"
+LICENSE="UoI-NCSA"
+IUSE="libucontext obstack"
+SRC_URI="https://distfiles.adelielinux.org/source/${PN}/${P}.tar.xz"
+SLOT="0"
+
+DEPEND="
+ libucontext? ( sys-libs/libucontext )
+ obstack? ( sys-libs/obstack-standalone )
+"
+RDEPEND="${DEPEND}"
+
+get_loader_name() {
+ # Loosely based on Adélie APKBUILD
+ # TODO: Check against glibc’s logic
+
+ case "$ABI" in
+ x86) echo "ld-linux.so.2" ;;
+ amd64) echo "ld-linux-x86-64.so.2" ;;
+ arm*) echo "ld-linux-armhf.so.3" ;;
+ arm64) echo "ld-linux-aarch64.so.1" ;;
+ mips | powerpc | s390) echo "ld.so.1" ;;
+ esac
+}
+
+get_linker_path() {
+ local arch=$(ldd 2>&1 | sed -n '1s/^musl libc (\(.*\))$/\1/p')
+ echo "/lib/ld-musl-${arch}.so.1"
+}
+
+src_compile() {
+ filter-flags "-Wl,--as-needed"
+
+ emake \
+ LINKER_PATH="$(get_linker_path)" \
+ LOADER_NAME="$(get_loader_name)" \
+ WITH_OBSTACK="$(usex obstack 'obstack-standalone' 'no')" \
+ $(usex libucontext WITH_LIBUCONTEXT=yes '')
+}
+
+src_install() {
+ emake \
+ LINKER_PATH="$(get_linker_path)" \
+ LOADER_NAME="$(get_loader_name)" \
+ WITH_OBSTACK="$(usex obstack 'obstack-standalone' 'no')" \
+ $(usex libucontext WITH_LIBUCONTEXT=yes '') \
+ DESTDIR="${D}" \
+ install
+}
diff --git a/sys-libs/gcompat/metadata.xml b/sys-libs/gcompat/metadata.xml
new file mode 100644
index 0000000000..545da92968
--- /dev/null
+++ b/sys-libs/gcompat/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>contact@hacktivis.me</email>
+ <name>Haelwenn (lanodan) Monnier</name>
+ </maintainer>
+ <use>
+ <flag name="obstack">Use <pkg>sys-libs/obstack-standalone</pkg> for greater compatibility</flag>
+ </use>
+</pkgmetadata>
next reply other threads:[~2024-03-20 19:39 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-20 19:39 Haelwenn Monnier [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-03-20 20:53 [gentoo-commits] repo/proj/guru:dev commit in: sys-libs/gcompat/ Haelwenn Monnier
2024-03-21 1:25 Haelwenn Monnier
2025-02-07 20:19 Violet Purcell
2025-02-10 23:33 Quinet Charlie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1710963553.c5baf4e402b9a78fcc2768351dab4736959b3f04.lanodan@gentoo \
--to=contact@hacktivis.me \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox