internal/rosa: acl artifact
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
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>
This commit is contained in:
@@ -148,6 +148,10 @@ func main() {
|
|||||||
}
|
}
|
||||||
var p rosa.PArtifact
|
var p rosa.PArtifact
|
||||||
switch args[0] {
|
switch args[0] {
|
||||||
|
case "acl":
|
||||||
|
p = rosa.ACL
|
||||||
|
case "attr":
|
||||||
|
p = rosa.Attr
|
||||||
case "autoconf":
|
case "autoconf":
|
||||||
p = rosa.Autoconf
|
p = rosa.Autoconf
|
||||||
case "bash":
|
case "bash":
|
||||||
|
|||||||
91
internal/rosa/acl.go
Normal file
91
internal/rosa/acl.go
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
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 }
|
||||||
@@ -10,7 +10,9 @@ import (
|
|||||||
type PArtifact int
|
type PArtifact int
|
||||||
|
|
||||||
const (
|
const (
|
||||||
Autoconf PArtifact = iota
|
ACL PArtifact = iota
|
||||||
|
Attr
|
||||||
|
Autoconf
|
||||||
Bash
|
Bash
|
||||||
Busybox
|
Busybox
|
||||||
CMake
|
CMake
|
||||||
|
|||||||
Reference in New Issue
Block a user