Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xorgproto: new package #45569

Merged
merged 12 commits into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions etc/spack/defaults/packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,20 @@ packages:
providers:
awk: [gawk]
armci: [armcimpi]
bigreqsproto: [xorgproto, bigreqsproto]
blas: [openblas, amdblis]
compositeproto: [xorgproto, compositeproto]
D: [ldc]
daal: [intel-oneapi-daal]
damageproto: [xorgproto, damageproto]
dmxproto: [xorgproto, dmxproto]
dri2proto: [xorgproto, dri2proto]
dri3proto: [xorgproto, dri3proto]
elf: [elfutils]
fftw-api: [fftw, amdfftw]
flame: [libflame, amdlibflame]
fixesproto: [xorgproto, fixesproto]
fontcacheproto: [xorgproto, fontcacheproto]
teaguesterling marked this conversation as resolved.
Show resolved Hide resolved
fortran-rt: [gcc-runtime, intel-oneapi-runtime]
fuse: [libfuse]
gl: [glx, osmesa]
Expand Down Expand Up @@ -53,15 +61,25 @@ packages:
pbs: [openpbs, torque]
pil: [py-pillow]
pkgconfig: [pkgconf, pkg-config]
presentproto: [xorgroto, presentproto]
qmake: [qt-base, qt]
randrproto: [xorgproto, randrproto]
renderproto: [xorgproto, renderproto]
resourceproto: [xorgproto, resourceproto]
recordproto: [xorgproto, recordproto]
rpc: [libtirpc]
scalapack: [netlib-scalapack, amdscalapack]
scrnsaverproto: [xorgproto, scrnsaverproto]
sycl: [hipsycl]
szip: [libaec, libszip]
tbb: [intel-tbb]
unwind: [libunwind]
uuid: [util-linux-uuid, libuuid]
videoproto: [xorgproto, videoproto]
wasi-sdk: [wasi-sdk-prebuilt]
xcmiscproto: [xorgproto, xcmiscproto]
xf86driproto: [xorgproto, xf86driproto]
xineramaproto: [xorgproto, xineramaproto]
teaguesterling marked this conversation as resolved.
Show resolved Hide resolved
xxd: [xxd-standalone, vim]
yacc: [bison, byacc]
ziglang: [zig]
Expand Down
39 changes: 39 additions & 0 deletions var/spack/repos/builtin/packages/xorgproto/package.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *


class Xorgproto(MesonPackage):
teaguesterling marked this conversation as resolved.
Show resolved Hide resolved
"""X Window System unified protocol definitions replacing standalone protos"""

homepage = "https://gitlab.freedesktop.org/xorg/proto/xorgproto"
url = "https://gitlab.freedesktop.org/xorg/proto/xorgproto/-/archive/xorgproto-2024.1/xorgproto-xorgproto-2024.1.tar.bz2"
teaguesterling marked this conversation as resolved.
Show resolved Hide resolved

maintainers("teaguesterling")

license("OTHER", checked_by="teaguesterling")

version("2024.1", sha256="3959b2d17d86dd9d165dc24d26f372ca64f27127cd381739366ba8383a6cd51a")
teaguesterling marked this conversation as resolved.
Show resolved Hide resolved

wdconinc marked this conversation as resolved.
Show resolved Hide resolved
depends_on("util-macros", type="build")
teaguesterling marked this conversation as resolved.
Show resolved Hide resolved

provides("bigreqsproto")
provides("compositeproto")
provides("damageproto")
provides("dmxproto")
provides("dri2proto")
provides("dri3proto")
provides("fixesproto")
provides("fontcacheproto")
provides("presentproto")
provides("randrproto")
provides("recordproto")
provides("renderproto")
provides("resourceproto")
provides("scrnsaverproto")
provides("videoproto")
provides("xineramaproto")
provides("xf86driproto")
provides("xcmiscproto")
teaguesterling marked this conversation as resolved.
Show resolved Hide resolved
Loading