From bd6f5f3f3a433c6249eaa561690ade805de82be6 Mon Sep 17 00:00:00 2001 From: Eric Naim Date: Sat, 14 Dec 2024 22:11:04 +0800 Subject: [PATCH] egl-wayland: Drop Signed-off-by: Eric Naim --- egl-wayland/.SRCINFO | 23 -------------- egl-wayland/.nvchecker.toml | 4 --- egl-wayland/10_nvidia_wayland.json | 6 ---- egl-wayland/PKGBUILD | 50 ------------------------------ 4 files changed, 83 deletions(-) delete mode 100644 egl-wayland/.SRCINFO delete mode 100644 egl-wayland/.nvchecker.toml delete mode 100644 egl-wayland/10_nvidia_wayland.json delete mode 100644 egl-wayland/PKGBUILD diff --git a/egl-wayland/.SRCINFO b/egl-wayland/.SRCINFO deleted file mode 100644 index d7dc916e..00000000 --- a/egl-wayland/.SRCINFO +++ /dev/null @@ -1,23 +0,0 @@ -pkgbase = egl-wayland - pkgdesc = EGLStream-based Wayland external platform - pkgver = 1.1.17 - pkgrel = 1 - epoch = 4 - url = https://github.com/NVIDIA/egl-wayland - arch = x86_64 - license = MIT - makedepends = git - makedepends = libglvnd>=1.3.4 - makedepends = meson - makedepends = wayland-protocols - depends = eglexternalplatform - depends = glibc - depends = libdrm - depends = wayland - provides = libnvidia-egl-wayland.so - source = git+https://github.com/NVIDIA/egl-wayland#tag=1.1.17 - source = 10_nvidia_wayland.json - b2sums = 5c44c6ad89b8e725b46e8edbc1477743006ffcf98601a7177f7e51f439fcbe4fab75258b980d0f20f5d9e2a4dbf551fa9f3722a42da6971ef574462b425ae33c - b2sums = b10206c742e8966d1192b9b0604137e6b296d2be74a437841c63844c0716343578b11565a34fb4c534d5908c0b5775305581b68039a6ff9ed7421c9d385a2b7a - -pkgname = egl-wayland diff --git a/egl-wayland/.nvchecker.toml b/egl-wayland/.nvchecker.toml deleted file mode 100644 index 998387ff..00000000 --- a/egl-wayland/.nvchecker.toml +++ /dev/null @@ -1,4 +0,0 @@ -[egl-wayland] -source = "github" -github = "NVIDIA/egl-wayland" -use_max_tag = true diff --git a/egl-wayland/10_nvidia_wayland.json b/egl-wayland/10_nvidia_wayland.json deleted file mode 100644 index c08a6411..00000000 --- a/egl-wayland/10_nvidia_wayland.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "file_format_version" : "1.0.0", - "ICD" : { - "library_path" : "libnvidia-egl-wayland.so.1" - } -} diff --git a/egl-wayland/PKGBUILD b/egl-wayland/PKGBUILD deleted file mode 100644 index 2351737b..00000000 --- a/egl-wayland/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# Maintainer: Jan Alexander Steffens (heftig) - -pkgname=egl-wayland -pkgver=1.1.17 -pkgrel=1 -epoch=4 -pkgdesc="EGLStream-based Wayland external platform" -url="https://github.com/NVIDIA/egl-wayland" -arch=(x86_64) -license=(MIT) -depends=( - eglexternalplatform - glibc - libdrm - wayland -) -makedepends=( - git - 'libglvnd>=1.3.4' - meson - wayland-protocols -) -provides=(libnvidia-egl-wayland.so) -source=( - "git+$url#tag=$pkgver" - 10_nvidia_wayland.json -) -b2sums=('5c44c6ad89b8e725b46e8edbc1477743006ffcf98601a7177f7e51f439fcbe4fab75258b980d0f20f5d9e2a4dbf551fa9f3722a42da6971ef574462b425ae33c' - 'b10206c742e8966d1192b9b0604137e6b296d2be74a437841c63844c0716343578b11565a34fb4c534d5908c0b5775305581b68039a6ff9ed7421c9d385a2b7a') - -prepare() { - cd $pkgname -} - -build() { - arch-meson $pkgname build - meson compile -C build -} - -check() { - meson test -C build --print-errorlogs -} - -package() { - meson install -C build --destdir "$pkgdir" - install -Dt "$pkgdir/usr/share/egl/egl_external_platform.d" -m644 10_nvidia_wayland.json - install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 $pkgname/COPYING -} - -# vim:set sw=2 sts=-1 et: