upg enchant enchant-pure python-setuptools qalculate-gtk xf86-input-vmmouse xorg-xwayland

added lxsession
This commit is contained in:
joborun linux 2022-10-23 21:03:15 +03:00
parent 67ec5cd12f
commit 5949c5ab07
25 changed files with 392 additions and 34 deletions

View File

@ -0,0 +1,43 @@
From 25077200289dfdc37c0e86ec4c86e4932137088e Mon Sep 17 00:00:00 2001
From: Morten Linderud <morten@linderud.pw>
Date: Sat, 10 Sep 2022 15:01:15 +0200
Subject: [PATCH] dkms: Change deprecated egrep for grep -E
New versions of grep is going to issue a warning when `egrep` is used.
egrep: warning: egrep is obsolescent; using grep -E
This changes the invocation to `grep -E`
Signed-off-by: Morten Linderud <morten@linderud.pw>
---
dkms.8.in | 2 +-
dkms.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dkms.8.in b/dkms.8.in
index 3681f31..7bd4e37 100644
--- a/dkms.8.in
+++ b/dkms.8.in
@@ -448,7 +448,7 @@ should be put into
.B MAKE[0].
Other entries in the MAKE array will only be used if their corresponding entry in
.B MAKE_MATCH[#]
-matches, as a regular expression (using egrep), the kernel that the module is being built for.
+matches, as a regular expression (using grep -E), the kernel that the module is being built for.
Note that if no value is placed in
.B MAKE_MATCH[#]
for any
diff --git a/dkms.in b/dkms.in
index 9e42f6b..f416790 100644
--- a/dkms.in
+++ b/dkms.in
@@ -1549,7 +1549,7 @@ remove_module()
done
# Delete the $module_version part of the tree if no other $module_version/$kernel_version dirs exist
- if ! find $dkms_tree/$module/$module_version/* -maxdepth 0 -type d 2>/dev/null | egrep -qv "(build|tarball|driver_disk|rpm|deb|source)$"; then
+ if ! find $dkms_tree/$module/$module_version/* -maxdepth 0 -type d 2>/dev/null | grep -Eqv "(build|tarball|driver_disk|rpm|deb|source)$"; then
echo $"Deleting module $module-$module_version completely from the DKMS tree."
rm -rf "$dkms_tree/$module/$module_version"
fi

View File

@ -8,7 +8,7 @@
pkgname=enchant-pure
_pkgname=enchant
pkgver=2.3.3
pkgrel=02
pkgrel=03
pkgdesc="A wrapper library for pure and generic spell checking for all languages, supporting Aspell and Myspell/Hunspell backend engines"
url="https://github.com/AbiWord/enchant"
arch=('x86_64')
@ -44,3 +44,4 @@ license=('LGPL')
sha256sums=(3da12103f11cf49c3cf2fd2ce3017575c5321a489e5b9bfa81dd91ec413f3891) # enchant-2.3.3.tar.gz

View File

@ -1,3 +1,4 @@
aspell
hunspell

View File

@ -7,7 +7,7 @@
pkgname=enchant
pkgver=2.3.3
pkgrel=01
pkgrel=02
pkgdesc="A wrapper library for generic spell checking"
arch=('x86_64')
url="https://abiword.github.io/enchant/"
@ -52,3 +52,5 @@ license=('LGPL')
sha256sums=(3da12103f11cf49c3cf2fd2ce3017575c5321a489e5b9bfa81dd91ec413f3891) # enchant-2.3.3.tar.gz

View File

@ -4,7 +4,7 @@
pkgname=enchant
pkgver=2.3.3
pkgrel=1
pkgrel=2
pkgdesc="A wrapper library for generic spell checking"
arch=('x86_64')
url="https://abiword.github.io/enchant/"

View File

@ -4,6 +4,7 @@ hspell
nuspell
libvoikko
unittestpp
autoconf
automake

View File

@ -1,3 +1,6 @@
real 0m22.712s
user 0m22.877s
sys 0m3.104s
real 2m19.671s
user 1m45.032s
sys 0m8.243s

81
lxsession/PKGBUILD Normal file
View File

@ -0,0 +1,81 @@
#!/usr/bin/bash
# JOBoRun : Jwm OpenBox Obarun RUNit
# Maintainer : Joe Bo Run <joborun@disroot.org>
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname"
# Website : https://pozol.eu
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgbase=lxsession
pkgname=(lxsession lxsession-gtk3)
pkgver=0.5.5
pkgrel=01
epoch=1
pkgdesc='Lightweight X11 session manager'
arch=('x86_64')
url="https://lxde.org/"
depends=('gtk2' 'gtk3' 'polkit')
makedepends=('intltool' 'docbook-xsl' 'vala' 'autoconf')
conflicts=('lxpolkit')
source=(https://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
prepare() {
cd $pkgbase-$pkgver
# Regenerate C sources from Vala code
rm *.stamp
autoreconf -fi
}
build() {
# GTK+ 2 version
[ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
cd gtk2
./configure \
--sysconfdir=/etc \
--prefix=/usr \
--libexecdir=/usr/lib
make
cd "$srcdir"
# GTK+ 3 version
[ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
cd gtk3
./configure \
--sysconfdir=/etc \
--prefix=/usr \
--libexecdir=/usr/lib \
--enable-gtk3
make
}
package_lxsession() {
groups=('lxde')
depends=('gtk2' 'polkit')
conflicts=('lxpolkit')
cd gtk2
make DESTDIR="$pkgdir" install
}
package_lxsession-gtk3() {
groups=('lxde-gtk3')
pkgdesc+=' (GTK+ 3 version)'
depends=('gtk3' 'polkit')
conflicts+=('lxsession')
cd gtk3
make DESTDIR="$pkgdir" install
# Ignore package by AppStream to avoid duplicated IDs
echo 'X-AppStream-Ignore=true' >> "$pkgdir/usr/share/applications/lxsession-default-apps.desktop"
echo 'X-AppStream-Ignore=true' >> "$pkgdir/usr/share/applications/lxsession-edit.desktop"
}
#---- license gpg-key sha256sums ----
license=('GPL2')
sha256sums=(e43e0d9c033095559ab57c8821c2b84fea58009d267db1324d32dca8bd4dbb46) # lxsession-0.5.5.tar.xz

65
lxsession/PKGBUILD-arch Normal file
View File

@ -0,0 +1,65 @@
# Maintainer: Balló György <ballogyor+arch at gmail dot com>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Angel Velasquez <angvp@archlinux.org>
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
pkgbase=lxsession
pkgname=(lxsession lxsession-gtk3)
pkgver=0.5.5
pkgrel=1
epoch=1
pkgdesc='Lightweight X11 session manager'
arch=('x86_64')
url="https://lxde.org/"
license=('GPL2')
depends=('gtk2' 'gtk3' 'polkit')
makedepends=('intltool' 'docbook-xsl' 'vala')
conflicts=('lxpolkit')
source=(https://downloads.sourceforge.net/lxde/$pkgbase-$pkgver.tar.xz)
sha256sums=('e43e0d9c033095559ab57c8821c2b84fea58009d267db1324d32dca8bd4dbb46')
prepare() {
cd $pkgbase-$pkgver
# Regenerate C sources from Vala code
rm *.stamp
autoreconf -fi
}
build() {
# GTK+ 2 version
[ -d gtk2 ] || cp -r $pkgbase-$pkgver gtk2
cd gtk2
./configure --sysconfdir=/etc --prefix=/usr --libexecdir=/usr/lib
make
cd "$srcdir"
# GTK+ 3 version
[ -d gtk3 ] || cp -r $pkgbase-$pkgver gtk3
cd gtk3
./configure --sysconfdir=/etc --prefix=/usr --libexecdir=/usr/lib --enable-gtk3
make
}
package_lxsession() {
groups=('lxde')
depends=('gtk2' 'polkit')
replaces=('lxpolkit')
cd gtk2
make DESTDIR="$pkgdir" install
}
package_lxsession-gtk3() {
groups=('lxde-gtk3')
pkgdesc+=' (GTK+ 3 version)'
depends=('gtk3' 'polkit')
conflicts+=('lxsession')
cd gtk3
make DESTDIR="$pkgdir" install
# Ignore package by AppStream to avoid duplicated IDs
echo 'X-AppStream-Ignore=true' >> "$pkgdir/usr/share/applications/lxsession-default-apps.desktop"
echo 'X-AppStream-Ignore=true' >> "$pkgdir/usr/share/applications/lxsession-edit.desktop"
}

1
lxsession/clean Normal file
View File

@ -0,0 +1 @@
rm -rf {src,pkg,lxsess*tar.xz*}

127
lxsession/configure vendored Normal file
View File

@ -0,0 +1,127 @@
`configure' configures lxsession 0.5.5 to adapt to many kinds of systems.
Usage: src/lxsession-0.5.5/configure [OPTION]... [VAR=VALUE]...
To assign environment variables (e.g., CC, CFLAGS...), specify them as
VAR=VALUE. See below for descriptions of some of the useful variables.
Defaults for the options are specified in brackets.
Configuration:
-h, --help display this help and exit
--help=short display options specific to this package
--help=recursive display the short help of all the included packages
-V, --version display version information and exit
-q, --quiet, --silent do not print `checking ...' messages
--cache-file=FILE cache test results in FILE [disabled]
-C, --config-cache alias for `--cache-file=config.cache'
-n, --no-create do not create output files
--srcdir=DIR find the sources in DIR [configure dir or `..']
Installation directories:
--prefix=PREFIX install architecture-independent files in PREFIX
[/usr/local]
--exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
[PREFIX]
By default, `make install' will install all the files in
`/usr/local/bin', `/usr/local/lib' etc. You can specify
an installation prefix other than `/usr/local' using `--prefix',
for instance `--prefix=$HOME'.
For better control, use the options below.
Fine tuning of the installation directories:
--bindir=DIR user executables [EPREFIX/bin]
--sbindir=DIR system admin executables [EPREFIX/sbin]
--libexecdir=DIR program executables [EPREFIX/libexec]
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
--runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run]
--libdir=DIR object code libraries [EPREFIX/lib]
--includedir=DIR C header files [PREFIX/include]
--oldincludedir=DIR C header files for non-gcc [/usr/include]
--datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
--datadir=DIR read-only architecture-independent data [DATAROOTDIR]
--infodir=DIR info documentation [DATAROOTDIR/info]
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
--mandir=DIR man documentation [DATAROOTDIR/man]
--docdir=DIR documentation root [DATAROOTDIR/doc/lxsession]
--htmldir=DIR html documentation [DOCDIR]
--dvidir=DIR dvi documentation [DOCDIR]
--pdfdir=DIR pdf documentation [DOCDIR]
--psdir=DIR ps documentation [DOCDIR]
Program names:
--program-prefix=PREFIX prepend PREFIX to installed program names
--program-suffix=SUFFIX append SUFFIX to installed program names
--program-transform-name=PROGRAM run sed PROGRAM on installed program names
Optional Features:
--disable-option-checking ignore unrecognized --enable/--with options
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--enable-silent-rules less verbose build output (undo: "make V=1")
--disable-silent-rules verbose build output (undo: "make V=0")
--disable-nls do not use Native Language Support
--enable-dependency-tracking
do not reject slow dependency extractors
--disable-dependency-tracking
speeds up one-time build
--enable-man regenerate roff man pages from Docbook [default=yes]
--enable-more-warnings Add more warnings [default=no]
--enable-gtk Build with gtk support (default: yes)
--enable-gtk3 enable to use gtk-3.0 instead of gtk-2.0
--enable-buildin-clipboard
Build with build-in clipboard support (default: no)
--enable-buildin-polkit Build with build-in polkit-agent support (default:
no)
--enable-advanced-notifications
Build with advanced notification using indicators
and libnotify (default: no)
--enable-debug build libfm with debug support [default=no]
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-xml-catalog=CATALOG
path to xml catalog to use
Some influential environment variables:
CC C compiler command
CFLAGS C compiler flags
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
nonstandard directory <lib dir>
LIBS libraries to pass to the linker, e.g. -l<library>
CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
you have headers in a nonstandard directory <include dir>
PKG_CONFIG path to pkg-config utility
PKG_CONFIG_PATH
directories to add to pkg-config's search path
PKG_CONFIG_LIBDIR
path overriding pkg-config's built-in search path
X11_CFLAGS C compiler flags for X11, overriding pkg-config
X11_LIBS linker flags for X11, overriding pkg-config
GLIB_CFLAGS C compiler flags for GLIB, overriding pkg-config
GLIB_LIBS linker flags for GLIB, overriding pkg-config
GIO_CFLAGS C compiler flags for GIO, overriding pkg-config
GIO_LIBS linker flags for GIO, overriding pkg-config
GTK_CFLAGS C compiler flags for GTK, overriding pkg-config
GTK_LIBS linker flags for GTK, overriding pkg-config
POLKIT_CFLAGS
C compiler flags for POLKIT, overriding pkg-config
POLKIT_LIBS linker flags for POLKIT, overriding pkg-config
INDICATORS_CFLAGS
C compiler flags for INDICATORS, overriding pkg-config
INDICATORS_LIBS
linker flags for INDICATORS, overriding pkg-config
LIBNOTIFY_CFLAGS
C compiler flags for LIBNOTIFY, overriding pkg-config
LIBNOTIFY_LIBS
linker flags for LIBNOTIFY, overriding pkg-config
Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations.
Report bugs to the package provider.

10
lxsession/deps Normal file
View File

@ -0,0 +1,10 @@
docbook-xsl
vala
autoconf
automake
gtk2
gtk3
intltool
at-spi2-core
gettext
polkit

6
lxsession/time Normal file
View File

@ -0,0 +1,6 @@
real 0m18.878s
user 0m15.995s
sys 0m2.949s

View File

@ -6,7 +6,7 @@
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgname=python-setuptools
pkgver=63.4.2
pkgver=63.4.3
pkgrel=01
epoch=1
pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages"
@ -101,5 +101,7 @@ package() {
license=('PSF')
sha256sums=(72b3d8769f8db3cbcbd3f70ec5731e4088f852980cc4317253a7533bc8e25d87 # python-setuptools-63.4.2.tar.gz
sha256sums=(e103616bd2d6c0d14ecbf3922bde31c6dbcda5b0e8c688ad670bc62f8e36f23a # python-setuptools-63.4.3.tar.gz
06e2f68aebedbaeb0b0fe923eae686568910cc3355b33bf619db9266eef83efb) # system-validate-pyproject.patch

View File

@ -3,7 +3,7 @@
# Contributor: Eli Schwartz <eschwartz@archlinux.org>
pkgname=python-setuptools
pkgver=63.4.2
pkgver=63.4.3
pkgrel=1
epoch=1
pkgdesc="Easily download, build, install, upgrade, and uninstall Python packages"
@ -21,7 +21,7 @@ provides=('python-distribute')
replaces=('python-distribute')
source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz"
system-validate-pyproject.patch)
sha512sums=('9c1fa30752a425bfdcaeff4e0ec6b7af2f916dc3f6189ad6827488bead96833af36331f96d93921c65ff88ceb0711f7e9038d3c3dcbcdfb294a31a3f78c8c29b'
sha512sums=('039b72fc8b62c3dc27edb856c5c0f1fe01ccf813c2a5a446baf163c4560a6b819b309056681da9f811609b1e44c4787d4f0e18b2550428df19e9c24e790ade90'
'390fea2c575a0042054f51d33e629b04a48f832f0a4a2dd07d34e23cdf330c382dba0f54bfb7c8a6a253bb248a4940f2a789672f715e4dc2aeb395fa185cae7a')
export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0

View File

@ -32,3 +32,4 @@ license=(GPL)
sha256sums=(a17f0266196851cb4a55a3ae5a84e1942f9116911495ef141135b6853a4d6fbc) # qalculate-gtk-4.3.0.tar.gz

View File

@ -5,4 +5,4 @@ gettext
libqalculate
at-spi2-core

View File

@ -1,12 +1,13 @@
#!/usr/bin/bash
# JOBoRun : Jwm OpenBox Obarun RUNit
# Maintainer : Joe Bo Run <joborun@disroot.org>
# Maintainer : Joe Bo Run <joborun@disroot.org>
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname"
# Website : https://pozol.eu
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgname=xf86-input-vmmouse
pkgver=13.1.0
pkgrel=06
pkgver=13.2.0
pkgrel=01
pkgdesc="X.org VMWare Mouse input driver"
arch=(x86_64)
url="https://xorg.freedesktop.org/"
@ -14,7 +15,7 @@ depends=()
makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=24.4' 'xorgproto')
conflicts=('xorg-server<21.1.1' 'X-ABI-XINPUT_VERSION<24' 'X-ABI-XINPUT_VERSION>=25')
groups=('xorg-drivers')
source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.xz{,.sig})
build() {
cd ${pkgname}-${pkgver}
@ -36,7 +37,14 @@ package() {
license=('custom')
validpgpkeys=('90D027AEAF33CBABC140735BC1F5D3CDF5176580') # Thomas Hellstrom (VMware) <thellstrom@vmware.com>
#validpgpkeys=('90D027AEAF33CBABC140735BC1F5D3CDF5176580') # Thomas Hellstrom (VMware) <thellstrom@vmware.com>
validpgpkeys=('3BB639E56F861FA2E86505690FDD682D974CA72A') # "Matt Turner <mattst88@gmail.com>"
sha256sums=(56f077580ab8f02e2f40358c5c46b0ae3e1828fc77744526b24adf1ceea339b8 # xf86-input-vmmouse-13.2.0.tar.xz
42d490c24f3eb1dba323831d010c7adaf82e888474331d9c75e3c6084f634a8c) # xf86-input-vmmouse-13.2.0.tar.xz.sig
sha512sums=('26a01347a679db058abdc7cbd9a363bb4fccd1a727dc18e279d15b8a0dce71f67af5ff54df28b908391da8d2fc311d8c1813f26dcded4e9a2668db7b55ca5687'
'SKIP')
sha256sums=(0af558957ac1be1b2863712c2475de8f4d7f14921fd01ded2e2fde4921b19319 # xf86-input-vmmouse-13.1.0.tar.bz2
6b26f736ed1bf0cec0e3c706332c31f98f038d5613b64f9277e6e9350e8f7805) # xf86-input-vmmouse-13.1.0.tar.bz2.sig

View File

@ -1,8 +1,9 @@
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
pkgname=xf86-input-vmmouse
pkgver=13.1.0
pkgrel=6
pkgver=13.2.0
pkgrel=1
pkgdesc="X.org VMWare Mouse input driver"
arch=(x86_64)
license=('custom')
@ -11,10 +12,11 @@ depends=('systemd-libs')
makedepends=('xorg-server-devel' 'X-ABI-XINPUT_VERSION=24.4' 'xorgproto')
conflicts=('xorg-server<21.1.1' 'X-ABI-XINPUT_VERSION<24' 'X-ABI-XINPUT_VERSION>=25')
groups=('xorg-drivers')
source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2{,.sig})
sha256sums=('0af558957ac1be1b2863712c2475de8f4d7f14921fd01ded2e2fde4921b19319'
source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.xz{,.sig})
sha512sums=('26a01347a679db058abdc7cbd9a363bb4fccd1a727dc18e279d15b8a0dce71f67af5ff54df28b908391da8d2fc311d8c1813f26dcded4e9a2668db7b55ca5687'
'SKIP')
validpgpkeys=('90D027AEAF33CBABC140735BC1F5D3CDF5176580') # Thomas Hellstrom (VMware) <thellstrom@vmware.com>
#validpgpkeys=('90D027AEAF33CBABC140735BC1F5D3CDF5176580') # Thomas Hellstrom (VMware) <thellstrom@vmware.com>
validpgpkeys=('3BB639E56F861FA2E86505690FDD682D974CA72A') # "Matt Turner <mattst88@gmail.com>"
build() {
cd ${pkgname}-${pkgver}

View File

@ -1 +1 @@
rm -rvf {src,pkg,xf86-in*.tar.bz2*}
rm -rvf {src,pkg,xf86-in*.tar.xz*}

View File

@ -1,3 +1,5 @@
xorg-server-devel
xorg-server
xorgproto

View File

@ -1 +1,2 @@
gpg -v --recv-key C1F5D3CDF5176580
gpg -v --recv-keys ACEB29740C9A4E97

View File

@ -1,5 +1,6 @@
real 0m9.947s
user 0m5.761s
sys 0m4.203s
real 0m8.289s
user 0m7.663s
sys 0m1.560s

View File

@ -6,7 +6,7 @@
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgname=xorg-xwayland
pkgver=22.1.3
pkgver=22.1.4
pkgrel=01
arch=('x86_64')
groups=('xorg')
@ -60,7 +60,7 @@ license=('custom')
#validpgpkeys=('B09FAF35BE914521980951145A81AF8E6ADBB200') # "Michel Daenzer <michel@daenzer.net>"
validpgpkeys=('67DC86F2623FC5FD4BB5225D14706DBE1E4B4540') # "Olivier Fourdan <fourdan@xfce.org>"
sha256sums=(a712eb7bce32cd934df36814b5dd046aa670899c16fe98f2afb003578f86a1c5 # xwayland-22.1.3.tar.xz
d8187daa8507274c799a262be8523bb5e93e6725e61abfe9bc32b0b949ecad64) # xwayland-22.1.3.tar.xz.sig
sha256sums=(5c39bdd77444c3fa7a0e2ef317ae69ddde89a901dc8914dbc8eac39a9313512a # xwayland-22.1.4.tar.xz
2470740a20126e27b6835df6e73dde91d80ed48a5140aa8021dfabc86a3b4e6e) # xwayland-22.1.4.tar.xz.sig

View File

@ -1,7 +1,7 @@
# Maintainer: AndyRTR <andyrtr@archlinux.org>
pkgname=xorg-xwayland
pkgver=22.1.3
pkgver=22.1.4
pkgrel=1
arch=('x86_64')
license=('custom')
@ -18,7 +18,7 @@ makedepends=('meson' 'xorgproto' 'xtrans' 'libxkbfile' 'dbus'
'egl-wayland'
)
source=(https://xorg.freedesktop.org/archive/individual/xserver/xwayland-$pkgver.tar.xz{,.sig})
sha512sums=('be15cb398f9a8aad70352d09b0745c827d4766d5996e817b92c828b5ede27b10186c7ee319901abdc5e141da97170a3ace039269146461d4e2ceb5002a7c35b4'
sha512sums=('a1301df1687ac276172565c98b1fb3d5f35f67d47f625b81fce485d1818cf4896f88c2750b4e93596fa6f7fd515e258d201ca3d0cc39943b576f2d2c3f9be8cd'
'SKIP')
provides=('xorg-server-xwayland')
conflicts=('xorg-server-xwayland')