Compare commits
5 Commits
v0.4.3
...
wip-irdump
| Author | SHA1 | Date | |
|---|---|---|---|
| 77d1b14830 | |||
| c4d2a9471d | |||
| afbb4ad6ba | |||
| cb4c4a2a59 | |||
| 324e09aa10 |
1
cmd/dist/VERSION
vendored
1
cmd/dist/VERSION
vendored
@@ -1 +0,0 @@
|
|||||||
v0.4.3
|
|
||||||
7
cmd/dist/main.go
vendored
7
cmd/dist/main.go
vendored
@@ -18,13 +18,8 @@ import (
|
|||||||
"os/signal"
|
"os/signal"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
//go:generate sh -c "git describe --tags > VERSION"
|
|
||||||
//go:embed VERSION
|
|
||||||
var version string
|
|
||||||
|
|
||||||
// getenv looks up an environment variable, and returns fallback if it is unset.
|
// getenv looks up an environment variable, and returns fallback if it is unset.
|
||||||
func getenv(key, fallback string) string {
|
func getenv(key, fallback string) string {
|
||||||
if v, ok := os.LookupEnv(key); ok {
|
if v, ok := os.LookupEnv(key); ok {
|
||||||
@@ -52,7 +47,7 @@ func main() {
|
|||||||
|
|
||||||
verbose := os.Getenv("VERBOSE") != ""
|
verbose := os.Getenv("VERBOSE") != ""
|
||||||
runTests := os.Getenv("HAKUREI_DIST_MAKE") == ""
|
runTests := os.Getenv("HAKUREI_DIST_MAKE") == ""
|
||||||
version = getenv("HAKUREI_VERSION", strings.TrimSpace(version))
|
version := getenv("HAKUREI_VERSION", "untagged")
|
||||||
prefix := getenv("PREFIX", "/usr")
|
prefix := getenv("PREFIX", "/usr")
|
||||||
destdir := getenv("DESTDIR", "dist")
|
destdir := getenv("DESTDIR", "dist")
|
||||||
|
|
||||||
|
|||||||
76
cmd/irdump/main.go
Normal file
76
cmd/irdump/main.go
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"hakurei.app/command"
|
||||||
|
"hakurei.app/internal/pkg"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
log.SetFlags(0)
|
||||||
|
log.SetPrefix("irdump: ")
|
||||||
|
|
||||||
|
var (
|
||||||
|
flagOutput string
|
||||||
|
flagReal bool
|
||||||
|
flagHeader bool
|
||||||
|
flagForce bool
|
||||||
|
flagRaw bool
|
||||||
|
)
|
||||||
|
c := command.New(os.Stderr, log.Printf, "irdump", func(args []string) (err error) {
|
||||||
|
var input *os.File
|
||||||
|
if len(args) != 1 {
|
||||||
|
return errors.New("irdump requires 1 argument")
|
||||||
|
}
|
||||||
|
if input, err = os.Open(args[0]); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
defer input.Close()
|
||||||
|
|
||||||
|
var output *os.File
|
||||||
|
if flagOutput == "" {
|
||||||
|
output = os.Stdout
|
||||||
|
} else {
|
||||||
|
defer output.Close()
|
||||||
|
if output, err = os.Create(flagOutput); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var out string
|
||||||
|
if out, err = pkg.Disassemble(input, flagReal, flagHeader, flagForce, flagRaw); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if _, err = output.WriteString(out); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}).Flag(
|
||||||
|
&flagOutput,
|
||||||
|
"o", command.StringFlag(""),
|
||||||
|
"Output file for asm (leave empty for stdout)",
|
||||||
|
).Flag(
|
||||||
|
&flagReal,
|
||||||
|
"r", command.BoolFlag(false),
|
||||||
|
"skip label generation; idents print real value",
|
||||||
|
).Flag(
|
||||||
|
&flagHeader,
|
||||||
|
"H", command.BoolFlag(false),
|
||||||
|
"display artifact headers",
|
||||||
|
).Flag(
|
||||||
|
&flagForce,
|
||||||
|
"f", command.BoolFlag(false),
|
||||||
|
"force display (skip validations)",
|
||||||
|
).Flag(
|
||||||
|
&flagRaw,
|
||||||
|
"R", command.BoolFlag(false),
|
||||||
|
"don't format output",
|
||||||
|
)
|
||||||
|
|
||||||
|
c.MustParse(os.Args[1:], func(err error) {
|
||||||
|
log.Fatal(err)
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -6,7 +6,6 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
"unique"
|
|
||||||
|
|
||||||
"hakurei.app/internal/pkg"
|
"hakurei.app/internal/pkg"
|
||||||
"hakurei.app/internal/rosa"
|
"hakurei.app/internal/rosa"
|
||||||
@@ -36,19 +35,17 @@ func commandInfo(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
t := rosa.Native().Std()
|
|
||||||
for i, name := range args {
|
for i, name := range args {
|
||||||
handle := rosa.ArtifactH(unique.Make(name))
|
if p, ok := rosa.ResolveName(name); !ok {
|
||||||
if meta, a := t.Load(handle); meta == nil {
|
|
||||||
return fmt.Errorf("unknown artifact %q", name)
|
return fmt.Errorf("unknown artifact %q", name)
|
||||||
} else {
|
} else {
|
||||||
var suffix string
|
var suffix string
|
||||||
|
if version := rosa.Std.Version(p); version != rosa.Unversioned {
|
||||||
if meta.Version != rosa.Unversioned {
|
suffix += "-" + version
|
||||||
suffix += "-" + meta.Version
|
|
||||||
}
|
}
|
||||||
mustPrintln("name : " + name + suffix)
|
mustPrintln("name : " + name + suffix)
|
||||||
|
|
||||||
|
meta := rosa.GetMetadata(p)
|
||||||
mustPrintln("description : " + meta.Description)
|
mustPrintln("description : " + meta.Description)
|
||||||
if meta.Website != "" {
|
if meta.Website != "" {
|
||||||
mustPrintln("website : " +
|
mustPrintln("website : " +
|
||||||
@@ -57,10 +54,9 @@ func commandInfo(
|
|||||||
if len(meta.Dependencies) > 0 {
|
if len(meta.Dependencies) > 0 {
|
||||||
mustPrint("depends on :")
|
mustPrint("depends on :")
|
||||||
for _, d := range meta.Dependencies {
|
for _, d := range meta.Dependencies {
|
||||||
_meta, _ := rosa.Native().Std().MustLoad(d)
|
s := rosa.GetMetadata(d).Name
|
||||||
s := _meta.Name
|
if version := rosa.Std.Version(d); version != rosa.Unversioned {
|
||||||
if _meta.Version != rosa.Unversioned {
|
s += "-" + version
|
||||||
s += "-" + _meta.Version
|
|
||||||
}
|
}
|
||||||
mustPrint(" " + s)
|
mustPrint(" " + s)
|
||||||
}
|
}
|
||||||
@@ -72,7 +68,7 @@ func commandInfo(
|
|||||||
if r == nil {
|
if r == nil {
|
||||||
var f io.ReadSeekCloser
|
var f io.ReadSeekCloser
|
||||||
err = cm.Do(func(cache *pkg.Cache) (err error) {
|
err = cm.Do(func(cache *pkg.Cache) (err error) {
|
||||||
f, err = cache.OpenStatus(a)
|
f, err = cache.OpenStatus(rosa.Std.Load(p))
|
||||||
return
|
return
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -91,7 +87,7 @@ func commandInfo(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if err = cm.Do(func(cache *pkg.Cache) (err error) {
|
} else if err = cm.Do(func(cache *pkg.Cache) (err error) {
|
||||||
status, n := r.ArtifactOf(cache.Ident(a))
|
status, n := r.ArtifactOf(cache.Ident(rosa.Std.Load(p)))
|
||||||
if status == nil {
|
if status == nil {
|
||||||
mustPrintln(
|
mustPrintln(
|
||||||
statusPrefix + "not in report",
|
statusPrefix + "not in report",
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"syscall"
|
"syscall"
|
||||||
"testing"
|
"testing"
|
||||||
"unique"
|
|
||||||
"unsafe"
|
"unsafe"
|
||||||
|
|
||||||
"hakurei.app/internal/pkg"
|
"hakurei.app/internal/pkg"
|
||||||
@@ -21,14 +20,6 @@ import (
|
|||||||
func TestInfo(t *testing.T) {
|
func TestInfo(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
|
|
||||||
_t := rosa.Native().Std()
|
|
||||||
qemuMeta, _ := _t.Load(rosa.H("qemu"))
|
|
||||||
glibMeta, _ := _t.Load(rosa.H("glib"))
|
|
||||||
zlibMeta, zlib := _t.Load(rosa.H("zlib"))
|
|
||||||
zstdMeta, _ := _t.Load(rosa.H("zstd"))
|
|
||||||
hakureiMeta, _ := _t.Load(rosa.H("hakurei"))
|
|
||||||
hakureiDistMeta, _ := _t.Load(rosa.H("hakurei-dist"))
|
|
||||||
|
|
||||||
testCases := []struct {
|
testCases := []struct {
|
||||||
name string
|
name string
|
||||||
args []string
|
args []string
|
||||||
@@ -38,24 +29,24 @@ func TestInfo(t *testing.T) {
|
|||||||
wantErr any
|
wantErr any
|
||||||
}{
|
}{
|
||||||
{"qemu", []string{"qemu"}, nil, "", `
|
{"qemu", []string{"qemu"}, nil, "", `
|
||||||
name : qemu-` + qemuMeta.Version + `
|
name : qemu-` + rosa.Std.Version(rosa.QEMU) + `
|
||||||
description : a generic and open source machine emulator and virtualizer
|
description : a generic and open source machine emulator and virtualizer
|
||||||
website : https://www.qemu.org
|
website : https://www.qemu.org
|
||||||
depends on : glib-` + glibMeta.Version + ` zstd-` + zstdMeta.Version + `
|
depends on : glib-` + rosa.Std.Version(rosa.GLib) + ` zstd-` + rosa.Std.Version(rosa.Zstd) + `
|
||||||
`, nil},
|
`, nil},
|
||||||
|
|
||||||
{"multi", []string{"hakurei", "hakurei-dist"}, nil, "", `
|
{"multi", []string{"hakurei", "hakurei-dist"}, nil, "", `
|
||||||
name : hakurei-` + hakureiMeta.Version + `
|
name : hakurei-` + rosa.Std.Version(rosa.Hakurei) + `
|
||||||
description : low-level userspace tooling for Rosa OS
|
description : low-level userspace tooling for Rosa OS
|
||||||
website : https://hakurei.app
|
website : https://hakurei.app
|
||||||
|
|
||||||
name : hakurei-dist-` + hakureiDistMeta.Version + `
|
name : hakurei-dist-` + rosa.Std.Version(rosa.HakureiDist) + `
|
||||||
description : low-level userspace tooling for Rosa OS (distribution tarball)
|
description : low-level userspace tooling for Rosa OS (distribution tarball)
|
||||||
website : https://hakurei.app
|
website : https://hakurei.app
|
||||||
`, nil},
|
`, nil},
|
||||||
|
|
||||||
{"nonexistent", []string{"zlib", "\x00"}, nil, "", `
|
{"nonexistent", []string{"zlib", "\x00"}, nil, "", `
|
||||||
name : zlib-` + zlibMeta.Version + `
|
name : zlib-` + rosa.Std.Version(rosa.Zlib) + `
|
||||||
description : lossless data-compression library
|
description : lossless data-compression library
|
||||||
website : https://zlib.net
|
website : https://zlib.net
|
||||||
|
|
||||||
@@ -65,12 +56,12 @@ website : https://zlib.net
|
|||||||
"zstd": "internal/pkg (amd64) on satori\n",
|
"zstd": "internal/pkg (amd64) on satori\n",
|
||||||
"hakurei": "internal/pkg (amd64) on satori\n\n",
|
"hakurei": "internal/pkg (amd64) on satori\n\n",
|
||||||
}, "", `
|
}, "", `
|
||||||
name : zlib-` + zlibMeta.Version + `
|
name : zlib-` + rosa.Std.Version(rosa.Zlib) + `
|
||||||
description : lossless data-compression library
|
description : lossless data-compression library
|
||||||
website : https://zlib.net
|
website : https://zlib.net
|
||||||
status : not yet cured
|
status : not yet cured
|
||||||
|
|
||||||
name : zstd-` + zstdMeta.Version + `
|
name : zstd-` + rosa.Std.Version(rosa.Zstd) + `
|
||||||
description : a fast compression algorithm
|
description : a fast compression algorithm
|
||||||
website : https://facebook.github.io/zstd
|
website : https://facebook.github.io/zstd
|
||||||
status : internal/pkg (amd64) on satori
|
status : internal/pkg (amd64) on satori
|
||||||
@@ -79,19 +70,19 @@ status : internal/pkg (amd64) on satori
|
|||||||
{"status cache perm", []string{"zlib"}, map[string]string{
|
{"status cache perm", []string{"zlib"}, map[string]string{
|
||||||
"zlib": "\x00",
|
"zlib": "\x00",
|
||||||
}, "", `
|
}, "", `
|
||||||
name : zlib-` + zlibMeta.Version + `
|
name : zlib-` + rosa.Std.Version(rosa.Zlib) + `
|
||||||
description : lossless data-compression library
|
description : lossless data-compression library
|
||||||
website : https://zlib.net
|
website : https://zlib.net
|
||||||
`, func(cm *cache) error {
|
`, func(cm *cache) error {
|
||||||
return &os.PathError{
|
return &os.PathError{
|
||||||
Op: "open",
|
Op: "open",
|
||||||
Path: filepath.Join(cm.base, "status", pkg.Encode(cm.c.Ident(zlib).Value())),
|
Path: filepath.Join(cm.base, "status", pkg.Encode(cm.c.Ident(rosa.Std.Load(rosa.Zlib)).Value())),
|
||||||
Err: syscall.EACCES,
|
Err: syscall.EACCES,
|
||||||
}
|
}
|
||||||
}},
|
}},
|
||||||
|
|
||||||
{"status report", []string{"zlib"}, nil, strings.Repeat("\x00", len(pkg.Checksum{})+8), `
|
{"status report", []string{"zlib"}, nil, strings.Repeat("\x00", len(pkg.Checksum{})+8), `
|
||||||
name : zlib-` + zlibMeta.Version + `
|
name : zlib-` + rosa.Std.Version(rosa.Zlib) + `
|
||||||
description : lossless data-compression library
|
description : lossless data-compression library
|
||||||
website : https://zlib.net
|
website : https://zlib.net
|
||||||
status : not in report
|
status : not in report
|
||||||
@@ -140,8 +131,8 @@ status : not in report
|
|||||||
|
|
||||||
if tc.status != nil {
|
if tc.status != nil {
|
||||||
for name, status := range tc.status {
|
for name, status := range tc.status {
|
||||||
_, a := _t.Load(rosa.ArtifactH(unique.Make(name)))
|
p, ok := rosa.ResolveName(name)
|
||||||
if a == nil {
|
if !ok {
|
||||||
t.Fatalf("invalid name %q", name)
|
t.Fatalf("invalid name %q", name)
|
||||||
}
|
}
|
||||||
perm := os.FileMode(0400)
|
perm := os.FileMode(0400)
|
||||||
@@ -152,7 +143,7 @@ status : not in report
|
|||||||
return os.WriteFile(filepath.Join(
|
return os.WriteFile(filepath.Join(
|
||||||
cm.base,
|
cm.base,
|
||||||
"status",
|
"status",
|
||||||
pkg.Encode(cache.Ident(a).Value()),
|
pkg.Encode(cache.Ident(rosa.Std.Load(p)).Value()),
|
||||||
), unsafe.Slice(unsafe.StringData(status), len(status)), perm)
|
), unsafe.Slice(unsafe.StringData(status), len(status)), perm)
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
t.Fatalf("Do: error = %v", err)
|
t.Fatalf("Do: error = %v", err)
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ var (
|
|||||||
// handleInfo writes constant system information.
|
// handleInfo writes constant system information.
|
||||||
func handleInfo(w http.ResponseWriter, _ *http.Request) {
|
func handleInfo(w http.ResponseWriter, _ *http.Request) {
|
||||||
infoPayloadOnce.Do(func() {
|
infoPayloadOnce.Do(func() {
|
||||||
infoPayload.Count = len(rosa.Native().Collect())
|
infoPayload.Count = int(rosa.PresetUnexportedStart)
|
||||||
infoPayload.HakureiVersion = info.Version()
|
infoPayload.HakureiVersion = info.Version()
|
||||||
})
|
})
|
||||||
// TODO(mae): cache entire response if no additional fields are planned
|
// TODO(mae): cache entire response if no additional fields are planned
|
||||||
@@ -91,7 +91,7 @@ func (index *packageIndex) handleGet(w http.ResponseWriter, r *http.Request) {
|
|||||||
if err != nil || i >= len(index.sorts[0]) || i < 0 {
|
if err != nil || i >= len(index.sorts[0]) || i < 0 {
|
||||||
http.Error(
|
http.Error(
|
||||||
w, "index must be an integer between 0 and "+
|
w, "index must be an integer between 0 and "+
|
||||||
strconv.Itoa(len(index.sorts[0])-1),
|
strconv.Itoa(int(rosa.PresetUnexportedStart-1)),
|
||||||
http.StatusBadRequest,
|
http.StatusBadRequest,
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
@@ -125,7 +125,7 @@ func (index *packageIndex) handleSearch(w http.ResponseWriter, r *http.Request)
|
|||||||
if err != nil || i >= len(index.sorts[0]) || i < 0 {
|
if err != nil || i >= len(index.sorts[0]) || i < 0 {
|
||||||
http.Error(
|
http.Error(
|
||||||
w, "index must be an integer between 0 and "+
|
w, "index must be an integer between 0 and "+
|
||||||
strconv.Itoa(len(index.sorts[0])-1),
|
strconv.Itoa(int(rosa.PresetUnexportedStart-1)),
|
||||||
http.StatusBadRequest,
|
http.StatusBadRequest,
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package pkgserver
|
|||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
|
"slices"
|
||||||
"strconv"
|
"strconv"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
@@ -31,7 +32,7 @@ func TestAPIInfo(t *testing.T) {
|
|||||||
checkPayload(t, resp, struct {
|
checkPayload(t, resp, struct {
|
||||||
Count int `json:"count"`
|
Count int `json:"count"`
|
||||||
HakureiVersion string `json:"hakurei_version"`
|
HakureiVersion string `json:"hakurei_version"`
|
||||||
}{len(rosa.Native().Collect()), info.Version()})
|
}{int(rosa.PresetUnexportedStart), info.Version()})
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestAPIGet(t *testing.T) {
|
func TestAPIGet(t *testing.T) {
|
||||||
@@ -92,12 +93,11 @@ func TestAPIGet(t *testing.T) {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
count := len(rosa.Native().Collect())
|
|
||||||
t.Run("index", func(t *testing.T) {
|
t.Run("index", func(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
checkValidate(
|
checkValidate(
|
||||||
t, "limit=1&sort=0&index", 0, count-1,
|
t, "limit=1&sort=0&index", 0, int(rosa.PresetUnexportedStart-1),
|
||||||
"index must be an integer between 0 and "+strconv.Itoa(count-1),
|
"index must be an integer between 0 and "+strconv.Itoa(int(rosa.PresetUnexportedStart-1)),
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -108,4 +108,74 @@ func TestAPIGet(t *testing.T) {
|
|||||||
"sort must be an integer between 0 and "+strconv.Itoa(int(sortOrderEnd)),
|
"sort must be an integer between 0 and "+strconv.Itoa(int(sortOrderEnd)),
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
checkWithSuffix := func(name, suffix string, want []*metadata) {
|
||||||
|
t.Run(name, func(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
w := newRequest(suffix)
|
||||||
|
resp := w.Result()
|
||||||
|
checkStatus(t, resp, http.StatusOK)
|
||||||
|
checkAPIHeader(t, w.Header())
|
||||||
|
checkPayloadFunc(t, resp, func(got *struct {
|
||||||
|
Values []*metadata `json:"values"`
|
||||||
|
}) bool {
|
||||||
|
return slices.EqualFunc(got.Values, want, func(a, b *metadata) bool {
|
||||||
|
return (a.Version == b.Version ||
|
||||||
|
a.Version == rosa.Unversioned ||
|
||||||
|
b.Version == rosa.Unversioned) &&
|
||||||
|
a.HasReport == b.HasReport &&
|
||||||
|
a.Name == b.Name &&
|
||||||
|
a.Description == b.Description &&
|
||||||
|
a.Website == b.Website
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
checkWithSuffix("declarationAscending", "?limit=2&index=1&sort=0", []*metadata{
|
||||||
|
{
|
||||||
|
Metadata: rosa.GetMetadata(1),
|
||||||
|
Version: rosa.Std.Version(1),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Metadata: rosa.GetMetadata(2),
|
||||||
|
Version: rosa.Std.Version(2),
|
||||||
|
},
|
||||||
|
})
|
||||||
|
checkWithSuffix("declarationAscending offset", "?limit=3&index=5&sort=0", []*metadata{
|
||||||
|
{
|
||||||
|
Metadata: rosa.GetMetadata(5),
|
||||||
|
Version: rosa.Std.Version(5),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Metadata: rosa.GetMetadata(6),
|
||||||
|
Version: rosa.Std.Version(6),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Metadata: rosa.GetMetadata(7),
|
||||||
|
Version: rosa.Std.Version(7),
|
||||||
|
},
|
||||||
|
})
|
||||||
|
checkWithSuffix("declarationDescending", "?limit=3&index=0&sort=1", []*metadata{
|
||||||
|
{
|
||||||
|
Metadata: rosa.GetMetadata(rosa.PresetUnexportedStart - 1),
|
||||||
|
Version: rosa.Std.Version(rosa.PresetUnexportedStart - 1),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Metadata: rosa.GetMetadata(rosa.PresetUnexportedStart - 2),
|
||||||
|
Version: rosa.Std.Version(rosa.PresetUnexportedStart - 2),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Metadata: rosa.GetMetadata(rosa.PresetUnexportedStart - 3),
|
||||||
|
Version: rosa.Std.Version(rosa.PresetUnexportedStart - 3),
|
||||||
|
},
|
||||||
|
})
|
||||||
|
checkWithSuffix("declarationDescending offset", "?limit=1&index=37&sort=1", []*metadata{
|
||||||
|
{
|
||||||
|
Metadata: rosa.GetMetadata(rosa.PresetUnexportedStart - 38),
|
||||||
|
Version: rosa.Std.Version(rosa.PresetUnexportedStart - 38),
|
||||||
|
},
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ const (
|
|||||||
|
|
||||||
// packageIndex refers to metadata by name and various sort orders.
|
// packageIndex refers to metadata by name and various sort orders.
|
||||||
type packageIndex struct {
|
type packageIndex struct {
|
||||||
sorts [sortOrderEnd + 1][]*metadata
|
sorts [sortOrderEnd + 1][rosa.PresetUnexportedStart]*metadata
|
||||||
names map[string]*metadata
|
names map[string]*metadata
|
||||||
search searchCache
|
search searchCache
|
||||||
// Taken from [rosa.Report] if available.
|
// Taken from [rosa.Report] if available.
|
||||||
@@ -32,11 +32,11 @@ type packageIndex struct {
|
|||||||
|
|
||||||
// metadata holds [rosa.Metadata] extended with additional information.
|
// metadata holds [rosa.Metadata] extended with additional information.
|
||||||
type metadata struct {
|
type metadata struct {
|
||||||
handle rosa.ArtifactH
|
p rosa.PArtifact
|
||||||
*rosa.Metadata
|
*rosa.Metadata
|
||||||
|
|
||||||
// Copied from [rosa.Metadata], [rosa.Unversioned] is equivalent to the zero
|
// Populated via [rosa.Toolchain.Version], [rosa.Unversioned] is equivalent
|
||||||
// value. Otherwise, the zero value is invalid.
|
// to the zero value. Otherwise, the zero value is invalid.
|
||||||
Version string `json:"version,omitempty"`
|
Version string `json:"version,omitempty"`
|
||||||
// Output data size, available if present in report.
|
// Output data size, available if present in report.
|
||||||
Size int64 `json:"size,omitempty"`
|
Size int64 `json:"size,omitempty"`
|
||||||
@@ -56,17 +56,15 @@ func (index *packageIndex) populate(report *rosa.Report) (err error) {
|
|||||||
index.handleAccess = report.HandleAccess
|
index.handleAccess = report.HandleAccess
|
||||||
}
|
}
|
||||||
|
|
||||||
handles := rosa.Native().Collect()
|
var work [rosa.PresetUnexportedStart]*metadata
|
||||||
work := make([]*metadata, len(handles))
|
|
||||||
index.names = make(map[string]*metadata)
|
index.names = make(map[string]*metadata)
|
||||||
ir := pkg.NewIR()
|
ir := pkg.NewIR()
|
||||||
for i, handle := range handles {
|
for p := range rosa.PresetUnexportedStart {
|
||||||
meta, a := rosa.Native().Std().MustLoad(handle)
|
|
||||||
m := metadata{
|
m := metadata{
|
||||||
handle: handle,
|
p: p,
|
||||||
|
|
||||||
Metadata: meta,
|
Metadata: rosa.GetMetadata(p),
|
||||||
Version: meta.Version,
|
Version: rosa.Std.Version(p),
|
||||||
}
|
}
|
||||||
if m.Version == "" {
|
if m.Version == "" {
|
||||||
return errors.New("invalid version from " + m.Name)
|
return errors.New("invalid version from " + m.Name)
|
||||||
@@ -76,32 +74,32 @@ func (index *packageIndex) populate(report *rosa.Report) (err error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if report != nil {
|
if report != nil {
|
||||||
id := ir.Ident(a)
|
id := ir.Ident(rosa.Std.Load(p))
|
||||||
m.ids = pkg.Encode(id.Value())
|
m.ids = pkg.Encode(id.Value())
|
||||||
m.status, m.Size = report.ArtifactOf(id)
|
m.status, m.Size = report.ArtifactOf(id)
|
||||||
m.HasReport = m.Size >= 0
|
m.HasReport = m.Size >= 0
|
||||||
}
|
}
|
||||||
|
|
||||||
work[i] = &m
|
work[p] = &m
|
||||||
index.names[m.Name] = &m
|
index.names[m.Name] = &m
|
||||||
}
|
}
|
||||||
|
|
||||||
index.sorts[declarationAscending] = work
|
index.sorts[declarationAscending] = work
|
||||||
index.sorts[declarationDescending] = slices.Clone(work)
|
index.sorts[declarationDescending] = work
|
||||||
slices.Reverse(index.sorts[declarationDescending][:])
|
slices.Reverse(index.sorts[declarationDescending][:])
|
||||||
|
|
||||||
index.sorts[nameAscending] = slices.Clone(work)
|
index.sorts[nameAscending] = work
|
||||||
slices.SortFunc(index.sorts[nameAscending][:], func(a, b *metadata) int {
|
slices.SortFunc(index.sorts[nameAscending][:], func(a, b *metadata) int {
|
||||||
return strings.Compare(a.Name, b.Name)
|
return strings.Compare(a.Name, b.Name)
|
||||||
})
|
})
|
||||||
index.sorts[nameDescending] = slices.Clone(index.sorts[nameAscending])
|
index.sorts[nameDescending] = index.sorts[nameAscending]
|
||||||
slices.Reverse(index.sorts[nameDescending][:])
|
slices.Reverse(index.sorts[nameDescending][:])
|
||||||
|
|
||||||
index.sorts[sizeAscending] = slices.Clone(work)
|
index.sorts[sizeAscending] = work
|
||||||
slices.SortFunc(index.sorts[sizeAscending][:], func(a, b *metadata) int {
|
slices.SortFunc(index.sorts[sizeAscending][:], func(a, b *metadata) int {
|
||||||
return cmp.Compare(a.Size, b.Size)
|
return cmp.Compare(a.Size, b.Size)
|
||||||
})
|
})
|
||||||
index.sorts[sizeDescending] = slices.Clone(index.sorts[sizeAscending])
|
index.sorts[sizeDescending] = index.sorts[sizeAscending]
|
||||||
slices.Reverse(index.sorts[sizeDescending][:])
|
slices.Reverse(index.sorts[sizeDescending][:])
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -4,12 +4,11 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
<link rel="icon" href="https://hakurei.app/favicon.ico"/>
|
<title>Hakurei PkgServer</title>
|
||||||
<title>Rosa OS Packages</title>
|
|
||||||
<script src="index.js"></script>
|
<script src="index.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Rosa OS Packages</h1>
|
<h1>Hakurei PkgServer</h1>
|
||||||
<div class="top-controls" id="top-controls-regular">
|
<div class="top-controls" id="top-controls-regular">
|
||||||
<p>Showing entries <span id="entry-counter"></span>.</p>
|
<p>Showing entries <span id="entry-counter"></span>.</p>
|
||||||
<span id="search-bar">
|
<span id="search-bar">
|
||||||
|
|||||||
186
cmd/mbf/main.go
186
cmd/mbf/main.go
@@ -58,19 +58,6 @@ func main() {
|
|||||||
log.Fatal("this program must not run as root")
|
log.Fatal("this program must not run as root")
|
||||||
}
|
}
|
||||||
|
|
||||||
defer func() {
|
|
||||||
r := recover()
|
|
||||||
if r == nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
e, ok := r.(rosa.LoadError)
|
|
||||||
if !ok {
|
|
||||||
panic(r)
|
|
||||||
}
|
|
||||||
log.Fatal(e)
|
|
||||||
}()
|
|
||||||
|
|
||||||
ctx, stop := signal.NotifyContext(context.Background(),
|
ctx, stop := signal.NotifyContext(context.Background(),
|
||||||
syscall.SIGINT, syscall.SIGTERM, syscall.SIGHUP)
|
syscall.SIGINT, syscall.SIGTERM, syscall.SIGHUP)
|
||||||
defer stop()
|
defer stop()
|
||||||
@@ -84,21 +71,12 @@ func main() {
|
|||||||
flagArch string
|
flagArch string
|
||||||
flagCheck bool
|
flagCheck bool
|
||||||
flagLTO bool
|
flagLTO bool
|
||||||
flagPT bool
|
|
||||||
|
|
||||||
flagCrossOverride int
|
flagCrossOverride int
|
||||||
|
|
||||||
addr net.UnixAddr
|
addr net.UnixAddr
|
||||||
)
|
)
|
||||||
c := command.New(os.Stderr, log.Printf, "mbf", func([]string) error {
|
c := command.New(os.Stderr, log.Printf, "mbf", func([]string) error {
|
||||||
if !rosa.Native().HasStageEarly() {
|
|
||||||
return pkg.UnsupportedArchError(runtime.GOARCH)
|
|
||||||
}
|
|
||||||
|
|
||||||
if flagPT {
|
|
||||||
log.Println("parsed in", rosa.ParseTime())
|
|
||||||
}
|
|
||||||
|
|
||||||
msg.SwapVerbose(!flagQuiet)
|
msg.SwapVerbose(!flagQuiet)
|
||||||
cm.ctx, cm.msg = ctx, msg
|
cm.ctx, cm.msg = ctx, msg
|
||||||
cm.base = os.ExpandEnv(cm.base)
|
cm.base = os.ExpandEnv(cm.base)
|
||||||
@@ -119,10 +97,10 @@ func main() {
|
|||||||
if !flagLTO {
|
if !flagLTO {
|
||||||
flags |= rosa.OptLLVMNoLTO
|
flags |= rosa.OptLLVMNoLTO
|
||||||
}
|
}
|
||||||
rosa.Native().DropCaches("", flags)
|
rosa.DropCaches("", flags)
|
||||||
cross := flagArch != "" && flagArch != runtime.GOARCH
|
cross := flagArch != "" && flagArch != runtime.GOARCH
|
||||||
if flagQEMU || cross {
|
if flagQEMU || cross {
|
||||||
_, cm.qemu = rosa.Native().Std().MustLoad(rosa.H("qemu"))
|
cm.qemu = rosa.Std.Load(rosa.QEMU)
|
||||||
}
|
}
|
||||||
|
|
||||||
if cross {
|
if cross {
|
||||||
@@ -130,8 +108,8 @@ func main() {
|
|||||||
flags = flagCrossOverride
|
flags = flagCrossOverride
|
||||||
}
|
}
|
||||||
|
|
||||||
rosa.Native().DropCaches(flagArch, flags)
|
rosa.DropCaches(flagArch, flags)
|
||||||
if !rosa.Native().HasStageEarly() {
|
if !rosa.HasStage0() {
|
||||||
return pkg.UnsupportedArchError(flagArch)
|
return pkg.UnsupportedArchError(flagArch)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -192,10 +170,6 @@ func main() {
|
|||||||
&addr.Name,
|
&addr.Name,
|
||||||
"socket", command.StringFlag("$MBF_DAEMON_SOCKET"),
|
"socket", command.StringFlag("$MBF_DAEMON_SOCKET"),
|
||||||
"Pathname of socket to bind to",
|
"Pathname of socket to bind to",
|
||||||
).Flag(
|
|
||||||
&flagPT,
|
|
||||||
"parse-time", command.BoolFlag(false),
|
|
||||||
"Print duration of the initial azalea parse",
|
|
||||||
)
|
)
|
||||||
|
|
||||||
c.NewCommand(
|
c.NewCommand(
|
||||||
@@ -357,12 +331,12 @@ func main() {
|
|||||||
n atomic.Uint64
|
n atomic.Uint64
|
||||||
)
|
)
|
||||||
|
|
||||||
w := make(chan rosa.ArtifactH)
|
w := make(chan rosa.PArtifact)
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
for range max(flagJobs, 1) {
|
for range max(flagJobs, 1) {
|
||||||
wg.Go(func() {
|
wg.Go(func() {
|
||||||
for p := range w {
|
for p := range w {
|
||||||
meta, _ := rosa.Native().Std().MustLoad(p)
|
meta := rosa.GetMetadata(p)
|
||||||
if meta.ID == 0 {
|
if meta.ID == 0 {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
@@ -375,9 +349,12 @@ func main() {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if latest := meta.GetLatest(v); meta.Version != latest {
|
if current, latest :=
|
||||||
|
rosa.Std.Version(p),
|
||||||
|
meta.GetLatest(v); current != latest {
|
||||||
|
|
||||||
n.Add(1)
|
n.Add(1)
|
||||||
log.Printf("%s %s < %s", meta.Name, meta.Version, latest)
|
log.Printf("%s %s < %s", meta.Name, current, latest)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -387,9 +364,9 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
done:
|
done:
|
||||||
for _, p := range rosa.Native().CollectAll() {
|
for i := range rosa.PresetEnd {
|
||||||
select {
|
select {
|
||||||
case w <- p:
|
case w <- rosa.PArtifact(i):
|
||||||
break
|
break
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
break done
|
break done
|
||||||
@@ -434,9 +411,9 @@ func main() {
|
|||||||
"stage3",
|
"stage3",
|
||||||
"Check for toolchain 3-stage non-determinism",
|
"Check for toolchain 3-stage non-determinism",
|
||||||
func(args []string) (err error) {
|
func(args []string) (err error) {
|
||||||
s := rosa.Std
|
t := rosa.Std
|
||||||
if flagGentoo != "" {
|
if flagGentoo != "" {
|
||||||
s -= 3 // magic number to discourage misuse
|
t -= 3 // magic number to discourage misuse
|
||||||
|
|
||||||
var checksum pkg.Checksum
|
var checksum pkg.Checksum
|
||||||
if len(flagChecksum) != 0 {
|
if len(flagChecksum) != 0 {
|
||||||
@@ -444,7 +421,7 @@ func main() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
rosa.Native().SetGentooStage3(flagGentoo, checksum)
|
rosa.SetGentooStage3(flagGentoo, checksum)
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@@ -452,10 +429,10 @@ func main() {
|
|||||||
checksum [2]unique.Handle[pkg.Checksum]
|
checksum [2]unique.Handle[pkg.Checksum]
|
||||||
)
|
)
|
||||||
|
|
||||||
_llvm := rosa.H("llvm")
|
|
||||||
if err = cm.Do(func(cache *pkg.Cache) (err error) {
|
if err = cm.Do(func(cache *pkg.Cache) (err error) {
|
||||||
_, llvm := rosa.Native().New(s - 2).Load(_llvm)
|
pathname, _, err = cache.Cure(
|
||||||
pathname, _, err = cache.Cure(llvm)
|
(t - 2).Load(rosa.LLVM),
|
||||||
|
)
|
||||||
return
|
return
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
return
|
return
|
||||||
@@ -463,16 +440,18 @@ func main() {
|
|||||||
log.Println("stage1:", pathname)
|
log.Println("stage1:", pathname)
|
||||||
|
|
||||||
if err = cm.Do(func(cache *pkg.Cache) (err error) {
|
if err = cm.Do(func(cache *pkg.Cache) (err error) {
|
||||||
_, llvm := rosa.Native().New(s - 1).Load(_llvm)
|
pathname, checksum[0], err = cache.Cure(
|
||||||
pathname, checksum[0], err = cache.Cure(llvm)
|
(t - 1).Load(rosa.LLVM),
|
||||||
|
)
|
||||||
return
|
return
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
log.Println("stage2:", pathname)
|
log.Println("stage2:", pathname)
|
||||||
if err = cm.Do(func(cache *pkg.Cache) (err error) {
|
if err = cm.Do(func(cache *pkg.Cache) (err error) {
|
||||||
_, llvm := rosa.Native().New(s).Load(_llvm)
|
pathname, checksum[1], err = cache.Cure(
|
||||||
pathname, checksum[1], err = cache.Cure(llvm)
|
t.Load(rosa.LLVM),
|
||||||
|
)
|
||||||
return
|
return
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
return
|
return
|
||||||
@@ -493,7 +472,9 @@ func main() {
|
|||||||
|
|
||||||
if flagStage0 {
|
if flagStage0 {
|
||||||
if err = cm.Do(func(cache *pkg.Cache) (err error) {
|
if err = cm.Do(func(cache *pkg.Cache) (err error) {
|
||||||
pathname, _, err = cache.Cure(rosa.Native().Std().NewStage0())
|
pathname, _, err = cache.Cure(
|
||||||
|
t.Load(rosa.Stage0),
|
||||||
|
)
|
||||||
return
|
return
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
return
|
return
|
||||||
@@ -525,8 +506,6 @@ func main() {
|
|||||||
flagExport string
|
flagExport string
|
||||||
flagRemote bool
|
flagRemote bool
|
||||||
flagNoReply bool
|
flagNoReply bool
|
||||||
flagFaults bool
|
|
||||||
flagPop bool
|
|
||||||
|
|
||||||
flagBoot bool
|
flagBoot bool
|
||||||
flagStd bool
|
flagStd bool
|
||||||
@@ -538,6 +517,10 @@ func main() {
|
|||||||
if len(args) != 1 {
|
if len(args) != 1 {
|
||||||
return errors.New("cure requires 1 argument")
|
return errors.New("cure requires 1 argument")
|
||||||
}
|
}
|
||||||
|
p, ok := rosa.ResolveName(args[0])
|
||||||
|
if !ok {
|
||||||
|
return fmt.Errorf("unknown artifact %q", args[0])
|
||||||
|
}
|
||||||
|
|
||||||
t := rosa.Std
|
t := rosa.Std
|
||||||
if flagBoot {
|
if flagBoot {
|
||||||
@@ -546,16 +529,11 @@ func main() {
|
|||||||
t -= 1
|
t -= 1
|
||||||
}
|
}
|
||||||
|
|
||||||
_, a := rosa.Native().New(t).Load(rosa.ArtifactH(unique.Make(args[0])))
|
|
||||||
if a == nil {
|
|
||||||
return fmt.Errorf("unknown artifact %q", args[0])
|
|
||||||
}
|
|
||||||
|
|
||||||
switch {
|
switch {
|
||||||
default:
|
default:
|
||||||
var pathname *check.Absolute
|
var pathname *check.Absolute
|
||||||
err := cm.Do(func(cache *pkg.Cache) (err error) {
|
err := cm.Do(func(cache *pkg.Cache) (err error) {
|
||||||
pathname, _, err = cache.Cure(a)
|
pathname, _, err = cache.Cure(t.Load(p))
|
||||||
return
|
return
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -597,7 +575,7 @@ func main() {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = pkg.NewIR().EncodeAll(f, a); err != nil {
|
if err = pkg.NewIR().EncodeAll(f, rosa.Std.Load(p)); err != nil {
|
||||||
_ = f.Close()
|
_ = f.Close()
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -608,7 +586,7 @@ func main() {
|
|||||||
return cm.Do(func(cache *pkg.Cache) error {
|
return cm.Do(func(cache *pkg.Cache) error {
|
||||||
return cache.EnterExec(
|
return cache.EnterExec(
|
||||||
ctx,
|
ctx,
|
||||||
a,
|
t.Load(p),
|
||||||
true, os.Stdin, os.Stdout, os.Stderr,
|
true, os.Stdin, os.Stdout, os.Stderr,
|
||||||
rosa.AbsSystem.Append("bin", "mksh"),
|
rosa.AbsSystem.Append("bin", "mksh"),
|
||||||
"sh",
|
"sh",
|
||||||
@@ -620,6 +598,7 @@ func main() {
|
|||||||
if flagNoReply {
|
if flagNoReply {
|
||||||
flags |= remoteNoReply
|
flags |= remoteNoReply
|
||||||
}
|
}
|
||||||
|
a := t.Load(p)
|
||||||
pathname, err := cureRemote(ctx, &addr, a, flags)
|
pathname, err := cureRemote(ctx, &addr, a, flags)
|
||||||
if !flagNoReply && err == nil {
|
if !flagNoReply && err == nil {
|
||||||
log.Println(pathname)
|
log.Println(pathname)
|
||||||
@@ -635,49 +614,6 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return err
|
return err
|
||||||
|
|
||||||
case flagFaults:
|
|
||||||
var faults []pkg.Fault
|
|
||||||
if err := cm.Do(func(cache *pkg.Cache) (err error) {
|
|
||||||
faults, err = cache.ReadFaults(a)
|
|
||||||
return
|
|
||||||
}); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, fault := range faults {
|
|
||||||
log.Printf("%s: %s ago", fault.String(), time.Since(fault.Time()))
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
|
|
||||||
case flagPop:
|
|
||||||
var faults []pkg.Fault
|
|
||||||
if err := cm.Do(func(cache *pkg.Cache) (err error) {
|
|
||||||
faults, err = cache.ReadFaults(a)
|
|
||||||
return
|
|
||||||
}); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(faults) == 0 {
|
|
||||||
return errors.New("no fault entries found")
|
|
||||||
}
|
|
||||||
fault := faults[len(faults)-1]
|
|
||||||
r, err := fault.Open()
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if _, err = io.Copy(os.Stdout, r); err != nil {
|
|
||||||
_ = r.Close()
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
fmt.Println()
|
|
||||||
if err = r.Close(); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
log.Printf("faulting cure terminated %s ago", time.Since(fault.Time()))
|
|
||||||
return fault.Destroy()
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
).Flag(
|
).Flag(
|
||||||
@@ -708,40 +644,9 @@ func main() {
|
|||||||
&flagStd,
|
&flagStd,
|
||||||
"std", command.BoolFlag(false),
|
"std", command.BoolFlag(false),
|
||||||
"Build on the intermediate toolchain",
|
"Build on the intermediate toolchain",
|
||||||
).Flag(
|
|
||||||
&flagFaults,
|
|
||||||
"faults", command.BoolFlag(false),
|
|
||||||
"Display fault entries of the specified artifact",
|
|
||||||
).Flag(
|
|
||||||
&flagPop,
|
|
||||||
"pop", command.BoolFlag(false),
|
|
||||||
"Display and destroy the most recent fault entry",
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
c.NewCommand(
|
|
||||||
"clear",
|
|
||||||
"Remove all fault entries from the cache",
|
|
||||||
func([]string) error {
|
|
||||||
return cm.Do(func(*pkg.Cache) error {
|
|
||||||
pathname := filepath.Join(cm.base, "fault")
|
|
||||||
dents, err := os.ReadDir(pathname)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, dent := range dents {
|
|
||||||
msg.Verbosef("destroying entry %s", dent.Name())
|
|
||||||
if err = os.Remove(filepath.Join(pathname, dent.Name())); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
log.Printf("destroyed %d fault entries", len(dents))
|
|
||||||
return nil
|
|
||||||
})
|
|
||||||
},
|
|
||||||
)
|
|
||||||
|
|
||||||
c.NewCommand(
|
c.NewCommand(
|
||||||
"abort",
|
"abort",
|
||||||
"Abort all pending cures on the daemon",
|
"Abort all pending cures on the daemon",
|
||||||
@@ -759,26 +664,27 @@ func main() {
|
|||||||
"shell",
|
"shell",
|
||||||
"Interactive shell in the specified Rosa OS environment",
|
"Interactive shell in the specified Rosa OS environment",
|
||||||
func(args []string) error {
|
func(args []string) error {
|
||||||
handles := make([]rosa.ArtifactH, len(args), len(args)+3)
|
presets := make([]rosa.PArtifact, len(args)+3)
|
||||||
for i, arg := range args {
|
for i, arg := range args {
|
||||||
handles[i] = rosa.ArtifactH(unique.Make(arg))
|
p, ok := rosa.ResolveName(arg)
|
||||||
if meta, _ := rosa.Native().Std().Load(handles[i]); meta == nil {
|
if !ok {
|
||||||
return fmt.Errorf("unknown artifact %q", arg)
|
return fmt.Errorf("unknown artifact %q", arg)
|
||||||
}
|
}
|
||||||
|
presets[i] = p
|
||||||
}
|
}
|
||||||
|
|
||||||
base := rosa.H("llvm")
|
base := rosa.LLVM
|
||||||
if !flagWithToolchain {
|
if !flagWithToolchain {
|
||||||
base = rosa.H("musl")
|
base = rosa.Musl
|
||||||
}
|
}
|
||||||
handles = append(handles,
|
presets = append(presets,
|
||||||
base,
|
base,
|
||||||
rosa.H("mksh"),
|
rosa.Mksh,
|
||||||
rosa.H("toybox"),
|
rosa.Toybox,
|
||||||
)
|
)
|
||||||
|
|
||||||
root := make(pkg.Collect, 0, 6+len(args))
|
root := make(pkg.Collect, 0, 6+len(args))
|
||||||
root = rosa.Native().Std().Append(root, handles...)
|
root = rosa.Std.AppendPresets(root, presets...)
|
||||||
|
|
||||||
if err := cm.Do(func(cache *pkg.Cache) error {
|
if err := cm.Do(func(cache *pkg.Cache) error {
|
||||||
_, _, err := cache.Cure(&root)
|
_, _, err := cache.Cure(&root)
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func TestMain(m *testing.M) {
|
func TestMain(m *testing.M) {
|
||||||
rosa.Native().DropCaches("", rosa.OptLLVMNoLTO)
|
rosa.DropCaches("", rosa.OptLLVMNoLTO)
|
||||||
os.Exit(m.Run())
|
os.Exit(m.Run())
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -35,10 +35,10 @@ func TestCureAll(t *testing.T) {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
for _, handle := range rosa.Native().Collect() {
|
for i := range rosa.PresetEnd {
|
||||||
_, a := rosa.Native().Std().MustLoad(handle)
|
p := rosa.PArtifact(i)
|
||||||
t.Run(handle.String(), func(t *testing.T) {
|
t.Run(rosa.GetMetadata(p).Name, func(t *testing.T) {
|
||||||
_, err := cureRemote(t.Context(), &addr, a, 0)
|
_, err := cureRemote(t.Context(), &addr, rosa.Std.Load(p), 0)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -139,6 +139,7 @@
|
|||||||
GOCACHE="$(mktemp -d)" \
|
GOCACHE="$(mktemp -d)" \
|
||||||
PATH="${pkgs.pkgsStatic.musl.bin}/bin:$PATH" \
|
PATH="${pkgs.pkgsStatic.musl.bin}/bin:$PATH" \
|
||||||
DESTDIR="$out" \
|
DESTDIR="$out" \
|
||||||
|
HAKUREI_VERSION="v${hakurei.version}" \
|
||||||
./all.sh
|
./all.sh
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
package pkg_test
|
package pkg_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
|
||||||
_ "embed"
|
_ "embed"
|
||||||
"encoding/gob"
|
"encoding/gob"
|
||||||
"errors"
|
"errors"
|
||||||
@@ -86,30 +85,6 @@ func TestExec(t *testing.T) {
|
|||||||
pkg.MustPath("/opt", false, testtool),
|
pkg.MustPath("/opt", false, testtool),
|
||||||
), ignorePathname, wantOffline, nil},
|
), ignorePathname, wantOffline, nil},
|
||||||
|
|
||||||
{"substitution", pkg.NewExec(
|
|
||||||
"exec-offline", "", new(wantOffline.hash()), 0, false, false,
|
|
||||||
pkg.AbsWork,
|
|
||||||
[]string{"HAKUREI_TEST=1"},
|
|
||||||
check.MustAbs("/opt/bin/testtool"),
|
|
||||||
[]string{"testtool"},
|
|
||||||
|
|
||||||
pkg.MustPath("/file", false, newStubFile(
|
|
||||||
pkg.KindHTTPGet,
|
|
||||||
pkg.ID{0xfe, 0},
|
|
||||||
nil,
|
|
||||||
nil, nil,
|
|
||||||
)),
|
|
||||||
// substitution miss fails in testtool due to differing idents
|
|
||||||
pkg.MustPath("/.hakurei", false, &stubArtifact{
|
|
||||||
kind: pkg.KindTar,
|
|
||||||
params: []byte("empty directory (substituted)"),
|
|
||||||
cure: func(t *pkg.TContext) error {
|
|
||||||
return os.MkdirAll(t.GetWorkDir().String(), 0700)
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
pkg.MustPath("/opt", false, testtool),
|
|
||||||
), ignorePathname, wantOffline, nil},
|
|
||||||
|
|
||||||
{"error passthrough", pkg.NewExec(
|
{"error passthrough", pkg.NewExec(
|
||||||
"", "", nil, 0, false, true,
|
"", "", nil, 0, false, true,
|
||||||
pkg.AbsWork,
|
pkg.AbsWork,
|
||||||
@@ -137,41 +112,18 @@ func TestExec(t *testing.T) {
|
|||||||
})
|
})
|
||||||
|
|
||||||
// check init failure passthrough
|
// check init failure passthrough
|
||||||
initFailureArtifact := pkg.NewExec(
|
var exitError *exec.ExitError
|
||||||
|
if _, _, err := c.Cure(pkg.NewExec(
|
||||||
"", "", nil, 0, false, false,
|
"", "", nil, 0, false, false,
|
||||||
pkg.AbsWork,
|
pkg.AbsWork,
|
||||||
nil,
|
nil,
|
||||||
check.MustAbs("/opt/bin/testtool"),
|
check.MustAbs("/opt/bin/testtool"),
|
||||||
[]string{"testtool"},
|
[]string{"testtool"},
|
||||||
)
|
)); !errors.As(err, &exitError) ||
|
||||||
var exitError *exec.ExitError
|
|
||||||
if _, _, err := c.Cure(initFailureArtifact); !errors.As(err, &exitError) ||
|
|
||||||
exitError.ExitCode() != hst.ExitFailure {
|
exitError.ExitCode() != hst.ExitFailure {
|
||||||
t.Fatalf("Cure: error = %v, want init exit status 1", err)
|
t.Fatalf("Cure: error = %v, want init exit status 1", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
var faultStatus []byte
|
|
||||||
if faults, err := c.ReadFaults(initFailureArtifact); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
} else if len(faults) != 1 {
|
|
||||||
t.Fatalf("ReadFaults: %v", faults)
|
|
||||||
} else if faultStatus, err = os.ReadFile(faults[0].String()); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
} else if err = faults[0].Destroy(); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
} else {
|
|
||||||
t.Logf("destroyed expected fault at %s", faults[0].Time().UTC())
|
|
||||||
}
|
|
||||||
|
|
||||||
if !bytes.HasPrefix(faultStatus, []byte(
|
|
||||||
"internal/pkg ",
|
|
||||||
)) || !bytes.Contains(faultStatus, []byte(
|
|
||||||
"\ninit: fork/exec /opt/bin/testtool: no such file or directory\n",
|
|
||||||
)) {
|
|
||||||
t.Errorf("unexpected status:\n%s", string(faultStatus))
|
|
||||||
}
|
|
||||||
|
|
||||||
destroyStatus(t, base, 2, 1)
|
|
||||||
testtoolDestroy(t, base, c)
|
testtoolDestroy(t, base, c)
|
||||||
}, expectsFS{
|
}, expectsFS{
|
||||||
".": {Mode: fs.ModeDir | 0700},
|
".": {Mode: fs.ModeDir | 0700},
|
||||||
@@ -183,10 +135,8 @@ func TestExec(t *testing.T) {
|
|||||||
"checksum/OLBgp1GsljhM2TJ-sbHjaiH9txEUvgdDTAzHv2P24donTt6_529l-9Ua0vFImLlb": {Mode: 0400, Data: []byte{}},
|
"checksum/OLBgp1GsljhM2TJ-sbHjaiH9txEUvgdDTAzHv2P24donTt6_529l-9Ua0vFImLlb": {Mode: 0400, Data: []byte{}},
|
||||||
|
|
||||||
"identifier": {Mode: fs.ModeDir | 0700},
|
"identifier": {Mode: fs.ModeDir | 0700},
|
||||||
"identifier/QwS7SmiatdqryQYgESdGw7Yw2PcpNf0vNfpvUA0t92BTlKiUjfCrXyMW17G2X77X": {Mode: fs.ModeSymlink | 0777, Data: []byte("../checksum/MGWmEfjut2QE2xPJwTsmUzpff4BN_FEnQ7T0j7gvUCCiugJQNwqt9m151fm9D1yU")},
|
|
||||||
"identifier/_gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA": {Mode: fs.ModeSymlink | 0777, Data: []byte("../checksum/OLBgp1GsljhM2TJ-sbHjaiH9txEUvgdDTAzHv2P24donTt6_529l-9Ua0vFImLlb")},
|
"identifier/_gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA": {Mode: fs.ModeSymlink | 0777, Data: []byte("../checksum/OLBgp1GsljhM2TJ-sbHjaiH9txEUvgdDTAzHv2P24donTt6_529l-9Ua0vFImLlb")},
|
||||||
"identifier/" + expected.Offline: {Mode: fs.ModeSymlink | 0777, Data: []byte("../checksum/" + wantOfflineEncode)},
|
"identifier/" + expected.Offline: {Mode: fs.ModeSymlink | 0777, Data: []byte("../checksum/" + wantOfflineEncode)},
|
||||||
"identifier/" + expected.OfflineS: {Mode: fs.ModeSymlink | 0777, Data: []byte("../checksum/" + wantOfflineEncode)},
|
|
||||||
"identifier/vjz1MHPcGBKV7sjcs8jQP3cqxJ1hgPTiQBMCEHP9BGXjGxd-tJmEmXKaStObo5gK": {Mode: fs.ModeSymlink | 0777, Data: []byte("../checksum/MGWmEfjut2QE2xPJwTsmUzpff4BN_FEnQ7T0j7gvUCCiugJQNwqt9m151fm9D1yU")},
|
"identifier/vjz1MHPcGBKV7sjcs8jQP3cqxJ1hgPTiQBMCEHP9BGXjGxd-tJmEmXKaStObo5gK": {Mode: fs.ModeSymlink | 0777, Data: []byte("../checksum/MGWmEfjut2QE2xPJwTsmUzpff4BN_FEnQ7T0j7gvUCCiugJQNwqt9m151fm9D1yU")},
|
||||||
|
|
||||||
"substitute": {Mode: fs.ModeDir | 0700},
|
"substitute": {Mode: fs.ModeDir | 0700},
|
||||||
@@ -228,7 +178,6 @@ func TestExec(t *testing.T) {
|
|||||||
), ignorePathname, wantNet, nil},
|
), ignorePathname, wantNet, nil},
|
||||||
})
|
})
|
||||||
|
|
||||||
destroyStatus(t, base, 2, 0)
|
|
||||||
testtoolDestroy(t, base, c)
|
testtoolDestroy(t, base, c)
|
||||||
}, expectsFS{
|
}, expectsFS{
|
||||||
".": {Mode: fs.ModeDir | 0700},
|
".": {Mode: fs.ModeDir | 0700},
|
||||||
@@ -272,7 +221,6 @@ func TestExec(t *testing.T) {
|
|||||||
), ignorePathname, wantOffline, nil},
|
), ignorePathname, wantOffline, nil},
|
||||||
})
|
})
|
||||||
|
|
||||||
destroyStatus(t, base, 2, 0)
|
|
||||||
testtoolDestroy(t, base, c)
|
testtoolDestroy(t, base, c)
|
||||||
}, expectsFS{
|
}, expectsFS{
|
||||||
".": {Mode: fs.ModeDir | 0700},
|
".": {Mode: fs.ModeDir | 0700},
|
||||||
@@ -319,7 +267,6 @@ func TestExec(t *testing.T) {
|
|||||||
), ignorePathname, wantOffline, nil},
|
), ignorePathname, wantOffline, nil},
|
||||||
})
|
})
|
||||||
|
|
||||||
destroyStatus(t, base, 2, 0)
|
|
||||||
testtoolDestroy(t, base, c)
|
testtoolDestroy(t, base, c)
|
||||||
}, expectsFS{
|
}, expectsFS{
|
||||||
".": {Mode: fs.ModeDir | 0700},
|
".": {Mode: fs.ModeDir | 0700},
|
||||||
@@ -388,7 +335,6 @@ func TestExec(t *testing.T) {
|
|||||||
), ignorePathname, wantOffline, nil},
|
), ignorePathname, wantOffline, nil},
|
||||||
})
|
})
|
||||||
|
|
||||||
destroyStatus(t, base, 2, 0)
|
|
||||||
testtoolDestroy(t, base, c)
|
testtoolDestroy(t, base, c)
|
||||||
}, expectsFS{
|
}, expectsFS{
|
||||||
".": {Mode: fs.ModeDir | 0700},
|
".": {Mode: fs.ModeDir | 0700},
|
||||||
@@ -441,7 +387,6 @@ func TestExec(t *testing.T) {
|
|||||||
), ignorePathname, wantOffline, nil},
|
), ignorePathname, wantOffline, nil},
|
||||||
})
|
})
|
||||||
|
|
||||||
destroyStatus(t, base, 2, 0)
|
|
||||||
testtoolDestroy(t, base, c)
|
testtoolDestroy(t, base, c)
|
||||||
}, expectsFS{
|
}, expectsFS{
|
||||||
".": {Mode: fs.ModeDir | 0700},
|
".": {Mode: fs.ModeDir | 0700},
|
||||||
@@ -505,8 +450,6 @@ func TestExec(t *testing.T) {
|
|||||||
"check": {Mode: 0400, Data: []byte("binfmt")},
|
"check": {Mode: 0400, Data: []byte("binfmt")},
|
||||||
}, nil},
|
}, nil},
|
||||||
})
|
})
|
||||||
|
|
||||||
destroyStatus(t, base, 2, 0)
|
|
||||||
}, expectsFS{
|
}, expectsFS{
|
||||||
".": {Mode: fs.ModeDir | 0700},
|
".": {Mode: fs.ModeDir | 0700},
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
package expected
|
package expected
|
||||||
|
|
||||||
const (
|
const (
|
||||||
Offline = "q5ktDTq0miP-VvB2blxqXQeaRXCUWgP_KbC18KNtUDtyoaI_h5mHmGuPMArVEBDs"
|
Offline = "q5ktDTq0miP-VvB2blxqXQeaRXCUWgP_KbC18KNtUDtyoaI_h5mHmGuPMArVEBDs"
|
||||||
OfflineS = "IY91PCtOpCYy21AaIK0c9f8-Z6fb2_2ewoHWkt4dxoLf0GOrWqS8yAGFLV84b1Dw"
|
OvlRoot = "NacZGXwuRkTvcHaG08a22ujJ8qCWN0RSoFlRSR5FSt0ZcBbJ28FRvkYsHEtX7G8i"
|
||||||
OvlRoot = "NacZGXwuRkTvcHaG08a22ujJ8qCWN0RSoFlRSR5FSt0ZcBbJ28FRvkYsHEtX7G8i"
|
Layers = "WBJDrATtX6rIE5yAu8ePX3WmDF0Tt9kFiue0m3cRnyRoVx1my8a67fh3CAW486oP"
|
||||||
Layers = "WBJDrATtX6rIE5yAu8ePX3WmDF0Tt9kFiue0m3cRnyRoVx1my8a67fh3CAW486oP"
|
Net = "CmYtj2sNB3LHtqiDuck_Lz3MjLLIiwyP8N4NDitQ1Icvv__LVP9p8tm-sHeQaKKp"
|
||||||
Net = "CmYtj2sNB3LHtqiDuck_Lz3MjLLIiwyP8N4NDitQ1Icvv__LVP9p8tm-sHeQaKKp"
|
Promote = "TX3eCloaQFkV-SZIH6Jg6E5WKH--rcXY1P0jnZKmLFKWrNqnOzd4G9eIBh6i5ywN"
|
||||||
Promote = "TX3eCloaQFkV-SZIH6Jg6E5WKH--rcXY1P0jnZKmLFKWrNqnOzd4G9eIBh6i5ywN"
|
Work = "OuNiLSC68pZhAOr1YQ4WbV1tzASA0nxLEBcK7lO7MqxDY_j8dmP_C612RTuF23Lu"
|
||||||
Work = "OuNiLSC68pZhAOr1YQ4WbV1tzASA0nxLEBcK7lO7MqxDY_j8dmP_C612RTuF23Lu"
|
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
package expected
|
package expected
|
||||||
|
|
||||||
const (
|
const (
|
||||||
Offline = "WapqyoPxbWSnq07dWHt71mHaJXq99pAjJfFlELlJljSiZMhTFqqlzU1_mN86shSj"
|
Offline = "WapqyoPxbWSnq07dWHt71mHaJXq99pAjJfFlELlJljSiZMhTFqqlzU1_mN86shSj"
|
||||||
OfflineS = "ibQZHcdXgNQ1OiMX1FrburBbGPVvKEHvPilbQCkm_0oV0BQCHomyyTbYNrFMGIwl"
|
OvlRoot = "V9anFOiRvjGfAeBhLl14AL8TKdWZyD0WTPYe4fS9mOBw8iW5Lmarvt6TG6MV8uWm"
|
||||||
OvlRoot = "V9anFOiRvjGfAeBhLl14AL8TKdWZyD0WTPYe4fS9mOBw8iW5Lmarvt6TG6MV8uWm"
|
Layers = "tKx7JNRoSBdK_7MdzI-nwTNV2wmiPzwYdcd17oLmXKL_iLmUzUiA79qTqdrTasrv"
|
||||||
Layers = "tKx7JNRoSBdK_7MdzI-nwTNV2wmiPzwYdcd17oLmXKL_iLmUzUiA79qTqdrTasrv"
|
Net = "aXyDLzBCJ9XltXZIfetEVsEkrqHfcXuD5XE_FcUnYbN3emwL55N6P8LlHzNfGnM5"
|
||||||
Net = "aXyDLzBCJ9XltXZIfetEVsEkrqHfcXuD5XE_FcUnYbN3emwL55N6P8LlHzNfGnM5"
|
Promote = "3k4V16n96Lq04gjFSKmm4sFjyQ883FFBNXgTy9s_DjeTwxT3pg_iacEh8yMb_S4m"
|
||||||
Promote = "3k4V16n96Lq04gjFSKmm4sFjyQ883FFBNXgTy9s_DjeTwxT3pg_iacEh8yMb_S4m"
|
Work = "6Q49MhFWRE3Ne6MycwAotgl1GtoU5WCHqJNWG2byYZCY-zX-IxPrWiKk7bKkNzhE"
|
||||||
Work = "6Q49MhFWRE3Ne6MycwAotgl1GtoU5WCHqJNWG2byYZCY-zX-IxPrWiKk7bKkNzhE"
|
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
package expected
|
package expected
|
||||||
|
|
||||||
const (
|
const (
|
||||||
Offline = "Z6yXE5gOJScL3srmnVMWgCXccDiUNZ5snSrf6RkXuU1_U0rX_kGVwsfHUgNG_awd"
|
Offline = "Z6yXE5gOJScL3srmnVMWgCXccDiUNZ5snSrf6RkXuU1_U0rX_kGVwsfHUgNG_awd"
|
||||||
OfflineS = "zN16xv6LKRJRipUJwupyxg2rZcvf-qpsMn_qCxUmgxlTSuNwYI70ZEb7dHW5k0gO"
|
OvlRoot = "zYXJHFRLuxvUhuisZEXgGgVvdQd6piMfp5jmtT6jdVjvC2gICXquOq-UTwlrSD5I"
|
||||||
OvlRoot = "zYXJHFRLuxvUhuisZEXgGgVvdQd6piMfp5jmtT6jdVjvC2gICXquOq-UTwlrSD5I"
|
Layers = "_F8EDazHbcLeT0sVSQXRN_kn9IjduqJcDYgzXpsT-hpKU4EBcZ0PISN2zchpqMbm"
|
||||||
Layers = "_F8EDazHbcLeT0sVSQXRN_kn9IjduqJcDYgzXpsT-hpKU4EBcZ0PISN2zchpqMbm"
|
Net = "CA_FAaSIYJgapBEHV40doxpH23PdUEy_6s1TZc7wfSPN0XYqwGpMceXXDSabGveO"
|
||||||
Net = "CA_FAaSIYJgapBEHV40doxpH23PdUEy_6s1TZc7wfSPN0XYqwGpMceXXDSabGveO"
|
Promote = "_3LPrLp--4h9k4GsNNApu9hHtAafq-GUhfU6d4hJKBDKT3bz_szOsvkXxc5sK53d"
|
||||||
Promote = "_3LPrLp--4h9k4GsNNApu9hHtAafq-GUhfU6d4hJKBDKT3bz_szOsvkXxc5sK53d"
|
Work = "FEgHeiCD_WT4wsfB-9kDH5n6cRWCEYtJmXdKZgmUUukAOoXumH_hLlosXREC-tqq"
|
||||||
Work = "FEgHeiCD_WT4wsfB-9kDH5n6cRWCEYtJmXdKZgmUUukAOoXumH_hLlosXREC-tqq"
|
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ package pkg
|
|||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"bytes"
|
"bytes"
|
||||||
"cmp"
|
|
||||||
"context"
|
"context"
|
||||||
"crypto/sha512"
|
"crypto/sha512"
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
@@ -26,7 +25,6 @@ import (
|
|||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"syscall"
|
"syscall"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
|
||||||
"unique"
|
"unique"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
|
|
||||||
@@ -250,14 +248,7 @@ func (t *TContext) destroy(errP *error) {
|
|||||||
*errP = errors.Join(*errP, err)
|
*errP = errors.Join(*errP, err)
|
||||||
}
|
}
|
||||||
if *errP != nil {
|
if *errP != nil {
|
||||||
*errP = errors.Join(*errP, os.Rename(
|
*errP = errors.Join(*errP, os.Remove(t.statusPath.String()))
|
||||||
t.statusPath.String(), t.cache.base.Append(
|
|
||||||
dirFault,
|
|
||||||
t.ids+"."+strconv.FormatUint(uint64(
|
|
||||||
time.Now().UnixNano(),
|
|
||||||
), 10),
|
|
||||||
).String(),
|
|
||||||
))
|
|
||||||
}
|
}
|
||||||
t.status = nil
|
t.status = nil
|
||||||
}
|
}
|
||||||
@@ -518,34 +509,36 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
// fileLock is the lock file for exclusive access to the cache directory.
|
// fileLock is the file name appended to Cache.base for guaranteeing
|
||||||
|
// exclusive access to the cache directory.
|
||||||
fileLock = "lock"
|
fileLock = "lock"
|
||||||
// fileVariant is a file holding the variant identification string set by a
|
// fileVariant is the file name appended to Cache.base holding the variant
|
||||||
// prior call to [SetExtension].
|
// identification string set by a prior call to [SetExtension].
|
||||||
fileVariant = "variant"
|
fileVariant = "variant"
|
||||||
|
|
||||||
// dirSubstitute holds symlinks to artifacts by checksum, named after their
|
// dirSubstitute is the directory name appended to Cache.base for linking
|
||||||
// substitute identifier.
|
// artifacts named after their substitute identifier.
|
||||||
dirSubstitute = "substitute"
|
dirSubstitute = "substitute"
|
||||||
// dirIdentifier holds symlinks to artifacts by checksum, named after their
|
// dirIdentifier is the directory name appended to Cache.base for storing
|
||||||
// IR-based identifier.
|
// artifacts named after their [ID].
|
||||||
dirIdentifier = "identifier"
|
dirIdentifier = "identifier"
|
||||||
// dirChecksum holds artifacts named after their [Checksum].
|
// dirChecksum is the directory name appended to Cache.base for storing
|
||||||
|
// artifacts named after their [Checksum].
|
||||||
dirChecksum = "checksum"
|
dirChecksum = "checksum"
|
||||||
// dirStatus holds artifact metadata and logs named after their IR-based
|
// dirStatus is the directory name appended to Cache.base for storing
|
||||||
// identifier. For [FloodArtifact], the same file is also available under
|
// artifact metadata and logs named after their [ID].
|
||||||
// its substitute identifier.
|
|
||||||
dirStatus = "status"
|
dirStatus = "status"
|
||||||
// dirFault holds status files of faulted cures.
|
|
||||||
dirFault = "fault"
|
|
||||||
|
|
||||||
// dirWork holds working pathnames set up during [Cache.Cure].
|
// dirWork is the directory name appended to Cache.base for working
|
||||||
|
// pathnames set up during [Cache.Cure].
|
||||||
dirWork = "work"
|
dirWork = "work"
|
||||||
// dirTemp holds scratch space allocated during [Cache.Cure].
|
// dirTemp is the directory name appended to Cache.base for scratch space
|
||||||
|
// pathnames allocated during [Cache.Cure].
|
||||||
dirTemp = "temp"
|
dirTemp = "temp"
|
||||||
|
|
||||||
// dirExecScratch is scratch space set up for the container started by
|
// dirExecScratch is the directory name appended to Cache.base for scratch
|
||||||
// [Cache.EnterExec]. Exclusivity via Cache.inExec.
|
// space setting up the container started by [Cache.EnterExec]. Exclusivity
|
||||||
|
// via Cache.inExec.
|
||||||
dirExecScratch = "scratch"
|
dirExecScratch = "scratch"
|
||||||
|
|
||||||
// checksumLinknamePrefix is prepended to the encoded [Checksum] value
|
// checksumLinknamePrefix is prepended to the encoded [Checksum] value
|
||||||
@@ -2002,11 +1995,10 @@ func (c *Cache) cure(a Artifact, curesExempt bool) (
|
|||||||
buf := c.getIdentBuf()
|
buf := c.getIdentBuf()
|
||||||
sh.Sum(buf[wordSize:wordSize])
|
sh.Sum(buf[wordSize:wordSize])
|
||||||
substitute = unique.Make(ID(buf[wordSize:]))
|
substitute = unique.Make(ID(buf[wordSize:]))
|
||||||
substitutes := Encode(substitute.Value())
|
|
||||||
c.putIdentBuf(buf)
|
c.putIdentBuf(buf)
|
||||||
alternative = c.base.Append(
|
alternative = c.base.Append(
|
||||||
dirSubstitute,
|
dirSubstitute,
|
||||||
substitutes,
|
Encode(substitute.Value()),
|
||||||
)
|
)
|
||||||
|
|
||||||
if c.flags&CIgnoreSubstitutes == 0 {
|
if c.flags&CIgnoreSubstitutes == 0 {
|
||||||
@@ -2022,17 +2014,6 @@ func (c *Cache) cure(a Artifact, curesExempt bool) (
|
|||||||
dirChecksum,
|
dirChecksum,
|
||||||
checksums,
|
checksums,
|
||||||
)
|
)
|
||||||
if _, err = os.Lstat(c.base.Append(
|
|
||||||
dirStatus,
|
|
||||||
substitutes,
|
|
||||||
).String()); err == nil {
|
|
||||||
err = os.Symlink(substitutes, c.base.Append(
|
|
||||||
dirStatus,
|
|
||||||
ids,
|
|
||||||
).String())
|
|
||||||
} else if errors.Is(err, os.ErrNotExist) {
|
|
||||||
err = nil
|
|
||||||
}
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2042,15 +2023,6 @@ func (c *Cache) cure(a Artifact, curesExempt bool) (
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
err = ca.Cure(&f)
|
err = ca.Cure(&f)
|
||||||
if err == nil && f.status != nil {
|
|
||||||
err = os.Link(c.base.Append(
|
|
||||||
dirStatus,
|
|
||||||
ids,
|
|
||||||
).String(), c.base.Append(
|
|
||||||
dirStatus,
|
|
||||||
substitutes,
|
|
||||||
).String())
|
|
||||||
}
|
|
||||||
c.exitCure(a, curesExempt)
|
c.exitCure(a, curesExempt)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
@@ -2159,52 +2131,6 @@ func (c *Cache) OpenStatus(a Artifact) (r io.ReadSeekCloser, err error) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fault holds the pathname and termination time of an [Artifact] fault entry.
|
|
||||||
type Fault struct {
|
|
||||||
*check.Absolute
|
|
||||||
t uint64
|
|
||||||
}
|
|
||||||
|
|
||||||
// Time returns the instant in time where the fault occurred.
|
|
||||||
func (f Fault) Time() time.Time { return time.Unix(0, int64(f.t)) }
|
|
||||||
|
|
||||||
// Open opens the underlying entry for reading.
|
|
||||||
func (f Fault) Open() (io.ReadCloser, error) { return os.Open(f.Absolute.String()) }
|
|
||||||
|
|
||||||
// Destroy removes the underlying fault entry.
|
|
||||||
func (f Fault) Destroy() error { return os.Remove(f.Absolute.String()) }
|
|
||||||
|
|
||||||
// ReadFaults returns fault entries for an [Artifact].
|
|
||||||
func (c *Cache) ReadFaults(a Artifact) (faults []Fault, err error) {
|
|
||||||
prefix := Encode(c.Ident(a).Value()) + "."
|
|
||||||
var dents []os.DirEntry
|
|
||||||
if dents, err = os.ReadDir(c.base.Append(dirFault).String()); err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, dent := range dents {
|
|
||||||
name := dent.Name()
|
|
||||||
if !strings.HasPrefix(name, prefix) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
var t uint64
|
|
||||||
t, err = strconv.ParseUint(name[len(prefix):], 10, 64)
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
faults = append(faults, Fault{c.base.Append(
|
|
||||||
dirFault,
|
|
||||||
name,
|
|
||||||
), t})
|
|
||||||
}
|
|
||||||
|
|
||||||
slices.SortFunc(faults, func(a, b Fault) int {
|
|
||||||
return cmp.Compare(a.t, b.t)
|
|
||||||
})
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// Abort cancels all pending cures and waits for them to clean up, but does not
|
// Abort cancels all pending cures and waits for them to clean up, but does not
|
||||||
// close the cache.
|
// close the cache.
|
||||||
func (c *Cache) Abort() {
|
func (c *Cache) Abort() {
|
||||||
@@ -2308,7 +2234,6 @@ func open(
|
|||||||
dirIdentifier,
|
dirIdentifier,
|
||||||
dirChecksum,
|
dirChecksum,
|
||||||
dirStatus,
|
dirStatus,
|
||||||
dirFault,
|
|
||||||
dirWork,
|
dirWork,
|
||||||
} {
|
} {
|
||||||
if err := os.MkdirAll(
|
if err := os.MkdirAll(
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ import (
|
|||||||
"syscall"
|
"syscall"
|
||||||
"testing"
|
"testing"
|
||||||
"testing/fstest"
|
"testing/fstest"
|
||||||
"time"
|
|
||||||
"unique"
|
"unique"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
|
|
||||||
@@ -245,41 +244,6 @@ func newDestroyArtifactFunc(a pkg.Artifact) func(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// destroyStatus counts non-substitution status entries and destroys them.
|
|
||||||
func destroyStatus(t *testing.T, base *check.Absolute, c, s int) {
|
|
||||||
dents, err := os.ReadDir(base.Append("status").String())
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
var gotC, gotS int
|
|
||||||
for _, dent := range dents {
|
|
||||||
if err = os.Remove(base.Append(
|
|
||||||
"status",
|
|
||||||
dent.Name(),
|
|
||||||
).String()); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if dent.Type().IsRegular() {
|
|
||||||
gotC++
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if dent.Type()&fs.ModeSymlink == fs.ModeSymlink {
|
|
||||||
gotS++
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
t.Errorf("%s: %s", dent.Name(), dent.Type())
|
|
||||||
}
|
|
||||||
|
|
||||||
if gotC != c {
|
|
||||||
t.Errorf("status: c = %d, want %d", gotC, c)
|
|
||||||
}
|
|
||||||
if gotS != s {
|
|
||||||
t.Errorf("status: s = %d, want %d", gotS, s)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestIdent(t *testing.T) {
|
func TestIdent(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
|
|
||||||
@@ -524,17 +488,10 @@ func checkWithCache(t *testing.T, testCases []cacheTestCase) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// destroy empty status directory
|
// destroy non-deterministic status files
|
||||||
if err := syscall.Rmdir(base.Append("status").String()); err != nil {
|
if err := os.RemoveAll(base.Append("status").String()); err != nil {
|
||||||
t.Error(expectsFrom(base.Append("status").String()))
|
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// destroy empty fault directory
|
|
||||||
if err := os.Remove(base.Append("fault").String()); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
want := tc.want.hash()
|
want := tc.want.hash()
|
||||||
|
|
||||||
var checksum pkg.Checksum
|
var checksum pkg.Checksum
|
||||||
@@ -598,21 +555,6 @@ func cureMany(t *testing.T, c *pkg.Cache, steps []cureStep) {
|
|||||||
for _, step := range steps {
|
for _, step := range steps {
|
||||||
t.Log("cure step:", step.name)
|
t.Log("cure step:", step.name)
|
||||||
if pathname, checksum, err := c.Cure(step.a); !reflect.DeepEqual(err, step.err) {
|
if pathname, checksum, err := c.Cure(step.a); !reflect.DeepEqual(err, step.err) {
|
||||||
faults, _err := c.ReadFaults(step.a)
|
|
||||||
if _err != nil {
|
|
||||||
t.Errorf("ReadFaults: error = %v", _err)
|
|
||||||
}
|
|
||||||
|
|
||||||
var p []byte
|
|
||||||
for _, fault := range faults {
|
|
||||||
p, _err = os.ReadFile(fault.String())
|
|
||||||
if _err != nil {
|
|
||||||
t.Error(_err)
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
t.Log(string(p))
|
|
||||||
t.Logf("faulting cure terminated %s ago", time.Since(faults[0].Time()))
|
|
||||||
}
|
|
||||||
t.Fatalf("Cure: error = %v, want %v", err, step.err)
|
t.Fatalf("Cure: error = %v, want %v", err, step.err)
|
||||||
} else if step.pathname != ignorePathname && !pathname.Is(step.pathname) {
|
} else if step.pathname != ignorePathname && !pathname.Is(step.pathname) {
|
||||||
t.Fatalf("Cure: pathname = %q, want %q", pathname, step.pathname)
|
t.Fatalf("Cure: pathname = %q, want %q", pathname, step.pathname)
|
||||||
@@ -1117,14 +1059,8 @@ func TestCache(t *testing.T) {
|
|||||||
"_EmV5nsYZ2UWHgRmLDMU8i-rJWDx-kv5_1pFrzQI7vMMCM5mAXivO8UZtVfOqMR_",
|
"_EmV5nsYZ2UWHgRmLDMU8i-rJWDx-kv5_1pFrzQI7vMMCM5mAXivO8UZtVfOqMR_",
|
||||||
), want, nil},
|
), want, nil},
|
||||||
})
|
})
|
||||||
}
|
|
||||||
|
|
||||||
if dents, err := os.ReadDir(base.Append("status").String()); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
} else if len(dents) > 0 {
|
|
||||||
t.Errorf("ReadDir: %v", dents)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}, expectsFS{
|
}, expectsFS{
|
||||||
".": {Mode: fs.ModeDir | 0700},
|
".": {Mode: fs.ModeDir | 0700},
|
||||||
|
|
||||||
|
|||||||
110
internal/rosa/acl.go
Normal file
110
internal/rosa/acl.go
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newAttr() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "2.5.2"
|
||||||
|
checksum = "YWEphrz6vg1sUMmHHVr1CRo53pFXRhq_pjN-AlG8UgwZK1y6m7zuDhxqJhD0SV0l"
|
||||||
|
)
|
||||||
|
return t.NewPackage("attr", version, newTar(
|
||||||
|
"https://download.savannah.nongnu.org/releases/attr/"+
|
||||||
|
"attr-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), &PackageAttr{
|
||||||
|
Patches: []KV{
|
||||||
|
{"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`},
|
||||||
|
|
||||||
|
{"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
|
||||||
|
`},
|
||||||
|
},
|
||||||
|
|
||||||
|
ScriptEarly: `
|
||||||
|
ln -s ../../system/bin/perl /usr/bin
|
||||||
|
`,
|
||||||
|
}, (*MakeHelper)(nil),
|
||||||
|
Perl,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Attr] = Metadata{
|
||||||
|
f: Toolchain.newAttr,
|
||||||
|
|
||||||
|
Name: "attr",
|
||||||
|
Description: "Commands for Manipulating Filesystem Extended Attributes",
|
||||||
|
Website: "https://savannah.nongnu.org/projects/attr/",
|
||||||
|
|
||||||
|
ID: 137,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newACL() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "2.3.2"
|
||||||
|
checksum = "-fY5nwH4K8ZHBCRXrzLdguPkqjKI6WIiGu4dBtrZ1o0t6AIU73w8wwJz_UyjIS0P"
|
||||||
|
)
|
||||||
|
return t.NewPackage("acl", version, newTar(
|
||||||
|
"https://download.savannah.nongnu.org/releases/acl/"+
|
||||||
|
"acl-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), nil, &MakeHelper{
|
||||||
|
// makes assumptions about uid_map/gid_map
|
||||||
|
SkipCheck: true,
|
||||||
|
},
|
||||||
|
Attr,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[ACL] = Metadata{
|
||||||
|
f: Toolchain.newACL,
|
||||||
|
|
||||||
|
Name: "acl",
|
||||||
|
Description: "Commands for Manipulating POSIX Access Control Lists",
|
||||||
|
Website: "https://savannah.nongnu.org/projects/acl/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Attr,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 16,
|
||||||
|
}
|
||||||
|
}
|
||||||
425
internal/rosa/all.go
Normal file
425
internal/rosa/all.go
Normal file
@@ -0,0 +1,425 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"net/http"
|
||||||
|
"runtime"
|
||||||
|
"strconv"
|
||||||
|
"sync"
|
||||||
|
|
||||||
|
"hakurei.app/internal/pkg"
|
||||||
|
)
|
||||||
|
|
||||||
|
// PArtifact is a lazily-initialised [pkg.Artifact] preset.
|
||||||
|
type PArtifact int
|
||||||
|
|
||||||
|
const (
|
||||||
|
LLVM PArtifact = iota
|
||||||
|
|
||||||
|
// EarlyInit is the Rosa OS init program.
|
||||||
|
EarlyInit
|
||||||
|
// ImageSystem is the Rosa OS /system image.
|
||||||
|
ImageSystem
|
||||||
|
// ImageInitramfs is the Rosa OS initramfs archive.
|
||||||
|
ImageInitramfs
|
||||||
|
|
||||||
|
// Kernel is the generic Rosa OS Linux kernel.
|
||||||
|
Kernel
|
||||||
|
// KernelHeaders is an installation of kernel headers for [Kernel].
|
||||||
|
KernelHeaders
|
||||||
|
// KernelSource is a writable kernel source tree installed to [AbsUsrSrc].
|
||||||
|
KernelSource
|
||||||
|
// Firmware is firmware blobs for use with the Linux kernel.
|
||||||
|
Firmware
|
||||||
|
|
||||||
|
ACL
|
||||||
|
ArgpStandalone
|
||||||
|
Attr
|
||||||
|
Autoconf
|
||||||
|
Automake
|
||||||
|
BC
|
||||||
|
Bash
|
||||||
|
Binutils
|
||||||
|
Bison
|
||||||
|
Bzip2
|
||||||
|
CMake
|
||||||
|
Connman
|
||||||
|
Coreutils
|
||||||
|
Curl
|
||||||
|
DBus
|
||||||
|
DTC
|
||||||
|
Diffutils
|
||||||
|
Elfutils
|
||||||
|
Fakeroot
|
||||||
|
Findutils
|
||||||
|
Flex
|
||||||
|
Fuse
|
||||||
|
GMP
|
||||||
|
GLib
|
||||||
|
Gawk
|
||||||
|
GenInitCPIO
|
||||||
|
Gettext
|
||||||
|
Git
|
||||||
|
Glslang
|
||||||
|
GnuTLS
|
||||||
|
Go
|
||||||
|
Gperf
|
||||||
|
Grep
|
||||||
|
Gzip
|
||||||
|
Hakurei
|
||||||
|
HakureiDist
|
||||||
|
Hwdata
|
||||||
|
IPTables
|
||||||
|
Kmod
|
||||||
|
LIT
|
||||||
|
LibX11
|
||||||
|
LibXau
|
||||||
|
LibXext
|
||||||
|
LibXrandr
|
||||||
|
LibXrender
|
||||||
|
LibXxf86vm
|
||||||
|
Libarchive
|
||||||
|
Libbsd
|
||||||
|
Libcap
|
||||||
|
Libconfig
|
||||||
|
LibdisplayInfo
|
||||||
|
Libdrm
|
||||||
|
Libev
|
||||||
|
Libexpat
|
||||||
|
Libffi
|
||||||
|
Libgd
|
||||||
|
Libglvnd
|
||||||
|
Libiconv
|
||||||
|
Libmd
|
||||||
|
Libmnl
|
||||||
|
Libnftnl
|
||||||
|
Libpciaccess
|
||||||
|
Libpng
|
||||||
|
Libpsl
|
||||||
|
Libseccomp
|
||||||
|
Libtasn1
|
||||||
|
Libtool
|
||||||
|
Libucontext
|
||||||
|
Libunistring
|
||||||
|
Libxshmfence
|
||||||
|
Libxml2
|
||||||
|
Libxslt
|
||||||
|
Libxtrans
|
||||||
|
M4
|
||||||
|
MPC
|
||||||
|
MPFR
|
||||||
|
Make
|
||||||
|
Meson
|
||||||
|
Mksh
|
||||||
|
MuslFts
|
||||||
|
MuslObstack
|
||||||
|
NSS
|
||||||
|
NSSCACert
|
||||||
|
Ncurses
|
||||||
|
Nettle
|
||||||
|
Ninja
|
||||||
|
OpenSSL
|
||||||
|
P11Kit
|
||||||
|
PCRE2
|
||||||
|
Parallel
|
||||||
|
Patch
|
||||||
|
Perl
|
||||||
|
PerlLocaleGettext
|
||||||
|
PerlMIMECharset
|
||||||
|
PerlModuleBuild
|
||||||
|
PerlPodParser
|
||||||
|
PerlSGMLS
|
||||||
|
PerlTermReadKey
|
||||||
|
PerlTextCharWidth
|
||||||
|
PerlTextWrapI18N
|
||||||
|
PerlUnicodeLineBreak
|
||||||
|
PerlYAMLTiny
|
||||||
|
PkgConfig
|
||||||
|
Procps
|
||||||
|
Python
|
||||||
|
PythonFlitCore
|
||||||
|
PythonHatchling
|
||||||
|
PythonIniConfig
|
||||||
|
PythonMako
|
||||||
|
PythonMarkupSafe
|
||||||
|
PythonPackaging
|
||||||
|
PythonPathspec
|
||||||
|
PythonPluggy
|
||||||
|
PythonPyTest
|
||||||
|
PythonPyYAML
|
||||||
|
PythonPycparser
|
||||||
|
PythonPygments
|
||||||
|
PythonSetuptools
|
||||||
|
PythonSetuptoolsSCM
|
||||||
|
PythonTroveClassifiers
|
||||||
|
PythonVCSVersioning
|
||||||
|
PythonWheel
|
||||||
|
QEMU
|
||||||
|
Rdfind
|
||||||
|
Readline
|
||||||
|
Rsync
|
||||||
|
Sed
|
||||||
|
SPIRVHeaders
|
||||||
|
SPIRVLLVMTranslator
|
||||||
|
SPIRVTools
|
||||||
|
SquashfsTools
|
||||||
|
Strace
|
||||||
|
TamaGo
|
||||||
|
Tar
|
||||||
|
Texinfo
|
||||||
|
Toybox
|
||||||
|
toyboxEarly
|
||||||
|
Unzip
|
||||||
|
UtilLinux
|
||||||
|
VIM
|
||||||
|
Wayland
|
||||||
|
WaylandProtocols
|
||||||
|
XCB
|
||||||
|
XCBProto
|
||||||
|
XCBUtilKeysyms
|
||||||
|
XDGDBusProxy
|
||||||
|
XZ
|
||||||
|
XorgProto
|
||||||
|
Zlib
|
||||||
|
Zstd
|
||||||
|
|
||||||
|
// PresetUnexportedStart is the first unexported preset.
|
||||||
|
PresetUnexportedStart
|
||||||
|
|
||||||
|
stage0Dist = iota - 1
|
||||||
|
llvmSource
|
||||||
|
// earlyCompilerRT is an early, standalone compiler-rt installation for the
|
||||||
|
// standalone runtimes build.
|
||||||
|
//
|
||||||
|
// earlyCompilerRT must only be loaded by [LLVM].
|
||||||
|
earlyCompilerRT
|
||||||
|
// earlyRuntimes is an early, standalone installation of LLVM runtimes to
|
||||||
|
// work around the cmake build system leaking the system LLVM installation
|
||||||
|
// when invoking the newly built toolchain.
|
||||||
|
//
|
||||||
|
// earlyRuntimes must only be loaded by [LLVM].
|
||||||
|
earlyRuntimes
|
||||||
|
|
||||||
|
buildcatrust
|
||||||
|
utilMacros
|
||||||
|
|
||||||
|
// Musl is a standalone libc that does not depend on the toolchain.
|
||||||
|
Musl
|
||||||
|
// muslHeaders is a system installation of [Musl] headers.
|
||||||
|
muslHeaders
|
||||||
|
|
||||||
|
// gcc is a hacked-to-pieces GCC toolchain meant for use in intermediate
|
||||||
|
// stages only. This preset and its direct output must never be exposed.
|
||||||
|
gcc
|
||||||
|
|
||||||
|
// nettle3 is an older version of [Nettle].
|
||||||
|
nettle3
|
||||||
|
|
||||||
|
// Stage0 is a tarball containing all compile-time dependencies of artifacts
|
||||||
|
// part of the [Std] toolchain.
|
||||||
|
Stage0
|
||||||
|
|
||||||
|
// PresetEnd is the total number of presets and does not denote a preset.
|
||||||
|
PresetEnd
|
||||||
|
)
|
||||||
|
|
||||||
|
// P represents multiple [PArtifact] and is stable through JSON.
|
||||||
|
type P []PArtifact
|
||||||
|
|
||||||
|
// MarshalJSON represents [PArtifact] by their [Metadata.Name].
|
||||||
|
func (s P) MarshalJSON() ([]byte, error) {
|
||||||
|
names := make([]string, len(s))
|
||||||
|
for i, p := range s {
|
||||||
|
names[i] = GetMetadata(p).Name
|
||||||
|
}
|
||||||
|
return json.Marshal(names)
|
||||||
|
}
|
||||||
|
|
||||||
|
// UnmarshalJSON resolves the value created by MarshalJSON back to [P].
|
||||||
|
func (s *P) UnmarshalJSON(data []byte) error {
|
||||||
|
var names []string
|
||||||
|
if err := json.Unmarshal(data, &names); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
*s = make(P, len(names))
|
||||||
|
for i, name := range names {
|
||||||
|
if p, ok := ResolveName(name); !ok {
|
||||||
|
return fmt.Errorf("unknown artifact %q", name)
|
||||||
|
} else {
|
||||||
|
(*s)[i] = p
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Metadata is stage-agnostic information of a [PArtifact] not directly
|
||||||
|
// representable in the resulting [pkg.Artifact].
|
||||||
|
type Metadata struct {
|
||||||
|
f func(t Toolchain) (a pkg.Artifact, version string)
|
||||||
|
|
||||||
|
// Unique package name.
|
||||||
|
Name string `json:"name"`
|
||||||
|
// Short user-facing description.
|
||||||
|
Description string `json:"description"`
|
||||||
|
// Project home page.
|
||||||
|
Website string `json:"website,omitempty"`
|
||||||
|
|
||||||
|
// Runtime dependencies.
|
||||||
|
Dependencies P `json:"dependencies"`
|
||||||
|
|
||||||
|
// Project identifier on [Anitya].
|
||||||
|
//
|
||||||
|
// [Anitya]: https://release-monitoring.org/
|
||||||
|
ID int `json:"-"`
|
||||||
|
|
||||||
|
// Optional custom version checking behaviour.
|
||||||
|
latest func(v *Versions) string
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetLatest returns the latest version described by v.
|
||||||
|
func (meta *Metadata) GetLatest(v *Versions) string {
|
||||||
|
if meta.latest != nil {
|
||||||
|
return meta.latest(v)
|
||||||
|
}
|
||||||
|
return v.Latest
|
||||||
|
}
|
||||||
|
|
||||||
|
// Unversioned denotes an unversioned [PArtifact].
|
||||||
|
const Unversioned = "\x00"
|
||||||
|
|
||||||
|
// UnpopulatedIDError is returned by [Metadata.GetLatest] for an instance of
|
||||||
|
// [Metadata] where ID is not populated.
|
||||||
|
type UnpopulatedIDError struct{}
|
||||||
|
|
||||||
|
func (UnpopulatedIDError) Unwrap() error { return errors.ErrUnsupported }
|
||||||
|
func (UnpopulatedIDError) Error() string { return "Anitya ID is not populated" }
|
||||||
|
|
||||||
|
// Versions are package versions returned by Anitya.
|
||||||
|
type Versions struct {
|
||||||
|
// The latest version for the project, as determined by the version sorting algorithm.
|
||||||
|
Latest string `json:"latest_version"`
|
||||||
|
// List of all versions that aren’t flagged as pre-release.
|
||||||
|
Stable []string `json:"stable_versions"`
|
||||||
|
// List of all versions stored, sorted from newest to oldest.
|
||||||
|
All []string `json:"versions"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// getStable returns the first Stable version, or Latest if that is unavailable.
|
||||||
|
func (v *Versions) getStable() string {
|
||||||
|
if len(v.Stable) == 0 {
|
||||||
|
return v.Latest
|
||||||
|
}
|
||||||
|
return v.Stable[0]
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetVersions returns versions fetched from Anitya.
|
||||||
|
func (meta *Metadata) GetVersions(ctx context.Context) (*Versions, error) {
|
||||||
|
if meta.ID == 0 {
|
||||||
|
return nil, UnpopulatedIDError{}
|
||||||
|
}
|
||||||
|
|
||||||
|
var resp *http.Response
|
||||||
|
if req, err := http.NewRequestWithContext(
|
||||||
|
ctx,
|
||||||
|
http.MethodGet,
|
||||||
|
"https://release-monitoring.org/api/v2/versions/?project_id="+
|
||||||
|
strconv.Itoa(meta.ID),
|
||||||
|
nil,
|
||||||
|
); err != nil {
|
||||||
|
return nil, err
|
||||||
|
} else {
|
||||||
|
req.Header.Set("User-Agent", "Rosa/1.1")
|
||||||
|
if resp, err = http.DefaultClient.Do(req); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var v Versions
|
||||||
|
err := json.NewDecoder(resp.Body).Decode(&v)
|
||||||
|
return &v, errors.Join(err, resp.Body.Close())
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
// artifactsM is an array of [PArtifact] metadata.
|
||||||
|
artifactsM [PresetEnd]Metadata
|
||||||
|
|
||||||
|
// artifacts stores the result of Metadata.f.
|
||||||
|
artifacts [_toolchainEnd][len(artifactsM)]struct {
|
||||||
|
a pkg.Artifact
|
||||||
|
v string
|
||||||
|
}
|
||||||
|
// artifactsOnce is for lazy initialisation of artifacts.
|
||||||
|
artifactsOnce [_toolchainEnd][len(artifactsM)]sync.Once
|
||||||
|
|
||||||
|
// arch is the target architecture.
|
||||||
|
arch = runtime.GOARCH
|
||||||
|
|
||||||
|
// presetOpts globally modifies behaviour of presets.
|
||||||
|
presetOpts int
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// OptSkipCheck skips running all test suites.
|
||||||
|
OptSkipCheck = 1 << iota
|
||||||
|
// OptLLVMNoLTO disables LTO in all [LLVM] stages.
|
||||||
|
OptLLVMNoLTO
|
||||||
|
)
|
||||||
|
|
||||||
|
// Arch returns the target architecture.
|
||||||
|
func Arch() string { return arch }
|
||||||
|
|
||||||
|
// Flags returns the current preset flags
|
||||||
|
func Flags() int { return presetOpts }
|
||||||
|
|
||||||
|
// zero zeros the value pointed to by p.
|
||||||
|
func zero[T any](p *T) { var v T; *p = v }
|
||||||
|
|
||||||
|
// DropCaches arranges for all cached [pkg.Artifact] to be freed some time after
|
||||||
|
// it returns. Must not be used concurrently with any other function from this
|
||||||
|
// package.
|
||||||
|
func DropCaches(targetArch string, flags int) {
|
||||||
|
if targetArch == "" {
|
||||||
|
targetArch = runtime.GOARCH
|
||||||
|
}
|
||||||
|
|
||||||
|
arch = targetArch
|
||||||
|
presetOpts = flags
|
||||||
|
zero(&artifacts)
|
||||||
|
zero(&artifactsOnce)
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetMetadata returns [Metadata] of a [PArtifact].
|
||||||
|
func GetMetadata(p PArtifact) *Metadata { return &artifactsM[p] }
|
||||||
|
|
||||||
|
// construct constructs a [pkg.Artifact] corresponding to a [PArtifact] once.
|
||||||
|
func (t Toolchain) construct(p PArtifact) {
|
||||||
|
artifactsOnce[t][p].Do(func() {
|
||||||
|
artifacts[t][p].a, artifacts[t][p].v = artifactsM[p].f(t)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load returns the resulting [pkg.Artifact] of [PArtifact].
|
||||||
|
func (t Toolchain) Load(p PArtifact) pkg.Artifact {
|
||||||
|
t.construct(p)
|
||||||
|
return artifacts[t][p].a
|
||||||
|
}
|
||||||
|
|
||||||
|
// Version returns the version string of [PArtifact].
|
||||||
|
func (t Toolchain) Version(p PArtifact) string {
|
||||||
|
t.construct(p)
|
||||||
|
return artifacts[t][p].v
|
||||||
|
}
|
||||||
|
|
||||||
|
// ResolveName returns a [PArtifact] by name.
|
||||||
|
func ResolveName(name string) (p PArtifact, ok bool) {
|
||||||
|
for i := range PresetUnexportedStart {
|
||||||
|
if name == artifactsM[i].Name {
|
||||||
|
return i, true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0, false
|
||||||
|
}
|
||||||
81
internal/rosa/all_test.go
Normal file
81
internal/rosa/all_test.go
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
package rosa_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"hakurei.app/internal/rosa"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestLoad(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
for i := range rosa.PresetEnd {
|
||||||
|
p := rosa.PArtifact(i)
|
||||||
|
t.Run(rosa.GetMetadata(p).Name, func(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
rosa.Std.Load(p)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkAll(b *testing.B) {
|
||||||
|
arch, flags := rosa.Arch(), rosa.Flags()
|
||||||
|
b.Cleanup(func() { rosa.DropCaches(arch, flags) })
|
||||||
|
|
||||||
|
for b.Loop() {
|
||||||
|
for i := range rosa.PresetEnd {
|
||||||
|
rosa.Std.Load(rosa.PArtifact(i))
|
||||||
|
}
|
||||||
|
|
||||||
|
b.StopTimer()
|
||||||
|
rosa.DropCaches("", 0)
|
||||||
|
b.StartTimer()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestResolveName(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
for i := range rosa.PresetUnexportedStart {
|
||||||
|
p := i
|
||||||
|
name := rosa.GetMetadata(p).Name
|
||||||
|
t.Run(name, func(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
if got, ok := rosa.ResolveName(name); !ok {
|
||||||
|
t.Fatal("ResolveName: ok = false")
|
||||||
|
} else if got != p {
|
||||||
|
t.Fatalf("ResolveName: %d, want %d", got, p)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
func TestResolveNameUnexported(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
for i := rosa.PresetUnexportedStart; i < rosa.PresetEnd; i++ {
|
||||||
|
p := i
|
||||||
|
name := rosa.GetMetadata(p).Name
|
||||||
|
t.Run(name, func(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
if got, ok := rosa.ResolveName(name); ok {
|
||||||
|
t.Fatalf("ResolveName: resolved unexported preset %d", got)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestUnique(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
names := make(map[string]struct{})
|
||||||
|
for i := range rosa.PresetEnd {
|
||||||
|
name := rosa.GetMetadata(rosa.PArtifact(i)).Name
|
||||||
|
if _, ok := names[name]; ok {
|
||||||
|
t.Fatalf("name %s is not unique", name)
|
||||||
|
}
|
||||||
|
names[name] = struct{}{}
|
||||||
|
}
|
||||||
|
}
|
||||||
36
internal/rosa/argp-standalone.go
Normal file
36
internal/rosa/argp-standalone.go
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newArgpStandalone() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.3"
|
||||||
|
checksum = "vtW0VyO2pJ-hPyYmDI2zwSLS8QL0sPAUKC1t3zNYbwN2TmsaE-fADhaVtNd3eNFl"
|
||||||
|
)
|
||||||
|
return t.NewPackage("argp-standalone", version, newTar(
|
||||||
|
"http://www.lysator.liu.se/~nisse/misc/"+
|
||||||
|
"argp-standalone-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), &PackageAttr{
|
||||||
|
Env: []string{
|
||||||
|
"CC=cc -std=gnu89 -fPIC",
|
||||||
|
},
|
||||||
|
}, &MakeHelper{
|
||||||
|
Install: `
|
||||||
|
install -D -m644 /usr/src/argp-standalone/argp.h /work/system/include/argp.h
|
||||||
|
install -D -m755 libargp.a /work/system/lib/libargp.a
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
Diffutils,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[ArgpStandalone] = Metadata{
|
||||||
|
f: Toolchain.newArgpStandalone,
|
||||||
|
|
||||||
|
Name: "argp-standalone",
|
||||||
|
Description: "hierarchical argument parsing library broken out from glibc",
|
||||||
|
Website: "http://www.lysator.liu.se/~nisse/misc/",
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,348 +0,0 @@
|
|||||||
// Package azalea implements a proof-of-concept, domain-specific language for
|
|
||||||
// Rosa OS software packaging.
|
|
||||||
package azalea
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
"io"
|
|
||||||
"strconv"
|
|
||||||
"text/scanner"
|
|
||||||
)
|
|
||||||
|
|
||||||
// idents are runes accepted in an identifier.
|
|
||||||
var idents = [...]bool{
|
|
||||||
'0': true, '1': true, '2': true, '3': true, '4': true, '5': true, '6': true,
|
|
||||||
'7': true, '8': true, '9': true,
|
|
||||||
|
|
||||||
'A': true, 'B': true, 'C': true, 'D': true, 'E': true, 'F': true, 'G': true,
|
|
||||||
'H': true, 'I': true, 'J': true, 'K': true, 'L': true, 'M': true, 'N': true,
|
|
||||||
'O': true, 'P': true, 'Q': true, 'R': true, 'S': true, 'T': true, 'U': true,
|
|
||||||
'V': true, 'W': true, 'X': true, 'Y': true, 'Z': true,
|
|
||||||
|
|
||||||
'a': true, 'b': true, 'c': true, 'd': true, 'e': true, 'f': true, 'g': true,
|
|
||||||
'h': true, 'i': true, 'j': true, 'k': true, 'l': true, 'm': true, 'n': true,
|
|
||||||
'o': true, 'p': true, 'q': true, 'r': true, 's': true, 't': true, 'u': true,
|
|
||||||
'v': true, 'w': true, 'x': true, 'y': true, 'z': true,
|
|
||||||
|
|
||||||
'-': true, '_': true,
|
|
||||||
}
|
|
||||||
|
|
||||||
// TokenError describes an unexpected token.
|
|
||||||
type TokenError [2]rune
|
|
||||||
|
|
||||||
func (e TokenError) Error() string {
|
|
||||||
return "expected " + scanner.TokenString(e[0]) +
|
|
||||||
", found " + scanner.TokenString(e[1])
|
|
||||||
}
|
|
||||||
|
|
||||||
// ExprError is an unexpected token encountered while parsing an expression.
|
|
||||||
type ExprError rune
|
|
||||||
|
|
||||||
func (e ExprError) Error() string {
|
|
||||||
return "unexpected token " + scanner.TokenString(rune(e))
|
|
||||||
}
|
|
||||||
|
|
||||||
// must1 returns v, or panics if err is not nil.
|
|
||||||
func must1[T any](v T, err error) T {
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
return v
|
|
||||||
}
|
|
||||||
|
|
||||||
// parser retains the current token.
|
|
||||||
type parser struct {
|
|
||||||
s scanner.Scanner
|
|
||||||
tok rune
|
|
||||||
}
|
|
||||||
|
|
||||||
// scan advances the underlying scanner to the next token, storing its result.
|
|
||||||
func (p *parser) scan() rune { p.tok = p.s.Scan(); return p.tok }
|
|
||||||
|
|
||||||
// expects panics with [TokenError] for an unexpected tok.
|
|
||||||
func (p *parser) expects(expects rune) {
|
|
||||||
if p.tok != expects {
|
|
||||||
panic(TokenError{expects, p.tok})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// scanAs advances the scanner for an expected token.
|
|
||||||
func (p *parser) scanAs(expects rune) { p.scan(); p.expects(expects) }
|
|
||||||
|
|
||||||
// An Int is the value represented by an integer literal.
|
|
||||||
type Int int64
|
|
||||||
|
|
||||||
func (v Int) GoString() string {
|
|
||||||
return "azalea.Int(" + strconv.FormatInt(int64(v), 10) + ")"
|
|
||||||
}
|
|
||||||
|
|
||||||
// parseInt parses the current token as a base 10 representation of a 64-bit
|
|
||||||
// signed integer.
|
|
||||||
func (p *parser) parseInt() Int {
|
|
||||||
v, err := strconv.ParseInt(p.s.TokenText(), 10, 64)
|
|
||||||
return must1(Int(v), err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// A String holds the unquoted content of a string literal.
|
|
||||||
type String string
|
|
||||||
|
|
||||||
func (v String) GoString() string {
|
|
||||||
return "azalea.String(" + strconv.Quote(string(v)) + ")"
|
|
||||||
}
|
|
||||||
|
|
||||||
// parseString parses the current token as a string.
|
|
||||||
func (p *parser) parseString() String {
|
|
||||||
s, err := strconv.Unquote(p.s.TokenText())
|
|
||||||
return must1(String(s), err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// An Ident holds the name of an identifier.
|
|
||||||
type Ident string
|
|
||||||
|
|
||||||
func (v Ident) GoString() string {
|
|
||||||
return "azalea.Ident(" + strconv.Quote(string(v)) + ")"
|
|
||||||
}
|
|
||||||
|
|
||||||
// A Val are statements joined by the '+' operator. Only the [String] type
|
|
||||||
// supports concatenation.
|
|
||||||
type Val []any
|
|
||||||
|
|
||||||
// parseVal parses until the end of the [Val].
|
|
||||||
func (p *parser) parseVal() (v Val) {
|
|
||||||
v = append(v, p.parseExpr())
|
|
||||||
for p.tok == '+' {
|
|
||||||
p.scan()
|
|
||||||
v = append(v, p.parseExpr())
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// An Array holds statements in an array.
|
|
||||||
type Array []Val
|
|
||||||
|
|
||||||
// A KV holds a key/value pair.
|
|
||||||
type KV struct {
|
|
||||||
K String
|
|
||||||
V Val
|
|
||||||
}
|
|
||||||
|
|
||||||
// An Arg represents an argument of [Func].
|
|
||||||
type Arg struct {
|
|
||||||
K []Ident
|
|
||||||
V Val
|
|
||||||
R bool
|
|
||||||
}
|
|
||||||
|
|
||||||
// Func is a function call or package declaration.
|
|
||||||
type Func struct {
|
|
||||||
// Function or package identifier.
|
|
||||||
Ident Ident
|
|
||||||
// Whether this is a package declaration.
|
|
||||||
Package bool
|
|
||||||
// Key-value arguments.
|
|
||||||
Args []Arg
|
|
||||||
}
|
|
||||||
|
|
||||||
// parseExpr parses the current expression.
|
|
||||||
func (p *parser) parseExpr() any {
|
|
||||||
switch p.tok {
|
|
||||||
case scanner.Int:
|
|
||||||
v := p.parseInt()
|
|
||||||
p.scan()
|
|
||||||
return v
|
|
||||||
|
|
||||||
case scanner.String, scanner.RawString:
|
|
||||||
v := p.parseString()
|
|
||||||
p.scan()
|
|
||||||
return v
|
|
||||||
|
|
||||||
case scanner.Ident:
|
|
||||||
var v Func
|
|
||||||
v.Ident = Ident(p.s.TokenText())
|
|
||||||
if v.Package = v.Ident == "package"; v.Package {
|
|
||||||
p.scanAs(scanner.Ident)
|
|
||||||
v.Ident = Ident(p.s.TokenText())
|
|
||||||
}
|
|
||||||
|
|
||||||
p.scan()
|
|
||||||
switch p.tok {
|
|
||||||
case '{':
|
|
||||||
for {
|
|
||||||
p.scan()
|
|
||||||
switch p.tok {
|
|
||||||
case '}':
|
|
||||||
p.scan()
|
|
||||||
return v
|
|
||||||
|
|
||||||
case scanner.Ident:
|
|
||||||
break
|
|
||||||
|
|
||||||
default:
|
|
||||||
panic(TokenError{scanner.Ident, p.tok})
|
|
||||||
}
|
|
||||||
|
|
||||||
arg := Arg{K: []Ident{Ident(p.s.TokenText())}}
|
|
||||||
delim := true
|
|
||||||
arg:
|
|
||||||
for {
|
|
||||||
p.scan()
|
|
||||||
switch p.tok {
|
|
||||||
case ',':
|
|
||||||
if delim {
|
|
||||||
delim = false
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
panic(ExprError(p.tok))
|
|
||||||
|
|
||||||
case scanner.Ident:
|
|
||||||
if delim {
|
|
||||||
panic(TokenError{',', p.tok})
|
|
||||||
}
|
|
||||||
delim = true
|
|
||||||
arg.K = append(arg.K, Ident(p.s.TokenText()))
|
|
||||||
|
|
||||||
default:
|
|
||||||
break arg
|
|
||||||
}
|
|
||||||
}
|
|
||||||
switch p.tok {
|
|
||||||
case '=':
|
|
||||||
break
|
|
||||||
|
|
||||||
case '*':
|
|
||||||
arg.R = true
|
|
||||||
p.scanAs('=')
|
|
||||||
|
|
||||||
default:
|
|
||||||
panic(TokenError{'=', p.tok})
|
|
||||||
}
|
|
||||||
p.scan()
|
|
||||||
arg.V = p.parseVal()
|
|
||||||
v.Args = append(v.Args, arg)
|
|
||||||
p.expects(';')
|
|
||||||
}
|
|
||||||
|
|
||||||
default:
|
|
||||||
return v.Ident
|
|
||||||
}
|
|
||||||
|
|
||||||
case '{':
|
|
||||||
var v []KV
|
|
||||||
for {
|
|
||||||
p.scan()
|
|
||||||
switch p.tok {
|
|
||||||
case '}':
|
|
||||||
p.scan()
|
|
||||||
return v
|
|
||||||
|
|
||||||
case scanner.String:
|
|
||||||
pair := KV{K: p.parseString()}
|
|
||||||
p.scan()
|
|
||||||
switch p.tok {
|
|
||||||
case ';':
|
|
||||||
break
|
|
||||||
|
|
||||||
case ':':
|
|
||||||
p.scan()
|
|
||||||
pair.V = p.parseVal()
|
|
||||||
p.expects(';')
|
|
||||||
break
|
|
||||||
|
|
||||||
default:
|
|
||||||
panic(ExprError(p.tok))
|
|
||||||
}
|
|
||||||
v = append(v, pair)
|
|
||||||
|
|
||||||
default:
|
|
||||||
panic(ExprError(p.tok))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
case '[':
|
|
||||||
var (
|
|
||||||
v Array
|
|
||||||
delim bool
|
|
||||||
)
|
|
||||||
p.scan()
|
|
||||||
for {
|
|
||||||
switch p.tok {
|
|
||||||
case ',':
|
|
||||||
if delim {
|
|
||||||
p.scan()
|
|
||||||
delim = false
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
panic(ExprError(','))
|
|
||||||
case ']':
|
|
||||||
p.scan()
|
|
||||||
return v
|
|
||||||
case scanner.EOF:
|
|
||||||
panic(ExprError(scanner.EOF))
|
|
||||||
default:
|
|
||||||
if delim {
|
|
||||||
panic(TokenError{',', p.tok})
|
|
||||||
}
|
|
||||||
delim = true
|
|
||||||
break
|
|
||||||
}
|
|
||||||
v = append(v, p.parseVal())
|
|
||||||
}
|
|
||||||
|
|
||||||
default:
|
|
||||||
panic(ExprError(p.tok))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ScanError is the error count parsing all expressions.
|
|
||||||
type ScanError int
|
|
||||||
|
|
||||||
func (ScanError) Error() string {
|
|
||||||
return "aborting due to scanning errors"
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse parses expressions from r.
|
|
||||||
func Parse(r io.Reader) (e []any, err error) {
|
|
||||||
var p parser
|
|
||||||
p.s.Init(r)
|
|
||||||
|
|
||||||
p.s.Mode = scanner.ScanIdents |
|
|
||||||
scanner.ScanInts |
|
|
||||||
scanner.ScanStrings |
|
|
||||||
scanner.ScanRawStrings |
|
|
||||||
scanner.ScanComments |
|
|
||||||
scanner.SkipComments
|
|
||||||
p.s.IsIdentRune = func(ch rune, i int) bool {
|
|
||||||
if i == 0 && ch >= '0' && ch <= '9' {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
return ch > 0 && ch < rune(len(idents)) && idents[ch]
|
|
||||||
}
|
|
||||||
|
|
||||||
defer func() {
|
|
||||||
v := recover()
|
|
||||||
if v == nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
_err, ok := v.(error)
|
|
||||||
if !ok {
|
|
||||||
panic(v)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err == nil {
|
|
||||||
err = _err
|
|
||||||
return
|
|
||||||
}
|
|
||||||
err = errors.Join(err, _err)
|
|
||||||
}()
|
|
||||||
|
|
||||||
p.scan()
|
|
||||||
for p.tok != scanner.EOF {
|
|
||||||
e = append(e, p.parseExpr())
|
|
||||||
}
|
|
||||||
|
|
||||||
if p.s.ErrorCount != 0 {
|
|
||||||
err = ScanError(p.s.ErrorCount)
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
@@ -1,169 +0,0 @@
|
|||||||
package azalea_test
|
|
||||||
|
|
||||||
import (
|
|
||||||
_ "embed"
|
|
||||||
"reflect"
|
|
||||||
"strings"
|
|
||||||
"testing"
|
|
||||||
"text/scanner"
|
|
||||||
|
|
||||||
. "hakurei.app/internal/rosa/azalea"
|
|
||||||
)
|
|
||||||
|
|
||||||
//go:embed testdata/gcc.az
|
|
||||||
var sample string
|
|
||||||
|
|
||||||
func TestParse(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
testCases := []struct {
|
|
||||||
name string
|
|
||||||
data string
|
|
||||||
want []any
|
|
||||||
err error
|
|
||||||
}{
|
|
||||||
{"invalid", "}", nil, ExprError('}')},
|
|
||||||
{"bad sep", "f{v?}", nil, TokenError{'=', '?'}},
|
|
||||||
{"bad ident", "f{9}", nil, TokenError{scanner.Ident, scanner.Int}},
|
|
||||||
{"share bad sep", "f { v,,v = v; }", nil, ExprError(',')},
|
|
||||||
{"share missing sep", "f { v v }", nil, TokenError{',', scanner.Ident}},
|
|
||||||
|
|
||||||
{"ident", `v`, []any{Ident("v")}, nil},
|
|
||||||
{"concat", `f { v = v+"\xfd"+p{}+9; }`, []any{Func{
|
|
||||||
Ident: "f",
|
|
||||||
|
|
||||||
Args: []Arg{{K: []Ident{"v"}, V: Val{
|
|
||||||
Ident("v"),
|
|
||||||
String("\xfd"),
|
|
||||||
Func{Ident: "p"},
|
|
||||||
Int(9),
|
|
||||||
}}},
|
|
||||||
}}, nil},
|
|
||||||
{"truncated string concat", `f { v = v+; }`, nil,
|
|
||||||
ExprError(';')},
|
|
||||||
|
|
||||||
{"empty pairs", `{}`, []any{[]KV(nil)}, nil},
|
|
||||||
{"short kv", `{"\x00":v;}`, []any{[]KV{
|
|
||||||
{K: "\x00", V: Val{Ident("v")}},
|
|
||||||
}}, nil},
|
|
||||||
{"truncated kv", `{"\x00"`, nil, ExprError(scanner.EOF)},
|
|
||||||
{"ident kv", `{v="";}`, nil, ExprError(scanner.Ident)},
|
|
||||||
|
|
||||||
{"empty array", `[]`, []any{Array(nil)}, nil},
|
|
||||||
{"integer array", `[9]`, []any{Array{{Int(9)}}}, nil},
|
|
||||||
{"short array", `[ "\x00" ]`, []any{
|
|
||||||
Array{{String("\x00")}},
|
|
||||||
}, nil},
|
|
||||||
{"short array delim", `[ "\x00", ]`, []any{
|
|
||||||
Array{{String("\x00")}},
|
|
||||||
}, nil},
|
|
||||||
{"missing array value", `[ "\x00", , v ]`, nil, ExprError(',')},
|
|
||||||
{"missing array delimiter", `[ v0 v1 ]`, nil, TokenError{',', scanner.Ident}},
|
|
||||||
{"truncated array", `[ "\x00"`, nil,
|
|
||||||
ExprError(scanner.EOF)},
|
|
||||||
|
|
||||||
{"gcc", sample, []any{Func{
|
|
||||||
Ident: Ident("gcc"),
|
|
||||||
Package: true,
|
|
||||||
|
|
||||||
Args: []Arg{
|
|
||||||
{K: []Ident{Ident("description")}, V: Val{String("The GNU Compiler Collection")}},
|
|
||||||
{K: []Ident{Ident("website")}, V: Val{String("https://www.gnu.org/software/gcc")}},
|
|
||||||
{K: []Ident{Ident("anitya")}, V: Val{Int(6502)}},
|
|
||||||
|
|
||||||
{K: []Ident{Ident("version")}, V: Val{String("16.1.0")}, R: true},
|
|
||||||
{K: []Ident{Ident("source")}, V: Val{Func{
|
|
||||||
Ident: Ident("remoteTar"),
|
|
||||||
|
|
||||||
Args: []Arg{
|
|
||||||
{K: []Ident{Ident("url")}, V: Val{
|
|
||||||
String("https://ftp.tsukuba.wide.ad.jp/software/gcc/releases/"),
|
|
||||||
String("gcc-"),
|
|
||||||
Ident("version"),
|
|
||||||
String("/gcc-"),
|
|
||||||
Ident("version"),
|
|
||||||
String(".tar.gz"),
|
|
||||||
}},
|
|
||||||
{K: []Ident{Ident("checksum")}, V: Val{String("4ASoWbxaA2FW7PAB0zzHDPC5XnNhyaAyjtDPpGzceSLeYnEIXsNYZR3PA_Zu5P0K")}},
|
|
||||||
{K: []Ident{Ident("compress")}, V: Val{Ident("gzip")}},
|
|
||||||
},
|
|
||||||
}}},
|
|
||||||
{K: []Ident{Ident("patches")}, V: Val{Array{
|
|
||||||
{String("musl-off64_t-loff_t.patch")},
|
|
||||||
{String("musl-legacy-lfs.patch")},
|
|
||||||
}}},
|
|
||||||
|
|
||||||
{K: []Ident{Ident("exclusive")}, V: Val{Ident("true")}},
|
|
||||||
|
|
||||||
{K: []Ident{Ident("exec")}, V: Val{Func{
|
|
||||||
Ident: Ident("make"),
|
|
||||||
|
|
||||||
Args: []Arg{
|
|
||||||
{K: []Ident{Ident("configure")}, V: Val{[]KV{
|
|
||||||
{K: String("disable-multilib")},
|
|
||||||
{K: String("enable-default-pie")},
|
|
||||||
{K: String("disable-nls")},
|
|
||||||
{K: String("with-gnu-as")},
|
|
||||||
{K: String("with-gnu-ld")},
|
|
||||||
{K: String("with-system-zlib")},
|
|
||||||
{K: String("enable-languages"), V: Val{String("c,c++,go")}},
|
|
||||||
{K: String("with-native-system-header-dir"), V: Val{String("/system/include")}},
|
|
||||||
{K: String("with-multilib-list"), V: Val{Func{
|
|
||||||
Ident: Ident("arch"),
|
|
||||||
|
|
||||||
Args: []Arg{
|
|
||||||
{K: []Ident{Ident("amd64"), Ident("arm64")}, V: Val{String("''")}},
|
|
||||||
{K: []Ident{Ident("default")}, V: Val{Ident("unset")}},
|
|
||||||
},
|
|
||||||
}}},
|
|
||||||
}}},
|
|
||||||
{K: []Ident{Ident("make")}, V: Val{Array{
|
|
||||||
{String("BOOT_CFLAGS='-O2 -g'")},
|
|
||||||
{
|
|
||||||
Func{Ident: Ident("noop"), Args: []Arg{{K: []Ident{Ident("key")}, V: Val{Ident("value")}}}},
|
|
||||||
String("\x00"),
|
|
||||||
},
|
|
||||||
{String("bootstrap")},
|
|
||||||
}}},
|
|
||||||
|
|
||||||
{K: []Ident{Ident("skip-check")}, V: Val{Ident("true")}},
|
|
||||||
},
|
|
||||||
}}},
|
|
||||||
|
|
||||||
{K: []Ident{Ident("inputs")}, V: Val{Array{
|
|
||||||
{Ident("binutils")},
|
|
||||||
{Ident("mpc")},
|
|
||||||
{Ident("zlib")},
|
|
||||||
{Ident("libucontext")},
|
|
||||||
{Ident("kernel-headers")},
|
|
||||||
}}},
|
|
||||||
},
|
|
||||||
}}, nil},
|
|
||||||
}
|
|
||||||
for _, tc := range testCases {
|
|
||||||
t.Run(tc.name, func(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
p, err := Parse(strings.NewReader(tc.data))
|
|
||||||
if !reflect.DeepEqual(p, tc.want) {
|
|
||||||
t.Errorf("Parse: %#v, want %#v", p, tc.want)
|
|
||||||
}
|
|
||||||
if !reflect.DeepEqual(err, tc.err) {
|
|
||||||
t.Errorf("Parse: error = %v, want %v", err, tc.err)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func BenchmarkParse(b *testing.B) {
|
|
||||||
r := strings.NewReader(sample)
|
|
||||||
for b.Loop() {
|
|
||||||
if _, err := Parse(r); err != nil {
|
|
||||||
b.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
b.StopTimer()
|
|
||||||
r.Reset(sample)
|
|
||||||
b.StartTimer()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,392 +0,0 @@
|
|||||||
package azalea
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"maps"
|
|
||||||
"reflect"
|
|
||||||
"slices"
|
|
||||||
"unique"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Value are types supported by the language.
|
|
||||||
type Value interface {
|
|
||||||
bool | int64 | string | []string | []int64 | [][2]string
|
|
||||||
}
|
|
||||||
|
|
||||||
type (
|
|
||||||
// FArg is an argument passed to [F].
|
|
||||||
FArg struct {
|
|
||||||
K unique.Handle[Ident]
|
|
||||||
V any
|
|
||||||
R bool
|
|
||||||
}
|
|
||||||
// FArgs are arguments passed to [F].
|
|
||||||
FArgs []FArg
|
|
||||||
|
|
||||||
// PF implements the package declaration function.
|
|
||||||
PF func(name Ident, args FArgs) (v any, set bool, err error)
|
|
||||||
|
|
||||||
// F is the implementation of a [Func].
|
|
||||||
F struct {
|
|
||||||
F func(args FArgs) (v any, set bool, err error)
|
|
||||||
V map[unique.Handle[Ident]]any
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
// Apply applies named arguments and rejects unused arguments.
|
|
||||||
func (args FArgs) Apply(v map[unique.Handle[Ident]]any) error {
|
|
||||||
for _, arg := range args {
|
|
||||||
if arg.V == nil {
|
|
||||||
// unset
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
r, ok := v[arg.K]
|
|
||||||
if !ok {
|
|
||||||
if arg.R {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
return UndefinedError(arg.K.Value())
|
|
||||||
}
|
|
||||||
err := storeE(r, arg.V)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// A Frame refers to local variables and debugging information.
|
|
||||||
type Frame struct {
|
|
||||||
// Local constants.
|
|
||||||
Val map[unique.Handle[Ident]]any
|
|
||||||
// Functions.
|
|
||||||
Func map[unique.Handle[Ident]]F
|
|
||||||
}
|
|
||||||
|
|
||||||
// UnsupportedExprError is an expression with invalid concrete type.
|
|
||||||
type UnsupportedExprError struct{ E any }
|
|
||||||
|
|
||||||
func (e UnsupportedExprError) Error() string {
|
|
||||||
return fmt.Sprintf("unsupported expression %#v", e.E)
|
|
||||||
}
|
|
||||||
|
|
||||||
// UndefinedError is an identifier not defined in any stack frame visible to the
|
|
||||||
// expression containing it.
|
|
||||||
type UndefinedError Ident
|
|
||||||
|
|
||||||
func (e UndefinedError) Error() string {
|
|
||||||
return "undefined: " + string(e)
|
|
||||||
}
|
|
||||||
|
|
||||||
// evaluate is evaluateAny with a type parameter.
|
|
||||||
func evaluate[T Value](d PF, s []Frame, expr any, rp *T) bool {
|
|
||||||
return evaluateAny(d, s, expr, rp)
|
|
||||||
}
|
|
||||||
|
|
||||||
// evaluateArray evaluates expr and returns its values as a slice.
|
|
||||||
func evaluateArray[T Value](d PF, s []Frame, expr Array) []T {
|
|
||||||
r := make([]T, 0, len(expr))
|
|
||||||
for i := range expr {
|
|
||||||
var _r T
|
|
||||||
if evaluate(d, s, expr[i], &_r) {
|
|
||||||
r = append(r, _r)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return r
|
|
||||||
}
|
|
||||||
|
|
||||||
// TypeError is an unexpected type during evaluation.
|
|
||||||
type TypeError struct {
|
|
||||||
Concrete, Asserted reflect.Type
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e TypeError) Error() string {
|
|
||||||
return fmt.Sprintf("expected %s, got %s", e.Asserted, e.Concrete)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e TypeError) Is(err error) bool {
|
|
||||||
var v TypeError
|
|
||||||
return errors.As(err, &v) &&
|
|
||||||
e.Asserted == v.Asserted &&
|
|
||||||
e.Concrete == v.Concrete
|
|
||||||
}
|
|
||||||
|
|
||||||
// storeE is a convenience function to set the value of a result pointer.
|
|
||||||
func storeE(rp any, r any) error {
|
|
||||||
pv := reflect.ValueOf(rp).Elem()
|
|
||||||
v := reflect.ValueOf(r)
|
|
||||||
pt, vt := pv.Type(), v.Type()
|
|
||||||
if !vt.AssignableTo(pt) {
|
|
||||||
return TypeError{vt, pt}
|
|
||||||
}
|
|
||||||
pv.Set(v)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// store is like storeE, but panics if error is non-nil.
|
|
||||||
func store[T Value](rp any, r T) {
|
|
||||||
err := storeE(rp, r)
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// EvaluationError is an error and the expression it occurred in.
|
|
||||||
type EvaluationError struct {
|
|
||||||
Expr any
|
|
||||||
Err error
|
|
||||||
}
|
|
||||||
|
|
||||||
// Unwrap returns the underlying error.
|
|
||||||
func (e EvaluationError) Unwrap() error { return e.Err }
|
|
||||||
|
|
||||||
// Error returns a very long error description that should not be presented
|
|
||||||
// to the user directly.
|
|
||||||
func (e EvaluationError) Error() string {
|
|
||||||
return fmt.Sprintf("expression %#v: %v", e.Expr, e.Err)
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
// IdentInputs is a special array argument in a package declaration whose
|
|
||||||
// values of [Ident] are kept as is when passed to a [PF].
|
|
||||||
IdentInputs = unique.Make(Ident("inputs"))
|
|
||||||
// IdentRuntime has the same semantics as [IdentInputs].
|
|
||||||
IdentRuntime = unique.Make(Ident("runtime"))
|
|
||||||
// IdentExtra has the same semantics as [IdentInputs].
|
|
||||||
IdentExtra = unique.Make(Ident("extra"))
|
|
||||||
// IdentSource is a special argument in a package declaration where an
|
|
||||||
// assignment of a [Val] with a single [Ident] passes through the evaluator.
|
|
||||||
IdentSource = unique.Make(Ident("source"))
|
|
||||||
|
|
||||||
// ErrInvalidSpecial is panicked for a special [PF] argument sharing its
|
|
||||||
// value or set for R.
|
|
||||||
ErrInvalidSpecial = errors.New("special must not be common or bound to scope")
|
|
||||||
)
|
|
||||||
|
|
||||||
// evaluateAny implements [Evaluate].
|
|
||||||
func evaluateAny(d PF, s []Frame, expr, rp any) bool {
|
|
||||||
defer func() {
|
|
||||||
r := recover()
|
|
||||||
if r == nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
err, ok := r.(error)
|
|
||||||
if !ok {
|
|
||||||
panic(r)
|
|
||||||
}
|
|
||||||
|
|
||||||
if _, ok = err.(EvaluationError); ok {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
panic(EvaluationError{expr, err})
|
|
||||||
}()
|
|
||||||
|
|
||||||
switch e := expr.(type) {
|
|
||||||
case Int:
|
|
||||||
store(rp, int64(e))
|
|
||||||
return true
|
|
||||||
|
|
||||||
case String:
|
|
||||||
store(rp, string(e))
|
|
||||||
return true
|
|
||||||
|
|
||||||
case Ident:
|
|
||||||
var (
|
|
||||||
v any
|
|
||||||
ok bool
|
|
||||||
)
|
|
||||||
for i := range s {
|
|
||||||
v, ok = s[len(s)-1-i].Val[unique.Make(e)]
|
|
||||||
if ok {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if !ok {
|
|
||||||
panic(UndefinedError(e))
|
|
||||||
}
|
|
||||||
if err := storeE(rp, v); err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
|
|
||||||
case Val:
|
|
||||||
if len(e) == 1 {
|
|
||||||
switch v := e[0].(type) {
|
|
||||||
case Ident:
|
|
||||||
switch v {
|
|
||||||
case "unset":
|
|
||||||
return false
|
|
||||||
case "true":
|
|
||||||
store(rp, true)
|
|
||||||
return true
|
|
||||||
case "false":
|
|
||||||
store(rp, false)
|
|
||||||
return true
|
|
||||||
default:
|
|
||||||
return evaluateAny(d, s, v, rp)
|
|
||||||
}
|
|
||||||
|
|
||||||
default:
|
|
||||||
return evaluateAny(d, s, e[0], rp)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var v string
|
|
||||||
for i := range e {
|
|
||||||
var _r string
|
|
||||||
if evaluate(d, s, e[i], &_r) {
|
|
||||||
v += _r
|
|
||||||
}
|
|
||||||
}
|
|
||||||
store(rp, v)
|
|
||||||
return true
|
|
||||||
|
|
||||||
case Array:
|
|
||||||
if len(e) > 0 && len(e[0]) == 1 {
|
|
||||||
if _, ok := e[0][0].(Int); ok {
|
|
||||||
store(rp, evaluateArray[int64](d, s, e))
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
store(rp, evaluateArray[string](d, s, e))
|
|
||||||
return true
|
|
||||||
|
|
||||||
case []KV:
|
|
||||||
r := make([][2]string, 0, len(e))
|
|
||||||
for i := range e {
|
|
||||||
var _r string
|
|
||||||
if e[i].V == nil || evaluate(d, s, e[i].V, &_r) {
|
|
||||||
r = append(r, [2]string{string(e[i].K), _r})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
store(rp, r)
|
|
||||||
return true
|
|
||||||
|
|
||||||
case Func:
|
|
||||||
var (
|
|
||||||
f F
|
|
||||||
ok bool
|
|
||||||
)
|
|
||||||
if !e.Package {
|
|
||||||
for i := range s {
|
|
||||||
f, ok = s[len(s)-1-i].Func[unique.Make(e.Ident)]
|
|
||||||
if ok {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if !ok {
|
|
||||||
panic(UndefinedError(e.Ident))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
argc := len(e.Args)
|
|
||||||
for _, arg := range e.Args {
|
|
||||||
argc += len(arg.K) - 1
|
|
||||||
}
|
|
||||||
fargs := make([]FArg, 0, len(e.Args))
|
|
||||||
s = append(s, Frame{})
|
|
||||||
fp := &s[len(s)-1]
|
|
||||||
if !e.Package {
|
|
||||||
fp.Val = maps.Clone(f.V)
|
|
||||||
}
|
|
||||||
|
|
||||||
args:
|
|
||||||
for _, arg := range e.Args {
|
|
||||||
names := make([]unique.Handle[Ident], len(arg.K))
|
|
||||||
for i, name := range arg.K {
|
|
||||||
names[i] = unique.Make(name)
|
|
||||||
}
|
|
||||||
|
|
||||||
farg := FArg{R: arg.R}
|
|
||||||
if e.Package {
|
|
||||||
for _, special := range [...]unique.Handle[Ident]{
|
|
||||||
IdentInputs,
|
|
||||||
IdentRuntime,
|
|
||||||
IdentExtra,
|
|
||||||
} {
|
|
||||||
if slices.Contains(names, special) {
|
|
||||||
if len(names) != 1 || len(arg.V) != 1 || arg.R {
|
|
||||||
panic(ErrInvalidSpecial)
|
|
||||||
}
|
|
||||||
farg.K = names[0]
|
|
||||||
if err := storeE(&farg.V, arg.V[0]); err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
fargs = append(fargs, farg)
|
|
||||||
continue args
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if slices.Contains(names, IdentSource) {
|
|
||||||
if len(names) != 1 || len(arg.V) != 1 || arg.R {
|
|
||||||
panic(ErrInvalidSpecial)
|
|
||||||
}
|
|
||||||
if _, ok = arg.V[0].(Ident); ok {
|
|
||||||
farg.K = names[0]
|
|
||||||
if err := storeE(&farg.V, arg.V[0]); err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
fargs = append(fargs, farg)
|
|
||||||
continue args
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if !evaluateAny(d, s, arg.V, &farg.V) {
|
|
||||||
farg.V = nil
|
|
||||||
}
|
|
||||||
for _, name := range names {
|
|
||||||
farg.K = name
|
|
||||||
fargs = append(fargs, farg)
|
|
||||||
|
|
||||||
if arg.R && farg.V != nil {
|
|
||||||
if fp.Val == nil {
|
|
||||||
fp.Val = make(map[unique.Handle[Ident]]any)
|
|
||||||
}
|
|
||||||
(*fp).Val[name] = farg.V
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
v any
|
|
||||||
err error
|
|
||||||
)
|
|
||||||
if !e.Package {
|
|
||||||
v, ok, err = f.F(fargs)
|
|
||||||
} else {
|
|
||||||
v, ok, err = d(e.Ident, fargs)
|
|
||||||
}
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
} else if v != nil {
|
|
||||||
if err = storeE(rp, v); err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return ok
|
|
||||||
|
|
||||||
default:
|
|
||||||
panic(UnsupportedExprError{expr})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Evaluate evaluates a statement and returns its value.
|
|
||||||
func Evaluate[T any](d PF, s []Frame, expr any) (v T, set bool, err error) {
|
|
||||||
defer func() {
|
|
||||||
r := recover()
|
|
||||||
if r == nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
_err, ok := r.(error)
|
|
||||||
if !ok {
|
|
||||||
panic(r)
|
|
||||||
}
|
|
||||||
err = _err
|
|
||||||
}()
|
|
||||||
set = evaluateAny(d, s, expr, &v)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
@@ -1,407 +0,0 @@
|
|||||||
package azalea_test
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"reflect"
|
|
||||||
"strings"
|
|
||||||
"testing"
|
|
||||||
"unique"
|
|
||||||
|
|
||||||
. "hakurei.app/internal/rosa/azalea"
|
|
||||||
)
|
|
||||||
|
|
||||||
// makeStackCheck creates a stack with a single frame with a single function "f"
|
|
||||||
// which calls the check function internally.
|
|
||||||
func makeStackCheck(check func(args FArgs) (any, error)) []Frame {
|
|
||||||
return []Frame{{Func: map[unique.Handle[Ident]]F{
|
|
||||||
unique.Make(Ident("f")): {F: func(
|
|
||||||
args FArgs,
|
|
||||||
) (v any, set bool, err error) {
|
|
||||||
set = true
|
|
||||||
v, err = check(args)
|
|
||||||
return
|
|
||||||
}},
|
|
||||||
}}}
|
|
||||||
}
|
|
||||||
|
|
||||||
// checkArgs is like makeStackCheck, but the resulting function asserts that its
|
|
||||||
// args match the expected value.
|
|
||||||
func checkArgs(want FArgs) []Frame {
|
|
||||||
return makeStackCheck(func(args FArgs) (any, error) {
|
|
||||||
if !reflect.DeepEqual(args, want) {
|
|
||||||
return nil, fmt.Errorf("%#v, want %#v", args, want)
|
|
||||||
}
|
|
||||||
return "\xfd", nil
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestEvaluate(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
testCases := []struct {
|
|
||||||
name string
|
|
||||||
data string
|
|
||||||
s []Frame
|
|
||||||
want any
|
|
||||||
err error
|
|
||||||
}{
|
|
||||||
{"apply unset", `f { v = unset; }`, makeStackCheck(func(
|
|
||||||
args FArgs,
|
|
||||||
) (v any, err error) {
|
|
||||||
v = "\xfd"
|
|
||||||
err = args.Apply(map[unique.Handle[Ident]]any{
|
|
||||||
unique.Make(Ident("v")): &v,
|
|
||||||
})
|
|
||||||
return
|
|
||||||
}), "\xfd", nil},
|
|
||||||
|
|
||||||
{"apply bad type", `f { v = 9; }`, makeStackCheck(func(
|
|
||||||
args FArgs,
|
|
||||||
) (v any, err error) {
|
|
||||||
v = "\xfd"
|
|
||||||
err = args.Apply(map[unique.Handle[Ident]]any{
|
|
||||||
unique.Make(Ident("v")): &v,
|
|
||||||
})
|
|
||||||
return
|
|
||||||
}), "", TypeError{
|
|
||||||
Concrete: reflect.TypeFor[int64](),
|
|
||||||
Asserted: reflect.TypeFor[string](),
|
|
||||||
}},
|
|
||||||
|
|
||||||
{"apply undefined", `f { v = 9; }`, makeStackCheck(func(
|
|
||||||
args FArgs,
|
|
||||||
) (v any, err error) {
|
|
||||||
v = "\xfd"
|
|
||||||
err = args.Apply(map[unique.Handle[Ident]]any{})
|
|
||||||
return
|
|
||||||
}), "", EvaluationError{
|
|
||||||
Expr: Func{
|
|
||||||
Ident: Ident("f"),
|
|
||||||
Args: []Arg{
|
|
||||||
{K: []Ident{"v"}, V: Val{Int(9)}},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Err: UndefinedError("v"),
|
|
||||||
}},
|
|
||||||
|
|
||||||
{"apply bound undefined", `f { _v* = "\x00"; v = _v; }`, makeStackCheck(func(
|
|
||||||
args FArgs,
|
|
||||||
) (v any, err error) {
|
|
||||||
v = "\xfd"
|
|
||||||
err = args.Apply(map[unique.Handle[Ident]]any{
|
|
||||||
unique.Make(Ident("v")): &v,
|
|
||||||
})
|
|
||||||
return
|
|
||||||
}), "\x00", nil},
|
|
||||||
|
|
||||||
{"undefined function", `f {}`, nil, "", EvaluationError{
|
|
||||||
Expr: Func{Ident: "f"},
|
|
||||||
Err: UndefinedError("f"),
|
|
||||||
}},
|
|
||||||
|
|
||||||
{"error wrap deep", `f { v = nil; }`, makeStackCheck(func(
|
|
||||||
FArgs,
|
|
||||||
) (any, error) {
|
|
||||||
panic("unreachable")
|
|
||||||
}), "", EvaluationError{
|
|
||||||
Expr: Ident("nil"),
|
|
||||||
Err: UndefinedError("nil"),
|
|
||||||
}},
|
|
||||||
|
|
||||||
{"common inputs", `package name { inputs, v = []; }`, nil, "", EvaluationError{
|
|
||||||
Expr: Func{
|
|
||||||
Ident: Ident("name"),
|
|
||||||
Package: true,
|
|
||||||
|
|
||||||
Args: []Arg{
|
|
||||||
{K: []Ident{
|
|
||||||
"inputs",
|
|
||||||
"v",
|
|
||||||
}, V: Val{Array(nil)}},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Err: ErrInvalidSpecial,
|
|
||||||
}},
|
|
||||||
|
|
||||||
{"bound inputs", `package name { inputs* = []; }`, nil, "", EvaluationError{
|
|
||||||
Expr: Func{
|
|
||||||
Ident: Ident("name"),
|
|
||||||
Package: true,
|
|
||||||
|
|
||||||
Args: []Arg{
|
|
||||||
{K: []Ident{"inputs"}, V: Val{Array(nil)}, R: true},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Err: ErrInvalidSpecial,
|
|
||||||
}},
|
|
||||||
|
|
||||||
{"bound runtime", `package name { runtime* = []; }`, nil, "", EvaluationError{
|
|
||||||
Expr: Func{
|
|
||||||
Ident: Ident("name"),
|
|
||||||
Package: true,
|
|
||||||
|
|
||||||
Args: []Arg{
|
|
||||||
{K: []Ident{"runtime"}, V: Val{Array(nil)}, R: true},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Err: ErrInvalidSpecial,
|
|
||||||
}},
|
|
||||||
|
|
||||||
{"concat inputs", `package name { inputs = ""+""; }`, nil, "", EvaluationError{
|
|
||||||
Expr: Func{
|
|
||||||
Ident: Ident("name"),
|
|
||||||
Package: true,
|
|
||||||
|
|
||||||
Args: []Arg{
|
|
||||||
{K: []Ident{"inputs"}, V: Val{String(""), String("")}},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Err: ErrInvalidSpecial,
|
|
||||||
}},
|
|
||||||
|
|
||||||
{"concat source", `package name { source = ""+""; }`, nil, "", EvaluationError{
|
|
||||||
Expr: Func{
|
|
||||||
Ident: Ident("name"),
|
|
||||||
Package: true,
|
|
||||||
|
|
||||||
Args: []Arg{
|
|
||||||
{K: []Ident{"source"}, V: Val{String(""), String("")}},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Err: ErrInvalidSpecial,
|
|
||||||
}},
|
|
||||||
|
|
||||||
{"source handle", `package name { source = name; }`, nil, FArgs{
|
|
||||||
{K: unique.Make(Ident("source")), V: Ident("name")},
|
|
||||||
}, nil},
|
|
||||||
|
|
||||||
{"integer array", `f { v = [ 0 ]; _v = [ 0, 9 ]; }`, checkArgs(FArgs{
|
|
||||||
{K: unique.Make(Ident("v")), V: []int64{0}},
|
|
||||||
{K: unique.Make(Ident("_v")), V: []int64{0, 9}},
|
|
||||||
}), "\xfd", nil},
|
|
||||||
}
|
|
||||||
for _, tc := range testCases {
|
|
||||||
t.Run(tc.name, func(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
var expr Func
|
|
||||||
if e, err := Parse(strings.NewReader(tc.data)); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
} else if len(e) != 1 {
|
|
||||||
t.Fatalf("got expression %#v", e)
|
|
||||||
} else {
|
|
||||||
expr = e[0].(Func)
|
|
||||||
}
|
|
||||||
const rPackage = "\xff\xff\xff\xff"
|
|
||||||
r, set, err := Evaluate[string](func(
|
|
||||||
name Ident,
|
|
||||||
args FArgs,
|
|
||||||
) (v any, set bool, err error) {
|
|
||||||
v = rPackage
|
|
||||||
if !reflect.DeepEqual(args, tc.want) {
|
|
||||||
err = fmt.Errorf("%#v, want %#v", args, tc.want)
|
|
||||||
}
|
|
||||||
set = true
|
|
||||||
return
|
|
||||||
}, tc.s, expr)
|
|
||||||
if set != (err == nil) {
|
|
||||||
t.Error("Evaluate: unexpected unset")
|
|
||||||
}
|
|
||||||
|
|
||||||
if r != rPackage && r != tc.want {
|
|
||||||
t.Errorf("Evaluate: %q, want %q", r, tc.want)
|
|
||||||
}
|
|
||||||
|
|
||||||
var errEquals bool
|
|
||||||
if errors.As(err, new(TypeError)) {
|
|
||||||
errEquals = errors.Is(err, tc.err)
|
|
||||||
} else {
|
|
||||||
errEquals = reflect.DeepEqual(err, tc.err)
|
|
||||||
}
|
|
||||||
if !errEquals {
|
|
||||||
t.Errorf("Evaluate: error = %v, want %v", err, tc.err)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestEvaluateGCC(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
|
|
||||||
var gcc Func
|
|
||||||
if e, err := Parse(strings.NewReader(sample)); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
} else {
|
|
||||||
gcc = e[0].(Func)
|
|
||||||
}
|
|
||||||
|
|
||||||
var got [3]FArgs
|
|
||||||
if r, set, err := Evaluate[string](func(
|
|
||||||
name Ident,
|
|
||||||
args FArgs,
|
|
||||||
) (v any, set bool, err error) {
|
|
||||||
v = "\x00"
|
|
||||||
set = true
|
|
||||||
got[0] = args
|
|
||||||
return
|
|
||||||
}, []Frame{{
|
|
||||||
Func: map[unique.Handle[Ident]]F{
|
|
||||||
unique.Make(Ident("remoteTar")): {F: func(
|
|
||||||
args FArgs,
|
|
||||||
) (v any, set bool, err error) {
|
|
||||||
var url, checksum string
|
|
||||||
var compress int
|
|
||||||
if err = args.Apply(map[unique.Handle[Ident]]any{
|
|
||||||
unique.Make(Ident("url")): &url,
|
|
||||||
unique.Make(Ident("checksum")): &checksum,
|
|
||||||
unique.Make(Ident("compress")): &compress,
|
|
||||||
}); err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if compress != 0xcafe {
|
|
||||||
err = fmt.Errorf("unexpected compress %#v", compress)
|
|
||||||
}
|
|
||||||
set = true
|
|
||||||
v = url + "?checksum=" + checksum
|
|
||||||
return
|
|
||||||
}, V: map[unique.Handle[Ident]]any{
|
|
||||||
unique.Make(Ident("gzip")): 0xcafe,
|
|
||||||
}},
|
|
||||||
|
|
||||||
unique.Make(Ident("make")): {F: func(
|
|
||||||
args FArgs,
|
|
||||||
) (v any, set bool, err error) {
|
|
||||||
v = args
|
|
||||||
set = true
|
|
||||||
return
|
|
||||||
}},
|
|
||||||
|
|
||||||
unique.Make(Ident("arch")): {F: func(
|
|
||||||
args FArgs,
|
|
||||||
) (v any, set bool, err error) {
|
|
||||||
set = false
|
|
||||||
got[1] = args
|
|
||||||
return
|
|
||||||
}},
|
|
||||||
|
|
||||||
unique.Make(Ident("noop")): {F: func(
|
|
||||||
args FArgs,
|
|
||||||
) (v any, set bool, err error) {
|
|
||||||
set = false
|
|
||||||
set = true
|
|
||||||
got[2] = args
|
|
||||||
return
|
|
||||||
}, V: map[unique.Handle[Ident]]any{
|
|
||||||
unique.Make(Ident("value")): "\xfd",
|
|
||||||
}},
|
|
||||||
},
|
|
||||||
}}, gcc); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
} else if r != "\x00" {
|
|
||||||
t.Fatalf("package: %q", r)
|
|
||||||
} else if !set {
|
|
||||||
t.Fatal("package: unset")
|
|
||||||
}
|
|
||||||
|
|
||||||
want := [...]FArgs{
|
|
||||||
{
|
|
||||||
{K: unique.Make(Ident("description")), V: "The GNU Compiler Collection"},
|
|
||||||
{K: unique.Make(Ident("website")), V: "https://www.gnu.org/software/gcc"},
|
|
||||||
{K: unique.Make(Ident("anitya")), V: int64(6502)},
|
|
||||||
|
|
||||||
{K: unique.Make(Ident("version")), V: "16.1.0", R: true},
|
|
||||||
{K: unique.Make(Ident("source")), V: "https://ftp.tsukuba.wide.ad.jp/software/gcc/releases/gcc-16.1.0/gcc-16.1.0.tar.gz?checksum=4ASoWbxaA2FW7PAB0zzHDPC5XnNhyaAyjtDPpGzceSLeYnEIXsNYZR3PA_Zu5P0K"},
|
|
||||||
{K: unique.Make(Ident("patches")), V: []string{"musl-off64_t-loff_t.patch", "musl-legacy-lfs.patch"}},
|
|
||||||
|
|
||||||
{K: unique.Make(Ident("exclusive")), V: true},
|
|
||||||
{K: unique.Make(Ident("exec")), V: FArgs{
|
|
||||||
{K: unique.Make(Ident("configure")), V: [][2]string{
|
|
||||||
{"disable-multilib", ""},
|
|
||||||
{"enable-default-pie", ""},
|
|
||||||
{"disable-nls", ""},
|
|
||||||
{"with-gnu-as", ""},
|
|
||||||
{"with-gnu-ld", ""},
|
|
||||||
{"with-system-zlib", ""},
|
|
||||||
{"enable-languages", "c,c++,go"},
|
|
||||||
{"with-native-system-header-dir", "/system/include"},
|
|
||||||
}},
|
|
||||||
{K: unique.Make(Ident("make")), V: []string{
|
|
||||||
"BOOT_CFLAGS='-O2 -g'",
|
|
||||||
"\x00",
|
|
||||||
"bootstrap",
|
|
||||||
}},
|
|
||||||
{K: unique.Make(Ident("skip-check")), V: true},
|
|
||||||
}},
|
|
||||||
|
|
||||||
{K: unique.Make(Ident("inputs")), V: Array{
|
|
||||||
{Ident("binutils")},
|
|
||||||
{Ident("mpc")},
|
|
||||||
{Ident("zlib")},
|
|
||||||
{Ident("libucontext")},
|
|
||||||
{Ident("kernel-headers")},
|
|
||||||
}},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
{K: unique.Make(Ident("amd64")), V: "''"},
|
|
||||||
{K: unique.Make(Ident("arm64")), V: "''"},
|
|
||||||
{K: unique.Make(Ident("default"))},
|
|
||||||
},
|
|
||||||
{{K: unique.Make(Ident("key")), V: "\xfd"}},
|
|
||||||
}
|
|
||||||
if !reflect.DeepEqual(got, want) {
|
|
||||||
t.Errorf("package: args = %#v, want %#v", got, want)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func BenchmarkEvaluate(b *testing.B) {
|
|
||||||
var gcc Func
|
|
||||||
if e, err := Parse(strings.NewReader(sample)); err != nil {
|
|
||||||
b.Fatal(err)
|
|
||||||
} else {
|
|
||||||
gcc = e[0].(Func)
|
|
||||||
}
|
|
||||||
|
|
||||||
s := []Frame{{
|
|
||||||
Func: map[unique.Handle[Ident]]F{
|
|
||||||
unique.Make(Ident("remoteTar")): {F: func(
|
|
||||||
FArgs,
|
|
||||||
) (v any, set bool, err error) {
|
|
||||||
return
|
|
||||||
}, V: map[unique.Handle[Ident]]any{
|
|
||||||
unique.Make(Ident("gzip")): 0xcafe,
|
|
||||||
}},
|
|
||||||
|
|
||||||
unique.Make(Ident("make")): {F: func(
|
|
||||||
FArgs,
|
|
||||||
) (v any, set bool, err error) {
|
|
||||||
return
|
|
||||||
}},
|
|
||||||
|
|
||||||
unique.Make(Ident("arch")): {F: func(
|
|
||||||
FArgs,
|
|
||||||
) (v any, set bool, err error) {
|
|
||||||
return
|
|
||||||
}},
|
|
||||||
|
|
||||||
unique.Make(Ident("noop")): {F: func(
|
|
||||||
FArgs,
|
|
||||||
) (v any, set bool, err error) {
|
|
||||||
return
|
|
||||||
}, V: map[unique.Handle[Ident]]any{
|
|
||||||
unique.Make(Ident("value")): "\xfd",
|
|
||||||
}},
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
for b.Loop() {
|
|
||||||
if _, _, err := Evaluate[string](func(
|
|
||||||
Ident,
|
|
||||||
FArgs,
|
|
||||||
) (v any, set bool, err error) {
|
|
||||||
return
|
|
||||||
}, s, gcc); err != nil {
|
|
||||||
b.Fatal(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
57
internal/rosa/azalea/testdata/gcc.az
vendored
57
internal/rosa/azalea/testdata/gcc.az
vendored
@@ -1,57 +0,0 @@
|
|||||||
package gcc {
|
|
||||||
description = "The GNU Compiler Collection";
|
|
||||||
website = "https://www.gnu.org/software/gcc";
|
|
||||||
anitya = 6502;
|
|
||||||
|
|
||||||
version* = "16.1.0";
|
|
||||||
source = remoteTar {
|
|
||||||
url = "https://ftp.tsukuba.wide.ad.jp/software/gcc/releases/"+
|
|
||||||
"gcc-"+version+"/gcc-"+version+".tar.gz";
|
|
||||||
checksum = "4ASoWbxaA2FW7PAB0zzHDPC5XnNhyaAyjtDPpGzceSLeYnEIXsNYZR3PA_Zu5P0K";
|
|
||||||
compress = gzip;
|
|
||||||
};
|
|
||||||
patches = [
|
|
||||||
"musl-off64_t-loff_t.patch",
|
|
||||||
"musl-legacy-lfs.patch",
|
|
||||||
];
|
|
||||||
|
|
||||||
// GCC spends most of its time in its many configure scripts, however
|
|
||||||
// it also saturates the CPU for a consequential amount of time.
|
|
||||||
exclusive = true;
|
|
||||||
|
|
||||||
exec = make {
|
|
||||||
configure = {
|
|
||||||
"disable-multilib";
|
|
||||||
"enable-default-pie";
|
|
||||||
"disable-nls";
|
|
||||||
"with-gnu-as";
|
|
||||||
"with-gnu-ld";
|
|
||||||
"with-system-zlib";
|
|
||||||
"enable-languages": "c,c++,go";
|
|
||||||
"with-native-system-header-dir": "/system/include";
|
|
||||||
"with-multilib-list": arch {
|
|
||||||
amd64, arm64 = "''";
|
|
||||||
default = unset;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
make = [
|
|
||||||
"BOOT_CFLAGS='-O2 -g'",
|
|
||||||
noop { key = value; } + "\x00",
|
|
||||||
"bootstrap",
|
|
||||||
];
|
|
||||||
|
|
||||||
// This toolchain is hacked to pieces, it is not expected to ever work
|
|
||||||
// well in its current state. That does not matter as long as the
|
|
||||||
// toolchain it produces passes its own test suite.
|
|
||||||
skip-check = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
inputs = [
|
|
||||||
binutils,
|
|
||||||
|
|
||||||
mpc,
|
|
||||||
zlib,
|
|
||||||
libucontext,
|
|
||||||
kernel-headers,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@@ -1,106 +0,0 @@
|
|||||||
package rosa
|
|
||||||
|
|
||||||
import (
|
|
||||||
"path"
|
|
||||||
"slices"
|
|
||||||
"strconv"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"hakurei.app/internal/pkg"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// jobsE is expression for preferred job count set by [pkg].
|
|
||||||
jobsE = `"$` + pkg.EnvJobs + `"`
|
|
||||||
// jobsFlagE is expression for flag with preferred job count.
|
|
||||||
jobsFlagE = `"-j$` + pkg.EnvJobs + `"`
|
|
||||||
// jobsLE is expression for twice of preferred job count set by [pkg].
|
|
||||||
jobsLE = `"$(expr ` + jobsE + ` '*' 2)"`
|
|
||||||
// jobsLFlagE is expression for flag with double of preferred job count.
|
|
||||||
jobsLFlagE = `"-j$(expr ` + jobsE + ` '*' 2)"`
|
|
||||||
)
|
|
||||||
|
|
||||||
// newTar wraps [pkg.NewHTTPGetTar] with a simpler function signature.
|
|
||||||
func newTar(url, checksum string, compression uint32) pkg.Artifact {
|
|
||||||
return pkg.NewHTTPGetTar(nil, url, mustDecode(checksum), compression)
|
|
||||||
}
|
|
||||||
|
|
||||||
// newFromCPAN is a helper for downloading release from CPAN.
|
|
||||||
func newFromCPAN(author, name, version, checksum string) pkg.Artifact {
|
|
||||||
return newTar(
|
|
||||||
"https://cpan.metacpan.org/authors/id/"+
|
|
||||||
author[:1]+"/"+author[:2]+"/"+author+"/"+
|
|
||||||
name+"-"+version+".tar.gz",
|
|
||||||
checksum,
|
|
||||||
pkg.TarGzip,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// newFromGitLab is a helper for downloading source from GitLab.
|
|
||||||
func newFromGitLab(domain, suffix, ref, checksum string) pkg.Artifact {
|
|
||||||
return newTar(
|
|
||||||
"https://"+domain+"/"+suffix+"/-/archive/"+
|
|
||||||
ref+"/"+path.Base(suffix)+"-"+
|
|
||||||
strings.ReplaceAll(ref, "/", "-")+".tar.bz2",
|
|
||||||
checksum,
|
|
||||||
pkg.TarBzip2,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// newFromGitHub is a helper for downloading source from Microsoft Github.
|
|
||||||
func newFromGitHub(suffix, tag, checksum string) pkg.Artifact {
|
|
||||||
return newTar(
|
|
||||||
"https://github.com/"+suffix+
|
|
||||||
"/archive/refs/tags/"+tag+".tar.gz",
|
|
||||||
checksum,
|
|
||||||
pkg.TarGzip,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// newFromGitHubRelease is a helper for downloading release tarball from
|
|
||||||
// Microsoft Github.
|
|
||||||
func newFromGitHubRelease(
|
|
||||||
suffix, tag, name, checksum string,
|
|
||||||
compression uint32,
|
|
||||||
) pkg.Artifact {
|
|
||||||
return newTar(
|
|
||||||
"https://github.com/"+suffix+
|
|
||||||
"/releases/download/"+tag+"/"+name,
|
|
||||||
checksum,
|
|
||||||
compression,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
// skipGNUTests generates a string for skipping specific tests by number in a
|
|
||||||
// GNU test suite. This is nontrivial because the test suite does not support
|
|
||||||
// excluding tests in any way, so ranges for all but the skipped tests have to
|
|
||||||
// be specified instead.
|
|
||||||
//
|
|
||||||
// For example, to skip test 764, ranges around the skipped test must be
|
|
||||||
// specified:
|
|
||||||
//
|
|
||||||
// 1-763 765-
|
|
||||||
//
|
|
||||||
// Tests are numbered starting from 1. The resulting string is unquoted.
|
|
||||||
func skipGNUTests(tests ...int64) string {
|
|
||||||
tests = slices.Clone(tests)
|
|
||||||
slices.Sort(tests)
|
|
||||||
|
|
||||||
var buf strings.Builder
|
|
||||||
|
|
||||||
if tests[0] != 1 {
|
|
||||||
buf.WriteString("1-")
|
|
||||||
}
|
|
||||||
|
|
||||||
for i, n := range tests {
|
|
||||||
if n != 1 && (i == 0 || tests[i-1] != n-1) {
|
|
||||||
buf.WriteString(strconv.Itoa(int(n - 1)))
|
|
||||||
buf.WriteString(" ")
|
|
||||||
}
|
|
||||||
if i == len(tests)-1 || tests[i+1] != n+1 {
|
|
||||||
buf.WriteString(strconv.Itoa(int(n + 1)))
|
|
||||||
buf.WriteString("-")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return buf.String()
|
|
||||||
}
|
|
||||||
@@ -85,13 +85,13 @@ func (a busyboxBin) Cure(t *pkg.TContext) (err error) {
|
|||||||
|
|
||||||
// newBusyboxBin returns a [pkg.Artifact] containing a busybox installation from
|
// newBusyboxBin returns a [pkg.Artifact] containing a busybox installation from
|
||||||
// the https://busybox.net/downloads/binaries/ binary release.
|
// the https://busybox.net/downloads/binaries/ binary release.
|
||||||
func (s *S) newBusyboxBin() pkg.Artifact {
|
func newBusyboxBin() pkg.Artifact {
|
||||||
var version, url, checksum string
|
var version, url, checksum string
|
||||||
switch s.arch {
|
switch arch {
|
||||||
case "amd64":
|
case "amd64":
|
||||||
version = "1.35.0"
|
version = "1.35.0"
|
||||||
url = "https://busybox.net/downloads/binaries/" +
|
url = "https://busybox.net/downloads/binaries/" +
|
||||||
version + "-" + s.linuxArch() + "-linux-musl/busybox"
|
version + "-" + linuxArch() + "-linux-musl/busybox"
|
||||||
checksum = "L7OBIsPu9enNHn7FqpBT1kOg_mCLNmetSeNMA3i4Y60Z5jTgnlX3qX3zcQtLx5AB"
|
checksum = "L7OBIsPu9enNHn7FqpBT1kOg_mCLNmetSeNMA3i4Y60Z5jTgnlX3qX3zcQtLx5AB"
|
||||||
case "arm64":
|
case "arm64":
|
||||||
version = "1.31.0"
|
version = "1.31.0"
|
||||||
@@ -100,11 +100,11 @@ func (s *S) newBusyboxBin() pkg.Artifact {
|
|||||||
checksum = "npJjBO7iwhjW6Kx2aXeSxf8kXhVgTCDChOZTTsI8ZfFfa3tbsklxRiidZQdrVERg"
|
checksum = "npJjBO7iwhjW6Kx2aXeSxf8kXhVgTCDChOZTTsI8ZfFfa3tbsklxRiidZQdrVERg"
|
||||||
|
|
||||||
default:
|
default:
|
||||||
panic("unsupported target " + s.arch)
|
panic("unsupported target " + arch)
|
||||||
}
|
}
|
||||||
|
|
||||||
return pkg.NewExec(
|
return pkg.NewExec(
|
||||||
"busybox-bin-"+version, s.arch, nil, pkg.ExecTimeoutMax, false, false,
|
"busybox-bin-"+version, arch, nil, pkg.ExecTimeoutMax, false, false,
|
||||||
fhs.AbsRoot, []string{
|
fhs.AbsRoot, []string{
|
||||||
"PATH=/system/bin",
|
"PATH=/system/bin",
|
||||||
},
|
},
|
||||||
|
|||||||
38
internal/rosa/bzip2.go
Normal file
38
internal/rosa/bzip2.go
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newBzip2() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.0.8"
|
||||||
|
checksum = "cTLykcco7boom-s05H1JVsQi1AtChYL84nXkg_92Dm1Xt94Ob_qlMg_-NSguIK-c"
|
||||||
|
)
|
||||||
|
return t.NewPackage("bzip2", version, newTar(
|
||||||
|
"https://sourceware.org/pub/bzip2/bzip2-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), &PackageAttr{
|
||||||
|
Writable: true,
|
||||||
|
EnterSource: true,
|
||||||
|
}, &MakeHelper{
|
||||||
|
// uses source tree as scratch space
|
||||||
|
SkipConfigure: true,
|
||||||
|
SkipCheck: true,
|
||||||
|
InPlace: true,
|
||||||
|
Make: []string{
|
||||||
|
"CC=cc",
|
||||||
|
},
|
||||||
|
Install: "make PREFIX=/work/system install",
|
||||||
|
}), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Bzip2] = Metadata{
|
||||||
|
f: Toolchain.newBzip2,
|
||||||
|
|
||||||
|
Name: "bzip2",
|
||||||
|
Description: "a freely available, patent free, high-quality data compressor",
|
||||||
|
Website: "https://sourceware.org/bzip2/",
|
||||||
|
|
||||||
|
ID: 237,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -4,12 +4,118 @@ import (
|
|||||||
"path/filepath"
|
"path/filepath"
|
||||||
"slices"
|
"slices"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"hakurei.app/internal/pkg"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
func (t Toolchain) newCMake() (pkg.Artifact, string) {
|
||||||
_cmake = H("cmake")
|
const (
|
||||||
_ninja = H("ninja")
|
version = "4.3.2"
|
||||||
)
|
checksum = "6QylwRVKletndTSkZTV2YBRwgd_9rUVgav_QW23HpjUgV21AVYZOUOal8tdBDmO7"
|
||||||
|
)
|
||||||
|
return t.NewPackage("cmake", version, newFromGitHubRelease(
|
||||||
|
"Kitware/CMake",
|
||||||
|
"v"+version,
|
||||||
|
"cmake-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), &PackageAttr{
|
||||||
|
// test suite expects writable source tree
|
||||||
|
Writable: true,
|
||||||
|
|
||||||
|
// expected to be writable in the copy made during bootstrap
|
||||||
|
Chmod: true,
|
||||||
|
|
||||||
|
Patches: []KV{
|
||||||
|
{"bootstrap-test-no-openssl", `diff --git a/Tests/BootstrapTest.cmake b/Tests/BootstrapTest.cmake
|
||||||
|
index 137de78bc1..b4da52e664 100644
|
||||||
|
--- a/Tests/BootstrapTest.cmake
|
||||||
|
+++ b/Tests/BootstrapTest.cmake
|
||||||
|
@@ -9,7 +9,7 @@ if(NOT nproc EQUAL 0)
|
||||||
|
endif()
|
||||||
|
message(STATUS "running bootstrap: ${bootstrap} ${ninja_arg} ${parallel_arg}")
|
||||||
|
execute_process(
|
||||||
|
- COMMAND ${bootstrap} ${ninja_arg} ${parallel_arg}
|
||||||
|
+ COMMAND ${bootstrap} ${ninja_arg} ${parallel_arg} -- -DCMAKE_USE_OPENSSL=OFF
|
||||||
|
WORKING_DIRECTORY "${bin_dir}"
|
||||||
|
RESULT_VARIABLE result
|
||||||
|
)
|
||||||
|
`},
|
||||||
|
|
||||||
|
{"disable-broken-tests-musl", `diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt
|
||||||
|
index 2ead810437..f85cbb8b1c 100644
|
||||||
|
--- a/Tests/CMakeLists.txt
|
||||||
|
+++ b/Tests/CMakeLists.txt
|
||||||
|
@@ -384,7 +384,6 @@ if(BUILD_TESTING)
|
||||||
|
add_subdirectory(CMakeLib)
|
||||||
|
endif()
|
||||||
|
add_subdirectory(CMakeOnly)
|
||||||
|
- add_subdirectory(RunCMake)
|
||||||
|
|
||||||
|
add_subdirectory(FindPackageModeMakefileTest)
|
||||||
|
|
||||||
|
@@ -528,9 +527,6 @@ if(BUILD_TESTING)
|
||||||
|
-DCMake_TEST_CUDA:BOOL=${CMake_TEST_CUDA}
|
||||||
|
-DCMake_INSTALL_NAME_TOOL_BUG:BOOL=${CMake_INSTALL_NAME_TOOL_BUG}
|
||||||
|
)
|
||||||
|
- ADD_TEST_MACRO(ExportImport ExportImport)
|
||||||
|
- set_property(TEST ExportImport APPEND
|
||||||
|
- PROPERTY LABELS "CUDA")
|
||||||
|
ADD_TEST_MACRO(Unset Unset)
|
||||||
|
ADD_TEST_MACRO(PolicyScope PolicyScope)
|
||||||
|
ADD_TEST_MACRO(EmptyLibrary EmptyLibrary)
|
||||||
|
@@ -624,7 +620,6 @@ if(BUILD_TESTING)
|
||||||
|
# run test for BundleUtilities on supported platforms/compilers
|
||||||
|
if((MSVC OR
|
||||||
|
MINGW OR
|
||||||
|
- CMAKE_SYSTEM_NAME MATCHES "Linux" OR
|
||||||
|
CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
||||||
|
AND NOT CMAKE_GENERATOR STREQUAL "Watcom WMake")
|
||||||
|
|
||||||
|
@@ -3095,10 +3090,6 @@ if(BUILD_TESTING)
|
||||||
|
"${CMake_SOURCE_DIR}/Tests/CTestTestFdSetSize/test.cmake.in"
|
||||||
|
"${CMake_BINARY_DIR}/Tests/CTestTestFdSetSize/test.cmake"
|
||||||
|
@ONLY ESCAPE_QUOTES)
|
||||||
|
- add_test(CTestTestFdSetSize ${CMAKE_CTEST_COMMAND}
|
||||||
|
- -S "${CMake_BINARY_DIR}/Tests/CTestTestFdSetSize/test.cmake" -j20 -V --timeout 120
|
||||||
|
- --output-log "${CMake_BINARY_DIR}/Tests/CTestTestFdSetSize/testOutput.log"
|
||||||
|
- )
|
||||||
|
|
||||||
|
if(CMAKE_TESTS_CDASH_SERVER)
|
||||||
|
set(regex "^([^:]+)://([^/]+)(.*)$")
|
||||||
|
`},
|
||||||
|
},
|
||||||
|
}, &MakeHelper{
|
||||||
|
OmitDefaults: true,
|
||||||
|
|
||||||
|
ConfigureName: "/usr/src/cmake/bootstrap",
|
||||||
|
Configure: []KV{
|
||||||
|
{"prefix", "/system"},
|
||||||
|
{"parallel", jobsE},
|
||||||
|
{"--"},
|
||||||
|
{"-DCMAKE_USE_OPENSSL", "OFF"},
|
||||||
|
{"-DCMake_TEST_NO_NETWORK", "ON"},
|
||||||
|
},
|
||||||
|
Check: []string{
|
||||||
|
"CTEST_OUTPUT_ON_FAILURE=1",
|
||||||
|
"CTEST_PARALLEL_LEVEL=128",
|
||||||
|
"test",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[CMake] = Metadata{
|
||||||
|
f: Toolchain.newCMake,
|
||||||
|
|
||||||
|
Name: "cmake",
|
||||||
|
Description: "cross-platform, open-source build system",
|
||||||
|
Website: "https://cmake.org/",
|
||||||
|
|
||||||
|
ID: 306,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// CMakeHelper is the [CMake] build system helper.
|
// CMakeHelper is the [CMake] build system helper.
|
||||||
type CMakeHelper struct {
|
type CMakeHelper struct {
|
||||||
@@ -37,9 +143,9 @@ var _ Helper = new(CMakeHelper)
|
|||||||
// extra returns a hardcoded slice of [CMake] and [Ninja].
|
// extra returns a hardcoded slice of [CMake] and [Ninja].
|
||||||
func (attr *CMakeHelper) extra(int) P {
|
func (attr *CMakeHelper) extra(int) P {
|
||||||
if attr != nil && attr.Make {
|
if attr != nil && attr.Make {
|
||||||
return P{_cmake, _make}
|
return P{CMake, Make}
|
||||||
}
|
}
|
||||||
return P{_cmake, _ninja}
|
return P{CMake, Ninja}
|
||||||
}
|
}
|
||||||
|
|
||||||
// wantsChmod returns false.
|
// wantsChmod returns false.
|
||||||
@@ -51,11 +157,14 @@ func (*CMakeHelper) wantsWrite() bool { return false }
|
|||||||
// scriptEarly returns the zero value.
|
// scriptEarly returns the zero value.
|
||||||
func (*CMakeHelper) scriptEarly() string { return "" }
|
func (*CMakeHelper) scriptEarly() string { return "" }
|
||||||
|
|
||||||
|
// createDir returns true.
|
||||||
|
func (*CMakeHelper) createDir() bool { return true }
|
||||||
|
|
||||||
// wantsDir returns a hardcoded, deterministic pathname.
|
// wantsDir returns a hardcoded, deterministic pathname.
|
||||||
func (*CMakeHelper) wantsDir() (string, bool) { return "/cure/", true }
|
func (*CMakeHelper) wantsDir() string { return "/cure/" }
|
||||||
|
|
||||||
// script generates the cure script.
|
// script generates the cure script.
|
||||||
func (attr *CMakeHelper) script(t Toolchain, name string) string {
|
func (attr *CMakeHelper) script(name string) string {
|
||||||
if attr == nil {
|
if attr == nil {
|
||||||
attr = new(CMakeHelper)
|
attr = new(CMakeHelper)
|
||||||
}
|
}
|
||||||
@@ -71,7 +180,7 @@ func (attr *CMakeHelper) script(t Toolchain, name string) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
script := attr.Script
|
script := attr.Script
|
||||||
if !attr.SkipTest && t.opts&OptSkipCheck == 0 {
|
if !attr.SkipTest && presetOpts&OptSkipCheck == 0 {
|
||||||
script += "\n" + test
|
script += "\n" + test
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,20 @@
|
|||||||
musl does not implement res_ninit
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newConnman() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "2.0"
|
||||||
|
checksum = "MhVTdJOhndnZn2SWd8URKo_Pj7Zvc14tntEbrVOf9L3yVWJvpb3v3Q6104tWJgtW"
|
||||||
|
)
|
||||||
|
return t.NewPackage("connman", version, newTar(
|
||||||
|
"https://git.kernel.org/pub/scm/network/connman/connman.git/"+
|
||||||
|
"snapshot/connman-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), &PackageAttr{
|
||||||
|
Patches: []KV{
|
||||||
|
{"alpine-musl-res", `musl does not implement res_ninit
|
||||||
|
|
||||||
--- a/gweb/gresolv.c
|
--- a/gweb/gresolv.c
|
||||||
+++ b/gweb/gresolv.c
|
+++ b/gweb/gresolv.c
|
||||||
@@ -57,3 +73,37 @@ musl does not implement res_ninit
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!resolv->nameserver_list)
|
if (!resolv->nameserver_list)
|
||||||
|
`},
|
||||||
|
},
|
||||||
|
}, &MakeHelper{
|
||||||
|
Generate: "./bootstrap",
|
||||||
|
},
|
||||||
|
Automake,
|
||||||
|
Libtool,
|
||||||
|
PkgConfig,
|
||||||
|
|
||||||
|
DBus,
|
||||||
|
IPTables,
|
||||||
|
GnuTLS,
|
||||||
|
Readline,
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Connman] = Metadata{
|
||||||
|
f: Toolchain.newConnman,
|
||||||
|
|
||||||
|
Name: "connman",
|
||||||
|
Description: "a daemon for managing Internet connections",
|
||||||
|
Website: "https://git.kernel.org/pub/scm/network/connman/connman.git/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
DBus,
|
||||||
|
IPTables,
|
||||||
|
GnuTLS,
|
||||||
|
Readline,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 337,
|
||||||
|
}
|
||||||
|
}
|
||||||
56
internal/rosa/curl.go
Normal file
56
internal/rosa/curl.go
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newCurl() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "8.20.0"
|
||||||
|
checksum = "xyHXwrngIRGMasuzhn-I5MSCOhktwINbsWt1f_LuR-5jRVvyx_g6U1EQfDLEbr9r"
|
||||||
|
)
|
||||||
|
return t.NewPackage("curl", version, newTar(
|
||||||
|
"https://curl.se/download/curl-"+version+".tar.bz2",
|
||||||
|
checksum,
|
||||||
|
pkg.TarBzip2,
|
||||||
|
), &PackageAttr{
|
||||||
|
// remove broken test
|
||||||
|
Writable: true,
|
||||||
|
ScriptEarly: `
|
||||||
|
chmod +w tests/data && rm -f tests/data/test459
|
||||||
|
`,
|
||||||
|
}, &MakeHelper{
|
||||||
|
Configure: []KV{
|
||||||
|
{"with-openssl"},
|
||||||
|
{"with-ca-bundle", "/system/etc/ssl/certs/ca-bundle.crt"},
|
||||||
|
|
||||||
|
{"disable-smb"},
|
||||||
|
},
|
||||||
|
Check: []string{
|
||||||
|
"TFLAGS=" + jobsLFlagE,
|
||||||
|
"test-nonflaky",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Perl,
|
||||||
|
Python,
|
||||||
|
PkgConfig,
|
||||||
|
Diffutils,
|
||||||
|
|
||||||
|
Libpsl,
|
||||||
|
OpenSSL,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Curl] = Metadata{
|
||||||
|
f: Toolchain.newCurl,
|
||||||
|
|
||||||
|
Name: "curl",
|
||||||
|
Description: "command line tool and library for transferring data with URLs",
|
||||||
|
Website: "https://curl.se/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Libpsl,
|
||||||
|
OpenSSL,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 381,
|
||||||
|
}
|
||||||
|
}
|
||||||
81
internal/rosa/dbus.go
Normal file
81
internal/rosa/dbus.go
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newDBus() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.16.2"
|
||||||
|
checksum = "INwOuNdrDG7XW5ilW_vn8JSxEa444rRNc5ho97i84I1CNF09OmcFcV-gzbF4uCyg"
|
||||||
|
)
|
||||||
|
return t.NewPackage("dbus", version, newFromGitLab(
|
||||||
|
"gitlab.freedesktop.org",
|
||||||
|
"dbus/dbus",
|
||||||
|
"dbus-"+version,
|
||||||
|
checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
// OSError: [Errno 30] Read-only file system: '/usr/src/dbus/subprojects/packagecache'
|
||||||
|
Writable: true,
|
||||||
|
// PermissionError: [Errno 13] Permission denied: '/usr/src/dbus/subprojects/packagecache'
|
||||||
|
Chmod: true,
|
||||||
|
}, &MesonHelper{
|
||||||
|
Setup: []KV{
|
||||||
|
{"Depoll", "enabled"},
|
||||||
|
{"Dinotify", "enabled"},
|
||||||
|
{"Dx11_autolaunch", "disabled"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
GLib,
|
||||||
|
Libexpat,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[DBus] = Metadata{
|
||||||
|
f: Toolchain.newDBus,
|
||||||
|
|
||||||
|
Name: "dbus",
|
||||||
|
Description: "a message bus system",
|
||||||
|
Website: "https://www.freedesktop.org/wiki/Software/dbus/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
GLib,
|
||||||
|
Libexpat,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 5356,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newXDGDBusProxy() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "0.1.7"
|
||||||
|
checksum = "UW5Pe-TP-XAaN-kTbxrkOQ7eYdmlAQlr2pdreLtPT0uwdAz-7rzDP8V_8PWuZBup"
|
||||||
|
)
|
||||||
|
return t.NewPackage("xdg-dbus-proxy", version, newFromGitHub(
|
||||||
|
"flatpak/xdg-dbus-proxy",
|
||||||
|
version,
|
||||||
|
checksum,
|
||||||
|
), nil, &MesonHelper{
|
||||||
|
Setup: []KV{
|
||||||
|
{"Dman", "disabled"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
DBus,
|
||||||
|
|
||||||
|
GLib,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[XDGDBusProxy] = Metadata{
|
||||||
|
f: Toolchain.newXDGDBusProxy,
|
||||||
|
|
||||||
|
Name: "xdg-dbus-proxy",
|
||||||
|
Description: "a filtering proxy for D-Bus connections",
|
||||||
|
Website: "https://github.com/flatpak/xdg-dbus-proxy",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
GLib,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 58434,
|
||||||
|
}
|
||||||
|
}
|
||||||
43
internal/rosa/dtc.go
Normal file
43
internal/rosa/dtc.go
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newDTC() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.7.2"
|
||||||
|
checksum = "vUoiRynPyYRexTpS6USweT5p4SVHvvVJs8uqFkkVD-YnFjwf6v3elQ0-Etrh00Dt"
|
||||||
|
)
|
||||||
|
return t.NewPackage("dtc", version, newTar(
|
||||||
|
"https://git.kernel.org/pub/scm/utils/dtc/dtc.git/snapshot/"+
|
||||||
|
"dtc-v"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), &PackageAttr{
|
||||||
|
// works around buggy test:
|
||||||
|
// fdtdump-runtest.sh /usr/src/dtc/tests/fdtdump.dts
|
||||||
|
Writable: true,
|
||||||
|
Chmod: true,
|
||||||
|
}, &MesonHelper{
|
||||||
|
Setup: []KV{
|
||||||
|
{"Dyaml", "disabled"},
|
||||||
|
{"Dstatic-build", "true"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Flex,
|
||||||
|
Bison,
|
||||||
|
M4,
|
||||||
|
Coreutils,
|
||||||
|
Diffutils,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[DTC] = Metadata{
|
||||||
|
f: Toolchain.newDTC,
|
||||||
|
|
||||||
|
Name: "dtc",
|
||||||
|
Description: "The Device Tree Compiler",
|
||||||
|
Website: "https://git.kernel.org/pub/scm/utils/dtc/dtc.git/",
|
||||||
|
|
||||||
|
ID: 16911,
|
||||||
|
}
|
||||||
|
}
|
||||||
59
internal/rosa/elfutils.go
Normal file
59
internal/rosa/elfutils.go
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newElfutils() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "0.195"
|
||||||
|
checksum = "JrGnBD38w8Mj0ZxDw3fKlRBFcLvRKu8rcYnX35R9yTlUSYnzTazyLboG-a2CsJlu"
|
||||||
|
)
|
||||||
|
return t.NewPackage("elfutils", version, newTar(
|
||||||
|
"https://sourceware.org/elfutils/ftp/"+
|
||||||
|
version+"/elfutils-"+version+".tar.bz2",
|
||||||
|
checksum,
|
||||||
|
pkg.TarBzip2,
|
||||||
|
), &PackageAttr{
|
||||||
|
Env: []string{
|
||||||
|
"CC=cc" +
|
||||||
|
// nonstandard glibc extension
|
||||||
|
" -DFNM_EXTMATCH=0",
|
||||||
|
},
|
||||||
|
}, &MakeHelper{
|
||||||
|
// nonstandard glibc extension
|
||||||
|
SkipCheck: true,
|
||||||
|
|
||||||
|
Configure: []KV{
|
||||||
|
{"enable-deterministic-archives"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
M4,
|
||||||
|
PkgConfig,
|
||||||
|
|
||||||
|
Zlib,
|
||||||
|
Bzip2,
|
||||||
|
Zstd,
|
||||||
|
ArgpStandalone,
|
||||||
|
MuslFts,
|
||||||
|
MuslObstack,
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Elfutils] = Metadata{
|
||||||
|
f: Toolchain.newElfutils,
|
||||||
|
|
||||||
|
Name: "elfutils",
|
||||||
|
Description: "utilities and libraries to handle ELF files and DWARF data",
|
||||||
|
Website: "https://sourceware.org/elfutils/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Zlib,
|
||||||
|
Bzip2,
|
||||||
|
Zstd,
|
||||||
|
MuslFts,
|
||||||
|
MuslObstack,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 5679,
|
||||||
|
}
|
||||||
|
}
|
||||||
58
internal/rosa/fakeroot.go
Normal file
58
internal/rosa/fakeroot.go
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newFakeroot() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.37.2"
|
||||||
|
checksum = "4ve-eDqVspzQ6VWDhPS0NjW3aSenBJcPAJq_BFT7OOFgUdrQzoTBxZWipDAGWxF8"
|
||||||
|
)
|
||||||
|
return t.NewPackage("fakeroot", version, newFromGitLab(
|
||||||
|
"salsa.debian.org",
|
||||||
|
"clint/fakeroot",
|
||||||
|
"upstream/"+version,
|
||||||
|
checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
Patches: []KV{
|
||||||
|
{"remove-broken-docs", `diff --git a/doc/Makefile.am b/doc/Makefile.am
|
||||||
|
index f135ad9..85c784c 100644
|
||||||
|
--- a/doc/Makefile.am
|
||||||
|
+++ b/doc/Makefile.am
|
||||||
|
@@ -1,5 +1,4 @@
|
||||||
|
AUTOMAKE_OPTIONS=foreign
|
||||||
|
-SUBDIRS = de es fr nl pt ro sv
|
||||||
|
|
||||||
|
man_MANS = faked.1 fakeroot.1
|
||||||
|
|
||||||
|
`},
|
||||||
|
},
|
||||||
|
|
||||||
|
Env: []string{
|
||||||
|
"CONFIG_SHELL=/bin/sh",
|
||||||
|
},
|
||||||
|
}, &MakeHelper{
|
||||||
|
Generate: "./bootstrap",
|
||||||
|
|
||||||
|
// makes assumptions about /etc/passwd
|
||||||
|
SkipCheck: true,
|
||||||
|
},
|
||||||
|
Automake,
|
||||||
|
Libtool,
|
||||||
|
PkgConfig,
|
||||||
|
|
||||||
|
Attr,
|
||||||
|
Libcap,
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Fakeroot] = Metadata{
|
||||||
|
f: Toolchain.newFakeroot,
|
||||||
|
|
||||||
|
Name: "fakeroot",
|
||||||
|
Description: "tool for simulating superuser privileges",
|
||||||
|
Website: "https://salsa.debian.org/clint/fakeroot",
|
||||||
|
|
||||||
|
ID: 12048,
|
||||||
|
}
|
||||||
|
}
|
||||||
32
internal/rosa/flex.go
Normal file
32
internal/rosa/flex.go
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import (
|
||||||
|
"hakurei.app/internal/pkg"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (t Toolchain) newFlex() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "2.6.4"
|
||||||
|
checksum = "p9POjQU7VhgOf3x5iFro8fjhy0NOanvA7CTeuWS_veSNgCixIJshTrWVkc5XLZkB"
|
||||||
|
)
|
||||||
|
return t.NewPackage("flex", version, newFromGitHubRelease(
|
||||||
|
"westes/flex",
|
||||||
|
"v"+version,
|
||||||
|
"flex-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), nil, (*MakeHelper)(nil),
|
||||||
|
M4,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Flex] = Metadata{
|
||||||
|
f: Toolchain.newFlex,
|
||||||
|
|
||||||
|
Name: "flex",
|
||||||
|
Description: "scanner generator for lexing in C and C++",
|
||||||
|
Website: "https://github.com/westes/flex/",
|
||||||
|
|
||||||
|
ID: 819,
|
||||||
|
}
|
||||||
|
}
|
||||||
43
internal/rosa/fuse.go
Normal file
43
internal/rosa/fuse.go
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newFuse() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "3.18.2"
|
||||||
|
checksum = "iL-7b7eUtmlVSf5cSq0dzow3UiqSjBmzV3cI_ENPs1tXcHdktkG45j1V12h-4jZe"
|
||||||
|
)
|
||||||
|
return t.NewPackage("fuse", version, newFromGitHubRelease(
|
||||||
|
"libfuse/libfuse",
|
||||||
|
"fuse-"+version,
|
||||||
|
"fuse-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), nil, &MesonHelper{
|
||||||
|
Setup: []KV{
|
||||||
|
{"Ddefault_library", "both"},
|
||||||
|
{"Dtests", "true"},
|
||||||
|
{"Duseroot", "false"},
|
||||||
|
{"Dinitscriptdir", "/system/etc"},
|
||||||
|
},
|
||||||
|
|
||||||
|
ScriptCompiled: "python3 -m pytest test/",
|
||||||
|
// this project uses pytest
|
||||||
|
SkipTest: true,
|
||||||
|
},
|
||||||
|
PythonPyTest,
|
||||||
|
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Fuse] = Metadata{
|
||||||
|
f: Toolchain.newFuse,
|
||||||
|
|
||||||
|
Name: "fuse",
|
||||||
|
Description: "the reference implementation of the Linux FUSE interface",
|
||||||
|
Website: "https://github.com/libfuse/libfuse/",
|
||||||
|
|
||||||
|
ID: 861,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -7,10 +7,102 @@ import (
|
|||||||
"hakurei.app/internal/pkg"
|
"hakurei.app/internal/pkg"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
func (t Toolchain) newGit() (pkg.Artifact, string) {
|
||||||
_git = H("git")
|
const (
|
||||||
_nssCACert = H("nss-cacert")
|
version = "2.54.0"
|
||||||
)
|
checksum = "7vGKtFOJGqY8DO4e8UMRax7dLgImXKQz5MMalec6MlgYrsarffSJjgOughwRFpSH"
|
||||||
|
)
|
||||||
|
return t.NewPackage("git", version, newTar(
|
||||||
|
"https://www.kernel.org/pub/software/scm/git/"+
|
||||||
|
"git-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), &PackageAttr{
|
||||||
|
ScriptEarly: `
|
||||||
|
ln -s ../../system/bin/perl /usr/bin/ || true
|
||||||
|
|
||||||
|
# test suite assumes apache
|
||||||
|
rm -f /system/bin/httpd
|
||||||
|
`,
|
||||||
|
|
||||||
|
// uses source tree as scratch space
|
||||||
|
EnterSource: true,
|
||||||
|
}, &MakeHelper{
|
||||||
|
InPlace: true,
|
||||||
|
Generate: "make configure",
|
||||||
|
ScriptMakeEarly: `
|
||||||
|
function disable_test {
|
||||||
|
local test=$1 pattern=${2:-''}
|
||||||
|
if [ $# -eq 1 ]; then
|
||||||
|
rm "t/${test}.sh"
|
||||||
|
else
|
||||||
|
sed -i "t/${test}.sh" \
|
||||||
|
-e "/^\s*test_expect_.*$pattern/,/^\s*' *\$/{s/^/: #/}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
disable_test t1800-hook
|
||||||
|
disable_test t5319-multi-pack-index
|
||||||
|
disable_test t1305-config-include
|
||||||
|
disable_test t3900-i18n-commit
|
||||||
|
disable_test t3507-cherry-pick-conflict
|
||||||
|
disable_test t4201-shortlog
|
||||||
|
disable_test t5303-pack-corruption-resilience
|
||||||
|
disable_test t4301-merge-tree-write-tree
|
||||||
|
disable_test t8005-blame-i18n
|
||||||
|
disable_test t9350-fast-export
|
||||||
|
disable_test t9300-fast-import
|
||||||
|
disable_test t0211-trace2-perf
|
||||||
|
disable_test t1517-outside-repo
|
||||||
|
disable_test t2200-add-update
|
||||||
|
disable_test t0027-auto-crlf
|
||||||
|
disable_test t7513-interpret-trailers
|
||||||
|
disable_test t7703-repack-geometric
|
||||||
|
disable_test t7002-mv-sparse-checkout
|
||||||
|
disable_test t1451-fsck-buffer
|
||||||
|
disable_test t4104-apply-boundary
|
||||||
|
disable_test t4200-rerere
|
||||||
|
`,
|
||||||
|
Check: []string{
|
||||||
|
"-C t",
|
||||||
|
`GIT_PROVE_OPTS="--jobs 32 --failures"`,
|
||||||
|
"prove",
|
||||||
|
},
|
||||||
|
Install: `make \
|
||||||
|
` + jobsFlagE + ` \
|
||||||
|
DESTDIR=/work \
|
||||||
|
NO_INSTALL_HARDLINKS=1 \
|
||||||
|
install`,
|
||||||
|
},
|
||||||
|
// test suite hangs on mksh
|
||||||
|
Bash,
|
||||||
|
|
||||||
|
Diffutils,
|
||||||
|
Autoconf,
|
||||||
|
Gettext,
|
||||||
|
|
||||||
|
Zlib,
|
||||||
|
Curl,
|
||||||
|
Libexpat,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Git] = Metadata{
|
||||||
|
f: Toolchain.newGit,
|
||||||
|
|
||||||
|
Name: "git",
|
||||||
|
Description: "distributed version control system",
|
||||||
|
Website: "https://www.git-scm.com/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Zlib,
|
||||||
|
Curl,
|
||||||
|
Libexpat,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 5350,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// NewViaGit returns a [pkg.Artifact] for cloning a git repository.
|
// NewViaGit returns a [pkg.Artifact] for cloning a git repository.
|
||||||
func (t Toolchain) NewViaGit(
|
func (t Toolchain) NewViaGit(
|
||||||
@@ -20,9 +112,9 @@ func (t Toolchain) NewViaGit(
|
|||||||
return t.New(strings.TrimSuffix(
|
return t.New(strings.TrimSuffix(
|
||||||
path.Base(url),
|
path.Base(url),
|
||||||
".git",
|
".git",
|
||||||
)+"-src-"+path.Base(rev), THostNet, t.Append(nil,
|
)+"-src-"+path.Base(rev), THostNet, t.AppendPresets(nil,
|
||||||
_nssCACert,
|
NSSCACert,
|
||||||
_git,
|
Git,
|
||||||
), &checksum, nil, `
|
), &checksum, nil, `
|
||||||
git \
|
git \
|
||||||
-c advice.detachedHead=false \
|
-c advice.detachedHead=false \
|
||||||
|
|||||||
239
internal/rosa/glslang.go
Normal file
239
internal/rosa/glslang.go
Normal file
@@ -0,0 +1,239 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import (
|
||||||
|
"slices"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"hakurei.app/internal/pkg"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (t Toolchain) newSPIRVHeaders() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.4.341.0"
|
||||||
|
checksum = "0PL43-19Iaw4k7_D8J8BvoJ-iLgCVSYZ2ThgDPGfAJwIJFtre7l0cnQtLjcY-JvD"
|
||||||
|
)
|
||||||
|
return t.NewPackage("spirv-headers", version, newFromGitHub(
|
||||||
|
"KhronosGroup/SPIRV-Headers",
|
||||||
|
"vulkan-sdk-"+version,
|
||||||
|
checksum,
|
||||||
|
), nil, &CMakeHelper{
|
||||||
|
// upstream has no tests
|
||||||
|
SkipTest: true,
|
||||||
|
}), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[SPIRVHeaders] = Metadata{
|
||||||
|
f: Toolchain.newSPIRVHeaders,
|
||||||
|
|
||||||
|
Name: "spirv-headers",
|
||||||
|
Description: "machine-readable files for the SPIR-V Registry",
|
||||||
|
Website: "https://github.com/KhronosGroup/SPIRV-Headers",
|
||||||
|
|
||||||
|
ID: 230542,
|
||||||
|
|
||||||
|
// upstream changed version scheme, anitya incapable of filtering them
|
||||||
|
latest: func(v *Versions) string {
|
||||||
|
for _, s := range v.Stable {
|
||||||
|
fields := strings.SplitN(s, ".", 4)
|
||||||
|
if len(fields) != 4 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if slices.ContainsFunc(fields, func(f string) bool {
|
||||||
|
return slices.ContainsFunc([]byte(f), func(d byte) bool {
|
||||||
|
return d < '0' || d > '9'
|
||||||
|
})
|
||||||
|
}) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
return v.Latest
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newSPIRVTools() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "2026.1"
|
||||||
|
checksum = "ZSQPQx8NltCDzQLk4qlaVxyWRWeI_JtsjEpeFt3kezTanl9DTHfLixSUCezMFBjv"
|
||||||
|
)
|
||||||
|
return t.NewPackage("spirv-tools", version, newFromGitHub(
|
||||||
|
"KhronosGroup/SPIRV-Tools",
|
||||||
|
"v"+version,
|
||||||
|
checksum,
|
||||||
|
), nil, &CMakeHelper{
|
||||||
|
Cache: []KV{
|
||||||
|
{"SPIRV-Headers_SOURCE_DIR", "/system"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Python,
|
||||||
|
|
||||||
|
SPIRVHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[SPIRVTools] = Metadata{
|
||||||
|
f: Toolchain.newSPIRVTools,
|
||||||
|
|
||||||
|
Name: "spirv-tools",
|
||||||
|
Description: "an API and commands for processing SPIR-V modules",
|
||||||
|
Website: "https://github.com/KhronosGroup/SPIRV-Tools",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
SPIRVHeaders,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 14894,
|
||||||
|
|
||||||
|
latest: (*Versions).getStable,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newGlslang() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "16.3.0"
|
||||||
|
checksum = "xyqDf8k3-D0_BXHGi0uLgMglnJ05Rf3j73QgbDs3sGtKNdBIQhY8JfqX1NcNoJQN"
|
||||||
|
)
|
||||||
|
return t.NewPackage("glslang", version, newFromGitHub(
|
||||||
|
"KhronosGroup/glslang",
|
||||||
|
version,
|
||||||
|
checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
// test suite writes to source
|
||||||
|
Writable: true,
|
||||||
|
Chmod: true,
|
||||||
|
}, &CMakeHelper{
|
||||||
|
Cache: []KV{
|
||||||
|
{"BUILD_SHARED_LIBS", "ON"},
|
||||||
|
{"ALLOW_EXTERNAL_SPIRV_TOOLS", "ON"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Python,
|
||||||
|
Bash,
|
||||||
|
Diffutils,
|
||||||
|
|
||||||
|
SPIRVTools,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Glslang] = Metadata{
|
||||||
|
f: Toolchain.newGlslang,
|
||||||
|
|
||||||
|
Name: "glslang",
|
||||||
|
Description: "reference front end for GLSL/ESSL",
|
||||||
|
Website: "https://github.com/KhronosGroup/glslang",
|
||||||
|
|
||||||
|
ID: 205796,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newSPIRVLLVMTranslator() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "22.1.2"
|
||||||
|
checksum = "JZAaV5ewYcm-35YA_U2BM2IcsQouZtX1BLZR0zh2vSlfEXMsT5OCtY4Gh5RJkcGy"
|
||||||
|
)
|
||||||
|
skipChecks := []string{
|
||||||
|
// error: line 13: OpTypeCooperativeMatrixKHR Scope is limited to Workgroup and Subgroup
|
||||||
|
"cooperative_matrix_constant_null.spvasm",
|
||||||
|
}
|
||||||
|
|
||||||
|
switch arch {
|
||||||
|
case "arm64":
|
||||||
|
skipChecks = append(skipChecks,
|
||||||
|
// LLVM ERROR: unsupported calling convention
|
||||||
|
"DebugInfo/COFF/no-cus.ll",
|
||||||
|
"DebugInfo/Generic/2009-11-05-DeadGlobalVariable.ll",
|
||||||
|
"DebugInfo/Generic/2009-11-10-CurrentFn.ll",
|
||||||
|
"DebugInfo/Generic/2010-01-05-DbgScope.ll",
|
||||||
|
"DebugInfo/Generic/2010-03-12-llc-crash.ll",
|
||||||
|
"DebugInfo/Generic/2010-03-24-MemberFn.ll",
|
||||||
|
"DebugInfo/Generic/2010-04-19-FramePtr.ll",
|
||||||
|
"DebugInfo/Generic/2010-06-29-InlinedFnLocalVar.ll",
|
||||||
|
"DebugInfo/Generic/2010-10-01-crash.ll",
|
||||||
|
"DebugInfo/Generic/PR20038.ll",
|
||||||
|
"DebugInfo/Generic/constant-pointers.ll",
|
||||||
|
"DebugInfo/Generic/dead-argument-order.ll",
|
||||||
|
"DebugInfo/Generic/debug-info-eis-option.ll",
|
||||||
|
"DebugInfo/Generic/def-line.ll",
|
||||||
|
"DebugInfo/Generic/discriminator.ll",
|
||||||
|
"DebugInfo/Generic/dwarf-public-names.ll",
|
||||||
|
"DebugInfo/Generic/enum.ll",
|
||||||
|
"DebugInfo/Generic/func-using-decl.ll",
|
||||||
|
"DebugInfo/Generic/global.ll",
|
||||||
|
"DebugInfo/Generic/imported-name-inlined.ll",
|
||||||
|
"DebugInfo/Generic/incorrect-variable-debugloc1.ll",
|
||||||
|
"DebugInfo/Generic/inline-scopes.ll",
|
||||||
|
"DebugInfo/Generic/inlined-arguments.ll",
|
||||||
|
"DebugInfo/Generic/inlined-vars.ll",
|
||||||
|
"DebugInfo/Generic/linear-dbg-value.ll",
|
||||||
|
"DebugInfo/Generic/linkage-name-abstract.ll",
|
||||||
|
"DebugInfo/Generic/member-order.ll",
|
||||||
|
"DebugInfo/Generic/missing-abstract-variable.ll",
|
||||||
|
"DebugInfo/Generic/multiline.ll",
|
||||||
|
"DebugInfo/Generic/namespace_function_definition.ll",
|
||||||
|
"DebugInfo/Generic/namespace_inline_function_definition.ll",
|
||||||
|
"DebugInfo/Generic/noscopes.ll",
|
||||||
|
"DebugInfo/Generic/ptrsize.ll",
|
||||||
|
"DebugInfo/Generic/restrict.ll",
|
||||||
|
"DebugInfo/Generic/two-cus-from-same-file.ll",
|
||||||
|
"DebugInfo/Generic/version.ll",
|
||||||
|
"DebugInfo/LocalAddressSpace.ll",
|
||||||
|
"DebugInfo/UnknownBaseType.ll",
|
||||||
|
"DebugInfo/expr-opcode.ll",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return t.NewPackage("spirv-llvm-translator", version, newFromGitHub(
|
||||||
|
"KhronosGroup/SPIRV-LLVM-Translator",
|
||||||
|
"v"+version, checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
Patches: []KV{
|
||||||
|
{"remove-early-prefix", `diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||||
|
index c000a77e..86f79b03 100644
|
||||||
|
--- a/CMakeLists.txt
|
||||||
|
+++ b/CMakeLists.txt
|
||||||
|
@@ -172,5 +172,5 @@ install(
|
||||||
|
FILES
|
||||||
|
${CMAKE_BINARY_DIR}/LLVMSPIRVLib.pc
|
||||||
|
DESTINATION
|
||||||
|
- ${CMAKE_INSTALL_PREFIX}/lib${LLVM_LIBDIR_SUFFIX}/pkgconfig
|
||||||
|
+ lib${LLVM_LIBDIR_SUFFIX}/pkgconfig
|
||||||
|
)
|
||||||
|
`},
|
||||||
|
},
|
||||||
|
|
||||||
|
// litArgs emits shell syntax
|
||||||
|
ScriptEarly: `
|
||||||
|
export LIT_OPTS=` + litArgs(true, skipChecks...) + `
|
||||||
|
`,
|
||||||
|
}, &CMakeHelper{
|
||||||
|
Cache: []KV{
|
||||||
|
{"CMAKE_SKIP_BUILD_RPATH", "ON"},
|
||||||
|
{"BUILD_SHARED_LIBS", "ON"},
|
||||||
|
{"LLVM_SPIRV_ENABLE_LIBSPIRV_DIS", "ON"},
|
||||||
|
{"LLVM_EXTERNAL_SPIRV_HEADERS_SOURCE_DIR", "/system"},
|
||||||
|
{"LLVM_EXTERNAL_LIT", "/system/bin/lit"},
|
||||||
|
{"LLVM_INCLUDE_TESTS", "ON"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Bash,
|
||||||
|
LIT,
|
||||||
|
|
||||||
|
SPIRVTools,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[SPIRVLLVMTranslator] = Metadata{
|
||||||
|
f: Toolchain.newSPIRVLLVMTranslator,
|
||||||
|
|
||||||
|
Name: "spirv-llvm-translator",
|
||||||
|
Description: "bi-directional translation between SPIR-V and LLVM IR",
|
||||||
|
Website: "https://github.com/KhronosGroup/SPIRV-LLVM-Translator",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
SPIRVTools,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 227273,
|
||||||
|
}
|
||||||
|
}
|
||||||
1366
internal/rosa/gnu.go
Normal file
1366
internal/rosa/gnu.go
Normal file
File diff suppressed because it is too large
Load Diff
@@ -11,18 +11,18 @@ func TestSkipGNUTests(t *testing.T) {
|
|||||||
t.Parallel()
|
t.Parallel()
|
||||||
|
|
||||||
testCases := []struct {
|
testCases := []struct {
|
||||||
tests []int64
|
tests []int
|
||||||
want string
|
want string
|
||||||
}{
|
}{
|
||||||
{[]int64{764}, "1-763 765-"},
|
{[]int{764}, "1-763 765-"},
|
||||||
{[]int64{764, 0xcafe, 37, 9}, "1-8 10-36 38-763 765-51965 51967-"},
|
{[]int{764, 0xcafe, 37, 9}, "1-8 10-36 38-763 765-51965 51967-"},
|
||||||
{[]int64{1, 2, 0xbed}, "3-3052 3054-"},
|
{[]int{1, 2, 0xbed}, "3-3052 3054-"},
|
||||||
{[]int64{3, 4}, "1-2 5-"},
|
{[]int{3, 4}, "1-2 5-"},
|
||||||
}
|
}
|
||||||
for _, tc := range testCases {
|
for _, tc := range testCases {
|
||||||
t.Run(strings.Join(slices.Collect(func(yield func(string) bool) {
|
t.Run(strings.Join(slices.Collect(func(yield func(string) bool) {
|
||||||
for _, n := range tc.tests {
|
for _, n := range tc.tests {
|
||||||
yield(strconv.Itoa(int(n)))
|
yield(strconv.Itoa(n))
|
||||||
}
|
}
|
||||||
}), ","), func(t *testing.T) {
|
}), ","), func(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
@@ -6,113 +6,89 @@ import (
|
|||||||
"hakurei.app/internal/pkg"
|
"hakurei.app/internal/pkg"
|
||||||
)
|
)
|
||||||
|
|
||||||
var _go = H("go")
|
// newGoBootstrap returns the Go bootstrap toolchain.
|
||||||
|
func (t Toolchain) newGoBootstrap() pkg.Artifact {
|
||||||
|
const checksum = "8o9JL_ToiQKadCTb04nvBDkp8O1xiWOolAxVEqaTGodieNe4lOFEjlOxN3bwwe23"
|
||||||
|
return t.New("go1.4-bootstrap", 0, t.AppendPresets(nil,
|
||||||
|
Bash,
|
||||||
|
), nil, []string{
|
||||||
|
"CGO_ENABLED=0",
|
||||||
|
}, `
|
||||||
|
mkdir -p /var/tmp/ /work/system/
|
||||||
|
cp -r /usr/src/go /work/system/
|
||||||
|
cd /work/system/go/src
|
||||||
|
chmod -R +w ..
|
||||||
|
|
||||||
|
./make.bash
|
||||||
|
`, pkg.Path(AbsUsrSrc.Append("go"), false, newTar(
|
||||||
|
"https://dl.google.com/go/go1.4-bootstrap-20171003.tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
)))
|
||||||
|
}
|
||||||
|
|
||||||
// newGo returns a specific version of the Go toolchain.
|
// newGo returns a specific version of the Go toolchain.
|
||||||
func (t Toolchain) newGo(
|
func (t Toolchain) newGo(
|
||||||
version, checksum string,
|
version, checksum string,
|
||||||
env []string,
|
env []string,
|
||||||
script string,
|
script string,
|
||||||
boot pkg.Artifact,
|
extra ...pkg.Artifact,
|
||||||
) pkg.Artifact {
|
) pkg.Artifact {
|
||||||
return t.NewPackage("go", version, newTar(
|
name := "all"
|
||||||
"https://go.dev/dl/go"+version+".src.tar.gz",
|
if presetOpts&OptSkipCheck != 0 {
|
||||||
checksum,
|
name = "make"
|
||||||
pkg.TarGzip,
|
}
|
||||||
), &PackageAttr{
|
return t.New("go"+version, 0, t.AppendPresets(extra,
|
||||||
EnterSource: true,
|
Bash,
|
||||||
Env: slices.Concat([]string{
|
), nil, slices.Concat([]string{
|
||||||
"CC=cc",
|
"CC=cc",
|
||||||
"GOCACHE=/tmp/gocache",
|
"GOCACHE=/tmp/gocache",
|
||||||
"GOROOT_BOOTSTRAP=/system/go",
|
"GOROOT_BOOTSTRAP=/system/go",
|
||||||
"TMPDIR=/dev/shm/go",
|
"TMPDIR=/dev/shm/go",
|
||||||
}, env),
|
}, env), `
|
||||||
|
mkdir /work/system "${TMPDIR}"
|
||||||
Extra: []pkg.Artifact{boot},
|
cp -r /usr/src/go /work/system
|
||||||
}, &GenericHelper{
|
cd /work/system/go/src
|
||||||
InPlace: true,
|
|
||||||
Build: `
|
|
||||||
mkdir /work/system/ "${TMPDIR}"
|
|
||||||
cp -r . /work/system/go
|
|
||||||
cd /work/system/go/src/
|
|
||||||
chmod -R +w ..
|
chmod -R +w ..
|
||||||
` + script + `
|
`+script+`
|
||||||
set +u
|
./`+name+`.bash
|
||||||
. ./make.bash "$@" --no-banner
|
|
||||||
set -u
|
|
||||||
`,
|
|
||||||
Check: "bash run.bash --no-rebuild\n",
|
|
||||||
Install: `
|
|
||||||
../bin/go tool dist banner # print build info
|
|
||||||
|
|
||||||
mkdir /work/system/bin
|
mkdir /work/system/bin
|
||||||
ln -s \
|
ln -s \
|
||||||
../go/bin/go \
|
../go/bin/go \
|
||||||
../go/bin/gofmt \
|
../go/bin/gofmt \
|
||||||
/work/system/bin
|
/work/system/bin
|
||||||
`,
|
`, pkg.Path(AbsUsrSrc.Append("go"), false, newTar(
|
||||||
},
|
"https://go.dev/dl/go"+version+".src.tar.gz",
|
||||||
_bash,
|
checksum,
|
||||||
)
|
pkg.TarGzip,
|
||||||
|
)))
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func (t Toolchain) newGoLatest() (pkg.Artifact, string) {
|
||||||
const (
|
var (
|
||||||
version = "1.26.3"
|
bootstrapEnv []string
|
||||||
checksum = "lEiFocZFnN5fKvZzmwVdqc9pYUjAuhzqZGbuiOqxUP4XdcY8yECisKcqsQ_eNn1N"
|
bootstrapExtra []pkg.Artifact
|
||||||
|
|
||||||
|
finalEnv []string
|
||||||
)
|
)
|
||||||
meta := Metadata{
|
switch arch {
|
||||||
Name: "go",
|
case "amd64":
|
||||||
Description: "the Go programming language toolchain",
|
bootstrapExtra = append(bootstrapExtra, t.newGoBootstrap())
|
||||||
Website: "https://go.dev",
|
|
||||||
Version: version,
|
|
||||||
|
|
||||||
ID: 1227,
|
case "arm64", "riscv64":
|
||||||
|
bootstrapEnv = append(bootstrapEnv, "GOROOT_BOOTSTRAP=/system")
|
||||||
|
bootstrapExtra = t.AppendPresets(bootstrapExtra, gcc)
|
||||||
|
finalEnv = append(finalEnv, "CGO_ENABLED=0")
|
||||||
|
|
||||||
|
default:
|
||||||
|
panic("unsupported target " + arch)
|
||||||
}
|
}
|
||||||
native.MustRegister(meta.Name, func(t Toolchain) (*Metadata, pkg.Artifact) {
|
|
||||||
var (
|
|
||||||
bootstrapEnv []string
|
|
||||||
bootstrapEarly pkg.Artifact
|
|
||||||
|
|
||||||
finalEnv []string
|
go119 := t.newGo(
|
||||||
)
|
"1.19",
|
||||||
switch t.arch {
|
"9_e0aFHsIkVxWVGsp9T2RvvjOc3p4n9o9S8tkNe9Cvgzk_zI2FhRQB7ioQkeAAro",
|
||||||
case "amd64":
|
append(bootstrapEnv, "CGO_ENABLED=0"), `
|
||||||
bootstrapEarly = t.NewPackage("go", "1.4-bootstrap", newTar(
|
|
||||||
"https://dl.google.com/go/go1.4-bootstrap-20171003.tar.gz",
|
|
||||||
"8o9JL_ToiQKadCTb04nvBDkp8O1xiWOolAxVEqaTGodieNe4lOFEjlOxN3bwwe23",
|
|
||||||
pkg.TarGzip,
|
|
||||||
), &PackageAttr{
|
|
||||||
EnterSource: true,
|
|
||||||
Env: []string{
|
|
||||||
"CGO_ENABLED=0",
|
|
||||||
},
|
|
||||||
}, &GenericHelper{
|
|
||||||
InPlace: true,
|
|
||||||
Build: `
|
|
||||||
mkdir /work/system/
|
|
||||||
cp -r . /work/system/go
|
|
||||||
cd /work/system/go/src/
|
|
||||||
mkdir -p /var/tmp/
|
|
||||||
./make.bash
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
_bash,
|
|
||||||
)
|
|
||||||
|
|
||||||
case "arm64", "riscv64":
|
|
||||||
bootstrapEnv = append(bootstrapEnv, "GOROOT_BOOTSTRAP=/system")
|
|
||||||
_, bootstrapEarly = t.MustLoad(H("gcc"))
|
|
||||||
finalEnv = append(finalEnv, "CGO_ENABLED=0")
|
|
||||||
|
|
||||||
default:
|
|
||||||
panic("unsupported target " + t.arch)
|
|
||||||
}
|
|
||||||
|
|
||||||
go119 := t.newGo(
|
|
||||||
"1.19",
|
|
||||||
"9_e0aFHsIkVxWVGsp9T2RvvjOc3p4n9o9S8tkNe9Cvgzk_zI2FhRQB7ioQkeAAro",
|
|
||||||
append(bootstrapEnv, "CGO_ENABLED=0"), `
|
|
||||||
rm \
|
rm \
|
||||||
crypto/tls/handshake_client_test.go \
|
crypto/tls/handshake_client_test.go \
|
||||||
cmd/pprof/pprof_test.go \
|
cmd/pprof/pprof_test.go \
|
||||||
@@ -123,15 +99,15 @@ sed -i \
|
|||||||
echo \
|
echo \
|
||||||
'type syscallDescriptor = int' >> \
|
'type syscallDescriptor = int' >> \
|
||||||
os/rawconn_test.go
|
os/rawconn_test.go
|
||||||
`, bootstrapEarly)
|
`, bootstrapExtra...)
|
||||||
|
|
||||||
go121 := t.newGo(
|
go121 := t.newGo(
|
||||||
"1.21.13",
|
"1.21.13",
|
||||||
"YtrDka402BOAEwywx03Vz4QlVwoBiguJHzG7PuythMCPHXS8CVMLvzmvgEbu4Tzu",
|
"YtrDka402BOAEwywx03Vz4QlVwoBiguJHzG7PuythMCPHXS8CVMLvzmvgEbu4Tzu",
|
||||||
[]string{"CGO_ENABLED=0"}, `
|
[]string{"CGO_ENABLED=0"}, `
|
||||||
sed -i \
|
sed -i \
|
||||||
's,/lib/ld-musl-`+t.linuxArch()+`.so.1,/system/bin/linker,' \
|
's,/lib/ld-musl-`+linuxArch()+`.so.1,/system/bin/linker,' \
|
||||||
cmd/link/internal/`+t.arch+`/obj.go
|
cmd/link/internal/`+arch+`/obj.go
|
||||||
|
|
||||||
rm \
|
rm \
|
||||||
crypto/tls/handshake_client_test.go \
|
crypto/tls/handshake_client_test.go \
|
||||||
@@ -141,39 +117,43 @@ echo \
|
|||||||
'type syscallDescriptor = int' >> \
|
'type syscallDescriptor = int' >> \
|
||||||
os/rawconn_test.go
|
os/rawconn_test.go
|
||||||
`, go119,
|
`, go119,
|
||||||
)
|
)
|
||||||
|
|
||||||
go123 := t.newGo(
|
go123 := t.newGo(
|
||||||
"1.23.12",
|
"1.23.12",
|
||||||
"wcI32bl1tkqbgcelGtGWPI4RtlEddd-PTd76Eb-k7nXA5LbE9yTNdIL9QSOOxMOs",
|
"wcI32bl1tkqbgcelGtGWPI4RtlEddd-PTd76Eb-k7nXA5LbE9yTNdIL9QSOOxMOs",
|
||||||
[]string{"CGO_ENABLED=0"}, `
|
[]string{"CGO_ENABLED=0"}, `
|
||||||
sed -i \
|
sed -i \
|
||||||
's,/lib/ld-musl-`+t.linuxArch()+`.so.1,/system/bin/linker,' \
|
's,/lib/ld-musl-`+linuxArch()+`.so.1,/system/bin/linker,' \
|
||||||
cmd/link/internal/`+t.arch+`/obj.go
|
cmd/link/internal/`+arch+`/obj.go
|
||||||
`, go121,
|
`, go121,
|
||||||
)
|
)
|
||||||
|
|
||||||
go125 := t.newGo(
|
go125 := t.newGo(
|
||||||
"1.25.10",
|
"1.25.10",
|
||||||
"TwKwatkpwal-j9U2sDSRPEdM3YesI4Gm88YgGV59wtU-L85K9gA7UPy9SCxn6PMb",
|
"TwKwatkpwal-j9U2sDSRPEdM3YesI4Gm88YgGV59wtU-L85K9gA7UPy9SCxn6PMb",
|
||||||
[]string{"CGO_ENABLED=0"}, `
|
[]string{"CGO_ENABLED=0"}, `
|
||||||
sed -i \
|
sed -i \
|
||||||
's,/lib/ld-musl-`+t.linuxArch()+`.so.1,/system/bin/linker,' \
|
's,/lib/ld-musl-`+linuxArch()+`.so.1,/system/bin/linker,' \
|
||||||
cmd/link/internal/`+t.arch+`/obj.go
|
cmd/link/internal/`+arch+`/obj.go
|
||||||
|
|
||||||
rm \
|
rm \
|
||||||
os/root_unix_test.go \
|
os/root_unix_test.go \
|
||||||
net/smtp/smtp_test.go
|
net/smtp/smtp_test.go
|
||||||
`, go123,
|
`, go123,
|
||||||
)
|
)
|
||||||
|
|
||||||
return &meta, t.newGo(
|
const (
|
||||||
version,
|
version = "1.26.3"
|
||||||
checksum,
|
checksum = "lEiFocZFnN5fKvZzmwVdqc9pYUjAuhzqZGbuiOqxUP4XdcY8yECisKcqsQ_eNn1N"
|
||||||
finalEnv, `
|
)
|
||||||
|
return t.newGo(
|
||||||
|
version,
|
||||||
|
checksum,
|
||||||
|
finalEnv, `
|
||||||
sed -i \
|
sed -i \
|
||||||
's,/lib/ld-musl-`+t.linuxArch()+`.so.1,/system/bin/linker,' \
|
's,/lib/ld-musl-`+linuxArch()+`.so.1,/system/bin/linker,' \
|
||||||
cmd/link/internal/`+t.arch+`/obj.go
|
cmd/link/internal/`+arch+`/obj.go
|
||||||
sed -i \
|
sed -i \
|
||||||
's/cpu.X86.HasAVX512VBMI/& \&\& cpu.X86.HasPOPCNT/' \
|
's/cpu.X86.HasAVX512VBMI/& \&\& cpu.X86.HasPOPCNT/' \
|
||||||
internal/runtime/gc/scan/scan_amd64.go
|
internal/runtime/gc/scan/scan_amd64.go
|
||||||
@@ -183,7 +163,16 @@ rm \
|
|||||||
cmd/cgo/internal/testsanitizers/tsan_test.go \
|
cmd/cgo/internal/testsanitizers/tsan_test.go \
|
||||||
cmd/cgo/internal/testsanitizers/cshared_test.go
|
cmd/cgo/internal/testsanitizers/cshared_test.go
|
||||||
`, go125,
|
`, go125,
|
||||||
)
|
), version
|
||||||
|
}
|
||||||
})
|
func init() {
|
||||||
|
artifactsM[Go] = Metadata{
|
||||||
|
f: Toolchain.newGoLatest,
|
||||||
|
|
||||||
|
Name: "go",
|
||||||
|
Description: "the Go programming language toolchain",
|
||||||
|
Website: "https://go.dev/",
|
||||||
|
|
||||||
|
ID: 1227,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
60
internal/rosa/gtk.go
Normal file
60
internal/rosa/gtk.go
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import (
|
||||||
|
"hakurei.app/fhs"
|
||||||
|
"hakurei.app/internal/pkg"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (t Toolchain) newGLib() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "2.88.1"
|
||||||
|
checksum = "Rkszn6W4RHjyspyqfXdVAVawdwDJCuS0Zu0f7qot7tbJhnw2fUDoUUJB40m-1MCX"
|
||||||
|
)
|
||||||
|
return t.NewPackage("glib", version, t.newTagRemote(
|
||||||
|
"https://gitlab.gnome.org/GNOME/glib.git",
|
||||||
|
version, checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
Paths: []pkg.ExecPath{
|
||||||
|
pkg.Path(fhs.AbsEtc.Append(
|
||||||
|
"machine-id",
|
||||||
|
), false, pkg.NewFile(
|
||||||
|
"glib-machine-id",
|
||||||
|
[]byte("ffffffffffffffffffffffffffffffff\n"),
|
||||||
|
)),
|
||||||
|
pkg.Path(AbsSystem.Append(
|
||||||
|
"var/lib/dbus/machine-id",
|
||||||
|
), false, pkg.NewFile(
|
||||||
|
"glib-machine-id",
|
||||||
|
[]byte("fefefefefefefefefefefefefefefefe\n"),
|
||||||
|
)),
|
||||||
|
},
|
||||||
|
}, &MesonHelper{
|
||||||
|
Setup: []KV{
|
||||||
|
{"Ddefault_library", "both"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
PythonPackaging,
|
||||||
|
Bash,
|
||||||
|
|
||||||
|
PCRE2,
|
||||||
|
Libffi,
|
||||||
|
Zlib,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[GLib] = Metadata{
|
||||||
|
f: Toolchain.newGLib,
|
||||||
|
|
||||||
|
Name: "glib",
|
||||||
|
Description: "the GNU library of miscellaneous stuff",
|
||||||
|
Website: "https://developer.gnome.org/glib/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
PCRE2,
|
||||||
|
Libffi,
|
||||||
|
Zlib,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 10024,
|
||||||
|
}
|
||||||
|
}
|
||||||
113
internal/rosa/hakurei.go
Normal file
113
internal/rosa/hakurei.go
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newHakurei(
|
||||||
|
suffix, script string,
|
||||||
|
withHostname bool,
|
||||||
|
) pkg.Artifact {
|
||||||
|
hostname := `
|
||||||
|
echo 'Building test helper (hostname).'
|
||||||
|
go build -o /bin/hostname /usr/src/hostname/main.go
|
||||||
|
`
|
||||||
|
if !withHostname {
|
||||||
|
hostname = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
return t.New("hakurei"+suffix+"-"+hakureiVersion, 0, t.AppendPresets(nil,
|
||||||
|
Go,
|
||||||
|
PkgConfig,
|
||||||
|
|
||||||
|
// dist tarball
|
||||||
|
Gzip,
|
||||||
|
|
||||||
|
// statically linked
|
||||||
|
Libseccomp,
|
||||||
|
ACL,
|
||||||
|
Fuse,
|
||||||
|
XCB,
|
||||||
|
Wayland,
|
||||||
|
WaylandProtocols,
|
||||||
|
|
||||||
|
KernelHeaders,
|
||||||
|
), nil, []string{
|
||||||
|
"CGO_ENABLED=1",
|
||||||
|
"GOCACHE=/tmp/gocache",
|
||||||
|
"CC=clang -O3 -Werror",
|
||||||
|
}, hostname+`
|
||||||
|
cd /usr/src/hakurei
|
||||||
|
|
||||||
|
HAKUREI_VERSION='v`+hakureiVersion+`'
|
||||||
|
`+script, pkg.Path(AbsUsrSrc.Append("hakurei"), true, t.NewPatchedSource(
|
||||||
|
"hakurei", hakureiVersion, hakureiSource, false, hakureiPatches...,
|
||||||
|
)), pkg.Path(AbsUsrSrc.Append("hostname", "main.go"), false, pkg.NewFile(
|
||||||
|
"hostname.go",
|
||||||
|
[]byte(`
|
||||||
|
package main
|
||||||
|
|
||||||
|
import "os"
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
if name, err := os.Hostname(); err != nil {
|
||||||
|
panic(err)
|
||||||
|
} else {
|
||||||
|
os.Stdout.WriteString(name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`),
|
||||||
|
)))
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Hakurei] = Metadata{
|
||||||
|
f: func(t Toolchain) (pkg.Artifact, string) {
|
||||||
|
return t.newHakurei("", `
|
||||||
|
mkdir -p /work/system/libexec/hakurei/
|
||||||
|
|
||||||
|
echo "Building hakurei for $(go env GOOS)/$(go env GOARCH)."
|
||||||
|
go generate ./...
|
||||||
|
go build -trimpath -tags=rosa -o /work/system/libexec/hakurei -ldflags="-s -w
|
||||||
|
-buildid=
|
||||||
|
-linkmode external
|
||||||
|
-extldflags=-static
|
||||||
|
-X hakurei.app/internal/info.buildVersion=${HAKUREI_VERSION}
|
||||||
|
-X hakurei.app/internal/info.hakureiPath=/system/bin/hakurei
|
||||||
|
-X hakurei.app/internal/info.hsuPath=/system/bin/hsu
|
||||||
|
-X main.hakureiPath=/system/bin/hakurei
|
||||||
|
" ./...
|
||||||
|
echo
|
||||||
|
|
||||||
|
echo '##### Testing hakurei.'
|
||||||
|
go test -ldflags='-buildid= -linkmode external -extldflags=-static' ./...
|
||||||
|
echo
|
||||||
|
|
||||||
|
mkdir -p /work/system/bin/
|
||||||
|
(cd /work/system/libexec/hakurei && mv \
|
||||||
|
hakurei \
|
||||||
|
sharefs \
|
||||||
|
../../bin/)
|
||||||
|
`, true), hakureiVersion
|
||||||
|
},
|
||||||
|
|
||||||
|
Name: "hakurei",
|
||||||
|
Description: "low-level userspace tooling for Rosa OS",
|
||||||
|
Website: "https://hakurei.app/",
|
||||||
|
|
||||||
|
ID: 388834,
|
||||||
|
}
|
||||||
|
artifactsM[HakureiDist] = Metadata{
|
||||||
|
f: func(t Toolchain) (pkg.Artifact, string) {
|
||||||
|
name := "all"
|
||||||
|
if presetOpts&OptSkipCheck != 0 {
|
||||||
|
name = "make"
|
||||||
|
}
|
||||||
|
return t.newHakurei("-dist", `
|
||||||
|
export HAKUREI_VERSION
|
||||||
|
DESTDIR=/work /usr/src/hakurei/`+name+`.sh
|
||||||
|
`, true), hakureiVersion
|
||||||
|
},
|
||||||
|
|
||||||
|
Name: "hakurei-dist",
|
||||||
|
Description: "low-level userspace tooling for Rosa OS (distribution tarball)",
|
||||||
|
Website: "https://hakurei.app/",
|
||||||
|
}
|
||||||
|
}
|
||||||
26
internal/rosa/hakurei_current.go
Normal file
26
internal/rosa/hakurei_current.go
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
//go:build current
|
||||||
|
|
||||||
|
package rosa
|
||||||
|
|
||||||
|
import (
|
||||||
|
_ "embed"
|
||||||
|
|
||||||
|
"hakurei.app/internal/pkg"
|
||||||
|
)
|
||||||
|
|
||||||
|
const hakureiVersion = "1.0-current"
|
||||||
|
|
||||||
|
// hakureiSourceTarball is a compressed tarball of the hakurei source code.
|
||||||
|
//
|
||||||
|
//go:generate tar -zc -C ../.. --exclude .git --exclude *.tar.gz -f hakurei_current.tar.gz .
|
||||||
|
//go:embed hakurei_current.tar.gz
|
||||||
|
var hakureiSourceTarball []byte
|
||||||
|
|
||||||
|
// hakureiSource is the source code at the time this package is compiled.
|
||||||
|
var hakureiSource = pkg.NewTar(pkg.NewFile(
|
||||||
|
"hakurei-current.tar.gz",
|
||||||
|
hakureiSourceTarball,
|
||||||
|
), pkg.TarGzip)
|
||||||
|
|
||||||
|
// hakureiPatches are patches applied against the compile-time source tree.
|
||||||
|
var hakureiPatches []KV
|
||||||
18
internal/rosa/hakurei_release.go
Normal file
18
internal/rosa/hakurei_release.go
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
//go:build !current
|
||||||
|
|
||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
const hakureiVersion = "0.4.2"
|
||||||
|
|
||||||
|
// hakureiSource is the source code of a hakurei release.
|
||||||
|
var hakureiSource = newTar(
|
||||||
|
"https://git.gensokyo.uk/rosa/hakurei/archive/"+
|
||||||
|
"v"+hakureiVersion+".tar.gz",
|
||||||
|
"jadgaOrxv5ABGvzQ_Rk0aPGz7U8K-427TbMhQNQ32scSizEnlR44Pu7NoWYWVZWq",
|
||||||
|
pkg.TarGzip,
|
||||||
|
)
|
||||||
|
|
||||||
|
// hakureiPatches are patches applied against a hakurei release.
|
||||||
|
var hakureiPatches []KV
|
||||||
34
internal/rosa/hwdata.go
Normal file
34
internal/rosa/hwdata.go
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newHwdata() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "0.407"
|
||||||
|
checksum = "6p1XD0CRuzt6hLfjv4ShKBW934BexmoPkRrmwxD4J63fBVCzVBRHyF8pVJdW_Xjm"
|
||||||
|
)
|
||||||
|
return t.NewPackage("hwdata", version, newFromGitHub(
|
||||||
|
"vcrhonek/hwdata",
|
||||||
|
"v"+version, checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
Writable: true,
|
||||||
|
EnterSource: true,
|
||||||
|
}, &MakeHelper{
|
||||||
|
// awk: fatal: cannot open file `hwdata.spec' for reading: No such file or directory
|
||||||
|
InPlace: true,
|
||||||
|
|
||||||
|
// lspci: Unknown option 'A' (see "lspci --help")
|
||||||
|
SkipCheck: true,
|
||||||
|
}), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Hwdata] = Metadata{
|
||||||
|
f: Toolchain.newHwdata,
|
||||||
|
|
||||||
|
Name: "hwdata",
|
||||||
|
Description: "contains various hardware identification and configuration data",
|
||||||
|
Website: "https://github.com/vcrhonek/hwdata",
|
||||||
|
|
||||||
|
ID: 5387,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -6,46 +6,70 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
meta := Metadata{
|
artifactsM[EarlyInit] = Metadata{
|
||||||
Name: "system-image",
|
Name: "earlyinit",
|
||||||
Description: "Rosa OS system image",
|
Description: "Rosa OS initramfs init program",
|
||||||
Version: Unversioned,
|
|
||||||
}
|
|
||||||
native.MustRegister(meta.Name, func(t Toolchain) (*Metadata, pkg.Artifact) {
|
|
||||||
return &meta, t.New("system.img", TNoToolchain, t.Append(nil,
|
|
||||||
H("squashfs-tools"),
|
|
||||||
), nil, nil, `
|
|
||||||
mksquashfs /mnt/system /work/system.img
|
|
||||||
`, pkg.Path(fhs.AbsRoot.Append("mnt"), false, t.Append(nil,
|
|
||||||
_musl,
|
|
||||||
_mksh,
|
|
||||||
_toybox,
|
|
||||||
|
|
||||||
H("kmod"),
|
f: func(t Toolchain) (pkg.Artifact, string) {
|
||||||
H("kernel"),
|
return t.newHakurei("-early-init", `
|
||||||
H("firmware"),
|
mkdir -p /work/system/libexec/hakurei/
|
||||||
)...))
|
|
||||||
})
|
echo '# Building earlyinit.'
|
||||||
|
go build -trimpath -v -o /work/system/libexec/hakurei -ldflags="-s -w
|
||||||
|
-buildid=
|
||||||
|
-linkmode external
|
||||||
|
-extldflags=-static
|
||||||
|
-X hakurei.app/internal/info.buildVersion=${HAKUREI_VERSION}
|
||||||
|
" ./cmd/earlyinit
|
||||||
|
echo
|
||||||
|
`, false), Unversioned
|
||||||
|
},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newImageSystem() (pkg.Artifact, string) {
|
||||||
|
return t.New("system.img", TNoToolchain, t.AppendPresets(nil,
|
||||||
|
SquashfsTools,
|
||||||
|
), nil, nil, `
|
||||||
|
mksquashfs /mnt/system /work/system.img
|
||||||
|
`, pkg.Path(fhs.AbsRoot.Append("mnt"), false, t.AppendPresets(nil,
|
||||||
|
Musl,
|
||||||
|
Mksh,
|
||||||
|
Toybox,
|
||||||
|
|
||||||
|
Kmod,
|
||||||
|
Kernel,
|
||||||
|
Firmware,
|
||||||
|
)...)), Unversioned
|
||||||
|
}
|
||||||
func init() {
|
func init() {
|
||||||
meta := Metadata{
|
artifactsM[ImageSystem] = Metadata{
|
||||||
Name: "initramfs-image",
|
Name: "system-image",
|
||||||
Description: "Rosa OS initramfs image",
|
Description: "Rosa OS system image",
|
||||||
Version: Unversioned,
|
|
||||||
|
f: Toolchain.newImageSystem,
|
||||||
}
|
}
|
||||||
native.MustRegister(meta.Name, func(t Toolchain) (*Metadata, pkg.Artifact) {
|
}
|
||||||
return &meta, t.New("initramfs", TNoToolchain, t.Append(nil,
|
|
||||||
_zstd,
|
func (t Toolchain) newImageInitramfs() (pkg.Artifact, string) {
|
||||||
H("earlyinit"),
|
return t.New("initramfs", TNoToolchain, t.AppendPresets(nil,
|
||||||
H("gen_init_cpio"),
|
Zstd,
|
||||||
), nil, nil, `
|
EarlyInit,
|
||||||
|
GenInitCPIO,
|
||||||
|
), nil, nil, `
|
||||||
gen_init_cpio -t 4294967295 -c /usr/src/initramfs | zstd > /work/initramfs.zst
|
gen_init_cpio -t 4294967295 -c /usr/src/initramfs | zstd > /work/initramfs.zst
|
||||||
`, pkg.Path(AbsUsrSrc.Append("initramfs"), false, pkg.NewFile("initramfs", []byte(`
|
`, pkg.Path(AbsUsrSrc.Append("initramfs"), false, pkg.NewFile("initramfs", []byte(`
|
||||||
dir /dev 0755 0 0
|
dir /dev 0755 0 0
|
||||||
nod /dev/null 0666 0 0 c 1 3
|
nod /dev/null 0666 0 0 c 1 3
|
||||||
nod /dev/console 0600 0 0 c 5 1
|
nod /dev/console 0600 0 0 c 5 1
|
||||||
file /init /system/libexec/hakurei/earlyinit 0555 0 0
|
file /init /system/libexec/hakurei/earlyinit 0555 0 0
|
||||||
`))))
|
`)))), Unversioned
|
||||||
})
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[ImageInitramfs] = Metadata{
|
||||||
|
Name: "initramfs-image",
|
||||||
|
Description: "Rosa OS initramfs image",
|
||||||
|
|
||||||
|
f: Toolchain.newImageInitramfs,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,115 @@
|
|||||||
From f54a91f5337cd918eb86cf600320d25b6cfd8209 Mon Sep 17 00:00:00 2001
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
const kernelVersion = "6.12.87"
|
||||||
|
|
||||||
|
var kernelSource = newTar(
|
||||||
|
"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/"+
|
||||||
|
"snapshot/linux-"+kernelVersion+".tar.gz",
|
||||||
|
"QTl5teIy0K5KsOLYGHQ3FbnPCZNRH2bySXVzghiOoHDdM3zAcSPUkmdly85lMzHx",
|
||||||
|
pkg.TarGzip,
|
||||||
|
)
|
||||||
|
|
||||||
|
func (t Toolchain) newKernelSource() (pkg.Artifact, string) {
|
||||||
|
return t.New("kernel-"+kernelVersion+"-src", 0, nil, nil, nil, `
|
||||||
|
mkdir -p /work/usr/src/
|
||||||
|
cp -r /usr/src/linux /work/usr/src/
|
||||||
|
chmod -R +w /work/usr/src/linux/
|
||||||
|
`, pkg.Path(AbsUsrSrc.Append("linux"), false, kernelSource)), kernelVersion
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[KernelSource] = Metadata{
|
||||||
|
f: Toolchain.newKernelSource,
|
||||||
|
|
||||||
|
Name: "kernel-source",
|
||||||
|
Description: "a writable kernel source tree installed to /usr/src/linux",
|
||||||
|
Website: "https://kernel.org/",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newKernelHeaders() (pkg.Artifact, string) {
|
||||||
|
const checksum = "lCmBNcMeUmXifg0vecKOPy3GAaFcJSmOPnf3wit9xYTDSTsFADPt1xxUFfmTn1fD"
|
||||||
|
return t.NewPackage("kernel-headers", kernelVersion, kernelSource, &PackageAttr{
|
||||||
|
Flag: TEarly,
|
||||||
|
KnownChecksum: new(mustDecode(checksum)),
|
||||||
|
|
||||||
|
Paths: []pkg.ExecPath{
|
||||||
|
// updated manually for API changes
|
||||||
|
pkg.Path(AbsUsrSrc.Append("version.h"), false, pkg.NewFile(
|
||||||
|
"version.h", []byte(`#define LINUX_VERSION_CODE 396372
|
||||||
|
#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + ((c) > 255 ? 255 : (c)))
|
||||||
|
#define LINUX_VERSION_MAJOR 6
|
||||||
|
#define LINUX_VERSION_PATCHLEVEL 12
|
||||||
|
#define LINUX_VERSION_SUBLEVEL 84
|
||||||
|
`),
|
||||||
|
)),
|
||||||
|
},
|
||||||
|
}, &MakeHelper{
|
||||||
|
SkipConfigure: true,
|
||||||
|
|
||||||
|
SkipCheck: true,
|
||||||
|
Make: []string{
|
||||||
|
"-f /usr/src/kernel-headers/Makefile",
|
||||||
|
"O=/tmp/kbuild",
|
||||||
|
"LLVM=1",
|
||||||
|
`HOSTLDFLAGS="${LDFLAGS:-''}"`,
|
||||||
|
"INSTALL_HDR_PATH=/work/system",
|
||||||
|
"headers_install",
|
||||||
|
},
|
||||||
|
Install: `
|
||||||
|
cat \
|
||||||
|
/usr/src/version.h > \
|
||||||
|
/work/system/include/linux/version.h
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
Rsync,
|
||||||
|
), kernelVersion
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[KernelHeaders] = Metadata{
|
||||||
|
f: Toolchain.newKernelHeaders,
|
||||||
|
|
||||||
|
Name: "kernel-headers",
|
||||||
|
Description: "an installation of kernel headers",
|
||||||
|
Website: "https://kernel.org/",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newKernel() (pkg.Artifact, string) {
|
||||||
|
return t.NewPackage("kernel", kernelVersion, kernelSource, &PackageAttr{
|
||||||
|
Env: []string{
|
||||||
|
"PATH=/system/sbin",
|
||||||
|
},
|
||||||
|
ScriptEarly: `
|
||||||
|
install -Dm0400 \
|
||||||
|
/usr/src/.config \
|
||||||
|
/tmp/kbuild/.config
|
||||||
|
install -Dm0500 \
|
||||||
|
/usr/src/.installkernel \
|
||||||
|
/sbin/installkernel
|
||||||
|
`,
|
||||||
|
|
||||||
|
Paths: []pkg.ExecPath{
|
||||||
|
pkg.Path(AbsUsrSrc.Append(
|
||||||
|
".config",
|
||||||
|
), false, pkg.NewFile(".config", kernelConfig)),
|
||||||
|
pkg.Path(AbsUsrSrc.Append(
|
||||||
|
".installkernel",
|
||||||
|
), false, pkg.NewFile("installkernel", []byte(`#!/bin/sh -e
|
||||||
|
echo "Installing linux $1..."
|
||||||
|
cp -av "$2" "$4"
|
||||||
|
cp -av "$3" "$4"
|
||||||
|
`))),
|
||||||
|
pkg.Path(AbsUsrSrc.Append(
|
||||||
|
".depmod",
|
||||||
|
), false, pkg.NewFile("depmod", []byte(`#!/bin/sh
|
||||||
|
exec /system/sbin/depmod -m /lib/modules "$@"
|
||||||
|
`))),
|
||||||
|
},
|
||||||
|
|
||||||
|
Patches: []KV{
|
||||||
|
{"f54a91f5337cd918eb86cf600320d25b6cfd8209", `From f54a91f5337cd918eb86cf600320d25b6cfd8209 Mon Sep 17 00:00:00 2001
|
||||||
From: Nathan Chancellor <nathan@kernel.org>
|
From: Nathan Chancellor <nathan@kernel.org>
|
||||||
Date: Sat, 13 Dec 2025 19:58:10 +0900
|
Date: Sat, 13 Dec 2025 19:58:10 +0900
|
||||||
Subject: drm/amd/display: Reduce number of arguments of dcn30's
|
Subject: drm/amd/display: Reduce number of arguments of dcn30's
|
||||||
@@ -604,3 +715,635 @@ index abe51cf3aab2..a244504cc1f2 100644
|
|||||||
for (k = 0; k <= v->NumberOfActivePlanes - 1; k++) {
|
for (k = 0; k <= v->NumberOfActivePlanes - 1; k++) {
|
||||||
--
|
--
|
||||||
cgit 1.2.3-korg
|
cgit 1.2.3-korg
|
||||||
|
`},
|
||||||
|
|
||||||
|
{"6ce6fbfddc5b127e4f57c3b5bfdcf40239a4fc2f", `From 6ce6fbfddc5b127e4f57c3b5bfdcf40239a4fc2f Mon Sep 17 00:00:00 2001
|
||||||
|
From: Nathan Chancellor <nathan@kernel.org>
|
||||||
|
Date: Sat, 13 Dec 2025 19:58:11 +0900
|
||||||
|
Subject: drm/amd/display: Reduce number of arguments of dcn30's
|
||||||
|
CalculateWatermarksAndDRAMSpeedChangeSupport()
|
||||||
|
|
||||||
|
CalculateWatermarksAndDRAMSpeedChangeSupport() has a large number of
|
||||||
|
parameters, which must be passed on the stack. Most of the parameters
|
||||||
|
between the two callsites are the same, so they can be accessed through
|
||||||
|
the existing mode_lib pointer, instead of being passed as explicit
|
||||||
|
arguments. Doing this reduces the stack size of
|
||||||
|
dml30_ModeSupportAndSystemConfigurationFull() from 1912 bytes to 1840
|
||||||
|
bytes building for x86_64 with clang-22, helping stay under the 2048
|
||||||
|
byte limit for display_mode_vba_30.c.
|
||||||
|
|
||||||
|
Additionally, now that there is a pointer to mode_lib->vba available,
|
||||||
|
use 'v' consistently throughout the entire function.
|
||||||
|
|
||||||
|
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
|
||||||
|
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
|
||||||
|
(cherry picked from commit 563dfbefdf633c8d958398ddfa3955f9f40e47d9)
|
||||||
|
---
|
||||||
|
.../amd/display/dc/dml/dcn30/display_mode_vba_30.c | 287 +++++----------------
|
||||||
|
1 file changed, 66 insertions(+), 221 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/drivers/gpu/drm/amd/display/dc/dml/dcn30/display_mode_vba_30.c b/drivers/gpu/drm/amd/display/dc/dml/dcn30/display_mode_vba_30.c
|
||||||
|
index 2d19bb8de59c84..1df3412be3465d 100644
|
||||||
|
--- a/drivers/gpu/drm/amd/display/dc/dml/dcn30/display_mode_vba_30.c
|
||||||
|
+++ b/drivers/gpu/drm/amd/display/dc/dml/dcn30/display_mode_vba_30.c
|
||||||
|
@@ -265,62 +265,23 @@ static void CalculateDynamicMetadataParameters(
|
||||||
|
static void CalculateWatermarksAndDRAMSpeedChangeSupport(
|
||||||
|
struct display_mode_lib *mode_lib,
|
||||||
|
unsigned int PrefetchMode,
|
||||||
|
- unsigned int NumberOfActivePlanes,
|
||||||
|
- unsigned int MaxLineBufferLines,
|
||||||
|
- unsigned int LineBufferSize,
|
||||||
|
- unsigned int DPPOutputBufferPixels,
|
||||||
|
- unsigned int DETBufferSizeInKByte,
|
||||||
|
- unsigned int WritebackInterfaceBufferSize,
|
||||||
|
double DCFCLK,
|
||||||
|
double ReturnBW,
|
||||||
|
- bool GPUVMEnable,
|
||||||
|
- unsigned int dpte_group_bytes[],
|
||||||
|
- unsigned int MetaChunkSize,
|
||||||
|
double UrgentLatency,
|
||||||
|
double ExtraLatency,
|
||||||
|
- double WritebackLatency,
|
||||||
|
- double WritebackChunkSize,
|
||||||
|
double SOCCLK,
|
||||||
|
- double DRAMClockChangeLatency,
|
||||||
|
- double SRExitTime,
|
||||||
|
- double SREnterPlusExitTime,
|
||||||
|
double DCFCLKDeepSleep,
|
||||||
|
unsigned int DPPPerPlane[],
|
||||||
|
- bool DCCEnable[],
|
||||||
|
double DPPCLK[],
|
||||||
|
unsigned int DETBufferSizeY[],
|
||||||
|
unsigned int DETBufferSizeC[],
|
||||||
|
unsigned int SwathHeightY[],
|
||||||
|
unsigned int SwathHeightC[],
|
||||||
|
- unsigned int LBBitPerPixel[],
|
||||||
|
double SwathWidthY[],
|
||||||
|
double SwathWidthC[],
|
||||||
|
- double HRatio[],
|
||||||
|
- double HRatioChroma[],
|
||||||
|
- unsigned int vtaps[],
|
||||||
|
- unsigned int VTAPsChroma[],
|
||||||
|
- double VRatio[],
|
||||||
|
- double VRatioChroma[],
|
||||||
|
- unsigned int HTotal[],
|
||||||
|
- double PixelClock[],
|
||||||
|
- unsigned int BlendingAndTiming[],
|
||||||
|
double BytePerPixelDETY[],
|
||||||
|
double BytePerPixelDETC[],
|
||||||
|
- double DSTXAfterScaler[],
|
||||||
|
- double DSTYAfterScaler[],
|
||||||
|
- bool WritebackEnable[],
|
||||||
|
- enum source_format_class WritebackPixelFormat[],
|
||||||
|
- double WritebackDestinationWidth[],
|
||||||
|
- double WritebackDestinationHeight[],
|
||||||
|
- double WritebackSourceHeight[],
|
||||||
|
- enum clock_change_support *DRAMClockChangeSupport,
|
||||||
|
- double *UrgentWatermark,
|
||||||
|
- double *WritebackUrgentWatermark,
|
||||||
|
- double *DRAMClockChangeWatermark,
|
||||||
|
- double *WritebackDRAMClockChangeWatermark,
|
||||||
|
- double *StutterExitWatermark,
|
||||||
|
- double *StutterEnterPlusExitWatermark,
|
||||||
|
- double *MinActiveDRAMClockChangeLatencySupported);
|
||||||
|
+ enum clock_change_support *DRAMClockChangeSupport);
|
||||||
|
static void CalculateDCFCLKDeepSleep(
|
||||||
|
struct display_mode_lib *mode_lib,
|
||||||
|
unsigned int NumberOfActivePlanes,
|
||||||
|
@@ -2646,62 +2607,23 @@ static void DISPCLKDPPCLKDCFCLKDeepSleepPrefetchParametersWatermarksAndPerforman
|
||||||
|
CalculateWatermarksAndDRAMSpeedChangeSupport(
|
||||||
|
mode_lib,
|
||||||
|
PrefetchMode,
|
||||||
|
- v->NumberOfActivePlanes,
|
||||||
|
- v->MaxLineBufferLines,
|
||||||
|
- v->LineBufferSize,
|
||||||
|
- v->DPPOutputBufferPixels,
|
||||||
|
- v->DETBufferSizeInKByte[0],
|
||||||
|
- v->WritebackInterfaceBufferSize,
|
||||||
|
v->DCFCLK,
|
||||||
|
v->ReturnBW,
|
||||||
|
- v->GPUVMEnable,
|
||||||
|
- v->dpte_group_bytes,
|
||||||
|
- v->MetaChunkSize,
|
||||||
|
v->UrgentLatency,
|
||||||
|
v->UrgentExtraLatency,
|
||||||
|
- v->WritebackLatency,
|
||||||
|
- v->WritebackChunkSize,
|
||||||
|
v->SOCCLK,
|
||||||
|
- v->FinalDRAMClockChangeLatency,
|
||||||
|
- v->SRExitTime,
|
||||||
|
- v->SREnterPlusExitTime,
|
||||||
|
v->DCFCLKDeepSleep,
|
||||||
|
v->DPPPerPlane,
|
||||||
|
- v->DCCEnable,
|
||||||
|
v->DPPCLK,
|
||||||
|
v->DETBufferSizeY,
|
||||||
|
v->DETBufferSizeC,
|
||||||
|
v->SwathHeightY,
|
||||||
|
v->SwathHeightC,
|
||||||
|
- v->LBBitPerPixel,
|
||||||
|
v->SwathWidthY,
|
||||||
|
v->SwathWidthC,
|
||||||
|
- v->HRatio,
|
||||||
|
- v->HRatioChroma,
|
||||||
|
- v->vtaps,
|
||||||
|
- v->VTAPsChroma,
|
||||||
|
- v->VRatio,
|
||||||
|
- v->VRatioChroma,
|
||||||
|
- v->HTotal,
|
||||||
|
- v->PixelClock,
|
||||||
|
- v->BlendingAndTiming,
|
||||||
|
v->BytePerPixelDETY,
|
||||||
|
v->BytePerPixelDETC,
|
||||||
|
- v->DSTXAfterScaler,
|
||||||
|
- v->DSTYAfterScaler,
|
||||||
|
- v->WritebackEnable,
|
||||||
|
- v->WritebackPixelFormat,
|
||||||
|
- v->WritebackDestinationWidth,
|
||||||
|
- v->WritebackDestinationHeight,
|
||||||
|
- v->WritebackSourceHeight,
|
||||||
|
- &DRAMClockChangeSupport,
|
||||||
|
- &v->UrgentWatermark,
|
||||||
|
- &v->WritebackUrgentWatermark,
|
||||||
|
- &v->DRAMClockChangeWatermark,
|
||||||
|
- &v->WritebackDRAMClockChangeWatermark,
|
||||||
|
- &v->StutterExitWatermark,
|
||||||
|
- &v->StutterEnterPlusExitWatermark,
|
||||||
|
- &v->MinActiveDRAMClockChangeLatencySupported);
|
||||||
|
+ &DRAMClockChangeSupport);
|
||||||
|
|
||||||
|
for (k = 0; k < v->NumberOfActivePlanes; ++k) {
|
||||||
|
if (v->WritebackEnable[k] == true) {
|
||||||
|
@@ -4895,62 +4817,23 @@ void dml30_ModeSupportAndSystemConfigurationFull(struct display_mode_lib *mode_l
|
||||||
|
CalculateWatermarksAndDRAMSpeedChangeSupport(
|
||||||
|
mode_lib,
|
||||||
|
v->PrefetchModePerState[i][j],
|
||||||
|
- v->NumberOfActivePlanes,
|
||||||
|
- v->MaxLineBufferLines,
|
||||||
|
- v->LineBufferSize,
|
||||||
|
- v->DPPOutputBufferPixels,
|
||||||
|
- v->DETBufferSizeInKByte[0],
|
||||||
|
- v->WritebackInterfaceBufferSize,
|
||||||
|
v->DCFCLKState[i][j],
|
||||||
|
v->ReturnBWPerState[i][j],
|
||||||
|
- v->GPUVMEnable,
|
||||||
|
- v->dpte_group_bytes,
|
||||||
|
- v->MetaChunkSize,
|
||||||
|
v->UrgLatency[i],
|
||||||
|
v->ExtraLatency,
|
||||||
|
- v->WritebackLatency,
|
||||||
|
- v->WritebackChunkSize,
|
||||||
|
v->SOCCLKPerState[i],
|
||||||
|
- v->FinalDRAMClockChangeLatency,
|
||||||
|
- v->SRExitTime,
|
||||||
|
- v->SREnterPlusExitTime,
|
||||||
|
v->ProjectedDCFCLKDeepSleep[i][j],
|
||||||
|
v->NoOfDPPThisState,
|
||||||
|
- v->DCCEnable,
|
||||||
|
v->RequiredDPPCLKThisState,
|
||||||
|
v->DETBufferSizeYThisState,
|
||||||
|
v->DETBufferSizeCThisState,
|
||||||
|
v->SwathHeightYThisState,
|
||||||
|
v->SwathHeightCThisState,
|
||||||
|
- v->LBBitPerPixel,
|
||||||
|
v->SwathWidthYThisState,
|
||||||
|
v->SwathWidthCThisState,
|
||||||
|
- v->HRatio,
|
||||||
|
- v->HRatioChroma,
|
||||||
|
- v->vtaps,
|
||||||
|
- v->VTAPsChroma,
|
||||||
|
- v->VRatio,
|
||||||
|
- v->VRatioChroma,
|
||||||
|
- v->HTotal,
|
||||||
|
- v->PixelClock,
|
||||||
|
- v->BlendingAndTiming,
|
||||||
|
v->BytePerPixelInDETY,
|
||||||
|
v->BytePerPixelInDETC,
|
||||||
|
- v->DSTXAfterScaler,
|
||||||
|
- v->DSTYAfterScaler,
|
||||||
|
- v->WritebackEnable,
|
||||||
|
- v->WritebackPixelFormat,
|
||||||
|
- v->WritebackDestinationWidth,
|
||||||
|
- v->WritebackDestinationHeight,
|
||||||
|
- v->WritebackSourceHeight,
|
||||||
|
- &v->DRAMClockChangeSupport[i][j],
|
||||||
|
- &v->UrgentWatermark,
|
||||||
|
- &v->WritebackUrgentWatermark,
|
||||||
|
- &v->DRAMClockChangeWatermark,
|
||||||
|
- &v->WritebackDRAMClockChangeWatermark,
|
||||||
|
- &v->StutterExitWatermark,
|
||||||
|
- &v->StutterEnterPlusExitWatermark,
|
||||||
|
- &v->MinActiveDRAMClockChangeLatencySupported);
|
||||||
|
+ &v->DRAMClockChangeSupport[i][j]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -5067,63 +4950,25 @@ void dml30_ModeSupportAndSystemConfigurationFull(struct display_mode_lib *mode_l
|
||||||
|
static void CalculateWatermarksAndDRAMSpeedChangeSupport(
|
||||||
|
struct display_mode_lib *mode_lib,
|
||||||
|
unsigned int PrefetchMode,
|
||||||
|
- unsigned int NumberOfActivePlanes,
|
||||||
|
- unsigned int MaxLineBufferLines,
|
||||||
|
- unsigned int LineBufferSize,
|
||||||
|
- unsigned int DPPOutputBufferPixels,
|
||||||
|
- unsigned int DETBufferSizeInKByte,
|
||||||
|
- unsigned int WritebackInterfaceBufferSize,
|
||||||
|
double DCFCLK,
|
||||||
|
double ReturnBW,
|
||||||
|
- bool GPUVMEnable,
|
||||||
|
- unsigned int dpte_group_bytes[],
|
||||||
|
- unsigned int MetaChunkSize,
|
||||||
|
double UrgentLatency,
|
||||||
|
double ExtraLatency,
|
||||||
|
- double WritebackLatency,
|
||||||
|
- double WritebackChunkSize,
|
||||||
|
double SOCCLK,
|
||||||
|
- double DRAMClockChangeLatency,
|
||||||
|
- double SRExitTime,
|
||||||
|
- double SREnterPlusExitTime,
|
||||||
|
double DCFCLKDeepSleep,
|
||||||
|
unsigned int DPPPerPlane[],
|
||||||
|
- bool DCCEnable[],
|
||||||
|
double DPPCLK[],
|
||||||
|
unsigned int DETBufferSizeY[],
|
||||||
|
unsigned int DETBufferSizeC[],
|
||||||
|
unsigned int SwathHeightY[],
|
||||||
|
unsigned int SwathHeightC[],
|
||||||
|
- unsigned int LBBitPerPixel[],
|
||||||
|
double SwathWidthY[],
|
||||||
|
double SwathWidthC[],
|
||||||
|
- double HRatio[],
|
||||||
|
- double HRatioChroma[],
|
||||||
|
- unsigned int vtaps[],
|
||||||
|
- unsigned int VTAPsChroma[],
|
||||||
|
- double VRatio[],
|
||||||
|
- double VRatioChroma[],
|
||||||
|
- unsigned int HTotal[],
|
||||||
|
- double PixelClock[],
|
||||||
|
- unsigned int BlendingAndTiming[],
|
||||||
|
double BytePerPixelDETY[],
|
||||||
|
double BytePerPixelDETC[],
|
||||||
|
- double DSTXAfterScaler[],
|
||||||
|
- double DSTYAfterScaler[],
|
||||||
|
- bool WritebackEnable[],
|
||||||
|
- enum source_format_class WritebackPixelFormat[],
|
||||||
|
- double WritebackDestinationWidth[],
|
||||||
|
- double WritebackDestinationHeight[],
|
||||||
|
- double WritebackSourceHeight[],
|
||||||
|
- enum clock_change_support *DRAMClockChangeSupport,
|
||||||
|
- double *UrgentWatermark,
|
||||||
|
- double *WritebackUrgentWatermark,
|
||||||
|
- double *DRAMClockChangeWatermark,
|
||||||
|
- double *WritebackDRAMClockChangeWatermark,
|
||||||
|
- double *StutterExitWatermark,
|
||||||
|
- double *StutterEnterPlusExitWatermark,
|
||||||
|
- double *MinActiveDRAMClockChangeLatencySupported)
|
||||||
|
+ enum clock_change_support *DRAMClockChangeSupport)
|
||||||
|
{
|
||||||
|
+ struct vba_vars_st *v = &mode_lib->vba;
|
||||||
|
double EffectiveLBLatencyHidingY = 0;
|
||||||
|
double EffectiveLBLatencyHidingC = 0;
|
||||||
|
double LinesInDETY[DC__NUM_DPP__MAX] = { 0 };
|
||||||
|
@@ -5142,101 +4987,101 @@ static void CalculateWatermarksAndDRAMSpeedChangeSupport(
|
||||||
|
double WritebackDRAMClockChangeLatencyHiding = 0;
|
||||||
|
unsigned int k, j;
|
||||||
|
|
||||||
|
- mode_lib->vba.TotalActiveDPP = 0;
|
||||||
|
- mode_lib->vba.TotalDCCActiveDPP = 0;
|
||||||
|
- for (k = 0; k < NumberOfActivePlanes; ++k) {
|
||||||
|
- mode_lib->vba.TotalActiveDPP = mode_lib->vba.TotalActiveDPP + DPPPerPlane[k];
|
||||||
|
- if (DCCEnable[k] == true) {
|
||||||
|
- mode_lib->vba.TotalDCCActiveDPP = mode_lib->vba.TotalDCCActiveDPP + DPPPerPlane[k];
|
||||||
|
+ v->TotalActiveDPP = 0;
|
||||||
|
+ v->TotalDCCActiveDPP = 0;
|
||||||
|
+ for (k = 0; k < v->NumberOfActivePlanes; ++k) {
|
||||||
|
+ v->TotalActiveDPP = v->TotalActiveDPP + DPPPerPlane[k];
|
||||||
|
+ if (v->DCCEnable[k] == true) {
|
||||||
|
+ v->TotalDCCActiveDPP = v->TotalDCCActiveDPP + DPPPerPlane[k];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- *UrgentWatermark = UrgentLatency + ExtraLatency;
|
||||||
|
+ v->UrgentWatermark = UrgentLatency + ExtraLatency;
|
||||||
|
|
||||||
|
- *DRAMClockChangeWatermark = DRAMClockChangeLatency + *UrgentWatermark;
|
||||||
|
+ v->DRAMClockChangeWatermark = v->FinalDRAMClockChangeLatency + v->UrgentWatermark;
|
||||||
|
|
||||||
|
- mode_lib->vba.TotalActiveWriteback = 0;
|
||||||
|
- for (k = 0; k < NumberOfActivePlanes; ++k) {
|
||||||
|
- if (WritebackEnable[k] == true) {
|
||||||
|
- mode_lib->vba.TotalActiveWriteback = mode_lib->vba.TotalActiveWriteback + 1;
|
||||||
|
+ v->TotalActiveWriteback = 0;
|
||||||
|
+ for (k = 0; k < v->NumberOfActivePlanes; ++k) {
|
||||||
|
+ if (v->WritebackEnable[k] == true) {
|
||||||
|
+ v->TotalActiveWriteback = v->TotalActiveWriteback + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- if (mode_lib->vba.TotalActiveWriteback <= 1) {
|
||||||
|
- *WritebackUrgentWatermark = WritebackLatency;
|
||||||
|
+ if (v->TotalActiveWriteback <= 1) {
|
||||||
|
+ v->WritebackUrgentWatermark = v->WritebackLatency;
|
||||||
|
} else {
|
||||||
|
- *WritebackUrgentWatermark = WritebackLatency + WritebackChunkSize * 1024.0 / 32.0 / SOCCLK;
|
||||||
|
+ v->WritebackUrgentWatermark = v->WritebackLatency + v->WritebackChunkSize * 1024.0 / 32.0 / SOCCLK;
|
||||||
|
}
|
||||||
|
|
||||||
|
- if (mode_lib->vba.TotalActiveWriteback <= 1) {
|
||||||
|
- *WritebackDRAMClockChangeWatermark = DRAMClockChangeLatency + WritebackLatency;
|
||||||
|
+ if (v->TotalActiveWriteback <= 1) {
|
||||||
|
+ v->WritebackDRAMClockChangeWatermark = v->FinalDRAMClockChangeLatency + v->WritebackLatency;
|
||||||
|
} else {
|
||||||
|
- *WritebackDRAMClockChangeWatermark = DRAMClockChangeLatency + WritebackLatency + WritebackChunkSize * 1024.0 / 32.0 / SOCCLK;
|
||||||
|
+ v->WritebackDRAMClockChangeWatermark = v->FinalDRAMClockChangeLatency + v->WritebackLatency + v->WritebackChunkSize * 1024.0 / 32.0 / SOCCLK;
|
||||||
|
}
|
||||||
|
|
||||||
|
- for (k = 0; k < NumberOfActivePlanes; ++k) {
|
||||||
|
+ for (k = 0; k < v->NumberOfActivePlanes; ++k) {
|
||||||
|
|
||||||
|
- mode_lib->vba.LBLatencyHidingSourceLinesY = dml_min((double) MaxLineBufferLines, dml_floor(LineBufferSize / LBBitPerPixel[k] / (SwathWidthY[k] / dml_max(HRatio[k], 1.0)), 1)) - (vtaps[k] - 1);
|
||||||
|
+ v->LBLatencyHidingSourceLinesY = dml_min((double) v->MaxLineBufferLines, dml_floor(v->LineBufferSize / v->LBBitPerPixel[k] / (SwathWidthY[k] / dml_max(v->HRatio[k], 1.0)), 1)) - (v->vtaps[k] - 1);
|
||||||
|
|
||||||
|
- mode_lib->vba.LBLatencyHidingSourceLinesC = dml_min((double) MaxLineBufferLines, dml_floor(LineBufferSize / LBBitPerPixel[k] / (SwathWidthC[k] / dml_max(HRatioChroma[k], 1.0)), 1)) - (VTAPsChroma[k] - 1);
|
||||||
|
+ v->LBLatencyHidingSourceLinesC = dml_min((double) v->MaxLineBufferLines, dml_floor(v->LineBufferSize / v->LBBitPerPixel[k] / (SwathWidthC[k] / dml_max(v->HRatioChroma[k], 1.0)), 1)) - (v->VTAPsChroma[k] - 1);
|
||||||
|
|
||||||
|
- EffectiveLBLatencyHidingY = mode_lib->vba.LBLatencyHidingSourceLinesY / VRatio[k] * (HTotal[k] / PixelClock[k]);
|
||||||
|
+ EffectiveLBLatencyHidingY = v->LBLatencyHidingSourceLinesY / v->VRatio[k] * (v->HTotal[k] / v->PixelClock[k]);
|
||||||
|
|
||||||
|
- EffectiveLBLatencyHidingC = mode_lib->vba.LBLatencyHidingSourceLinesC / VRatioChroma[k] * (HTotal[k] / PixelClock[k]);
|
||||||
|
+ EffectiveLBLatencyHidingC = v->LBLatencyHidingSourceLinesC / v->VRatioChroma[k] * (v->HTotal[k] / v->PixelClock[k]);
|
||||||
|
|
||||||
|
LinesInDETY[k] = (double) DETBufferSizeY[k] / BytePerPixelDETY[k] / SwathWidthY[k];
|
||||||
|
LinesInDETYRoundedDownToSwath[k] = dml_floor(LinesInDETY[k], SwathHeightY[k]);
|
||||||
|
- FullDETBufferingTimeY[k] = LinesInDETYRoundedDownToSwath[k] * (HTotal[k] / PixelClock[k]) / VRatio[k];
|
||||||
|
+ FullDETBufferingTimeY[k] = LinesInDETYRoundedDownToSwath[k] * (v->HTotal[k] / v->PixelClock[k]) / v->VRatio[k];
|
||||||
|
if (BytePerPixelDETC[k] > 0) {
|
||||||
|
- LinesInDETC = mode_lib->vba.DETBufferSizeC[k] / BytePerPixelDETC[k] / SwathWidthC[k];
|
||||||
|
+ LinesInDETC = v->DETBufferSizeC[k] / BytePerPixelDETC[k] / SwathWidthC[k];
|
||||||
|
LinesInDETCRoundedDownToSwath = dml_floor(LinesInDETC, SwathHeightC[k]);
|
||||||
|
- FullDETBufferingTimeC = LinesInDETCRoundedDownToSwath * (HTotal[k] / PixelClock[k]) / VRatioChroma[k];
|
||||||
|
+ FullDETBufferingTimeC = LinesInDETCRoundedDownToSwath * (v->HTotal[k] / v->PixelClock[k]) / v->VRatioChroma[k];
|
||||||
|
} else {
|
||||||
|
LinesInDETC = 0;
|
||||||
|
FullDETBufferingTimeC = 999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
- ActiveDRAMClockChangeLatencyMarginY = EffectiveLBLatencyHidingY + FullDETBufferingTimeY[k] - *UrgentWatermark - (HTotal[k] / PixelClock[k]) * (DSTXAfterScaler[k] / HTotal[k] + DSTYAfterScaler[k]) - *DRAMClockChangeWatermark;
|
||||||
|
+ ActiveDRAMClockChangeLatencyMarginY = EffectiveLBLatencyHidingY + FullDETBufferingTimeY[k] - v->UrgentWatermark - (v->HTotal[k] / v->PixelClock[k]) * (v->DSTXAfterScaler[k] / v->HTotal[k] + v->DSTYAfterScaler[k]) - v->DRAMClockChangeWatermark;
|
||||||
|
|
||||||
|
- if (NumberOfActivePlanes > 1) {
|
||||||
|
- ActiveDRAMClockChangeLatencyMarginY = ActiveDRAMClockChangeLatencyMarginY - (1 - 1.0 / NumberOfActivePlanes) * SwathHeightY[k] * HTotal[k] / PixelClock[k] / VRatio[k];
|
||||||
|
+ if (v->NumberOfActivePlanes > 1) {
|
||||||
|
+ ActiveDRAMClockChangeLatencyMarginY = ActiveDRAMClockChangeLatencyMarginY - (1 - 1.0 / v->NumberOfActivePlanes) * SwathHeightY[k] * v->HTotal[k] / v->PixelClock[k] / v->VRatio[k];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (BytePerPixelDETC[k] > 0) {
|
||||||
|
- ActiveDRAMClockChangeLatencyMarginC = EffectiveLBLatencyHidingC + FullDETBufferingTimeC - *UrgentWatermark - (HTotal[k] / PixelClock[k]) * (DSTXAfterScaler[k] / HTotal[k] + DSTYAfterScaler[k]) - *DRAMClockChangeWatermark;
|
||||||
|
+ ActiveDRAMClockChangeLatencyMarginC = EffectiveLBLatencyHidingC + FullDETBufferingTimeC - v->UrgentWatermark - (v->HTotal[k] / v->PixelClock[k]) * (v->DSTXAfterScaler[k] / v->HTotal[k] + v->DSTYAfterScaler[k]) - v->DRAMClockChangeWatermark;
|
||||||
|
|
||||||
|
- if (NumberOfActivePlanes > 1) {
|
||||||
|
- ActiveDRAMClockChangeLatencyMarginC = ActiveDRAMClockChangeLatencyMarginC - (1 - 1.0 / NumberOfActivePlanes) * SwathHeightC[k] * HTotal[k] / PixelClock[k] / VRatioChroma[k];
|
||||||
|
+ if (v->NumberOfActivePlanes > 1) {
|
||||||
|
+ ActiveDRAMClockChangeLatencyMarginC = ActiveDRAMClockChangeLatencyMarginC - (1 - 1.0 / v->NumberOfActivePlanes) * SwathHeightC[k] * v->HTotal[k] / v->PixelClock[k] / v->VRatioChroma[k];
|
||||||
|
}
|
||||||
|
- mode_lib->vba.ActiveDRAMClockChangeLatencyMargin[k] = dml_min(ActiveDRAMClockChangeLatencyMarginY, ActiveDRAMClockChangeLatencyMarginC);
|
||||||
|
+ v->ActiveDRAMClockChangeLatencyMargin[k] = dml_min(ActiveDRAMClockChangeLatencyMarginY, ActiveDRAMClockChangeLatencyMarginC);
|
||||||
|
} else {
|
||||||
|
- mode_lib->vba.ActiveDRAMClockChangeLatencyMargin[k] = ActiveDRAMClockChangeLatencyMarginY;
|
||||||
|
+ v->ActiveDRAMClockChangeLatencyMargin[k] = ActiveDRAMClockChangeLatencyMarginY;
|
||||||
|
}
|
||||||
|
|
||||||
|
- if (WritebackEnable[k] == true) {
|
||||||
|
+ if (v->WritebackEnable[k] == true) {
|
||||||
|
|
||||||
|
- WritebackDRAMClockChangeLatencyHiding = WritebackInterfaceBufferSize * 1024 / (WritebackDestinationWidth[k] * WritebackDestinationHeight[k] / (WritebackSourceHeight[k] * HTotal[k] / PixelClock[k]) * 4);
|
||||||
|
- if (WritebackPixelFormat[k] == dm_444_64) {
|
||||||
|
+ WritebackDRAMClockChangeLatencyHiding = v->WritebackInterfaceBufferSize * 1024 / (v->WritebackDestinationWidth[k] * v->WritebackDestinationHeight[k] / (v->WritebackSourceHeight[k] * v->HTotal[k] / v->PixelClock[k]) * 4);
|
||||||
|
+ if (v->WritebackPixelFormat[k] == dm_444_64) {
|
||||||
|
WritebackDRAMClockChangeLatencyHiding = WritebackDRAMClockChangeLatencyHiding / 2;
|
||||||
|
}
|
||||||
|
- if (mode_lib->vba.WritebackConfiguration == dm_whole_buffer_for_single_stream_interleave) {
|
||||||
|
+ if (v->WritebackConfiguration == dm_whole_buffer_for_single_stream_interleave) {
|
||||||
|
WritebackDRAMClockChangeLatencyHiding = WritebackDRAMClockChangeLatencyHiding * 2;
|
||||||
|
}
|
||||||
|
- WritebackDRAMClockChangeLatencyMargin = WritebackDRAMClockChangeLatencyHiding - mode_lib->vba.WritebackDRAMClockChangeWatermark;
|
||||||
|
- mode_lib->vba.ActiveDRAMClockChangeLatencyMargin[k] = dml_min(mode_lib->vba.ActiveDRAMClockChangeLatencyMargin[k], WritebackDRAMClockChangeLatencyMargin);
|
||||||
|
+ WritebackDRAMClockChangeLatencyMargin = WritebackDRAMClockChangeLatencyHiding - v->WritebackDRAMClockChangeWatermark;
|
||||||
|
+ v->ActiveDRAMClockChangeLatencyMargin[k] = dml_min(v->ActiveDRAMClockChangeLatencyMargin[k], WritebackDRAMClockChangeLatencyMargin);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- mode_lib->vba.MinActiveDRAMClockChangeMargin = 999999;
|
||||||
|
+ v->MinActiveDRAMClockChangeMargin = 999999;
|
||||||
|
PlaneWithMinActiveDRAMClockChangeMargin = 0;
|
||||||
|
- for (k = 0; k < NumberOfActivePlanes; ++k) {
|
||||||
|
- if (mode_lib->vba.ActiveDRAMClockChangeLatencyMargin[k] < mode_lib->vba.MinActiveDRAMClockChangeMargin) {
|
||||||
|
- mode_lib->vba.MinActiveDRAMClockChangeMargin = mode_lib->vba.ActiveDRAMClockChangeLatencyMargin[k];
|
||||||
|
- if (BlendingAndTiming[k] == k) {
|
||||||
|
+ for (k = 0; k < v->NumberOfActivePlanes; ++k) {
|
||||||
|
+ if (v->ActiveDRAMClockChangeLatencyMargin[k] < v->MinActiveDRAMClockChangeMargin) {
|
||||||
|
+ v->MinActiveDRAMClockChangeMargin = v->ActiveDRAMClockChangeLatencyMargin[k];
|
||||||
|
+ if (v->BlendingAndTiming[k] == k) {
|
||||||
|
PlaneWithMinActiveDRAMClockChangeMargin = k;
|
||||||
|
} else {
|
||||||
|
- for (j = 0; j < NumberOfActivePlanes; ++j) {
|
||||||
|
- if (BlendingAndTiming[k] == j) {
|
||||||
|
+ for (j = 0; j < v->NumberOfActivePlanes; ++j) {
|
||||||
|
+ if (v->BlendingAndTiming[k] == j) {
|
||||||
|
PlaneWithMinActiveDRAMClockChangeMargin = j;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@@ -5244,40 +5089,40 @@ static void CalculateWatermarksAndDRAMSpeedChangeSupport(
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- *MinActiveDRAMClockChangeLatencySupported = mode_lib->vba.MinActiveDRAMClockChangeMargin + DRAMClockChangeLatency;
|
||||||
|
+ v->MinActiveDRAMClockChangeLatencySupported = v->MinActiveDRAMClockChangeMargin + v->FinalDRAMClockChangeLatency;
|
||||||
|
|
||||||
|
SecondMinActiveDRAMClockChangeMarginOneDisplayInVBLank = 999999;
|
||||||
|
- for (k = 0; k < NumberOfActivePlanes; ++k) {
|
||||||
|
- if (!((k == PlaneWithMinActiveDRAMClockChangeMargin) && (BlendingAndTiming[k] == k)) && !(BlendingAndTiming[k] == PlaneWithMinActiveDRAMClockChangeMargin) && mode_lib->vba.ActiveDRAMClockChangeLatencyMargin[k] < SecondMinActiveDRAMClockChangeMarginOneDisplayInVBLank) {
|
||||||
|
- SecondMinActiveDRAMClockChangeMarginOneDisplayInVBLank = mode_lib->vba.ActiveDRAMClockChangeLatencyMargin[k];
|
||||||
|
+ for (k = 0; k < v->NumberOfActivePlanes; ++k) {
|
||||||
|
+ if (!((k == PlaneWithMinActiveDRAMClockChangeMargin) && (v->BlendingAndTiming[k] == k)) && !(v->BlendingAndTiming[k] == PlaneWithMinActiveDRAMClockChangeMargin) && v->ActiveDRAMClockChangeLatencyMargin[k] < SecondMinActiveDRAMClockChangeMarginOneDisplayInVBLank) {
|
||||||
|
+ SecondMinActiveDRAMClockChangeMarginOneDisplayInVBLank = v->ActiveDRAMClockChangeLatencyMargin[k];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- mode_lib->vba.TotalNumberOfActiveOTG = 0;
|
||||||
|
- for (k = 0; k < NumberOfActivePlanes; ++k) {
|
||||||
|
- if (BlendingAndTiming[k] == k) {
|
||||||
|
- mode_lib->vba.TotalNumberOfActiveOTG = mode_lib->vba.TotalNumberOfActiveOTG + 1;
|
||||||
|
+ v->TotalNumberOfActiveOTG = 0;
|
||||||
|
+ for (k = 0; k < v->NumberOfActivePlanes; ++k) {
|
||||||
|
+ if (v->BlendingAndTiming[k] == k) {
|
||||||
|
+ v->TotalNumberOfActiveOTG = v->TotalNumberOfActiveOTG + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- if (mode_lib->vba.MinActiveDRAMClockChangeMargin > 0) {
|
||||||
|
+ if (v->MinActiveDRAMClockChangeMargin > 0) {
|
||||||
|
*DRAMClockChangeSupport = dm_dram_clock_change_vactive;
|
||||||
|
- } else if (((mode_lib->vba.SynchronizedVBlank == true || mode_lib->vba.TotalNumberOfActiveOTG == 1 || SecondMinActiveDRAMClockChangeMarginOneDisplayInVBLank > 0) && PrefetchMode == 0)) {
|
||||||
|
+ } else if (((v->SynchronizedVBlank == true || v->TotalNumberOfActiveOTG == 1 || SecondMinActiveDRAMClockChangeMarginOneDisplayInVBLank > 0) && PrefetchMode == 0)) {
|
||||||
|
*DRAMClockChangeSupport = dm_dram_clock_change_vblank;
|
||||||
|
} else {
|
||||||
|
*DRAMClockChangeSupport = dm_dram_clock_change_unsupported;
|
||||||
|
}
|
||||||
|
|
||||||
|
FullDETBufferingTimeYStutterCriticalPlane = FullDETBufferingTimeY[0];
|
||||||
|
- for (k = 0; k < NumberOfActivePlanes; ++k) {
|
||||||
|
+ for (k = 0; k < v->NumberOfActivePlanes; ++k) {
|
||||||
|
if (FullDETBufferingTimeY[k] <= FullDETBufferingTimeYStutterCriticalPlane) {
|
||||||
|
FullDETBufferingTimeYStutterCriticalPlane = FullDETBufferingTimeY[k];
|
||||||
|
- TimeToFinishSwathTransferStutterCriticalPlane = (SwathHeightY[k] - (LinesInDETY[k] - LinesInDETYRoundedDownToSwath[k])) * (HTotal[k] / PixelClock[k]) / VRatio[k];
|
||||||
|
+ TimeToFinishSwathTransferStutterCriticalPlane = (SwathHeightY[k] - (LinesInDETY[k] - LinesInDETYRoundedDownToSwath[k])) * (v->HTotal[k] / v->PixelClock[k]) / v->VRatio[k];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
- *StutterExitWatermark = SRExitTime + ExtraLatency + 10 / DCFCLKDeepSleep;
|
||||||
|
- *StutterEnterPlusExitWatermark = dml_max(SREnterPlusExitTime + ExtraLatency + 10 / DCFCLKDeepSleep, TimeToFinishSwathTransferStutterCriticalPlane);
|
||||||
|
+ v->StutterExitWatermark = v->SRExitTime + ExtraLatency + 10 / DCFCLKDeepSleep;
|
||||||
|
+ v->StutterEnterPlusExitWatermark = dml_max(v->SREnterPlusExitTime + ExtraLatency + 10 / DCFCLKDeepSleep, TimeToFinishSwathTransferStutterCriticalPlane);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
--
|
||||||
|
cgit 1.2.3-korg
|
||||||
|
`},
|
||||||
|
},
|
||||||
|
|
||||||
|
Flag: TExclusive,
|
||||||
|
}, &MakeHelper{
|
||||||
|
OmitDefaults: true,
|
||||||
|
SkipConfigure: true,
|
||||||
|
|
||||||
|
// Build, install, and boot kernel before running kselftest on it.
|
||||||
|
SkipCheck: true,
|
||||||
|
|
||||||
|
Make: []string{
|
||||||
|
"-f /usr/src/kernel/Makefile",
|
||||||
|
"O=/tmp/kbuild",
|
||||||
|
|
||||||
|
"LLVM=1",
|
||||||
|
"KBUILD_BUILD_VERSION='1-Rosa'",
|
||||||
|
"KBUILD_BUILD_TIMESTAMP='2106-02-07 06:28:15 UTC'",
|
||||||
|
"KBUILD_BUILD_USER=kbuild",
|
||||||
|
"KBUILD_BUILD_HOST=localhost",
|
||||||
|
"all",
|
||||||
|
},
|
||||||
|
Install: `
|
||||||
|
# kernel is not aware of kmod moduledir
|
||||||
|
install -Dm0500 \
|
||||||
|
/usr/src/.depmod \
|
||||||
|
/sbin/depmod
|
||||||
|
|
||||||
|
make \
|
||||||
|
` + jobsFlagE + ` \
|
||||||
|
-f /usr/src/kernel/Makefile \
|
||||||
|
O=/tmp/kbuild \
|
||||||
|
LLVM=1 \
|
||||||
|
INSTALL_PATH=/work \
|
||||||
|
install \
|
||||||
|
INSTALL_MOD_PATH=/work/system \
|
||||||
|
DEPMOD=/sbin/depmod \
|
||||||
|
modules_install
|
||||||
|
rm -v /work/system/lib/modules/` + kernelVersion + `/build
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
Flex,
|
||||||
|
Bison,
|
||||||
|
M4,
|
||||||
|
Tar,
|
||||||
|
Perl,
|
||||||
|
BC,
|
||||||
|
Sed,
|
||||||
|
Gawk,
|
||||||
|
Coreutils,
|
||||||
|
Diffutils,
|
||||||
|
Python,
|
||||||
|
|
||||||
|
XZ,
|
||||||
|
Gzip,
|
||||||
|
Kmod,
|
||||||
|
Elfutils,
|
||||||
|
UtilLinux,
|
||||||
|
KernelHeaders,
|
||||||
|
), kernelVersion
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Kernel] = Metadata{
|
||||||
|
f: Toolchain.newKernel,
|
||||||
|
|
||||||
|
Name: "kernel",
|
||||||
|
Description: "the generic Rosa OS linux kernel",
|
||||||
|
Website: "https://kernel.org/",
|
||||||
|
|
||||||
|
ID: 375621,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newGenInitCPIO() (pkg.Artifact, string) {
|
||||||
|
return t.New("gen_init_cpio-"+kernelVersion, 0, nil, nil, nil, `
|
||||||
|
mkdir -p /work/system/bin/
|
||||||
|
cc -o /work/system/bin/gen_init_cpio /usr/src/linux/usr/gen_init_cpio.c
|
||||||
|
`, pkg.Path(AbsUsrSrc.Append("linux"), false, kernelSource)), kernelVersion
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[GenInitCPIO] = Metadata{
|
||||||
|
f: Toolchain.newGenInitCPIO,
|
||||||
|
|
||||||
|
Name: "gen_init_cpio",
|
||||||
|
Description: "a program in the kernel source tree for creating initramfs archive",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newFirmware() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "20260410"
|
||||||
|
checksum = "J8PdQlGqwrivpskPzbL6xacqR6mlKtXpe5RpzFfVzKPAgG81ZRXsc3qrxwdGJbil"
|
||||||
|
)
|
||||||
|
return t.NewPackage("firmware", version, newFromGitLab(
|
||||||
|
"gitlab.com",
|
||||||
|
"kernel-firmware/linux-firmware",
|
||||||
|
version,
|
||||||
|
checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
// dedup creates temporary file
|
||||||
|
Writable: true,
|
||||||
|
// does not use configure
|
||||||
|
EnterSource: true,
|
||||||
|
|
||||||
|
Env: []string{
|
||||||
|
"HOME=/proc/nonexistent",
|
||||||
|
},
|
||||||
|
}, &MakeHelper{
|
||||||
|
OmitDefaults: true,
|
||||||
|
SkipConfigure: true,
|
||||||
|
InPlace: true,
|
||||||
|
|
||||||
|
Make: []string{
|
||||||
|
"DESTDIR=/work/system",
|
||||||
|
"install-zst",
|
||||||
|
},
|
||||||
|
SkipCheck: true, // requires pre-commit
|
||||||
|
Install: "make " + jobsFlagE + " DESTDIR=/work/system dedup",
|
||||||
|
},
|
||||||
|
Parallel,
|
||||||
|
Rdfind,
|
||||||
|
Zstd,
|
||||||
|
Findutils,
|
||||||
|
Coreutils,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Firmware] = Metadata{
|
||||||
|
f: Toolchain.newFirmware,
|
||||||
|
|
||||||
|
Name: "firmware",
|
||||||
|
Description: "firmware blobs for use with the Linux kernel",
|
||||||
|
Website: "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/",
|
||||||
|
|
||||||
|
ID: 141464,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,16 +1,16 @@
|
|||||||
#
|
#
|
||||||
# Automatically generated file; DO NOT EDIT.
|
# Automatically generated file; DO NOT EDIT.
|
||||||
# Linux/x86 6.12.87 Kernel Configuration
|
# Linux/x86 6.12.84 Kernel Configuration
|
||||||
#
|
#
|
||||||
CONFIG_CC_VERSION_TEXT="clang version 22.1.5"
|
CONFIG_CC_VERSION_TEXT="clang version 22.1.4"
|
||||||
CONFIG_GCC_VERSION=0
|
CONFIG_GCC_VERSION=0
|
||||||
CONFIG_CC_IS_CLANG=y
|
CONFIG_CC_IS_CLANG=y
|
||||||
CONFIG_CLANG_VERSION=220105
|
CONFIG_CLANG_VERSION=220104
|
||||||
CONFIG_AS_IS_LLVM=y
|
CONFIG_AS_IS_LLVM=y
|
||||||
CONFIG_AS_VERSION=220105
|
CONFIG_AS_VERSION=220104
|
||||||
CONFIG_LD_VERSION=0
|
CONFIG_LD_VERSION=0
|
||||||
CONFIG_LD_IS_LLD=y
|
CONFIG_LD_IS_LLD=y
|
||||||
CONFIG_LLD_VERSION=220105
|
CONFIG_LLD_VERSION=220104
|
||||||
CONFIG_RUSTC_VERSION=0
|
CONFIG_RUSTC_VERSION=0
|
||||||
CONFIG_RUSTC_LLVM_VERSION=0
|
CONFIG_RUSTC_LLVM_VERSION=0
|
||||||
CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
|
CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
|
||||||
@@ -12137,9 +12137,7 @@ CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT=y
|
|||||||
# CONFIG_DEBUG_INFO_DWARF4 is not set
|
# CONFIG_DEBUG_INFO_DWARF4 is not set
|
||||||
# CONFIG_DEBUG_INFO_DWARF5 is not set
|
# CONFIG_DEBUG_INFO_DWARF5 is not set
|
||||||
# CONFIG_DEBUG_INFO_REDUCED is not set
|
# CONFIG_DEBUG_INFO_REDUCED is not set
|
||||||
# CONFIG_DEBUG_INFO_COMPRESSED_NONE is not set
|
CONFIG_DEBUG_INFO_COMPRESSED_NONE=y
|
||||||
# CONFIG_DEBUG_INFO_COMPRESSED_ZLIB is not set
|
|
||||||
CONFIG_DEBUG_INFO_COMPRESSED_ZSTD=y
|
|
||||||
# CONFIG_DEBUG_INFO_SPLIT is not set
|
# CONFIG_DEBUG_INFO_SPLIT is not set
|
||||||
# CONFIG_GDB_SCRIPTS is not set
|
# CONFIG_GDB_SCRIPTS is not set
|
||||||
CONFIG_FRAME_WARN=2048
|
CONFIG_FRAME_WARN=2048
|
||||||
8
internal/rosa/kernel_amd64.go
Normal file
8
internal/rosa/kernel_amd64.go
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import _ "embed"
|
||||||
|
|
||||||
|
//go:embed kernel_amd64.config
|
||||||
|
var kernelConfig []byte
|
||||||
|
|
||||||
|
const kernelName = "bzImage"
|
||||||
8
internal/rosa/kernel_arm64.go
Normal file
8
internal/rosa/kernel_arm64.go
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import _ "embed"
|
||||||
|
|
||||||
|
//go:embed kernel_arm64.config
|
||||||
|
var kernelConfig []byte
|
||||||
|
|
||||||
|
const kernelName = "vmlinuz.efi"
|
||||||
8
internal/rosa/kernel_riscv64.go
Normal file
8
internal/rosa/kernel_riscv64.go
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import _ "embed"
|
||||||
|
|
||||||
|
//go:embed kernel_riscv64.config
|
||||||
|
var kernelConfig []byte
|
||||||
|
|
||||||
|
const kernelName = "bzImage"
|
||||||
50
internal/rosa/kmod.go
Normal file
50
internal/rosa/kmod.go
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newKmod() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "34.2"
|
||||||
|
checksum = "0K7POeTKxMhExsaTsnKAC6LUNsRSfe6sSZxWONPbOu-GI_pXOw3toU_BIoqfBhJV"
|
||||||
|
)
|
||||||
|
return t.NewPackage("kmod", version, newTar(
|
||||||
|
"https://www.kernel.org/pub/linux/utils/kernel/"+
|
||||||
|
"kmod/kmod-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), nil, &MesonHelper{
|
||||||
|
Setup: []KV{
|
||||||
|
{"Dmoduledir", "/system/lib/modules"},
|
||||||
|
{"Dsysconfdir", "/system/etc"},
|
||||||
|
{"Dbashcompletiondir", "no"},
|
||||||
|
{"Dfishcompletiondir", "no"},
|
||||||
|
{"Dxz", "disabled"},
|
||||||
|
{"Dmanpages", "false"},
|
||||||
|
},
|
||||||
|
|
||||||
|
// makes assumptions about the running kernel
|
||||||
|
SkipTest: true,
|
||||||
|
},
|
||||||
|
Zlib,
|
||||||
|
Zstd,
|
||||||
|
OpenSSL,
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Kmod] = Metadata{
|
||||||
|
f: Toolchain.newKmod,
|
||||||
|
|
||||||
|
Name: "kmod",
|
||||||
|
Description: "a set of tools to handle common tasks with Linux kernel modules",
|
||||||
|
Website: "https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Zlib,
|
||||||
|
Zstd,
|
||||||
|
OpenSSL,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 1517,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,3 +1,20 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibarchive() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "3.8.7"
|
||||||
|
checksum = "CUJK4MDQmZmATClgQBH2Wt-7Ts4iiSUlg1J_TVb6-5IK3rVUgVLIMc5k-bnWB9w3"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libarchive", version, newFromGitHub(
|
||||||
|
"libarchive/libarchive",
|
||||||
|
"v"+version, checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
Paths: []pkg.ExecPath{
|
||||||
|
pkg.Path(AbsUsrSrc.Append(
|
||||||
|
"CTestCustom.cmake",
|
||||||
|
), false, pkg.NewFile("CTestCustom.cmake", []byte(`
|
||||||
list(APPEND CTEST_CUSTOM_TESTS_IGNORE
|
list(APPEND CTEST_CUSTOM_TESTS_IGNORE
|
||||||
"libarchive_test_archive_string_conversion_fail_c"
|
"libarchive_test_archive_string_conversion_fail_c"
|
||||||
"libarchive_test_archive_string_conversion_fail_latin1"
|
"libarchive_test_archive_string_conversion_fail_latin1"
|
||||||
@@ -61,3 +78,23 @@ list(APPEND CTEST_CUSTOM_TESTS_IGNORE
|
|||||||
"libarchive_test_read_format_ustar_filename"
|
"libarchive_test_read_format_ustar_filename"
|
||||||
"libarchive_test_read_append_wrong_filter"
|
"libarchive_test_read_append_wrong_filter"
|
||||||
)
|
)
|
||||||
|
`))),
|
||||||
|
},
|
||||||
|
|
||||||
|
Writable: true,
|
||||||
|
ScriptEarly: `
|
||||||
|
install -Dv /usr/src/CTestCustom.cmake /cure/
|
||||||
|
`,
|
||||||
|
}, (*CMakeHelper)(nil)), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libarchive] = Metadata{
|
||||||
|
f: Toolchain.newLibarchive,
|
||||||
|
|
||||||
|
Name: "libarchive",
|
||||||
|
Description: "multi-format archive and compression library",
|
||||||
|
Website: "https://www.libarchive.org/",
|
||||||
|
|
||||||
|
ID: 1558,
|
||||||
|
}
|
||||||
|
}
|
||||||
62
internal/rosa/libbsd.go
Normal file
62
internal/rosa/libbsd.go
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibmd() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.2.0"
|
||||||
|
checksum = "1rJ6joAO0wwMZvSfnRNkc1MOhywyAq7SM8VmF92NvDtv7Qdl1LRbjm5fg_DFFtGj"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libmd", version, t.newTagRemote(
|
||||||
|
"https://git.hadrons.org/git/libmd.git",
|
||||||
|
version, checksum,
|
||||||
|
), nil, &MakeHelper{
|
||||||
|
Generate: "echo '" + version + "' > .dist-version && ./autogen",
|
||||||
|
ScriptMakeEarly: `
|
||||||
|
install -D /usr/src/libmd/src/helper.c src/helper.c
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
Automake,
|
||||||
|
Libtool,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libmd] = Metadata{
|
||||||
|
f: Toolchain.newLibmd,
|
||||||
|
|
||||||
|
Name: "libmd",
|
||||||
|
Description: "Message Digest functions from BSD systems",
|
||||||
|
Website: "https://www.hadrons.org/software/libmd/",
|
||||||
|
|
||||||
|
ID: 15525,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newLibbsd() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "0.12.2"
|
||||||
|
checksum = "NVS0xFLTwSP8JiElEftsZ-e1_C-IgJhHrHE77RwKt5178M7r087waO-zYx2_dfGX"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libbsd", version, t.newTagRemote(
|
||||||
|
"https://gitlab.freedesktop.org/libbsd/libbsd.git",
|
||||||
|
version, checksum,
|
||||||
|
), nil, &MakeHelper{
|
||||||
|
Generate: "echo '" + version + "' > .dist-version && ./autogen",
|
||||||
|
},
|
||||||
|
Automake,
|
||||||
|
Libtool,
|
||||||
|
|
||||||
|
Libmd,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libbsd] = Metadata{
|
||||||
|
f: Toolchain.newLibbsd,
|
||||||
|
|
||||||
|
Name: "libbsd",
|
||||||
|
Description: "provides useful functions commonly found on BSD systems",
|
||||||
|
Website: "https://libbsd.freedesktop.org/",
|
||||||
|
|
||||||
|
ID: 1567,
|
||||||
|
}
|
||||||
|
}
|
||||||
54
internal/rosa/libcap.go
Normal file
54
internal/rosa/libcap.go
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibcap() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "2.78"
|
||||||
|
checksum = "wFdUkBhFMD9InPnrBZyegWrlPSAg_9JiTBC-eSFyWWlmbzL2qjh2mKxr9Kx2a8ut"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libcap", version, newTar(
|
||||||
|
"https://git.kernel.org/pub/scm/libs/libcap/libcap.git/"+
|
||||||
|
"snapshot/libcap-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), &PackageAttr{
|
||||||
|
// uses source tree as scratch space
|
||||||
|
Writable: true,
|
||||||
|
Chmod: true,
|
||||||
|
|
||||||
|
Env: []string{
|
||||||
|
"prefix=/system",
|
||||||
|
"lib=lib",
|
||||||
|
},
|
||||||
|
ScriptEarly: `
|
||||||
|
ln -s ../system/bin/bash /bin/
|
||||||
|
`,
|
||||||
|
}, &MakeHelper{
|
||||||
|
SkipConfigure: true,
|
||||||
|
InPlace: true,
|
||||||
|
|
||||||
|
Make: []string{
|
||||||
|
"CC=cc",
|
||||||
|
"all",
|
||||||
|
},
|
||||||
|
Check: []string{
|
||||||
|
"CC=cc",
|
||||||
|
"test",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Bash,
|
||||||
|
Diffutils,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libcap] = Metadata{
|
||||||
|
f: Toolchain.newLibcap,
|
||||||
|
|
||||||
|
Name: "libcap",
|
||||||
|
Description: "a library for getting and setting POSIX.1e draft 15 capabilities",
|
||||||
|
Website: "https://sites.google.com/site/fullycapable/",
|
||||||
|
|
||||||
|
ID: 1569,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,4 +1,19 @@
|
|||||||
diff --git a/tests/tests.c b/tests/tests.c
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibconfig() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.8.2"
|
||||||
|
checksum = "fD32hjeAZuTz98g6WYHRwsxphrgrEFqxi5Z1jlJemPckPBfxpS3i5HgshAuA6vmT"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libconfig", version, newFromGitHub(
|
||||||
|
"hyperrealm/libconfig",
|
||||||
|
"v"+version,
|
||||||
|
checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
Patches: []KV{
|
||||||
|
{"disable-broken-tests", `diff --git a/tests/tests.c b/tests/tests.c
|
||||||
index eba7eae..f916d2e 100644
|
index eba7eae..f916d2e 100644
|
||||||
--- a/tests/tests.c
|
--- a/tests/tests.c
|
||||||
+++ b/tests/tests.c
|
+++ b/tests/tests.c
|
||||||
@@ -18,3 +33,18 @@ index eba7eae..f916d2e 100644
|
|||||||
TT_SUITE_RUN(LibConfigTests);
|
TT_SUITE_RUN(LibConfigTests);
|
||||||
failures = TT_SUITE_NUM_FAILURES(LibConfigTests);
|
failures = TT_SUITE_NUM_FAILURES(LibConfigTests);
|
||||||
TT_SUITE_END(LibConfigTests);
|
TT_SUITE_END(LibConfigTests);
|
||||||
|
`},
|
||||||
|
},
|
||||||
|
}, (*CMakeHelper)(nil)), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libconfig] = Metadata{
|
||||||
|
f: Toolchain.newLibconfig,
|
||||||
|
|
||||||
|
Name: "libconfig",
|
||||||
|
Description: "a simple library for processing structured configuration files",
|
||||||
|
Website: "https://hyperrealm.github.io/libconfig/",
|
||||||
|
|
||||||
|
ID: 1580,
|
||||||
|
}
|
||||||
|
}
|
||||||
30
internal/rosa/libdisplay-info.go
Normal file
30
internal/rosa/libdisplay-info.go
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibdisplayInfo() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "0.3.0"
|
||||||
|
checksum = "yjOqPUHHYgRtpqGw5RI1n2Q1_hO5j0LiFNMbjcRWV4Nf71XwwoC9fZMlKBDeLchT"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libdisplay-info", version, newFromGitLab(
|
||||||
|
"gitlab.freedesktop.org",
|
||||||
|
"emersion/libdisplay-info",
|
||||||
|
version, checksum,
|
||||||
|
), nil, (*MesonHelper)(nil),
|
||||||
|
Diffutils,
|
||||||
|
|
||||||
|
Hwdata,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[LibdisplayInfo] = Metadata{
|
||||||
|
f: Toolchain.newLibdisplayInfo,
|
||||||
|
|
||||||
|
Name: "libdisplay-info",
|
||||||
|
Description: "EDID and DisplayID library",
|
||||||
|
Website: "https://gitlab.freedesktop.org/emersion/libdisplay-info",
|
||||||
|
|
||||||
|
ID: 326668,
|
||||||
|
}
|
||||||
|
}
|
||||||
26
internal/rosa/libev.go
Normal file
26
internal/rosa/libev.go
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibev() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "4.33"
|
||||||
|
checksum = "774eSXV_4k8PySRprUDChbEwsw-kzjIFnJ3MpNOl5zDpamBRvC3BqPyRxvkwcL6_"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libev", version, newTar(
|
||||||
|
"https://dist.schmorp.de/libev/Attic/libev-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), nil, (*MakeHelper)(nil)), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libev] = Metadata{
|
||||||
|
f: Toolchain.newLibev,
|
||||||
|
|
||||||
|
Name: "libev",
|
||||||
|
Description: "a full-featured and high-performance event loop",
|
||||||
|
Website: "http://libev.schmorp.de/",
|
||||||
|
|
||||||
|
ID: 1605,
|
||||||
|
}
|
||||||
|
}
|
||||||
34
internal/rosa/libexpat.go
Normal file
34
internal/rosa/libexpat.go
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"hakurei.app/internal/pkg"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (t Toolchain) newLibexpat() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "2.8.1"
|
||||||
|
checksum = "iMEtbOJhQfGof2GxSlxffQSI1va_NDDQ9VIuqcPbNZ0291Dr8wttD5QecYyjIQap"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libexpat", version, newFromGitHubRelease(
|
||||||
|
"libexpat/libexpat",
|
||||||
|
"R_"+strings.ReplaceAll(version, ".", "_"),
|
||||||
|
"expat-"+version+".tar.bz2",
|
||||||
|
checksum,
|
||||||
|
pkg.TarBzip2,
|
||||||
|
), nil, (*MakeHelper)(nil),
|
||||||
|
Bash,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libexpat] = Metadata{
|
||||||
|
f: Toolchain.newLibexpat,
|
||||||
|
|
||||||
|
Name: "libexpat",
|
||||||
|
Description: "a stream-oriented XML parser library",
|
||||||
|
Website: "https://libexpat.github.io/",
|
||||||
|
|
||||||
|
ID: 770,
|
||||||
|
}
|
||||||
|
}
|
||||||
30
internal/rosa/libffi.go
Normal file
30
internal/rosa/libffi.go
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibffi() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "3.5.2"
|
||||||
|
checksum = "2_Q-ZNBBbVhltfL5zEr0wljxPegUimTK4VeMSiwJEGksls3n4gj3lV0Ly3vviSFH"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libffi", version, newFromGitHubRelease(
|
||||||
|
"libffi/libffi",
|
||||||
|
"v"+version,
|
||||||
|
"libffi-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), nil, (*MakeHelper)(nil),
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libffi] = Metadata{
|
||||||
|
f: Toolchain.newLibffi,
|
||||||
|
|
||||||
|
Name: "libffi",
|
||||||
|
Description: "a portable, high level programming interface to various calling conventions",
|
||||||
|
Website: "https://sourceware.org/libffi/",
|
||||||
|
|
||||||
|
ID: 1611,
|
||||||
|
}
|
||||||
|
}
|
||||||
40
internal/rosa/libgd.go
Normal file
40
internal/rosa/libgd.go
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibgd() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "2.3.3"
|
||||||
|
checksum = "8T-sh1_FJT9K9aajgxzh8ot6vWIF-xxjcKAHvTak9MgGUcsFfzP8cAvvv44u2r36"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libgd", version, newFromGitHubRelease(
|
||||||
|
"libgd/libgd",
|
||||||
|
"gd-"+version,
|
||||||
|
"libgd-"+version+".tar.gz", checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), &PackageAttr{
|
||||||
|
Env: []string{
|
||||||
|
"TMPDIR=/dev/shm/gd",
|
||||||
|
},
|
||||||
|
ScriptEarly: `
|
||||||
|
mkdir /dev/shm/gd
|
||||||
|
`,
|
||||||
|
}, (*MakeHelper)(nil),
|
||||||
|
Zlib,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libgd] = Metadata{
|
||||||
|
f: Toolchain.newLibgd,
|
||||||
|
|
||||||
|
Name: "libgd",
|
||||||
|
Description: "an open source code library for the dynamic creation of images",
|
||||||
|
Website: "https://libgd.github.io/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Zlib,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 880,
|
||||||
|
}
|
||||||
|
}
|
||||||
38
internal/rosa/libpng.go
Normal file
38
internal/rosa/libpng.go
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"hakurei.app/internal/pkg"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (t Toolchain) newLibpng() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.6.58"
|
||||||
|
checksum = "m_a5lROJH7vmF3cMjqwTUqURuQLhV1JQx2ySPzcN3VPdgDB9pG3UINsIx_mtkr-t"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libpng", version, newTar(
|
||||||
|
"https://downloads.sourceforge.net/project/libpng/libpng"+
|
||||||
|
strings.Join(strings.SplitN(version, ".", 3)[:2], "")+
|
||||||
|
"/"+version+"/libpng-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), nil, (*MakeHelper)(nil),
|
||||||
|
Zlib,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libpng] = Metadata{
|
||||||
|
f: Toolchain.newLibpng,
|
||||||
|
|
||||||
|
Name: "libpng",
|
||||||
|
Description: "the official PNG reference library",
|
||||||
|
Website: "https://www.libpng.org/pub/png/libpng.html",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Zlib,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 1705,
|
||||||
|
}
|
||||||
|
}
|
||||||
37
internal/rosa/libpsl.go
Normal file
37
internal/rosa/libpsl.go
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibpsl() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "0.21.5"
|
||||||
|
checksum = "XjfxSzh7peG2Vg4vJlL8z4JZJLcXqbuP6pLWkrGCmRxlnYUFTKNBqWGHCxEOlCad"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libpsl", version, newFromGitHubRelease(
|
||||||
|
"rockdaboot/libpsl",
|
||||||
|
version,
|
||||||
|
"libpsl-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), &PackageAttr{
|
||||||
|
Writable: true,
|
||||||
|
ScriptEarly: `
|
||||||
|
test_disable() { chmod +w "$2" && echo "$1" > "$2"; }
|
||||||
|
|
||||||
|
test_disable 'int main(){return 0;}' tests/test-is-public-builtin.c
|
||||||
|
`,
|
||||||
|
}, (*MakeHelper)(nil),
|
||||||
|
Python,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libpsl] = Metadata{
|
||||||
|
f: Toolchain.newLibpsl,
|
||||||
|
|
||||||
|
Name: "libpsl",
|
||||||
|
Description: "provides functions to work with the Mozilla Public Suffix List",
|
||||||
|
Website: "https://rockdaboot.github.io/libpsl/",
|
||||||
|
|
||||||
|
ID: 7305,
|
||||||
|
}
|
||||||
|
}
|
||||||
55
internal/rosa/libseccomp.go
Normal file
55
internal/rosa/libseccomp.go
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibseccomp() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "2.6.0"
|
||||||
|
checksum = "mMu-iR71guPjFbb31u-YexBaanKE_nYPjPux-vuBiPfS_0kbwJdfCGlkofaUm-EY"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libseccomp", version, newFromGitHubRelease(
|
||||||
|
"seccomp/libseccomp",
|
||||||
|
"v"+version,
|
||||||
|
"libseccomp-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), &PackageAttr{
|
||||||
|
ScriptEarly: `
|
||||||
|
ln -s ../system/bin/bash /bin/
|
||||||
|
`,
|
||||||
|
|
||||||
|
Patches: []KV{
|
||||||
|
{"fix-export-oob-read", `diff --git a/src/api.c b/src/api.c
|
||||||
|
index adccef3..65a277a 100644
|
||||||
|
--- a/src/api.c
|
||||||
|
+++ b/src/api.c
|
||||||
|
@@ -786,7 +786,7 @@ API int seccomp_export_bpf_mem(const scmp_filter_ctx ctx, void *buf,
|
||||||
|
if (BPF_PGM_SIZE(program) > *len)
|
||||||
|
rc = _rc_filter(-ERANGE);
|
||||||
|
else
|
||||||
|
- memcpy(buf, program->blks, *len);
|
||||||
|
+ memcpy(buf, program->blks, BPF_PGM_SIZE(program));
|
||||||
|
}
|
||||||
|
*len = BPF_PGM_SIZE(program);
|
||||||
|
|
||||||
|
`},
|
||||||
|
},
|
||||||
|
}, (*MakeHelper)(nil),
|
||||||
|
Bash,
|
||||||
|
Diffutils,
|
||||||
|
Gperf,
|
||||||
|
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libseccomp] = Metadata{
|
||||||
|
f: Toolchain.newLibseccomp,
|
||||||
|
|
||||||
|
Name: "libseccomp",
|
||||||
|
Description: "an interface to the Linux Kernel's syscall filtering mechanism",
|
||||||
|
Website: "https://github.com/seccomp/libseccomp/",
|
||||||
|
|
||||||
|
ID: 13823,
|
||||||
|
}
|
||||||
|
}
|
||||||
39
internal/rosa/libucontext.go
Normal file
39
internal/rosa/libucontext.go
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibucontext() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.5.1"
|
||||||
|
checksum = "mUgeyJknjMxT-5fORzz-rqhZfP3Y7EZGBhOwvhuX7MsF4Pk9wkuwtrLf5IML-jWu"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libucontext", version, newFromGitHub(
|
||||||
|
"kaniini/libucontext",
|
||||||
|
"libucontext-"+version,
|
||||||
|
checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
// uses source tree as scratch space
|
||||||
|
Writable: true,
|
||||||
|
Chmod: true,
|
||||||
|
EnterSource: true,
|
||||||
|
}, &MakeHelper{
|
||||||
|
OmitDefaults: true,
|
||||||
|
SkipConfigure: true,
|
||||||
|
InPlace: true,
|
||||||
|
Make: []string{
|
||||||
|
"ARCH=" + linuxArch(),
|
||||||
|
},
|
||||||
|
Install: "make prefix=/system DESTDIR=/work install",
|
||||||
|
}), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libucontext] = Metadata{
|
||||||
|
f: Toolchain.newLibucontext,
|
||||||
|
|
||||||
|
Name: "libucontext",
|
||||||
|
Description: "ucontext implementation featuring glibc-compatible ABI",
|
||||||
|
Website: "https://github.com/kaniini/libucontext/",
|
||||||
|
|
||||||
|
ID: 17085,
|
||||||
|
}
|
||||||
|
}
|
||||||
32
internal/rosa/libxml2.go
Normal file
32
internal/rosa/libxml2.go
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibxml2() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "2.15.3"
|
||||||
|
checksum = "oJy74htGlEpf70KPvpW18fYJo0RQQkCXZRwqUz6NoXborS3HCq3Nm4gsyaSeNmUH"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libxml2", version, newFromGitLab(
|
||||||
|
"gitlab.gnome.org",
|
||||||
|
"GNOME/libxml2",
|
||||||
|
"v"+version, checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
// can't create shell.out: Read-only file system
|
||||||
|
Writable: true,
|
||||||
|
}, (*MesonHelper)(nil),
|
||||||
|
Git,
|
||||||
|
Diffutils,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libxml2] = Metadata{
|
||||||
|
f: Toolchain.newLibxml2,
|
||||||
|
|
||||||
|
Name: "libxml2",
|
||||||
|
Description: "an XML toolkit implemented in C",
|
||||||
|
Website: "https://gitlab.gnome.org/GNOME/libxml2/",
|
||||||
|
|
||||||
|
ID: 1783,
|
||||||
|
}
|
||||||
|
}
|
||||||
42
internal/rosa/libxslt.go
Normal file
42
internal/rosa/libxslt.go
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibxslt() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.1.45"
|
||||||
|
checksum = "67ks7v8od2oWaEGf23Sst_Xbn_8brQyolQjqxPoO-lK35k_WJhi2Px5JJgbk-nfn"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libxslt", version, newFromGitLab(
|
||||||
|
"gitlab.gnome.org",
|
||||||
|
"GNOME/libxslt",
|
||||||
|
"v"+version, checksum,
|
||||||
|
), nil, &MakeHelper{
|
||||||
|
Generate: "NOCONFIGURE=1 ./autogen.sh",
|
||||||
|
|
||||||
|
// python libxml2 cyclic dependency
|
||||||
|
SkipCheck: true,
|
||||||
|
},
|
||||||
|
Automake,
|
||||||
|
Libtool,
|
||||||
|
Python,
|
||||||
|
PkgConfig,
|
||||||
|
|
||||||
|
Libxml2,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libxslt] = Metadata{
|
||||||
|
f: Toolchain.newLibxslt,
|
||||||
|
|
||||||
|
Name: "libxslt",
|
||||||
|
Description: "an XSLT processor based on libxml2",
|
||||||
|
Website: "https://gitlab.gnome.org/GNOME/libxslt/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Libxml2,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 13301,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,34 +1,14 @@
|
|||||||
package rosa
|
package rosa
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io/fs"
|
|
||||||
"regexp"
|
"regexp"
|
||||||
"slices"
|
"slices"
|
||||||
"strings"
|
"strings"
|
||||||
"unsafe"
|
|
||||||
|
|
||||||
"hakurei.app/internal/pkg"
|
"hakurei.app/internal/pkg"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
// litArgs returns [LIT] arguments for optional verbosity and check skipping.
|
||||||
_llvmSource = H("llvm-project")
|
|
||||||
_muslHeaders = H("musl-headers")
|
|
||||||
_earlyCompilerRT = H("early-compiler-rt")
|
|
||||||
_earlyRuntimes = H("early-runtimes")
|
|
||||||
_musl = H("musl")
|
|
||||||
|
|
||||||
_bash = H("bash")
|
|
||||||
_gawk = H("gawk")
|
|
||||||
_coreutils = H("coreutils")
|
|
||||||
_diffutils = H("diffutils")
|
|
||||||
_findutils = H("findutils")
|
|
||||||
|
|
||||||
_zlib = H("zlib")
|
|
||||||
_zstd = H("zstd")
|
|
||||||
_kernelHeaders = H("kernel-headers")
|
|
||||||
)
|
|
||||||
|
|
||||||
// litArgs returns LIT arguments for optional verbosity and check skipping.
|
|
||||||
func litArgs(verbose bool, skipChecks ...string) string {
|
func litArgs(verbose bool, skipChecks ...string) string {
|
||||||
args := []string{"-sv"}
|
args := []string{"-sv"}
|
||||||
if verbose {
|
if verbose {
|
||||||
@@ -49,316 +29,271 @@ func litArgs(verbose bool, skipChecks ...string) string {
|
|||||||
return "'" + strings.Join(args, " ") + "'"
|
return "'" + strings.Join(args, " ") + "'"
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func (t Toolchain) newEarlyCompilerRT() (pkg.Artifact, string) {
|
||||||
var llvmPatches []KV
|
version := t.Version(llvmSource)
|
||||||
for _, name := range [...]string{
|
major, _, _ := strings.Cut(version, ".")
|
||||||
"increase-stack-size-unconditional",
|
return t.NewPackage("early-compiler-rt", version, t.Load(llvmSource), &PackageAttr{
|
||||||
"add-rosa-vendor",
|
Flag: TExclusive,
|
||||||
"xfail-broken-tests",
|
}, &CMakeHelper{
|
||||||
"path-system-include",
|
Append: []string{"compiler-rt"},
|
||||||
"path-system-libraries",
|
|
||||||
} {
|
|
||||||
p, err := fs.ReadFile(nativeB, "package/llvm/"+name+".patch")
|
|
||||||
if err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
llvmPatches = append(llvmPatches, KV{
|
|
||||||
name,
|
|
||||||
unsafe.String(unsafe.SliceData(p), len(p)),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
native.MustRegister("early-compiler-rt", func(t Toolchain) (*Metadata, pkg.Artifact) {
|
Cache: []KV{
|
||||||
meta := Metadata{
|
{"ENABLE_LINKER_BUILD_ID", "ON"},
|
||||||
Name: "early-compiler-rt",
|
|
||||||
Description: "early LLVM runtime: compiler-rt",
|
|
||||||
|
|
||||||
Dependencies: P{_musl},
|
// libc++ not yet available
|
||||||
}
|
{"CMAKE_CXX_COMPILER_TARGET", ""},
|
||||||
_meta, source := t.MustLoad(_llvmSource)
|
|
||||||
meta.Version = _meta.Version
|
|
||||||
major, _, _ := strings.Cut(meta.Version, ".")
|
|
||||||
return &meta, t.NewPackage("early-compiler-rt", meta.Version, source, &PackageAttr{
|
|
||||||
Flag: TExclusive,
|
|
||||||
}, &CMakeHelper{
|
|
||||||
Append: []string{"compiler-rt"},
|
|
||||||
|
|
||||||
Cache: []KV{
|
{"LLVM_HOST_TRIPLE", `"${ROSA_TRIPLE}"`},
|
||||||
{"ENABLE_LINKER_BUILD_ID", "ON"},
|
{"LLVM_DEFAULT_TARGET_TRIPLE", `"${ROSA_TRIPLE}"`},
|
||||||
|
{"LLVM_ENABLE_RTTI", "ON"},
|
||||||
|
{"LLVM_BUILD_LLVM_DYLIB", "ON"},
|
||||||
|
{"LLVM_LINK_LLVM_DYLIB", "ON"},
|
||||||
|
{"LLVM_ENABLE_PER_TARGET_RUNTIME_DIR", "ON"},
|
||||||
|
|
||||||
// libc++ not yet available
|
{"COMPILER_RT_BUILD_BUILTINS", "ON"},
|
||||||
{"CMAKE_CXX_COMPILER_TARGET", ""},
|
{"COMPILER_RT_DEFAULT_TARGET_ONLY", "ON"},
|
||||||
|
{"COMPILER_RT_USE_BUILTINS_LIBRARY", "ON"},
|
||||||
|
{"COMPILER_RT_SANITIZERS_TO_BUILD", "asan"},
|
||||||
|
{"COMPILER_RT_BUILD_GWP_ASAN", "OFF"},
|
||||||
|
|
||||||
{"LLVM_HOST_TRIPLE", `"${ROSA_TRIPLE}"`},
|
// does not work without libunwind
|
||||||
{"LLVM_DEFAULT_TARGET_TRIPLE", `"${ROSA_TRIPLE}"`},
|
{"COMPILER_RT_BUILD_CTX_PROFILE", "OFF"},
|
||||||
{"LLVM_ENABLE_RTTI", "ON"},
|
{"COMPILER_RT_BUILD_LIBFUZZER", "OFF"},
|
||||||
{"LLVM_BUILD_LLVM_DYLIB", "ON"},
|
{"COMPILER_RT_BUILD_MEMPROF", "OFF"},
|
||||||
{"LLVM_LINK_LLVM_DYLIB", "ON"},
|
{"COMPILER_RT_BUILD_PROFILE", "OFF"},
|
||||||
{"LLVM_ENABLE_PER_TARGET_RUNTIME_DIR", "ON"},
|
{"COMPILER_RT_BUILD_XRAY", "OFF"},
|
||||||
|
},
|
||||||
{"COMPILER_RT_BUILD_BUILTINS", "ON"},
|
SkipTest: true,
|
||||||
{"COMPILER_RT_DEFAULT_TARGET_ONLY", "ON"},
|
Script: `
|
||||||
{"COMPILER_RT_USE_BUILTINS_LIBRARY", "ON"},
|
|
||||||
{"COMPILER_RT_SANITIZERS_TO_BUILD", "asan"},
|
|
||||||
{"COMPILER_RT_BUILD_GWP_ASAN", "OFF"},
|
|
||||||
|
|
||||||
// does not work without libunwind
|
|
||||||
{"COMPILER_RT_BUILD_CTX_PROFILE", "OFF"},
|
|
||||||
{"COMPILER_RT_BUILD_LIBFUZZER", "OFF"},
|
|
||||||
{"COMPILER_RT_BUILD_MEMPROF", "OFF"},
|
|
||||||
{"COMPILER_RT_BUILD_PROFILE", "OFF"},
|
|
||||||
{"COMPILER_RT_BUILD_XRAY", "OFF"},
|
|
||||||
},
|
|
||||||
SkipTest: true,
|
|
||||||
Script: `
|
|
||||||
mkdir -p "/work/system/lib/clang/` + major + `/lib/"
|
mkdir -p "/work/system/lib/clang/` + major + `/lib/"
|
||||||
ln -s \
|
ln -s \
|
||||||
"../../../${ROSA_TRIPLE}" \
|
"../../../${ROSA_TRIPLE}" \
|
||||||
"/work/system/lib/clang/` + major + `/lib/"
|
"/work/system/lib/clang/` + major + `/lib/"
|
||||||
|
|
||||||
ln -s \
|
ln -s \
|
||||||
"clang_rt.crtbegin-` + t.linuxArch() + `.o" \
|
"clang_rt.crtbegin-` + linuxArch() + `.o" \
|
||||||
"/work/system/lib/${ROSA_TRIPLE}/crtbeginS.o"
|
"/work/system/lib/${ROSA_TRIPLE}/crtbeginS.o"
|
||||||
ln -s \
|
ln -s \
|
||||||
"clang_rt.crtend-` + t.linuxArch() + `.o" \
|
"clang_rt.crtend-` + linuxArch() + `.o" \
|
||||||
"/work/system/lib/${ROSA_TRIPLE}/crtendS.o"
|
"/work/system/lib/${ROSA_TRIPLE}/crtendS.o"
|
||||||
`,
|
`,
|
||||||
|
},
|
||||||
|
Python,
|
||||||
|
|
||||||
|
muslHeaders,
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[earlyCompilerRT] = Metadata{
|
||||||
|
f: Toolchain.newEarlyCompilerRT,
|
||||||
|
|
||||||
|
Name: "early-compiler-rt",
|
||||||
|
Description: "early LLVM runtime: compiler-rt",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Musl,
|
||||||
},
|
},
|
||||||
_python,
|
}
|
||||||
|
}
|
||||||
|
|
||||||
_muslHeaders,
|
func (t Toolchain) newEarlyRuntimes() (pkg.Artifact, string) {
|
||||||
_kernelHeaders,
|
version := t.Version(llvmSource)
|
||||||
)
|
return t.NewPackage("early-runtimes", version, t.Load(llvmSource), &PackageAttr{
|
||||||
})
|
Flag: TExclusive,
|
||||||
|
}, &CMakeHelper{
|
||||||
|
Append: []string{"runtimes"},
|
||||||
|
|
||||||
native.MustRegister("early-runtimes", func(t Toolchain) (*Metadata, pkg.Artifact) {
|
Cache: []KV{
|
||||||
meta := Metadata{
|
|
||||||
Name: "early-runtimes",
|
|
||||||
Description: "early LLVM runtimes: libunwind, libcxx, libcxxabi",
|
|
||||||
|
|
||||||
Dependencies: P{
|
|
||||||
_earlyCompilerRT,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
_meta, source := t.MustLoad(_llvmSource)
|
|
||||||
meta.Version = _meta.Version
|
|
||||||
|
|
||||||
return &meta, t.NewPackage("early-runtimes", meta.Version, source, &PackageAttr{
|
|
||||||
Flag: TExclusive,
|
|
||||||
}, &CMakeHelper{
|
|
||||||
Append: []string{"runtimes"},
|
|
||||||
|
|
||||||
Cache: []KV{
|
|
||||||
{"ENABLE_LINKER_BUILD_ID", "ON"},
|
|
||||||
|
|
||||||
// libc++ not yet available
|
|
||||||
{"CMAKE_CXX_COMPILER_WORKS", "ON"},
|
|
||||||
|
|
||||||
{"LLVM_HOST_TRIPLE", `"${ROSA_TRIPLE}"`},
|
|
||||||
{"LLVM_DEFAULT_TARGET_TRIPLE", `"${ROSA_TRIPLE}"`},
|
|
||||||
{"LLVM_ENABLE_RTTI", "ON"},
|
|
||||||
{"LLVM_BUILD_LLVM_DYLIB", "ON"},
|
|
||||||
{"LLVM_LINK_LLVM_DYLIB", "ON"},
|
|
||||||
{"LLVM_ENABLE_RUNTIMES", "'libunwind;libcxx;libcxxabi'"},
|
|
||||||
|
|
||||||
{"LIBUNWIND_ENABLE_ASSERTIONS", "OFF"},
|
|
||||||
{"LIBUNWIND_USE_COMPILER_RT", "ON"},
|
|
||||||
{"LIBCXX_HAS_MUSL_LIBC", "ON"},
|
|
||||||
{"LIBCXX_USE_COMPILER_RT", "ON"},
|
|
||||||
{"LIBCXX_CXX_ABI", "libcxxabi"},
|
|
||||||
{"LIBCXX_ENABLE_STATIC_ABI_LIBRARY", "OFF"},
|
|
||||||
{"LIBCXX_HARDENING_MODE", "fast"},
|
|
||||||
{"LIBCXX_HAS_ATOMIC_LIB", "OFF"},
|
|
||||||
{"LIBCXXABI_USE_COMPILER_RT", "ON"},
|
|
||||||
{"LIBCXXABI_USE_LLVM_UNWINDER", "ON"},
|
|
||||||
{"LIBCXXABI_ENABLE_STATIC_UNWINDER", "OFF"},
|
|
||||||
{"LIBCXXABI_HAS_CXA_THREAD_ATEXIT_IMPL", "OFF"},
|
|
||||||
|
|
||||||
{"LLVM_ENABLE_ZLIB", "FORCE_ON"},
|
|
||||||
{"LLVM_ENABLE_ZSTD", "FORCE_ON"},
|
|
||||||
{"LLVM_ENABLE_LIBXML2", "OFF"},
|
|
||||||
},
|
|
||||||
SkipTest: true,
|
|
||||||
},
|
|
||||||
_python,
|
|
||||||
|
|
||||||
_zlib,
|
|
||||||
_zstd,
|
|
||||||
_earlyCompilerRT,
|
|
||||||
_kernelHeaders,
|
|
||||||
)
|
|
||||||
})
|
|
||||||
|
|
||||||
const (
|
|
||||||
version = "22.1.6"
|
|
||||||
checksum = "vwMyqgc_09d__u49IlXGlxnp8eFlvpibhYQgVxQg-sGdoZlzyapMV4uX4UAjE7rA"
|
|
||||||
)
|
|
||||||
|
|
||||||
native.MustRegister("llvm-project", func(t Toolchain) (*Metadata, pkg.Artifact) {
|
|
||||||
meta := Metadata{
|
|
||||||
Name: "llvm-project",
|
|
||||||
Description: "LLVM monorepo with Rosa OS patches",
|
|
||||||
Version: version,
|
|
||||||
|
|
||||||
ID: 1830,
|
|
||||||
}
|
|
||||||
return &meta, t.NewPatchedSource("llvm-"+version, newFromGitHub(
|
|
||||||
"llvm/llvm-project",
|
|
||||||
"llvmorg-"+version,
|
|
||||||
checksum,
|
|
||||||
), true, llvmPatches...)
|
|
||||||
})
|
|
||||||
|
|
||||||
native.MustRegister("llvm", func(t Toolchain) (*Metadata, pkg.Artifact) {
|
|
||||||
meta := Metadata{
|
|
||||||
Name: "llvm",
|
|
||||||
Description: "a collection of modular and reusable compiler and toolchain technologies",
|
|
||||||
Website: "https://llvm.org",
|
|
||||||
|
|
||||||
Dependencies: P{
|
|
||||||
_zlib,
|
|
||||||
_zstd,
|
|
||||||
_musl,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
_meta, source := t.MustLoad(_llvmSource)
|
|
||||||
meta.Version = _meta.Version
|
|
||||||
|
|
||||||
early := _muslHeaders
|
|
||||||
if t.stage.isStage0() {
|
|
||||||
// The LLVM build system uses the system installation when building with
|
|
||||||
// LLVM_LINK_LLVM_DYLIB, since it builds runtimes after the fact, using
|
|
||||||
// the just-built toolchain. This is unacceptable in stage0 due to the
|
|
||||||
// potential version difference. Later stages bootstrap off of runtimes
|
|
||||||
// of its previous stage via 3-stage determinism.
|
|
||||||
early = _earlyRuntimes
|
|
||||||
}
|
|
||||||
|
|
||||||
cache := []KV{
|
|
||||||
{"ENABLE_LINKER_BUILD_ID", "ON"},
|
{"ENABLE_LINKER_BUILD_ID", "ON"},
|
||||||
{"COMPILER_RT_USE_BUILTINS_LIBRARY", "ON"},
|
|
||||||
{"COMPILER_RT_DEFAULT_TARGET_ONLY", "ON"},
|
// libc++ not yet available
|
||||||
{"COMPILER_RT_BUILD_GWP_ASAN", "OFF"},
|
{"CMAKE_CXX_COMPILER_WORKS", "ON"},
|
||||||
{"LIBCXX_CXX_ABI", "libcxxabi"},
|
|
||||||
{"LIBCXX_USE_COMPILER_RT", "ON"},
|
|
||||||
{"LIBCXX_ENABLE_STATIC_ABI_LIBRARY", "OFF"},
|
|
||||||
{"LIBCXX_HAS_MUSL_LIBC", "ON"},
|
|
||||||
{"LIBCXX_HARDENING_MODE", "fast"},
|
|
||||||
{"LIBCXXABI_USE_LLVM_UNWINDER", "ON"},
|
|
||||||
{"LIBCXXABI_ENABLE_STATIC_UNWINDER", "OFF"},
|
|
||||||
{"LIBCXXABI_USE_COMPILER_RT", "ON"},
|
|
||||||
{"LLVM_INSTALL_BINUTILS_SYMLINKS", "ON"},
|
|
||||||
{"LLVM_INSTALL_UTILS", "ON"},
|
|
||||||
{"LLVM_BUILD_LLVM_DYLIB", "ON"},
|
|
||||||
{"LLVM_LINK_LLVM_DYLIB", "ON"},
|
|
||||||
{"LLVM_APPEND_VC_REV", "OFF"},
|
|
||||||
{"LLVM_ENABLE_RTTI", "ON"},
|
|
||||||
{"LLVM_ENABLE_ZLIB", "FORCE_ON"},
|
|
||||||
{"LLVM_ENABLE_ZSTD", "FORCE_ON"},
|
|
||||||
{"LLVM_ENABLE_PER_TARGET_RUNTIME_DIR", "ON"},
|
|
||||||
{"LLVM_INCLUDE_BENCHMARKS", "OFF"},
|
|
||||||
{"CLANG_DEFAULT_RTLIB", "compiler-rt"},
|
|
||||||
{"CLANG_DEFAULT_UNWINDLIB", "libunwind"},
|
|
||||||
{"CLANG_DEFAULT_CXX_STDLIB", "libc++"},
|
|
||||||
{"CLANG_CONFIG_FILE_SYSTEM_DIR", "/system/etc/clang"},
|
|
||||||
{"LLVM_ENABLE_FFI", "OFF"},
|
|
||||||
{"LLVM_ENABLE_LIBXML2", "OFF"},
|
|
||||||
{"LLVM_ENABLE_LIBCXX", "ON"},
|
|
||||||
{"LLVM_ENABLE_LLD", "ON"},
|
|
||||||
{"LIBUNWIND_ENABLE_ASSERTIONS", "OFF"},
|
|
||||||
{"LIBUNWIND_USE_COMPILER_RT", "ON"},
|
|
||||||
|
|
||||||
{"LLVM_HOST_TRIPLE", `"${ROSA_TRIPLE}"`},
|
{"LLVM_HOST_TRIPLE", `"${ROSA_TRIPLE}"`},
|
||||||
{"LLVM_DEFAULT_TARGET_TRIPLE", `"${ROSA_TRIPLE}"`},
|
{"LLVM_DEFAULT_TARGET_TRIPLE", `"${ROSA_TRIPLE}"`},
|
||||||
{"LLVM_ENABLE_PROJECTS", "'" + strings.Join([]string{
|
{"LLVM_ENABLE_RTTI", "ON"},
|
||||||
"clang",
|
{"LLVM_BUILD_LLVM_DYLIB", "ON"},
|
||||||
"lld",
|
{"LLVM_LINK_LLVM_DYLIB", "ON"},
|
||||||
}, ";") + "'"},
|
{"LLVM_ENABLE_RUNTIMES", "'libunwind;libcxx;libcxxabi'"},
|
||||||
{"LLVM_ENABLE_RUNTIMES", "'" + strings.Join([]string{
|
|
||||||
"compiler-rt",
|
{"LIBUNWIND_ENABLE_ASSERTIONS", "OFF"},
|
||||||
"libcxx",
|
{"LIBUNWIND_USE_COMPILER_RT", "ON"},
|
||||||
"libcxxabi",
|
{"LIBCXX_HAS_MUSL_LIBC", "ON"},
|
||||||
"libunwind",
|
{"LIBCXX_USE_COMPILER_RT", "ON"},
|
||||||
"libclc",
|
{"LIBCXX_CXX_ABI", "libcxxabi"},
|
||||||
}, ";") + "'"},
|
{"LIBCXX_ENABLE_STATIC_ABI_LIBRARY", "OFF"},
|
||||||
|
{"LIBCXX_HARDENING_MODE", "fast"},
|
||||||
|
{"LIBCXX_HAS_ATOMIC_LIB", "OFF"},
|
||||||
|
{"LIBCXXABI_USE_COMPILER_RT", "ON"},
|
||||||
|
{"LIBCXXABI_USE_LLVM_UNWINDER", "ON"},
|
||||||
|
{"LIBCXXABI_ENABLE_STATIC_UNWINDER", "OFF"},
|
||||||
|
{"LIBCXXABI_HAS_CXA_THREAD_ATEXIT_IMPL", "OFF"},
|
||||||
|
|
||||||
|
{"LLVM_ENABLE_ZLIB", "FORCE_ON"},
|
||||||
|
{"LLVM_ENABLE_ZSTD", "FORCE_ON"},
|
||||||
|
{"LLVM_ENABLE_LIBXML2", "OFF"},
|
||||||
|
},
|
||||||
|
SkipTest: true,
|
||||||
|
},
|
||||||
|
Python,
|
||||||
|
|
||||||
|
Zlib,
|
||||||
|
Zstd,
|
||||||
|
earlyCompilerRT,
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[earlyRuntimes] = Metadata{
|
||||||
|
f: Toolchain.newEarlyRuntimes,
|
||||||
|
|
||||||
|
Name: "early-runtimes",
|
||||||
|
Description: "early LLVM runtimes: libunwind, libcxx, libcxxabi",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
earlyCompilerRT,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newLLVM() (pkg.Artifact, string) {
|
||||||
|
var early PArtifact = muslHeaders
|
||||||
|
if t.isStage0() {
|
||||||
|
// The LLVM build system uses the system installation when building with
|
||||||
|
// LLVM_LINK_LLVM_DYLIB, since it builds runtimes after the fact, using
|
||||||
|
// the just-built toolchain. This is unacceptable in stage0 due to the
|
||||||
|
// potential version difference. Later stages bootstrap off of runtimes
|
||||||
|
// of its previous stage via 3-stage determinism.
|
||||||
|
early = earlyRuntimes
|
||||||
|
}
|
||||||
|
|
||||||
|
cache := []KV{
|
||||||
|
{"ENABLE_LINKER_BUILD_ID", "ON"},
|
||||||
|
{"COMPILER_RT_USE_BUILTINS_LIBRARY", "ON"},
|
||||||
|
{"COMPILER_RT_DEFAULT_TARGET_ONLY", "ON"},
|
||||||
|
{"COMPILER_RT_BUILD_GWP_ASAN", "OFF"},
|
||||||
|
{"LIBCXX_CXX_ABI", "libcxxabi"},
|
||||||
|
{"LIBCXX_USE_COMPILER_RT", "ON"},
|
||||||
|
{"LIBCXX_ENABLE_STATIC_ABI_LIBRARY", "OFF"},
|
||||||
|
{"LIBCXX_HAS_MUSL_LIBC", "ON"},
|
||||||
|
{"LIBCXX_HARDENING_MODE", "fast"},
|
||||||
|
{"LIBCXXABI_USE_LLVM_UNWINDER", "ON"},
|
||||||
|
{"LIBCXXABI_ENABLE_STATIC_UNWINDER", "OFF"},
|
||||||
|
{"LIBCXXABI_USE_COMPILER_RT", "ON"},
|
||||||
|
{"LLVM_INSTALL_BINUTILS_SYMLINKS", "ON"},
|
||||||
|
{"LLVM_INSTALL_UTILS", "ON"},
|
||||||
|
{"LLVM_BUILD_LLVM_DYLIB", "ON"},
|
||||||
|
{"LLVM_LINK_LLVM_DYLIB", "ON"},
|
||||||
|
{"LLVM_APPEND_VC_REV", "OFF"},
|
||||||
|
{"LLVM_ENABLE_RTTI", "ON"},
|
||||||
|
{"LLVM_ENABLE_ZLIB", "FORCE_ON"},
|
||||||
|
{"LLVM_ENABLE_ZSTD", "FORCE_ON"},
|
||||||
|
{"LLVM_ENABLE_PER_TARGET_RUNTIME_DIR", "ON"},
|
||||||
|
{"LLVM_INCLUDE_BENCHMARKS", "OFF"},
|
||||||
|
{"CLANG_DEFAULT_RTLIB", "compiler-rt"},
|
||||||
|
{"CLANG_DEFAULT_UNWINDLIB", "libunwind"},
|
||||||
|
{"CLANG_DEFAULT_CXX_STDLIB", "libc++"},
|
||||||
|
{"CLANG_CONFIG_FILE_SYSTEM_DIR", "/system/etc/clang"},
|
||||||
|
{"LLVM_ENABLE_FFI", "OFF"},
|
||||||
|
{"LLVM_ENABLE_LIBXML2", "OFF"},
|
||||||
|
{"LLVM_ENABLE_LIBCXX", "ON"},
|
||||||
|
{"LLVM_ENABLE_LLD", "ON"},
|
||||||
|
{"LIBUNWIND_ENABLE_ASSERTIONS", "OFF"},
|
||||||
|
{"LIBUNWIND_USE_COMPILER_RT", "ON"},
|
||||||
|
|
||||||
|
{"LLVM_HOST_TRIPLE", `"${ROSA_TRIPLE}"`},
|
||||||
|
{"LLVM_DEFAULT_TARGET_TRIPLE", `"${ROSA_TRIPLE}"`},
|
||||||
|
{"LLVM_ENABLE_PROJECTS", "'" + strings.Join([]string{
|
||||||
|
"clang",
|
||||||
|
"lld",
|
||||||
|
}, ";") + "'"},
|
||||||
|
{"LLVM_ENABLE_RUNTIMES", "'" + strings.Join([]string{
|
||||||
|
"compiler-rt",
|
||||||
|
"libcxx",
|
||||||
|
"libcxxabi",
|
||||||
|
"libunwind",
|
||||||
|
"libclc",
|
||||||
|
}, ";") + "'"},
|
||||||
|
}
|
||||||
|
|
||||||
|
if !t.isStage0() {
|
||||||
|
skipChecks := []string{
|
||||||
|
// expensive, pointless to run here
|
||||||
|
"benchmarks",
|
||||||
|
// LLVM ERROR: Tried to execute an unknown external function: roundevenf
|
||||||
|
"ExecutionEngine/Interpreter/intrinsics.ll",
|
||||||
|
// clang: deadlocks with LLVM_BUILD_LLVM_DYLIB
|
||||||
|
"crash-recovery-modules",
|
||||||
|
// clang: fatal error: '__config_site' file not found
|
||||||
|
"CodeGen/PowerPC/ppc-xmmintrin.c",
|
||||||
|
"CodeGen/PowerPC/ppc-mmintrin.c",
|
||||||
|
"CodeGen/PowerPC/ppc-emmintrin.c",
|
||||||
|
"CodeGen/PowerPC/ppc-pmmintrin.c",
|
||||||
|
"CodeGen/PowerPC/ppc-tmmintrin.c",
|
||||||
|
"CodeGen/PowerPC/ppc-smmintrin.c",
|
||||||
|
"CodeGenCUDA/amdgpu-alias-undef-symbols.cu",
|
||||||
|
// cxx: fails on musl
|
||||||
|
"close.dont-get-rid-of-buffer",
|
||||||
|
"re/re.traits",
|
||||||
|
"std/time",
|
||||||
|
"localization/locales",
|
||||||
|
"localization/locale.categories",
|
||||||
|
"selftest/dsl/dsl.sh.py",
|
||||||
|
"input.output/iostream.format",
|
||||||
|
"locale-specific_form",
|
||||||
|
// cxx: deadlocks
|
||||||
|
"std/thread/thread.jthread",
|
||||||
|
// unwind: fails on musl
|
||||||
|
"eh_frame_fde_pc_range",
|
||||||
|
}
|
||||||
|
switch arch {
|
||||||
|
case "arm64":
|
||||||
|
skipChecks = append(skipChecks,
|
||||||
|
// LLVM: intermittently crashes
|
||||||
|
"ExecutionEngine/OrcLazy/multiple-compile-threads-basic.ll",
|
||||||
|
// unwind: unexpectedly passes
|
||||||
|
"unwind_leaffunction",
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !t.stage.isStage0() {
|
if presetOpts&OptLLVMNoLTO == 0 {
|
||||||
skipChecks := []string{
|
|
||||||
// expensive, pointless to run here
|
|
||||||
"benchmarks",
|
|
||||||
// LLVM ERROR: Tried to execute an unknown external function: roundevenf
|
|
||||||
"ExecutionEngine/Interpreter/intrinsics.ll",
|
|
||||||
// clang: deadlocks with LLVM_BUILD_LLVM_DYLIB
|
|
||||||
"crash-recovery-modules",
|
|
||||||
// clang: fatal error: '__config_site' file not found
|
|
||||||
"CodeGen/PowerPC/ppc-xmmintrin.c",
|
|
||||||
"CodeGen/PowerPC/ppc-mmintrin.c",
|
|
||||||
"CodeGen/PowerPC/ppc-emmintrin.c",
|
|
||||||
"CodeGen/PowerPC/ppc-pmmintrin.c",
|
|
||||||
"CodeGen/PowerPC/ppc-tmmintrin.c",
|
|
||||||
"CodeGen/PowerPC/ppc-smmintrin.c",
|
|
||||||
"CodeGenCUDA/amdgpu-alias-undef-symbols.cu",
|
|
||||||
// cxx: fails on musl
|
|
||||||
"close.dont-get-rid-of-buffer",
|
|
||||||
"re/re.traits",
|
|
||||||
"std/time",
|
|
||||||
"localization/locales",
|
|
||||||
"localization/locale.categories",
|
|
||||||
"selftest/dsl/dsl.sh.py",
|
|
||||||
"input.output/iostream.format",
|
|
||||||
"locale-specific_form",
|
|
||||||
// cxx: deadlocks
|
|
||||||
"std/thread/thread.jthread",
|
|
||||||
// unwind: fails on musl
|
|
||||||
"eh_frame_fde_pc_range",
|
|
||||||
}
|
|
||||||
switch t.arch {
|
|
||||||
case "arm64":
|
|
||||||
skipChecks = append(skipChecks,
|
|
||||||
// LLVM: intermittently crashes
|
|
||||||
"ExecutionEngine/OrcLazy/multiple-compile-threads-basic.ll",
|
|
||||||
// unwind: unexpectedly passes
|
|
||||||
"unwind_leaffunction",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
if t.opts&OptLLVMNoLTO == 0 {
|
|
||||||
cache = append(cache, []KV{
|
|
||||||
// very expensive
|
|
||||||
{"LLVM_ENABLE_LTO", "Thin"},
|
|
||||||
}...)
|
|
||||||
}
|
|
||||||
|
|
||||||
cache = append(cache, []KV{
|
cache = append(cache, []KV{
|
||||||
// symbols: clock_gettime, mallopt
|
// very expensive
|
||||||
{"COMPILER_RT_INCLUDE_TESTS", "OFF"},
|
{"LLVM_ENABLE_LTO", "Thin"},
|
||||||
|
|
||||||
{"LLVM_BUILD_TESTS", "ON"},
|
|
||||||
{"LLVM_LIT_ARGS", litArgs(true, skipChecks...)},
|
|
||||||
}...)
|
}...)
|
||||||
}
|
}
|
||||||
|
|
||||||
return &meta, t.NewPackage("llvm", meta.Version, source, &PackageAttr{
|
cache = append(cache, []KV{
|
||||||
Flag: TExclusive,
|
// symbols: clock_gettime, mallopt
|
||||||
}, &CMakeHelper{
|
{"COMPILER_RT_INCLUDE_TESTS", "OFF"},
|
||||||
Append: []string{"llvm"},
|
|
||||||
|
|
||||||
Cache: cache,
|
{"LLVM_BUILD_TESTS", "ON"},
|
||||||
Script: `
|
{"LLVM_LIT_ARGS", litArgs(true, skipChecks...)},
|
||||||
|
}...)
|
||||||
|
}
|
||||||
|
|
||||||
|
version := t.Version(llvmSource)
|
||||||
|
return t.NewPackage("llvm", version, t.Load(llvmSource), &PackageAttr{
|
||||||
|
Flag: TExclusive,
|
||||||
|
}, &CMakeHelper{
|
||||||
|
Append: []string{"llvm"},
|
||||||
|
|
||||||
|
Cache: cache,
|
||||||
|
Script: `
|
||||||
ln -s ld.lld /work/system/bin/ld
|
ln -s ld.lld /work/system/bin/ld
|
||||||
ln -s clang /work/system/bin/cc
|
ln -s clang /work/system/bin/cc
|
||||||
ln -s clang /work/system/bin/cpp
|
ln -s clang /work/system/bin/cpp
|
||||||
ln -s clang++ /work/system/bin/c++
|
ln -s clang++ /work/system/bin/c++
|
||||||
`,
|
`,
|
||||||
|
|
||||||
// LLVM_LINK_LLVM_DYLIB causes llvm test suite to leak system
|
// LLVM_LINK_LLVM_DYLIB causes llvm test suite to leak system
|
||||||
// installation into test environment, and the tests end up testing the
|
// installation into test environment, and the tests end up testing the
|
||||||
// system installation instead. Tests are disabled on stage0 and relies
|
// system installation instead. Tests are disabled on stage0 and relies
|
||||||
// on 3-stage determinism to test later stages.
|
// on 3-stage determinism to test later stages.
|
||||||
SkipTest: t.stage.isStage0(),
|
SkipTest: t.isStage0(),
|
||||||
|
|
||||||
Test: `
|
Test: `
|
||||||
chmod +w /bin && ln -s \
|
chmod +w /bin && ln -s \
|
||||||
../system/bin/chmod \
|
../system/bin/chmod \
|
||||||
../system/bin/mkdir \
|
../system/bin/mkdir \
|
||||||
@@ -368,20 +303,53 @@ chmod +w /bin && ln -s \
|
|||||||
/bin
|
/bin
|
||||||
ninja ` + jobsFlagE + ` check-all
|
ninja ` + jobsFlagE + ` check-all
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
_python,
|
Python,
|
||||||
_perl,
|
Perl,
|
||||||
_diffutils,
|
Diffutils,
|
||||||
_bash,
|
Bash,
|
||||||
_gawk,
|
Gawk,
|
||||||
_coreutils,
|
Coreutils,
|
||||||
_findutils,
|
Findutils,
|
||||||
|
|
||||||
_zlib,
|
Zlib,
|
||||||
_zstd,
|
Zstd,
|
||||||
early,
|
early,
|
||||||
_kernelHeaders,
|
KernelHeaders,
|
||||||
)
|
), version
|
||||||
|
}
|
||||||
})
|
func init() {
|
||||||
|
const (
|
||||||
|
version = "22.1.5"
|
||||||
|
checksum = "32gOaLPHcUlo3hkdk5RbFumTE01XKeCAYZcpvn8IDHF95egXVfDFSl6eZL3ChMen"
|
||||||
|
)
|
||||||
|
|
||||||
|
artifactsM[llvmSource] = Metadata{
|
||||||
|
f: func(t Toolchain) (pkg.Artifact, string) {
|
||||||
|
return t.NewPatchedSource("llvm", version, newFromGitHub(
|
||||||
|
"llvm/llvm-project",
|
||||||
|
"llvmorg-"+version,
|
||||||
|
checksum,
|
||||||
|
), true, llvmPatches...), version
|
||||||
|
},
|
||||||
|
|
||||||
|
Name: "llvm-project",
|
||||||
|
Description: "LLVM monorepo with Rosa OS patches",
|
||||||
|
|
||||||
|
ID: 1830,
|
||||||
|
}
|
||||||
|
|
||||||
|
artifactsM[LLVM] = Metadata{
|
||||||
|
f: Toolchain.newLLVM,
|
||||||
|
|
||||||
|
Name: "llvm",
|
||||||
|
Description: "a collection of modular and reusable compiler and toolchain technologies",
|
||||||
|
Website: "https://llvm.org",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Zlib,
|
||||||
|
Zstd,
|
||||||
|
Musl,
|
||||||
|
},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,96 @@
|
|||||||
diff --git a/clang/lib/Driver/ToolChains/Gnu.cpp b/clang/lib/Driver/ToolChains/Gnu.cpp
|
package rosa
|
||||||
|
|
||||||
|
// llvmPatches are centralised patches against latest LLVM monorepo.
|
||||||
|
var llvmPatches = []KV{
|
||||||
|
{"increase-stack-size-unconditional", `diff --git a/llvm/lib/Support/Threading.cpp b/llvm/lib/Support/Threading.cpp
|
||||||
|
index 9da357a7ebb9..b2931510c1ae 100644
|
||||||
|
--- a/llvm/lib/Support/Threading.cpp
|
||||||
|
+++ b/llvm/lib/Support/Threading.cpp
|
||||||
|
@@ -80,7 +80,7 @@ unsigned llvm::ThreadPoolStrategy::compute_thread_count() const {
|
||||||
|
// keyword.
|
||||||
|
#include "llvm/Support/thread.h"
|
||||||
|
|
||||||
|
-#if defined(__APPLE__)
|
||||||
|
+#if defined(__APPLE__) || 1
|
||||||
|
// Darwin's default stack size for threads except the main one is only 512KB,
|
||||||
|
// which is not enough for some/many normal LLVM compilations. This implements
|
||||||
|
// the same interface as std::thread but requests the same stack size as the
|
||||||
|
`},
|
||||||
|
|
||||||
|
{"add-rosa-vendor", `diff --git a/llvm/include/llvm/TargetParser/Triple.h b/llvm/include/llvm/TargetParser/Triple.h
|
||||||
|
index 9c83abeeb3b1..5acfe5836a23 100644
|
||||||
|
--- a/llvm/include/llvm/TargetParser/Triple.h
|
||||||
|
+++ b/llvm/include/llvm/TargetParser/Triple.h
|
||||||
|
@@ -190,6 +190,7 @@ public:
|
||||||
|
|
||||||
|
Apple,
|
||||||
|
PC,
|
||||||
|
+ Rosa,
|
||||||
|
SCEI,
|
||||||
|
Freescale,
|
||||||
|
IBM,
|
||||||
|
diff --git a/llvm/lib/TargetParser/Triple.cpp b/llvm/lib/TargetParser/Triple.cpp
|
||||||
|
index a4f9dd42c0fe..cb5a12387034 100644
|
||||||
|
--- a/llvm/lib/TargetParser/Triple.cpp
|
||||||
|
+++ b/llvm/lib/TargetParser/Triple.cpp
|
||||||
|
@@ -279,6 +279,7 @@ StringRef Triple::getVendorTypeName(VendorType Kind) {
|
||||||
|
case NVIDIA: return "nvidia";
|
||||||
|
case OpenEmbedded: return "oe";
|
||||||
|
case PC: return "pc";
|
||||||
|
+ case Rosa: return "rosa";
|
||||||
|
case SCEI: return "scei";
|
||||||
|
case SUSE: return "suse";
|
||||||
|
case Meta:
|
||||||
|
@@ -689,6 +690,7 @@ static Triple::VendorType parseVendor(StringRef VendorName) {
|
||||||
|
return StringSwitch<Triple::VendorType>(VendorName)
|
||||||
|
.Case("apple", Triple::Apple)
|
||||||
|
.Case("pc", Triple::PC)
|
||||||
|
+ .Case("rosa", Triple::Rosa)
|
||||||
|
.Case("scei", Triple::SCEI)
|
||||||
|
.Case("sie", Triple::SCEI)
|
||||||
|
.Case("fsl", Triple::Freescale)
|
||||||
|
`},
|
||||||
|
|
||||||
|
{"xfail-broken-tests", `diff --git a/clang/test/Modules/timestamps.c b/clang/test/Modules/timestamps.c
|
||||||
|
index 50fdce630255..4b4465a75617 100644
|
||||||
|
--- a/clang/test/Modules/timestamps.c
|
||||||
|
+++ b/clang/test/Modules/timestamps.c
|
||||||
|
@@ -1,3 +1,5 @@
|
||||||
|
+// XFAIL: target={{.*-rosa-linux-musl}}
|
||||||
|
+
|
||||||
|
/// Verify timestamps that gets embedded in the module
|
||||||
|
#include <c-header.h>
|
||||||
|
|
||||||
|
`},
|
||||||
|
|
||||||
|
{"path-system-include", `diff --git a/clang/lib/Driver/ToolChains/Linux.cpp b/clang/lib/Driver/ToolChains/Linux.cpp
|
||||||
|
index 8ac8d4eb9181..e46b04a898ca 100644
|
||||||
|
--- a/clang/lib/Driver/ToolChains/Linux.cpp
|
||||||
|
+++ b/clang/lib/Driver/ToolChains/Linux.cpp
|
||||||
|
@@ -671,6 +671,12 @@ void Linux::AddClangSystemIncludeArgs(const ArgList &DriverArgs,
|
||||||
|
addExternCSystemInclude(
|
||||||
|
DriverArgs, CC1Args,
|
||||||
|
concat(SysRoot, "/usr/include", MultiarchIncludeDir));
|
||||||
|
+ if (!MultiarchIncludeDir.empty() &&
|
||||||
|
+ D.getVFS().exists(concat(SysRoot, "/system/include", MultiarchIncludeDir)))
|
||||||
|
+ addExternCSystemInclude(
|
||||||
|
+ DriverArgs, CC1Args,
|
||||||
|
+ concat(SysRoot, "/system/include", MultiarchIncludeDir));
|
||||||
|
+
|
||||||
|
|
||||||
|
if (getTriple().getOS() == llvm::Triple::RTEMS)
|
||||||
|
return;
|
||||||
|
@@ -681,6 +687,7 @@ void Linux::AddClangSystemIncludeArgs(const ArgList &DriverArgs,
|
||||||
|
addExternCSystemInclude(DriverArgs, CC1Args, concat(SysRoot, "/include"));
|
||||||
|
|
||||||
|
addExternCSystemInclude(DriverArgs, CC1Args, concat(SysRoot, "/usr/include"));
|
||||||
|
+ addExternCSystemInclude(DriverArgs, CC1Args, concat(SysRoot, "/system/include"));
|
||||||
|
|
||||||
|
if (!DriverArgs.hasArg(options::OPT_nobuiltininc) && getTriple().isMusl())
|
||||||
|
addSystemInclude(DriverArgs, CC1Args, ResourceDirInclude);
|
||||||
|
`},
|
||||||
|
|
||||||
|
{"path-system-libraries", `diff --git a/clang/lib/Driver/ToolChains/Gnu.cpp b/clang/lib/Driver/ToolChains/Gnu.cpp
|
||||||
index cb6a9b242421..b8d31690d1af 100644
|
index cb6a9b242421..b8d31690d1af 100644
|
||||||
--- a/clang/lib/Driver/ToolChains/Gnu.cpp
|
--- a/clang/lib/Driver/ToolChains/Gnu.cpp
|
||||||
+++ b/clang/lib/Driver/ToolChains/Gnu.cpp
|
+++ b/clang/lib/Driver/ToolChains/Gnu.cpp
|
||||||
@@ -86,3 +178,5 @@ index d525b417b4ea..2b93f401733e 100644
|
|||||||
std::string ArchName;
|
std::string ArchName;
|
||||||
bool IsArm = false;
|
bool IsArm = false;
|
||||||
|
|
||||||
|
`},
|
||||||
|
}
|
||||||
@@ -3,9 +3,40 @@ package rosa
|
|||||||
import (
|
import (
|
||||||
"slices"
|
"slices"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"hakurei.app/internal/pkg"
|
||||||
)
|
)
|
||||||
|
|
||||||
var _make = H("make")
|
func (t Toolchain) newMake() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "4.4.1"
|
||||||
|
checksum = "YS_B07ZcAy9PbaK5_vKGj64SrxO2VMpnMKfc9I0Q9IC1rn0RwOH7802pJoj2Mq4a"
|
||||||
|
)
|
||||||
|
return t.New("make-"+version, TEarly, nil, nil, nil, `
|
||||||
|
cd "$(mktemp -d)"
|
||||||
|
/usr/src/make/configure \
|
||||||
|
--prefix=/system \
|
||||||
|
--build="${ROSA_TRIPLE}" \
|
||||||
|
--disable-dependency-tracking
|
||||||
|
./build.sh
|
||||||
|
./make DESTDIR=/work install
|
||||||
|
`, pkg.Path(AbsUsrSrc.Append("make"), false, newTar(
|
||||||
|
"https://ftpmirror.gnu.org/gnu/make/make-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
))), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Make] = Metadata{
|
||||||
|
f: Toolchain.newMake,
|
||||||
|
|
||||||
|
Name: "make",
|
||||||
|
Description: "a tool which controls the generation of executables and other non-source files",
|
||||||
|
Website: "https://www.gnu.org/software/make/",
|
||||||
|
|
||||||
|
ID: 1877,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// MakeHelper is the [Make] build system helper.
|
// MakeHelper is the [Make] build system helper.
|
||||||
type MakeHelper struct {
|
type MakeHelper struct {
|
||||||
@@ -39,8 +70,6 @@ type MakeHelper struct {
|
|||||||
Make []string
|
Make []string
|
||||||
// Whether to skip the check target.
|
// Whether to skip the check target.
|
||||||
SkipCheck bool
|
SkipCheck bool
|
||||||
// Whether to skip the check target during stage0.
|
|
||||||
SkipCheckEarly bool
|
|
||||||
// Name of the check target, zero value is equivalent to "check".
|
// Name of the check target, zero value is equivalent to "check".
|
||||||
Check []string
|
Check []string
|
||||||
// Replaces the default install command.
|
// Replaces the default install command.
|
||||||
@@ -51,11 +80,11 @@ var _ Helper = new(MakeHelper)
|
|||||||
|
|
||||||
// extra returns make and other optional dependencies.
|
// extra returns make and other optional dependencies.
|
||||||
func (attr *MakeHelper) extra(flag int) P {
|
func (attr *MakeHelper) extra(flag int) P {
|
||||||
extra := P{_make}
|
extra := P{Make}
|
||||||
if (attr == nil || !attr.OmitDefaults) && flag&TEarly == 0 {
|
if (attr == nil || !attr.OmitDefaults) && flag&TEarly == 0 {
|
||||||
extra = append(extra,
|
extra = append(extra,
|
||||||
_gawk,
|
Gawk,
|
||||||
_coreutils,
|
Coreutils,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
return extra
|
return extra
|
||||||
@@ -82,16 +111,19 @@ func (attr *MakeHelper) scriptEarly() string {
|
|||||||
return generate
|
return generate
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// createDir returns false.
|
||||||
|
func (*MakeHelper) createDir() bool { return false }
|
||||||
|
|
||||||
// wantsDir requests a new directory in TMPDIR, or omits the cd statement if InPlace.
|
// wantsDir requests a new directory in TMPDIR, or omits the cd statement if InPlace.
|
||||||
func (attr *MakeHelper) wantsDir() (string, bool) {
|
func (attr *MakeHelper) wantsDir() string {
|
||||||
if attr != nil && attr.InPlace {
|
if attr != nil && attr.InPlace {
|
||||||
return helperInPlace, false
|
return helperInPlace
|
||||||
}
|
}
|
||||||
return `"$(mktemp -d)"`, false
|
return `"$(mktemp -d)"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// script generates the cure script.
|
// script generates the cure script.
|
||||||
func (attr *MakeHelper) script(t Toolchain, name string) string {
|
func (attr *MakeHelper) script(name string) string {
|
||||||
if attr == nil {
|
if attr == nil {
|
||||||
attr = new(MakeHelper)
|
attr = new(MakeHelper)
|
||||||
}
|
}
|
||||||
@@ -162,8 +194,7 @@ make \
|
|||||||
}
|
}
|
||||||
scriptMake += "\n"
|
scriptMake += "\n"
|
||||||
|
|
||||||
if !attr.SkipCheck && t.opts&OptSkipCheck == 0 &&
|
if !attr.SkipCheck && presetOpts&OptSkipCheck == 0 {
|
||||||
(!attr.SkipCheckEarly || !t.stage.isStage0()) {
|
|
||||||
scriptMake += attr.ScriptCheckEarly + `make \
|
scriptMake += attr.ScriptCheckEarly + `make \
|
||||||
` + jobsFlagE + ` \
|
` + jobsFlagE + ` \
|
||||||
`
|
`
|
||||||
|
|||||||
66
internal/rosa/mesa.go
Normal file
66
internal/rosa/mesa.go
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibglvnd() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.7.0"
|
||||||
|
checksum = "eIQJK2sgFQDHdeFkQO87TrSUaZRFG4y2DrwA8Ut-sGboI59uw1OOiIVqq2AIwnGY"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libglvnd", version, newFromGitLab(
|
||||||
|
"gitlab.freedesktop.org",
|
||||||
|
"glvnd/libglvnd",
|
||||||
|
"v"+version,
|
||||||
|
checksum,
|
||||||
|
), nil, (*MesonHelper)(nil),
|
||||||
|
Binutils, // symbols check fail with llvm nm
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libglvnd] = Metadata{
|
||||||
|
f: Toolchain.newLibglvnd,
|
||||||
|
|
||||||
|
Name: "libglvnd",
|
||||||
|
Description: "The GL Vendor-Neutral Dispatch library",
|
||||||
|
Website: "https://gitlab.freedesktop.org/glvnd/libglvnd",
|
||||||
|
|
||||||
|
ID: 12098,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newLibdrm() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "2.4.133"
|
||||||
|
checksum = "bfj296NcR9DndO11hqDbSRFPqaweSLMqRk3dlCPZpM6FONX1WZ9J4JdbTDMUd1rU"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libdrm", version, newFromGitLab(
|
||||||
|
"gitlab.freedesktop.org",
|
||||||
|
"mesa/libdrm",
|
||||||
|
"libdrm-"+version,
|
||||||
|
checksum,
|
||||||
|
), nil, &MesonHelper{
|
||||||
|
Setup: []KV{
|
||||||
|
{"Dintel", "enabled"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Binutils, // symbols check fail with llvm nm
|
||||||
|
|
||||||
|
Libpciaccess,
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libdrm] = Metadata{
|
||||||
|
f: Toolchain.newLibdrm,
|
||||||
|
|
||||||
|
Name: "libdrm",
|
||||||
|
Description: "a userspace library for accessing the DRM",
|
||||||
|
Website: "https://dri.freedesktop.org/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Libpciaccess,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 1596,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,9 +3,72 @@ package rosa
|
|||||||
import (
|
import (
|
||||||
"slices"
|
"slices"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"hakurei.app/internal/pkg"
|
||||||
)
|
)
|
||||||
|
|
||||||
var _meson = H("meson")
|
func (t Toolchain) newMeson() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.11.1"
|
||||||
|
checksum = "uvILRxdopwc6Dy17UbIeClcQr0qHqyTaqyk1M9OqWKN9PwB9N6UVAiyN8kSSz3r2"
|
||||||
|
)
|
||||||
|
return t.NewPackage("meson", version, newFromGitHub(
|
||||||
|
"mesonbuild/meson",
|
||||||
|
version,
|
||||||
|
checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
Env: []string{
|
||||||
|
"CMAKE_MAKE_PROGRAM=ninja",
|
||||||
|
},
|
||||||
|
}, &PipHelper{
|
||||||
|
EnterSource: true,
|
||||||
|
Check: `
|
||||||
|
cd 'test cases'
|
||||||
|
rm -rf \
|
||||||
|
'common/32 has header' \
|
||||||
|
'common/66 vcstag' \
|
||||||
|
'common/153 wrap file should not failed' \
|
||||||
|
'common/184 openmp' \
|
||||||
|
'common/189 check header' \
|
||||||
|
'linuxlike/6 subdir include order' \
|
||||||
|
'linuxlike/9 compiler checks with dependencies' \
|
||||||
|
'linuxlike/13 cmake dependency' \
|
||||||
|
'frameworks/15 llvm' \
|
||||||
|
'frameworks/29 blocks'
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
python3 ./run_project_tests.py \
|
||||||
|
-v \
|
||||||
|
` + jobsFlagE + ` \
|
||||||
|
--failfast \
|
||||||
|
--backend=ninja
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
PythonSetuptools,
|
||||||
|
PkgConfig,
|
||||||
|
CMake,
|
||||||
|
Ninja,
|
||||||
|
PythonPyTest,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Meson] = Metadata{
|
||||||
|
f: Toolchain.newMeson,
|
||||||
|
|
||||||
|
Name: "meson",
|
||||||
|
Description: "an open source build system",
|
||||||
|
Website: "https://mesonbuild.com/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Python,
|
||||||
|
PkgConfig,
|
||||||
|
CMake,
|
||||||
|
Ninja,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 6472,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// MesonHelper is the [Meson] build system helper.
|
// MesonHelper is the [Meson] build system helper.
|
||||||
type MesonHelper struct {
|
type MesonHelper struct {
|
||||||
@@ -25,7 +88,7 @@ type MesonHelper struct {
|
|||||||
var _ Helper = new(MesonHelper)
|
var _ Helper = new(MesonHelper)
|
||||||
|
|
||||||
// extra returns hardcoded meson runtime dependencies.
|
// extra returns hardcoded meson runtime dependencies.
|
||||||
func (*MesonHelper) extra(int) P { return P{_meson} }
|
func (*MesonHelper) extra(int) P { return P{Meson} }
|
||||||
|
|
||||||
// wantsChmod returns false.
|
// wantsChmod returns false.
|
||||||
func (*MesonHelper) wantsChmod() bool { return false }
|
func (*MesonHelper) wantsChmod() bool { return false }
|
||||||
@@ -36,11 +99,14 @@ func (*MesonHelper) wantsWrite() bool { return false }
|
|||||||
// scriptEarly returns the zero value.
|
// scriptEarly returns the zero value.
|
||||||
func (*MesonHelper) scriptEarly() string { return "" }
|
func (*MesonHelper) scriptEarly() string { return "" }
|
||||||
|
|
||||||
|
// createDir returns false.
|
||||||
|
func (*MesonHelper) createDir() bool { return false }
|
||||||
|
|
||||||
// wantsDir requests a new directory in TMPDIR.
|
// wantsDir requests a new directory in TMPDIR.
|
||||||
func (*MesonHelper) wantsDir() (string, bool) { return `"$(mktemp -d)"`, false }
|
func (*MesonHelper) wantsDir() string { return `"$(mktemp -d)"` }
|
||||||
|
|
||||||
// script generates the cure script.
|
// script generates the cure script.
|
||||||
func (attr *MesonHelper) script(t Toolchain, name string) string {
|
func (attr *MesonHelper) script(name string) string {
|
||||||
if attr == nil {
|
if attr == nil {
|
||||||
attr = new(MesonHelper)
|
attr = new(MesonHelper)
|
||||||
}
|
}
|
||||||
@@ -51,7 +117,7 @@ func (attr *MesonHelper) script(t Toolchain, name string) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var scriptTest string
|
var scriptTest string
|
||||||
if !attr.SkipTest && t.opts&OptSkipCheck == 0 {
|
if !attr.SkipTest && presetOpts&OptSkipCheck == 0 {
|
||||||
scriptTest = `
|
scriptTest = `
|
||||||
meson test \
|
meson test \
|
||||||
--print-errorlogs`
|
--print-errorlogs`
|
||||||
|
|||||||
48
internal/rosa/mksh.go
Normal file
48
internal/rosa/mksh.go
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newMksh() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "59c"
|
||||||
|
checksum = "0Zj-k4nXEu3IuJY4lvwD2OrC2t27GdZj8SPy4DoaeuBRH1padWb7oREpYgwY8JNq"
|
||||||
|
)
|
||||||
|
scriptTest := "./test.sh -C regress:no-ctty\n"
|
||||||
|
if presetOpts&OptSkipCheck != 0 {
|
||||||
|
scriptTest = ""
|
||||||
|
}
|
||||||
|
return t.New("mksh-"+version, 0, t.AppendPresets(nil,
|
||||||
|
Perl,
|
||||||
|
Coreutils,
|
||||||
|
), nil, []string{
|
||||||
|
"LDSTATIC=-static",
|
||||||
|
"CPPFLAGS=-DMKSH_DEFAULT_PROFILEDIR=\\\"/system/etc\\\"",
|
||||||
|
}, `
|
||||||
|
cd "$(mktemp -d)"
|
||||||
|
sh /usr/src/mksh/Build.sh -r
|
||||||
|
CPPFLAGS="${CPPFLAGS} -DMKSH_BINSHPOSIX -DMKSH_BINSHREDUCED" \
|
||||||
|
sh /usr/src/mksh/Build.sh -r -L
|
||||||
|
`+scriptTest+`
|
||||||
|
mkdir -p /work/system/bin/
|
||||||
|
cp -v mksh /work/system/bin/
|
||||||
|
cp -v lksh /work/system/bin/sh
|
||||||
|
|
||||||
|
mkdir -p /work/bin/
|
||||||
|
ln -vs ../system/bin/sh /work/bin/
|
||||||
|
`, pkg.Path(AbsUsrSrc.Append("mksh"), false, newTar(
|
||||||
|
"https://mbsd.evolvis.org/MirOS/dist/mir/mksh/mksh-R"+version+".tgz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
))), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Mksh] = Metadata{
|
||||||
|
f: Toolchain.newMksh,
|
||||||
|
|
||||||
|
Name: "mksh",
|
||||||
|
Description: "MirBSD Korn Shell",
|
||||||
|
Website: "https://www.mirbsd.org/mksh",
|
||||||
|
|
||||||
|
ID: 5590,
|
||||||
|
}
|
||||||
|
}
|
||||||
36
internal/rosa/musl-fts.go
Normal file
36
internal/rosa/musl-fts.go
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newMuslFts() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.2.7"
|
||||||
|
checksum = "N_p_ZApX3eHt7xoDCw1hLf6XdJOw7ZSx7xPvpvAP0knG2zgU0zeN5w8tt5Pg60XJ"
|
||||||
|
)
|
||||||
|
return t.NewPackage("musl-fts", version, newFromGitHub(
|
||||||
|
"void-linux/musl-fts",
|
||||||
|
"v"+version,
|
||||||
|
checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
Env: []string{
|
||||||
|
"CC=cc -fPIC",
|
||||||
|
},
|
||||||
|
}, &MakeHelper{
|
||||||
|
Generate: "./bootstrap.sh",
|
||||||
|
},
|
||||||
|
Automake,
|
||||||
|
Libtool,
|
||||||
|
PkgConfig,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[MuslFts] = Metadata{
|
||||||
|
f: Toolchain.newMuslFts,
|
||||||
|
|
||||||
|
Name: "musl-fts",
|
||||||
|
Description: "implementation of fts(3) functions which are missing in musl libc",
|
||||||
|
Website: "https://github.com/void-linux/musl-fts",
|
||||||
|
|
||||||
|
ID: 26980,
|
||||||
|
}
|
||||||
|
}
|
||||||
36
internal/rosa/musl-obstack.go
Normal file
36
internal/rosa/musl-obstack.go
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newMuslObstack() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.2.3"
|
||||||
|
checksum = "tVRY_KjIlkkMszcaRlkKdBVQHIXTT_T_TiMxbwErlILXrOBosocg8KklppZhNdCG"
|
||||||
|
)
|
||||||
|
return t.NewPackage("musl-obstack", version, newFromGitHub(
|
||||||
|
"void-linux/musl-obstack",
|
||||||
|
"v"+version,
|
||||||
|
checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
Env: []string{
|
||||||
|
"CC=cc -fPIC",
|
||||||
|
},
|
||||||
|
}, &MakeHelper{
|
||||||
|
Generate: "./bootstrap.sh",
|
||||||
|
},
|
||||||
|
Automake,
|
||||||
|
Libtool,
|
||||||
|
PkgConfig,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[MuslObstack] = Metadata{
|
||||||
|
f: Toolchain.newMuslObstack,
|
||||||
|
|
||||||
|
Name: "musl-obstack",
|
||||||
|
Description: "obstack functions and macros separated from glibc",
|
||||||
|
Website: "https://github.com/void-linux/musl-obstack",
|
||||||
|
|
||||||
|
ID: 146206,
|
||||||
|
}
|
||||||
|
}
|
||||||
98
internal/rosa/musl.go
Normal file
98
internal/rosa/musl.go
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newMusl(headers bool) (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.2.6"
|
||||||
|
checksum = "WtWb_OV_XxLDAB5NerOL9loLlHVadV00MmGk65PPBU1evaolagoMHfvpZp_vxEzS"
|
||||||
|
)
|
||||||
|
|
||||||
|
name := "musl"
|
||||||
|
helper := MakeHelper{
|
||||||
|
OmitDefaults: true,
|
||||||
|
SkipCheck: true,
|
||||||
|
Script: `
|
||||||
|
mkdir -p /work/system/bin
|
||||||
|
COMPAT_LINKER_NAME="ld-musl-` + linuxArch() + `.so.1"
|
||||||
|
ln -vs ../lib/libc.so /work/system/bin/linker
|
||||||
|
ln -vs ../lib/libc.so /work/system/bin/ldd
|
||||||
|
ln -vs libc.so "/work/system/lib/${COMPAT_LINKER_NAME}"
|
||||||
|
rm -v "/work/lib/${COMPAT_LINKER_NAME}"
|
||||||
|
rmdir -v /work/lib
|
||||||
|
`,
|
||||||
|
}
|
||||||
|
|
||||||
|
if headers {
|
||||||
|
name += "-headers"
|
||||||
|
helper.Make = []string{
|
||||||
|
"DESTDIR=/work",
|
||||||
|
"install-headers",
|
||||||
|
}
|
||||||
|
helper.Install = "# headers installed during make"
|
||||||
|
helper.Script = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
env := []string{
|
||||||
|
"LDFLAGS=" + earlyLDFLAGS(false),
|
||||||
|
}
|
||||||
|
if t.isStage0() {
|
||||||
|
env = append(env,
|
||||||
|
"CC=clang",
|
||||||
|
"AR=ar",
|
||||||
|
"RANLIB=ranlib",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return t.NewPackage(name, version, newTar(
|
||||||
|
"https://musl.libc.org/releases/musl-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), &PackageAttr{
|
||||||
|
// expected to be writable in copies
|
||||||
|
Chmod: true,
|
||||||
|
|
||||||
|
Env: env,
|
||||||
|
|
||||||
|
Patches: []KV{
|
||||||
|
{"ldso-rosa", `diff --git a/ldso/dynlink.c b/ldso/dynlink.c
|
||||||
|
index 715948f4..c2fece68 100644
|
||||||
|
--- a/ldso/dynlink.c
|
||||||
|
+++ b/ldso/dynlink.c
|
||||||
|
@@ -1157,7 +1157,7 @@ static struct dso *load_library(const char *name, struct dso *needed_by)
|
||||||
|
sys_path = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
- if (!sys_path) sys_path = "/lib:/usr/local/lib:/usr/lib";
|
||||||
|
+ if (!sys_path) sys_path = "/system/lib:/system/lib/" LDSO_ARCH "-rosa-linux-musl:/lib:/usr/local/lib:/usr/lib";
|
||||||
|
fd = path_open(name, sys_path, buf, sizeof buf);
|
||||||
|
}
|
||||||
|
pathname = buf;
|
||||||
|
`},
|
||||||
|
},
|
||||||
|
}, &helper,
|
||||||
|
Coreutils,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Musl] = Metadata{
|
||||||
|
f: func(t Toolchain) (pkg.Artifact, string) {
|
||||||
|
return t.newMusl(false)
|
||||||
|
},
|
||||||
|
|
||||||
|
Name: "musl",
|
||||||
|
Description: "an implementation of the C standard library",
|
||||||
|
Website: "https://musl.libc.org/",
|
||||||
|
|
||||||
|
ID: 11688,
|
||||||
|
}
|
||||||
|
|
||||||
|
artifactsM[muslHeaders] = Metadata{
|
||||||
|
f: func(t Toolchain) (pkg.Artifact, string) {
|
||||||
|
return t.newMusl(true)
|
||||||
|
},
|
||||||
|
|
||||||
|
Name: "musl-headers",
|
||||||
|
Description: "system installation of musl headers",
|
||||||
|
}
|
||||||
|
}
|
||||||
38
internal/rosa/ncurses.go
Normal file
38
internal/rosa/ncurses.go
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newNcurses() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "6.6"
|
||||||
|
checksum = "XvWp4xi6hR_hH8XUoGY26L_pqBSDapJYulhzZqPuR0KNklqypqNc1yNXU-nOjf5w"
|
||||||
|
)
|
||||||
|
return t.NewPackage("ncurses", version, newTar(
|
||||||
|
"https://ftpmirror.gnu.org/gnu/ncurses/ncurses-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), nil, &MakeHelper{
|
||||||
|
// "tests" are actual demo programs, not a test suite.
|
||||||
|
SkipCheck: true,
|
||||||
|
|
||||||
|
Configure: []KV{
|
||||||
|
{"with-pkg-config"},
|
||||||
|
{"enable-pc-files"},
|
||||||
|
{"with-shared"},
|
||||||
|
{"with-cxx-shared"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
PkgConfig,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Ncurses] = Metadata{
|
||||||
|
f: Toolchain.newNcurses,
|
||||||
|
|
||||||
|
Name: "ncurses",
|
||||||
|
Description: "a free software emulation of curses in System V Release 4.0 (SVr4)",
|
||||||
|
Website: "https://invisible-island.net/ncurses/",
|
||||||
|
|
||||||
|
ID: 373226,
|
||||||
|
}
|
||||||
|
}
|
||||||
147
internal/rosa/netfilter.go
Normal file
147
internal/rosa/netfilter.go
Normal file
@@ -0,0 +1,147 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newLibmnl() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.0.5"
|
||||||
|
checksum = "DN-vbbvQDpxXJm0TJ6xlluILvfrB86avrCTX50XyE9SEFSAZ_o8nuKc5Gu0Am7-u"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libmnl", version, newTar(
|
||||||
|
"https://www.netfilter.org/projects/libmnl/files/"+
|
||||||
|
"libmnl-"+version+".tar.bz2",
|
||||||
|
checksum,
|
||||||
|
pkg.TarBzip2,
|
||||||
|
), &PackageAttr{
|
||||||
|
Patches: []KV{
|
||||||
|
{"libbsd-sys-queue", `diff --git a/examples/netfilter/nfct-daemon.c b/examples/netfilter/nfct-daemon.c
|
||||||
|
index d223ac2..a7878d0 100644
|
||||||
|
--- a/examples/netfilter/nfct-daemon.c
|
||||||
|
+++ b/examples/netfilter/nfct-daemon.c
|
||||||
|
@@ -20,7 +20,7 @@
|
||||||
|
#include <linux/netfilter/nfnetlink.h>
|
||||||
|
#include <linux/netfilter/nfnetlink_conntrack.h>
|
||||||
|
|
||||||
|
-#include <sys/queue.h>
|
||||||
|
+#include <bsd/sys/queue.h>
|
||||||
|
|
||||||
|
struct nstats {
|
||||||
|
LIST_ENTRY(nstats) list;
|
||||||
|
`},
|
||||||
|
},
|
||||||
|
}, &MakeHelper{
|
||||||
|
Configure: []KV{
|
||||||
|
{"enable-static"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Libbsd,
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libmnl] = Metadata{
|
||||||
|
f: Toolchain.newLibmnl,
|
||||||
|
|
||||||
|
Name: "libmnl",
|
||||||
|
Description: "a minimalistic user-space library oriented to Netlink developers",
|
||||||
|
Website: "https://www.netfilter.org/projects/libmnl/",
|
||||||
|
|
||||||
|
ID: 1663,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newLibnftnl() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.3.1"
|
||||||
|
checksum = "91ou66K-I17iX6DB6hiQkhhC_v4DFW5iDGzwjVRNbJNEmKqowLZBlh3FY-ZDO0r9"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libnftnl", version, t.newTagRemote(
|
||||||
|
"https://git.netfilter.org/libnftnl",
|
||||||
|
"libnftnl-"+version, checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
Env: []string{
|
||||||
|
"CFLAGS=-D_GNU_SOURCE",
|
||||||
|
},
|
||||||
|
}, &MakeHelper{
|
||||||
|
Generate: "./autogen.sh",
|
||||||
|
Configure: []KV{
|
||||||
|
{"enable-static"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Automake,
|
||||||
|
Libtool,
|
||||||
|
PkgConfig,
|
||||||
|
|
||||||
|
Libmnl,
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Libnftnl] = Metadata{
|
||||||
|
f: Toolchain.newLibnftnl,
|
||||||
|
|
||||||
|
Name: "libnftnl",
|
||||||
|
Description: "a userspace library providing a low-level netlink API to the in-kernel nf_tables subsystem",
|
||||||
|
Website: "https://www.netfilter.org/projects/libnftnl/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Libmnl,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 1681,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newIPTables() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.8.13"
|
||||||
|
checksum = "TUA-cFIAsiMvtRR-XzQvXzoIhJUOc9J2gQDJCbBRjmgmVfGfPTCf58wL7e-cUKVQ"
|
||||||
|
)
|
||||||
|
return t.NewPackage("iptables", version, t.newTagRemote(
|
||||||
|
"https://git.netfilter.org/iptables",
|
||||||
|
"v"+version, checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
ScriptEarly: `
|
||||||
|
rm \
|
||||||
|
extensions/libxt_connlabel.txlate \
|
||||||
|
extensions/libxt_conntrack.txlate
|
||||||
|
sed -i \
|
||||||
|
's/de:ad:0:be:ee:ff/DE:AD:00:BE:EE:FF/g' \
|
||||||
|
extensions/libebt_dnat.txlate \
|
||||||
|
extensions/libebt_snat.txlate
|
||||||
|
`,
|
||||||
|
}, &MakeHelper{
|
||||||
|
Generate: "./autogen.sh",
|
||||||
|
Configure: []KV{
|
||||||
|
{"enable-static"},
|
||||||
|
},
|
||||||
|
ScriptCheckEarly: `
|
||||||
|
ln -s ../system/bin/bash /bin/
|
||||||
|
chmod +w /etc/ && ln -s ../usr/src/iptables/etc/ethertypes /etc/
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
Automake,
|
||||||
|
Libtool,
|
||||||
|
PkgConfig,
|
||||||
|
Bash,
|
||||||
|
Python,
|
||||||
|
|
||||||
|
Libnftnl,
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[IPTables] = Metadata{
|
||||||
|
f: Toolchain.newIPTables,
|
||||||
|
|
||||||
|
Name: "iptables",
|
||||||
|
Description: "the userspace command line program used to configure the Linux 2.4.x and later packet filtering ruleset",
|
||||||
|
Website: "https://www.netfilter.org/projects/iptables/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Libnftnl,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 1394,
|
||||||
|
}
|
||||||
|
}
|
||||||
35
internal/rosa/nettle.go
Normal file
35
internal/rosa/nettle.go
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newNettle() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "4.0"
|
||||||
|
checksum = "6agC-vHzzoqAlaX3K9tX8yHgrm03HLqPZzVzq8jh_ePbuPMIvpxereu_uRJFmQK7"
|
||||||
|
)
|
||||||
|
return t.NewPackage("nettle", version, newTar(
|
||||||
|
"https://ftpmirror.gnu.org/gnu/nettle/nettle-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), nil, (*MakeHelper)(nil),
|
||||||
|
M4,
|
||||||
|
Diffutils,
|
||||||
|
|
||||||
|
GMP,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Nettle] = Metadata{
|
||||||
|
f: Toolchain.newNettle,
|
||||||
|
|
||||||
|
Name: "nettle",
|
||||||
|
Description: "a low-level cryptographic library",
|
||||||
|
Website: "https://www.lysator.liu.se/~nisse/nettle/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
GMP,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 2073,
|
||||||
|
}
|
||||||
|
}
|
||||||
33
internal/rosa/nettle3.go
Normal file
33
internal/rosa/nettle3.go
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newNettle3() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "3.10.2"
|
||||||
|
checksum = "07aXlj10X5llf67jIqRQAA1pgLSgb0w_JYggZVPuKNoc-B-_usb5Kr8FrfBe7g1S"
|
||||||
|
)
|
||||||
|
return t.NewPackage("nettle", version, newTar(
|
||||||
|
"https://ftpmirror.gnu.org/gnu/nettle/nettle-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), nil, (*MakeHelper)(nil),
|
||||||
|
M4,
|
||||||
|
Diffutils,
|
||||||
|
|
||||||
|
GMP,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[nettle3] = Metadata{
|
||||||
|
f: Toolchain.newNettle3,
|
||||||
|
|
||||||
|
Name: "nettle3",
|
||||||
|
Description: "a low-level cryptographic library",
|
||||||
|
Website: "https://www.lysator.liu.se/~nisse/nettle/",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
GMP,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
49
internal/rosa/ninja.go
Normal file
49
internal/rosa/ninja.go
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newNinja() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "1.13.2"
|
||||||
|
checksum = "ygKWMa0YV2lWKiFro5hnL-vcKbc_-RACZuPu0Io8qDvgQlZ0dxv7hPNSFkt4214v"
|
||||||
|
)
|
||||||
|
return t.New("ninja-"+version, 0, []pkg.Artifact{
|
||||||
|
t.Load(Python),
|
||||||
|
t.Load(Bash),
|
||||||
|
}, nil, nil, `
|
||||||
|
cd "$(mktemp -d)"
|
||||||
|
python3 /usr/src/ninja/configure.py \
|
||||||
|
--verbose \
|
||||||
|
--bootstrap \
|
||||||
|
--gtest-source-dir=/usr/src/googletest
|
||||||
|
./ninja `+jobsFlagE+` all
|
||||||
|
./ninja_test
|
||||||
|
|
||||||
|
mkdir -p /work/system/bin/
|
||||||
|
cp ninja /work/system/bin/
|
||||||
|
`, pkg.Path(AbsUsrSrc.Append("googletest"), false,
|
||||||
|
newFromGitHubRelease(
|
||||||
|
"google/googletest",
|
||||||
|
"v1.16.0",
|
||||||
|
"googletest-1.16.0.tar.gz",
|
||||||
|
"NjLGvSbgPy_B-y-o1hdanlzEzaYeStFcvFGxpYV3KYlhrWWFRcugYhM3ZMzOA9B_",
|
||||||
|
pkg.TarGzip,
|
||||||
|
)), pkg.Path(AbsUsrSrc.Append("ninja"), true, t.NewPatchedSource(
|
||||||
|
"ninja", version, newFromGitHub(
|
||||||
|
"ninja-build/ninja",
|
||||||
|
"v"+version,
|
||||||
|
checksum,
|
||||||
|
), false,
|
||||||
|
))), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[Ninja] = Metadata{
|
||||||
|
f: Toolchain.newNinja,
|
||||||
|
|
||||||
|
Name: "ninja",
|
||||||
|
Description: "a small build system with a focus on speed",
|
||||||
|
Website: "https://ninja-build.org/",
|
||||||
|
|
||||||
|
ID: 2089,
|
||||||
|
}
|
||||||
|
}
|
||||||
130
internal/rosa/nss.go
Normal file
130
internal/rosa/nss.go
Normal file
@@ -0,0 +1,130 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"hakurei.app/internal/pkg"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (t Toolchain) newNSS() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "3.123.1"
|
||||||
|
checksum = "g811Z_fc74ssg-s6BeXRG-ipSfJggD6hrxjVJxrOBIz98CE7piv0OLwzIRLMQpwR"
|
||||||
|
|
||||||
|
version0 = "4_38_2"
|
||||||
|
checksum0 = "25x2uJeQnOHIiq_zj17b4sYqKgeoU8-IsySUptoPcdHZ52PohFZfGuIisBreWzx0"
|
||||||
|
)
|
||||||
|
return t.NewPackage("nss", version, newFromGitHub(
|
||||||
|
"nss-dev/nss",
|
||||||
|
"NSS_"+strings.Join(strings.SplitN(version, ".", 3), "_")+"_RTM",
|
||||||
|
checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
Paths: []pkg.ExecPath{
|
||||||
|
pkg.Path(AbsUsrSrc.Append("nspr.zip"), false, pkg.NewHTTPGet(
|
||||||
|
nil, "https://hg-edge.mozilla.org/projects/nspr/archive/"+
|
||||||
|
"NSPR_"+version0+"_RTM.zip",
|
||||||
|
mustDecode(checksum0),
|
||||||
|
)),
|
||||||
|
},
|
||||||
|
|
||||||
|
// uses source tree as scratch space
|
||||||
|
Writable: true,
|
||||||
|
Chmod: true,
|
||||||
|
|
||||||
|
ScriptEarly: `
|
||||||
|
unzip /usr/src/nspr.zip -d /usr/src
|
||||||
|
mv '/usr/src/nspr-NSPR_` + version0 + `_RTM' /usr/src/nspr
|
||||||
|
`,
|
||||||
|
}, &MakeHelper{
|
||||||
|
OmitDefaults: true,
|
||||||
|
SkipConfigure: true,
|
||||||
|
InPlace: true,
|
||||||
|
|
||||||
|
SkipCheck: true,
|
||||||
|
Make: []string{
|
||||||
|
"CCC=clang++",
|
||||||
|
"NSDISTMODE=copy",
|
||||||
|
"BUILD_OPT=1",
|
||||||
|
"USE_64=1",
|
||||||
|
"nss_build_all",
|
||||||
|
},
|
||||||
|
Install: `
|
||||||
|
mkdir -p /work/system/nss
|
||||||
|
cp -r \
|
||||||
|
/usr/src/dist/. \
|
||||||
|
lib/ckfw/builtins/certdata.txt \
|
||||||
|
/work/system/nss
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
Perl,
|
||||||
|
Python,
|
||||||
|
Unzip,
|
||||||
|
Gawk,
|
||||||
|
Coreutils,
|
||||||
|
|
||||||
|
Zlib,
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[NSS] = Metadata{
|
||||||
|
f: Toolchain.newNSS,
|
||||||
|
|
||||||
|
Name: "nss",
|
||||||
|
Description: "Network Security Services",
|
||||||
|
Website: "https://firefox-source-docs.mozilla.org/security/nss/index.html",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Zlib,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 2503,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
const (
|
||||||
|
version = "0.5.1"
|
||||||
|
checksum = "oxjnuIrPVMPvD6x8VFLqB7EdbfuhouGQdtPuHDpEHGzoyH5nkxqtYN9UthMY9noA"
|
||||||
|
)
|
||||||
|
artifactsM[buildcatrust] = newPythonPackage(
|
||||||
|
"buildcatrust", 233988,
|
||||||
|
"transform certificate stores between formats",
|
||||||
|
"https://github.com/nix-community/buildcatrust",
|
||||||
|
version, newFromGitHub(
|
||||||
|
"nix-community/buildcatrust",
|
||||||
|
"v"+version, checksum,
|
||||||
|
), &PackageAttr{
|
||||||
|
ScriptEarly: `
|
||||||
|
rm buildcatrust/tests/test_nonhermetic.py
|
||||||
|
`,
|
||||||
|
}, nil, P{PythonFlitCore},
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newNSSCACert() (pkg.Artifact, string) {
|
||||||
|
return t.New("nss-cacert", 0, t.AppendPresets(nil,
|
||||||
|
Bash,
|
||||||
|
|
||||||
|
NSS,
|
||||||
|
buildcatrust,
|
||||||
|
), nil, nil, `
|
||||||
|
mkdir -p /work/system/etc/ssl/{certs/unbundled,certs/hashed,trust-source}
|
||||||
|
buildcatrust \
|
||||||
|
--certdata_input /system/nss/certdata.txt \
|
||||||
|
--ca_bundle_output /work/system/etc/ssl/certs/ca-bundle.crt \
|
||||||
|
--ca_standard_bundle_output /work/system/etc/ssl/certs/ca-no-trust-rules-bundle.crt \
|
||||||
|
--ca_unpacked_output /work/system/etc/ssl/certs/unbundled \
|
||||||
|
--ca_hashed_unpacked_output /work/system/etc/ssl/certs/hashed \
|
||||||
|
--p11kit_output /work/system/etc/ssl/trust-source/ca-bundle.trust.p11-kit
|
||||||
|
`), Unversioned
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[NSSCACert] = Metadata{
|
||||||
|
f: Toolchain.newNSSCACert,
|
||||||
|
|
||||||
|
Name: "nss-cacert",
|
||||||
|
Description: "bundle of X.509 certificates of public Certificate Authorities",
|
||||||
|
Website: "https://curl.se/docs/caextract.html",
|
||||||
|
}
|
||||||
|
}
|
||||||
55
internal/rosa/openssl.go
Normal file
55
internal/rosa/openssl.go
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newOpenSSL() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "3.6.2"
|
||||||
|
checksum = "jH004dXTiE01Hp0kyShkWXwrSHEksZi4i_3v47D9H9Uz9LQ1aMwF7mrl2Tb4t_XA"
|
||||||
|
)
|
||||||
|
return t.NewPackage("openssl", version, newFromGitHubRelease(
|
||||||
|
"openssl/openssl",
|
||||||
|
"openssl-"+version,
|
||||||
|
"openssl-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), &PackageAttr{
|
||||||
|
Env: []string{
|
||||||
|
"CC=cc",
|
||||||
|
},
|
||||||
|
}, &MakeHelper{
|
||||||
|
OmitDefaults: true,
|
||||||
|
|
||||||
|
ConfigureName: "/usr/src/openssl/Configure",
|
||||||
|
Configure: []KV{
|
||||||
|
{"prefix", "/system"},
|
||||||
|
{"libdir", "lib"},
|
||||||
|
{"openssldir", "etc/ssl"},
|
||||||
|
{"", "no-docs"},
|
||||||
|
},
|
||||||
|
Check: []string{
|
||||||
|
"HARNESS_JOBS=" + jobsE,
|
||||||
|
"test",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Perl,
|
||||||
|
Coreutils,
|
||||||
|
|
||||||
|
Zlib,
|
||||||
|
KernelHeaders,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[OpenSSL] = Metadata{
|
||||||
|
f: Toolchain.newOpenSSL,
|
||||||
|
|
||||||
|
Name: "openssl",
|
||||||
|
Description: "TLS/SSL and crypto library",
|
||||||
|
Website: "https://www.openssl.org/",
|
||||||
|
|
||||||
|
ID: 2566,
|
||||||
|
|
||||||
|
// strange malformed tags treated as pre-releases in Anitya
|
||||||
|
latest: (*Versions).getStable,
|
||||||
|
}
|
||||||
|
}
|
||||||
40
internal/rosa/p11.go
Normal file
40
internal/rosa/p11.go
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newP11Kit() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "0.26.2"
|
||||||
|
checksum = "3ei-6DUVtYzrRVe-SubtNgRlweXd6H2qHmUu-_5qVyIn6gSTvZbGS2u79Y8IFb2N"
|
||||||
|
)
|
||||||
|
return t.NewPackage("p11-kit", version, t.newTagRemote(
|
||||||
|
"https://github.com/p11-glue/p11-kit.git",
|
||||||
|
version, checksum,
|
||||||
|
), nil, &MesonHelper{
|
||||||
|
Setup: []KV{
|
||||||
|
{"Dsystemd", "disabled"},
|
||||||
|
{"Dlibffi", "enabled"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Coreutils,
|
||||||
|
Diffutils,
|
||||||
|
|
||||||
|
Libtasn1,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[P11Kit] = Metadata{
|
||||||
|
f: Toolchain.newP11Kit,
|
||||||
|
|
||||||
|
Name: "p11-kit",
|
||||||
|
Description: "provides a way to load and enumerate PKCS#11 modules",
|
||||||
|
Website: "https://p11-glue.freedesktop.org/p11-kit.html",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
Libffi,
|
||||||
|
Libtasn1,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 2582,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
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
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
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
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
package attr {
|
|
||||||
description = "Commands for Manipulating Filesystem Extended Attributes";
|
|
||||||
website = "https://savannah.nongnu.org/projects/attr";
|
|
||||||
anitya = 137;
|
|
||||||
|
|
||||||
version* = "2.5.2";
|
|
||||||
source = remoteTar {
|
|
||||||
url = "https://download.savannah.nongnu.org/releases/attr/"+
|
|
||||||
"attr-"+version+".tar.gz";
|
|
||||||
checksum = "YWEphrz6vg1sUMmHHVr1CRo53pFXRhq_pjN-AlG8UgwZK1y6m7zuDhxqJhD0SV0l";
|
|
||||||
compress = gzip;
|
|
||||||
};
|
|
||||||
patches = [
|
|
||||||
"libgen-basename.patch",
|
|
||||||
"musl-errno.patch",
|
|
||||||
];
|
|
||||||
|
|
||||||
early = `
|
|
||||||
ln -s ../../system/bin/perl /usr/bin
|
|
||||||
`;
|
|
||||||
|
|
||||||
exec = make {};
|
|
||||||
|
|
||||||
inputs = [ perl ];
|
|
||||||
}
|
|
||||||
|
|
||||||
package acl {
|
|
||||||
description = "Commands for Manipulating POSIX Access Control Lists";
|
|
||||||
website = "https://savannah.nongnu.org/projects/acl";
|
|
||||||
anitya = 16;
|
|
||||||
|
|
||||||
version* = "2.3.2";
|
|
||||||
source = remoteTar {
|
|
||||||
url = "https://download.savannah.nongnu.org/releases/acl/"+
|
|
||||||
"acl-"+version+".tar.gz";
|
|
||||||
checksum = "-fY5nwH4K8ZHBCRXrzLdguPkqjKI6WIiGu4dBtrZ1o0t6AIU73w8wwJz_UyjIS0P";
|
|
||||||
compress = gzip;
|
|
||||||
};
|
|
||||||
|
|
||||||
exec = make {
|
|
||||||
// makes assumptions about uid_map/gid_map
|
|
||||||
skipCheck = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
inputs = [ attr ];
|
|
||||||
runtime = [ attr ];
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
package argp-standalone {
|
|
||||||
description = "hierarchical argument parsing library broken out from glibc";
|
|
||||||
website = "http://www.lysator.liu.se/~nisse/misc";
|
|
||||||
|
|
||||||
version* = "1.3";
|
|
||||||
source = remoteTar {
|
|
||||||
url = "http://www.lysator.liu.se/~nisse/misc/"+
|
|
||||||
"argp-standalone-"+version+".tar.gz";
|
|
||||||
checksum = "vtW0VyO2pJ-hPyYmDI2zwSLS8QL0sPAUKC1t3zNYbwN2TmsaE-fADhaVtNd3eNFl";
|
|
||||||
compress = gzip;
|
|
||||||
};
|
|
||||||
|
|
||||||
env = [
|
|
||||||
"CC=cc -std=gnu89 -fPIC",
|
|
||||||
];
|
|
||||||
|
|
||||||
exec = make {
|
|
||||||
install = `
|
|
||||||
install -D -m644 /usr/src/argp-standalone/argp.h /work/system/include/argp.h
|
|
||||||
install -D -m755 libargp.a /work/system/lib/libargp.a
|
|
||||||
`;
|
|
||||||
};
|
|
||||||
|
|
||||||
inputs = [ diffutils ];
|
|
||||||
}
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
package bison {
|
|
||||||
description = "a general-purpose parser generator";
|
|
||||||
website = "https://www.gnu.org/software/bison";
|
|
||||||
anitya = 193;
|
|
||||||
|
|
||||||
version* = "3.8.2";
|
|
||||||
source = remoteTar {
|
|
||||||
url = "https://ftpmirror.gnu.org/gnu/bison/bison-"+version+".tar.gz";
|
|
||||||
checksum = "BhRM6K7URj1LNOkIDCFDctSErLS-Xo5d9ba9seg10o6ACrgC1uNhED7CQPgIY29Y";
|
|
||||||
compress = gzip;
|
|
||||||
};
|
|
||||||
|
|
||||||
exec = make {
|
|
||||||
check = [
|
|
||||||
"TESTSUITEFLAGS=" + jobsFlagE + "' " + skipGNUTests {
|
|
||||||
tests = [
|
|
||||||
// clang miscompiles (SIGILL)
|
|
||||||
764,
|
|
||||||
];
|
|
||||||
} + "'",
|
|
||||||
"check",
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
inputs = [
|
|
||||||
m4,
|
|
||||||
diffutils,
|
|
||||||
sed,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
package buildcatrust {
|
|
||||||
description = "transform certificate stores between formats";
|
|
||||||
website = "https://github.com/nix-community/buildcatrust";
|
|
||||||
anitya = 233988;
|
|
||||||
|
|
||||||
version* = "0.5.1";
|
|
||||||
source = remoteGitHub {
|
|
||||||
suffix = "nix-community/buildcatrust";
|
|
||||||
tag = "v"+version;
|
|
||||||
checksum = "oxjnuIrPVMPvD6x8VFLqB7EdbfuhouGQdtPuHDpEHGzoyH5nkxqtYN9UthMY9noA";
|
|
||||||
};
|
|
||||||
|
|
||||||
early = "\nrm buildcatrust/tests/test_nonhermetic.py\n";
|
|
||||||
|
|
||||||
exec = pip {};
|
|
||||||
|
|
||||||
inputs = [ python-flit-core ];
|
|
||||||
runtime = [ python ];
|
|
||||||
}
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
package bzip2 {
|
|
||||||
description = "a freely available, patent free, high-quality data compressor";
|
|
||||||
website = "https://sourceware.org/bzip2";
|
|
||||||
anitya = 237;
|
|
||||||
|
|
||||||
version* = "1.0.8";
|
|
||||||
source = remoteTar {
|
|
||||||
url = "https://sourceware.org/pub/bzip2/bzip2-"+version+".tar.gz";
|
|
||||||
checksum = "cTLykcco7boom-s05H1JVsQi1AtChYL84nXkg_92Dm1Xt94Ob_qlMg_-NSguIK-c";
|
|
||||||
compress = gzip;
|
|
||||||
};
|
|
||||||
|
|
||||||
// uses source tree as scratch space
|
|
||||||
writable = true;
|
|
||||||
enterSource = true;
|
|
||||||
|
|
||||||
exec = make {
|
|
||||||
skipConfigure = true;
|
|
||||||
skipCheck = true;
|
|
||||||
inPlace = true;
|
|
||||||
|
|
||||||
make = [
|
|
||||||
"CC=cc",
|
|
||||||
];
|
|
||||||
install = "make PREFIX=/work/system install";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
diff --git a/Tests/BootstrapTest.cmake b/Tests/BootstrapTest.cmake
|
|
||||||
index 137de78bc1..b4da52e664 100644
|
|
||||||
--- a/Tests/BootstrapTest.cmake
|
|
||||||
+++ b/Tests/BootstrapTest.cmake
|
|
||||||
@@ -9,7 +9,7 @@ if(NOT nproc EQUAL 0)
|
|
||||||
endif()
|
|
||||||
message(STATUS "running bootstrap: ${bootstrap} ${ninja_arg} ${parallel_arg}")
|
|
||||||
execute_process(
|
|
||||||
- COMMAND ${bootstrap} ${ninja_arg} ${parallel_arg}
|
|
||||||
+ COMMAND ${bootstrap} ${ninja_arg} ${parallel_arg} -- -DCMAKE_USE_OPENSSL=OFF
|
|
||||||
WORKING_DIRECTORY "${bin_dir}"
|
|
||||||
RESULT_VARIABLE result
|
|
||||||
)
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt
|
|
||||||
index 2ead810437..f85cbb8b1c 100644
|
|
||||||
--- a/Tests/CMakeLists.txt
|
|
||||||
+++ b/Tests/CMakeLists.txt
|
|
||||||
@@ -384,7 +384,6 @@ if(BUILD_TESTING)
|
|
||||||
add_subdirectory(CMakeLib)
|
|
||||||
endif()
|
|
||||||
add_subdirectory(CMakeOnly)
|
|
||||||
- add_subdirectory(RunCMake)
|
|
||||||
|
|
||||||
add_subdirectory(FindPackageModeMakefileTest)
|
|
||||||
|
|
||||||
@@ -528,9 +527,6 @@ if(BUILD_TESTING)
|
|
||||||
-DCMake_TEST_CUDA:BOOL=${CMake_TEST_CUDA}
|
|
||||||
-DCMake_INSTALL_NAME_TOOL_BUG:BOOL=${CMake_INSTALL_NAME_TOOL_BUG}
|
|
||||||
)
|
|
||||||
- ADD_TEST_MACRO(ExportImport ExportImport)
|
|
||||||
- set_property(TEST ExportImport APPEND
|
|
||||||
- PROPERTY LABELS "CUDA")
|
|
||||||
ADD_TEST_MACRO(Unset Unset)
|
|
||||||
ADD_TEST_MACRO(PolicyScope PolicyScope)
|
|
||||||
ADD_TEST_MACRO(EmptyLibrary EmptyLibrary)
|
|
||||||
@@ -624,7 +620,6 @@ if(BUILD_TESTING)
|
|
||||||
# run test for BundleUtilities on supported platforms/compilers
|
|
||||||
if((MSVC OR
|
|
||||||
MINGW OR
|
|
||||||
- CMAKE_SYSTEM_NAME MATCHES "Linux" OR
|
|
||||||
CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
|
||||||
AND NOT CMAKE_GENERATOR STREQUAL "Watcom WMake")
|
|
||||||
|
|
||||||
@@ -3095,10 +3090,6 @@ if(BUILD_TESTING)
|
|
||||||
"${CMake_SOURCE_DIR}/Tests/CTestTestFdSetSize/test.cmake.in"
|
|
||||||
"${CMake_BINARY_DIR}/Tests/CTestTestFdSetSize/test.cmake"
|
|
||||||
@ONLY ESCAPE_QUOTES)
|
|
||||||
- add_test(CTestTestFdSetSize ${CMAKE_CTEST_COMMAND}
|
|
||||||
- -S "${CMake_BINARY_DIR}/Tests/CTestTestFdSetSize/test.cmake" -j20 -V --timeout 120
|
|
||||||
- --output-log "${CMake_BINARY_DIR}/Tests/CTestTestFdSetSize/testOutput.log"
|
|
||||||
- )
|
|
||||||
|
|
||||||
if(CMAKE_TESTS_CDASH_SERVER)
|
|
||||||
set(regex "^([^:]+)://([^/]+)(.*)$")
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
package cmake {
|
|
||||||
description = "cross-platform, open-source build system";
|
|
||||||
website = "https://cmake.org";
|
|
||||||
anitya = 306;
|
|
||||||
|
|
||||||
version* = "4.3.2";
|
|
||||||
source = remoteGitHubRelease {
|
|
||||||
suffix = "Kitware/CMake";
|
|
||||||
tag = "v"+version;
|
|
||||||
name = "cmake-"+version+".tar.gz";
|
|
||||||
checksum = "6QylwRVKletndTSkZTV2YBRwgd_9rUVgav_QW23HpjUgV21AVYZOUOal8tdBDmO7";
|
|
||||||
compress = gzip;
|
|
||||||
};
|
|
||||||
patches = [
|
|
||||||
"bootstrap-test-no-openssl.patch",
|
|
||||||
"disable-broken-tests-musl.patch",
|
|
||||||
];
|
|
||||||
|
|
||||||
// test suite expects writable source tree
|
|
||||||
writable = true;
|
|
||||||
|
|
||||||
// expected to be writable in the copy made during bootstrap
|
|
||||||
chmod = true;
|
|
||||||
|
|
||||||
exec = make {
|
|
||||||
omitDefaults = true;
|
|
||||||
|
|
||||||
configureName = "/usr/src/cmake/bootstrap";
|
|
||||||
configure = {
|
|
||||||
"prefix": "/system";
|
|
||||||
"parallel": jobsE;
|
|
||||||
"--";
|
|
||||||
"-DCMAKE_USE_OPENSSL": "OFF";
|
|
||||||
"-DCMake_TEST_NO_NETWORK": "ON";
|
|
||||||
};
|
|
||||||
|
|
||||||
check = [
|
|
||||||
"CTEST_OUTPUT_ON_FAILURE=1",
|
|
||||||
"CTEST_PARALLEL_LEVEL=128",
|
|
||||||
"test",
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
inputs = [ kernel-headers ];
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user