internal/rosa/x: libxcb-util-image artifact
All checks were successful
Test / Create distribution (push) Successful in 1m4s
Test / Sandbox (push) Successful in 2m47s
Test / ShareFS (push) Successful in 3m43s
Test / Hakurei (push) Successful in 3m51s
Test / Sandbox (race detector) (push) Successful in 5m19s
Test / Hakurei (race detector) (push) Successful in 6m28s
Test / Flake checks (push) Successful in 1m25s
All checks were successful
Test / Create distribution (push) Successful in 1m4s
Test / Sandbox (push) Successful in 2m47s
Test / ShareFS (push) Successful in 3m43s
Test / Hakurei (push) Successful in 3m51s
Test / Sandbox (race detector) (push) Successful in 5m19s
Test / Hakurei (race detector) (push) Successful in 6m28s
Test / Flake checks (push) Successful in 1m25s
Required by xserver xephyr. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
@@ -114,6 +114,8 @@ const (
|
|||||||
Libunistring
|
Libunistring
|
||||||
LibxcbRenderUtil
|
LibxcbRenderUtil
|
||||||
LibxcbUtil
|
LibxcbUtil
|
||||||
|
LibxcbUtilImage
|
||||||
|
LibxcbUtilKeysyms
|
||||||
Libxcvt
|
Libxcvt
|
||||||
Libxkbfile
|
Libxkbfile
|
||||||
Libxml2
|
Libxml2
|
||||||
@@ -194,7 +196,6 @@ const (
|
|||||||
WaylandProtocols
|
WaylandProtocols
|
||||||
XCB
|
XCB
|
||||||
XCBProto
|
XCBProto
|
||||||
XCBUtilKeysyms
|
|
||||||
XDGDBusProxy
|
XDGDBusProxy
|
||||||
XZ
|
XZ
|
||||||
Xkbcomp
|
Xkbcomp
|
||||||
|
|||||||
@@ -186,12 +186,12 @@ func init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t Toolchain) newXCBUtilKeysyms() (pkg.Artifact, string) {
|
func (t Toolchain) newLibxcbUtilKeysyms() (pkg.Artifact, string) {
|
||||||
const (
|
const (
|
||||||
version = "0.4.1"
|
version = "0.4.1"
|
||||||
checksum = "-EEje12UEjtFBuIjb6Fy4cxEghV20BXwQ1BLvhtvSuVcrFkp_X-ZHRM48wAspXZ4"
|
checksum = "-EEje12UEjtFBuIjb6Fy4cxEghV20BXwQ1BLvhtvSuVcrFkp_X-ZHRM48wAspXZ4"
|
||||||
)
|
)
|
||||||
return t.NewPackage("xcb-util-keysyms", version, newTar(
|
return t.NewPackage("libxcb-util-keysyms", version, newTar(
|
||||||
"https://xcb.freedesktop.org/dist/xcb-util-keysyms-"+version+".tar.gz",
|
"https://xcb.freedesktop.org/dist/xcb-util-keysyms-"+version+".tar.gz",
|
||||||
checksum,
|
checksum,
|
||||||
pkg.TarGzip,
|
pkg.TarGzip,
|
||||||
@@ -202,10 +202,10 @@ func (t Toolchain) newXCBUtilKeysyms() (pkg.Artifact, string) {
|
|||||||
), version
|
), version
|
||||||
}
|
}
|
||||||
func init() {
|
func init() {
|
||||||
artifactsM[XCBUtilKeysyms] = Metadata{
|
artifactsM[LibxcbUtilKeysyms] = Metadata{
|
||||||
f: Toolchain.newXCBUtilKeysyms,
|
f: Toolchain.newLibxcbUtilKeysyms,
|
||||||
|
|
||||||
Name: "xcb-util-keysyms",
|
Name: "libxcb-util-keysyms",
|
||||||
Description: "standard X key constants and conversion to/from keycodes",
|
Description: "standard X key constants and conversion to/from keycodes",
|
||||||
Website: "https://gitlab.freedesktop.org/xorg/lib/libxcb-keysyms",
|
Website: "https://gitlab.freedesktop.org/xorg/lib/libxcb-keysyms",
|
||||||
|
|
||||||
@@ -217,6 +217,38 @@ func init() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t Toolchain) newLibxcbUtilImage() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "0.4.1"
|
||||||
|
checksum = "47pvXmFwaUBZIrJ4CE9xjTQIFyxeqoNAL-DshlB11GZ_jjI3G1a6KF0K7mtBQ1E7"
|
||||||
|
)
|
||||||
|
return t.NewPackage("libxcb-util-image", version, newTar(
|
||||||
|
"https://xcb.freedesktop.org/dist/xcb-util-image-"+version+".tar.gz",
|
||||||
|
checksum,
|
||||||
|
pkg.TarGzip,
|
||||||
|
), nil, (*MakeHelper)(nil),
|
||||||
|
PkgConfig,
|
||||||
|
|
||||||
|
XCB,
|
||||||
|
LibxcbUtil,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[LibxcbUtilImage] = Metadata{
|
||||||
|
f: Toolchain.newLibxcbUtilImage,
|
||||||
|
|
||||||
|
Name: "libxcb-util-image",
|
||||||
|
Description: "XCB port of Xlib's XImage and XShmImage functions.",
|
||||||
|
Website: "https://gitlab.freedesktop.org/xorg/lib/libxcb-image",
|
||||||
|
|
||||||
|
Dependencies: P{
|
||||||
|
LibxcbUtil,
|
||||||
|
},
|
||||||
|
|
||||||
|
ID: 5168,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (t Toolchain) newLibxcbUtil() (pkg.Artifact, string) {
|
func (t Toolchain) newLibxcbUtil() (pkg.Artifact, string) {
|
||||||
const (
|
const (
|
||||||
version = "0.4.1"
|
version = "0.4.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user