All checks were successful
Test / Create distribution (push) Successful in 50s
Test / Sandbox (push) Successful in 2m34s
Test / Hakurei (push) Successful in 3m46s
Test / ShareFS (push) Successful in 3m59s
Test / Hpkg (push) Successful in 4m32s
Test / Sandbox (race detector) (push) Successful in 5m0s
Test / Hakurei (race detector) (push) Successful in 6m8s
Test / Flake checks (push) Successful in 1m36s
This alleviates scheduler overhead when curing many artifacts. Signed-off-by: Ophestra <cat@gensokyo.uk>
99 lines
2.5 KiB
Go
99 lines
2.5 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, false, []pkg.Artifact{
|
|
t.Load(Make),
|
|
t.Load(Perl),
|
|
}, nil, nil, `
|
|
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, t.NewPatchedSource(
|
|
"attr", version, pkg.NewHTTPGetTar(
|
|
nil,
|
|
"https://download.savannah.nongnu.org/releases/attr/"+
|
|
"attr-"+version+".tar.gz",
|
|
mustDecode(checksum),
|
|
pkg.TarGzip,
|
|
), true, [2]string{"libgen-basename", `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`}, [2]string{"musl-errno", `diff --git a/test/attr.test b/test/attr.test
|
|
index 6ce2f9b..e9bde92 100644
|
|
--- a/test/attr.test
|
|
+++ b/test/attr.test
|
|
@@ -11,7 +11,7 @@ Try various valid and invalid names
|
|
|
|
$ touch f
|
|
$ setfattr -n user -v value f
|
|
- > setfattr: f: Operation not supported
|
|
+ > setfattr: f: Not supported
|
|
|
|
$ setfattr -n user. -v value f
|
|
> setfattr: f: Invalid argument
|
|
`},
|
|
)))
|
|
}
|
|
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, false, []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 }
|