diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-03-04 18:01:18 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-03-05 00:20:27 +0900 |
| commit | d2c6d486b06073aa88ee1912d3587f657cd57304 (patch) | |
| tree | 42e7df590ee8cda255e4cd35f9bd5ff7f9b2f94f /internal/rosa/x.go | |
| parent | 6fdd800b2b421b32e7db373b576433126c4652a2 (diff) | |
internal/rosa: provide package metadata
This had to be done out-of-band because there was no way to efficiently represent these within Artifact.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/x.go')
| -rw-r--r-- | internal/rosa/x.go | 42 |
1 files changed, 33 insertions, 9 deletions
diff --git a/internal/rosa/x.go b/internal/rosa/x.go index fc4596b7..0d8ff958 100644 --- a/internal/rosa/x.go +++ b/internal/rosa/x.go @@ -2,7 +2,7 @@ package rosa import "hakurei.app/internal/pkg" -func (t Toolchain) newUtilMacros() pkg.Artifact { +func (t Toolchain) newUtilMacros() (pkg.Artifact, string) { const ( version = "1.17" checksum = "vYPO4Qq3B_WGcsBjG0-lfwZ6DZ7ayyrOLqfDrVOgTDcyLChuMGOAAVAa_UXLu5tD" @@ -12,11 +12,19 @@ func (t Toolchain) newUtilMacros() pkg.Artifact { "util-macros-"+version+".tar.bz2", mustDecode(checksum), pkg.TarBzip2, - ), nil, (*MakeHelper)(nil)) + ), nil, (*MakeHelper)(nil)), version } -func init() { artifactsF[utilMacros] = Toolchain.newUtilMacros } +func init() { + artifactsM[utilMacros] = Metadata{ + f: Toolchain.newUtilMacros, -func (t Toolchain) newXproto() pkg.Artifact { + Name: "util-macros", + Description: "X.Org Autotools macros", + Website: "https://xorg.freedesktop.org/", + } +} + +func (t Toolchain) newXproto() (pkg.Artifact, string) { const ( version = "7.0.23" checksum = "goxwWxV0jZ_3pNczXFltZWHAhq92x-aEreUGyp5Ns8dBOoOmgbpeNIu1nv0Zx07z" @@ -37,11 +45,19 @@ func (t Toolchain) newXproto() pkg.Artifact { PkgConfig, utilMacros, - ) + ), version +} +func init() { + artifactsM[Xproto] = Metadata{ + f: Toolchain.newXproto, + + Name: "xproto", + Description: "X Window System unified protocol definitions", + Website: "https://gitlab.freedesktop.org/xorg/proto/xorgproto", + } } -func init() { artifactsF[Xproto] = Toolchain.newXproto } -func (t Toolchain) newLibXau() pkg.Artifact { +func (t Toolchain) newLibXau() (pkg.Artifact, string) { const ( version = "1.0.7" checksum = "bm768RoZZnHRe9VjNU1Dw3BhfE60DyS9D_bgSR-JLkEEyUWT_Hb_lQripxrXto8j" @@ -64,6 +80,14 @@ func (t Toolchain) newLibXau() pkg.Artifact { utilMacros, Xproto, - ) + ), version +} +func init() { + artifactsM[LibXau] = Metadata{ + f: Toolchain.newLibXau, + + Name: "libXau", + Description: "functions for handling Xauthority files and entries", + Website: "https://gitlab.freedesktop.org/xorg/lib/libxau", + } } -func init() { artifactsF[LibXau] = Toolchain.newLibXau } |
