From d2c6d486b06073aa88ee1912d3587f657cd57304 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 4 Mar 2026 18:01:18 +0900 Subject: 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 --- internal/rosa/x.go | 42 +++++++++++++++++++++++++++++++++--------- 1 file changed, 33 insertions(+), 9 deletions(-) (limited to 'internal/rosa/x.go') 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 } -- cgit v1.3.1