All checks were successful
Test / Create distribution (push) Successful in 49s
Test / Sandbox (push) Successful in 2m33s
Test / ShareFS (push) Successful in 3m55s
Test / Hpkg (push) Successful in 4m36s
Test / Sandbox (race detector) (push) Successful in 4m55s
Test / Hakurei (race detector) (push) Successful in 5m52s
Test / Hakurei (push) Successful in 2m33s
Test / Flake checks (push) Successful in 1m38s
Required by hakurei. Signed-off-by: Ophestra <cat@gensokyo.uk>
92 lines
2.1 KiB
Go
92 lines
2.1 KiB
Go
package rosa
|
|
|
|
import "hakurei.app/internal/pkg"
|
|
|
|
func (t Toolchain) newAttr() pkg.Artifact {
|
|
const (
|
|
version = "2.5.2"
|
|
checksum = "YWEphrz6vg1sUMmHHVr1CRo53pFXRhq_pjN-AlG8UgwZK1y6m7zuDhxqJhD0SV0l"
|
|
)
|
|
return t.New("attr-"+version, []pkg.Artifact{
|
|
t.Load(Make),
|
|
t.Load(Perl),
|
|
}, nil, nil, `
|
|
cd /usr/src/attr
|
|
chmod +w tools
|
|
patch -p 1 << EOF
|
|
From 8a80d895dfd779373363c3a4b62ecce5a549efb2 Mon Sep 17 00:00:00 2001
|
|
From: "Haelwenn (lanodan) Monnier" <contact@hacktivis.me>
|
|
Date: Sat, 30 Mar 2024 10:17:10 +0100
|
|
Subject: tools/attr.c: Add missing libgen.h include for basename(3)
|
|
|
|
Fixes compilation issue with musl and modern C99 compilers.
|
|
|
|
See: https://bugs.gentoo.org/926294
|
|
---
|
|
tools/attr.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/tools/attr.c b/tools/attr.c
|
|
index f12e4af..6a3c1e9 100644
|
|
--- a/tools/attr.c
|
|
+++ b/tools/attr.c
|
|
@@ -28,6 +28,7 @@
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <locale.h>
|
|
+#include <libgen.h>
|
|
|
|
#include <attr/attributes.h>
|
|
|
|
--
|
|
cgit v1.1
|
|
EOF
|
|
|
|
chmod +w test
|
|
sed -i 's/Operation not supported/Not supported/' test/attr.test
|
|
ln -s ../../system/bin/perl /usr/bin
|
|
|
|
cd "$(mktemp -d)"
|
|
/usr/src/attr/configure \
|
|
--prefix=/system \
|
|
--build="${ROSA_TRIPLE}" \
|
|
--enable-static
|
|
make "-j$(nproc)" check
|
|
make DESTDIR=/work install
|
|
`, pkg.Path(AbsUsrSrc.Append("attr"), true, pkg.NewHTTPGetTar(
|
|
nil,
|
|
"https://download.savannah.nongnu.org/releases/attr/"+
|
|
"attr-"+version+".tar.gz",
|
|
mustDecode(checksum),
|
|
pkg.TarGzip,
|
|
)))
|
|
}
|
|
func init() { artifactsF[Attr] = Toolchain.newAttr }
|
|
|
|
func (t Toolchain) newACL() pkg.Artifact {
|
|
const (
|
|
version = "2.3.2"
|
|
checksum = "-fY5nwH4K8ZHBCRXrzLdguPkqjKI6WIiGu4dBtrZ1o0t6AIU73w8wwJz_UyjIS0P"
|
|
)
|
|
return t.New("acl-"+version, []pkg.Artifact{
|
|
t.Load(Make),
|
|
|
|
t.Load(Attr),
|
|
}, nil, nil, `
|
|
cd "$(mktemp -d)"
|
|
/usr/src/acl/configure \
|
|
--prefix=/system \
|
|
--build="${ROSA_TRIPLE}" \
|
|
--enable-static
|
|
make "-j$(nproc)"
|
|
make DESTDIR=/work install
|
|
`, pkg.Path(AbsUsrSrc.Append("acl"), true, pkg.NewHTTPGetTar(
|
|
nil,
|
|
"https://download.savannah.nongnu.org/releases/acl/"+
|
|
"acl-"+version+".tar.gz",
|
|
mustDecode(checksum),
|
|
pkg.TarGzip,
|
|
)))
|
|
}
|
|
func init() { artifactsF[ACL] = Toolchain.newACL }
|