move libdatachannel libjuice from jobcomm and upg

upg librewolf md4c pacman-contrib cmonad python-pytest wayland-protocols
This commit is contained in:
joborun linux 2024-01-31 01:29:27 +02:00
parent ad779ff668
commit f74586570e
27 changed files with 370 additions and 98 deletions

57
libdatachannel/PKGBUILD Normal file
View File

@ -0,0 +1,57 @@
#!/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 |---------------------------------------
pkgname=libdatachannel
pkgver=0.20.1
pkgrel=01
pkgdesc="C/C++ WebRTC network library featuring Data Channels, Media Transport, and WebSockets"
url="https://github.com/paullouisageneau/$pkgname"
makedepends=('git' 'cmake')
depends=('openssl' 'libjuice' 'libsrtp')
provides=("$pkgname")
conflicts=("$pkgname")
source=("git+https://github.com/paullouisageneau/$pkgname.git#tag=v$pkgver")
prepare() {
cd $pkgname
git submodule update --init --recursive "$srcdir"/"$pkgname"/deps/{usrsctp,plog}
}
build() {
cd $pkgname
rm -rf build
cmake -B build \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DUSE_GNUTLS=0 \
-DUSE_NICE=0 \
-DUSE_SYSTEM_JUICE=1 \
-DUSE_SYSTEM_SRTP=1 \
-DNO_TESTS=1 \
-DNO_EXAMPLES=1 \
-Wno-dev
cd build
make
}
package() {
cd $pkgname
cd build
make DESTDIR="$pkgdir/" install
}
#---- arch license gpg-key & sha256sums ----
arch=(x86_64)
license=('MPL2')
sha256sums=(SKIP)
## 316a3311f1a6db56b9a25680b63ae5d842ba8d1e07836e2381ce711ad5e7fec4 libdatachannel-0.20.1-01-x86_64.pkg.tar.lz

View File

@ -0,0 +1,41 @@
# Maintainer: Sven-Hendrik Haase <svenstaro@archlinux.org>
# Contributor: Jay Schmidek <jschmidek at gmail dot com>
# Contributor: Paul-Louis Ageneau <paul-louis at ageneau dot org>
pkgname=libdatachannel
pkgver=0.20.1
pkgrel=1
pkgdesc="C/C++ WebRTC network library featuring Data Channels, Media Transport, and WebSockets"
arch=('x86_64')
url="https://github.com/paullouisageneau/$pkgname"
license=('MPL2')
makedepends=('git' 'cmake')
depends=('glibc' 'gcc-libs' 'openssl' 'libjuice' 'libsrtp')
source=("git+https://github.com/paullouisageneau/$pkgname.git#tag=v$pkgver")
sha512sums=('SKIP')
prepare() {
cd $pkgname
git submodule update --init --recursive "$srcdir"/"$pkgname"/deps/{usrsctp,plog}
}
build() {
cmake -B build -S $pkgname \
-DCMAKE_BUILD_TYPE='None' \
-DCMAKE_INSTALL_PREFIX=/usr \
-DUSE_GNUTLS=0 \
-DUSE_NICE=0 \
-DUSE_SYSTEM_JUICE=1 \
-DUSE_SYSTEM_SRTP=1 \
-DNO_EXAMPLES=1 \
-DNO_TESTS=1 \
-Wno-dev
cmake --build build
}
package() {
DESTDIR="$pkgdir/" cmake --install build
cd $pkgname
install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
}

View File

@ -0,0 +1,36 @@
# Maintainer: Jay Schmidek <jschmidek at gmail dot com>
# Maintainer: Paul-Louis Ageneau <paul-louis at ageneau dot org>
pkgname=libdatachannel
pkgver=0.19.4
pkgrel=1
pkgdesc="C/C++ WebRTC network library featuring Data Channels, Media Transport, and WebSockets"
arch=('x86_64' 'i686' 'armv7h' 'aarch64')
url="https://github.com/paullouisageneau/$pkgname"
license=('MPL2')
makedepends=('git' 'cmake')
depends=('openssl' 'libjuice' 'libsrtp')
provides=("$pkgname")
conflicts=("$pkgname")
source=("git+https://github.com/paullouisageneau/$pkgname.git#tag=v$pkgver")
md5sums=('SKIP')
prepare() {
cd $pkgname
git submodule update --init --recursive "$srcdir"/"$pkgname"/deps/{usrsctp,plog}
}
build() {
cd $pkgname
rm -rf build
cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DUSE_GNUTLS=0 -DUSE_NICE=0 -DUSE_SYSTEM_JUICE=1 -DUSE_SYSTEM_SRTP=1 -DNO_TESTS=1 -DNO_EXAMPLES=1
cd build
make
}
package() {
cd $pkgname
cd build
make DESTDIR="$pkgdir/" install
}

1
libdatachannel/clean Normal file
View File

@ -0,0 +1 @@
rm -rf {src,pkg,libdatachannel}

6
libdatachannel/deps Normal file
View File

@ -0,0 +1,6 @@
libjuice
libsrtp
git
cmake

6
libdatachannel/time Normal file
View File

@ -0,0 +1,6 @@
real 3m0.108s
user 2m47.480s
sys 0m7.892s

42
libjuice/PKGBUILD Normal file
View File

@ -0,0 +1,42 @@
#!/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 |---------------------------------------
pkgname=libjuice
pkgver=1.3.4
pkgrel=01
pkgdesc="UDP Interactive Connectivity Establishment (ICE) library"
url="https://github.com/paullouisageneau/$pkgname"
makedepends=('git' 'cmake')
depends=()
provides=("$pkgname")
conflicts=("$pkgname")
source=("git+https://github.com/paullouisageneau/$pkgname.git#tag=v$pkgver")
build() {
cd $pkgname
rm -rf build
cmake -B build -Wno-dev -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DNO_TESTS=1
cd build
make
}
package() {
cd $pkgname
cd build
make DESTDIR="$pkgdir/" install
}
#---- arch license gpg-key & sha256sums ----
arch=(x86_64)
license=('MPL2')
sha256sums=(SKIP)
## 71bd9777eb6fe28f413ca6e1fc33147e054f50a3d25668c0b9de650a19a2548b libjuice-1.3.4-01-x86_64.pkg.tar.lz

30
libjuice/PKGBUILD-arch Normal file
View File

@ -0,0 +1,30 @@
# Maintainer: Sven-Hendrik Haase <svenstaro@archlinux.org>
# Contributor: Paul-Louis Ageneau <paul-louis at ageneau dot org>
pkgname=libjuice
pkgver=1.3.4
pkgrel=1
pkgdesc="UDP Interactive Connectivity Establishment (ICE) library"
arch=('x86_64')
url="https://github.com/paullouisageneau/$pkgname"
license=('MPL2')
makedepends=('cmake')
depends=('glibc')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/paullouisageneau/libjuice/archive/refs/tags/v${pkgver}.tar.gz")
sha512sums=('0c690940fab9c29c52955ee96c254c086f4170c8e59a26b767b9ffc288db9ecc7195136f958b9773903201e2719279bca63c7f64b6bb89bf8a41b6dd1da4eb63')
build() {
cmake -B build -S $pkgname-$pkgver \
-DCMAKE_BUILD_TYPE='None' \
-DCMAKE_INSTALL_PREFIX=/usr \
-DNO_TESTS=1 \
-Wno-dev
cmake --build build
}
package() {
DESTDIR="$pkgdir/" cmake --install build
cd ${pkgname}-${pkgver}
install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
}

29
libjuice/PKGBUILD-aur Normal file
View File

@ -0,0 +1,29 @@
# Maintainer: Paul-Louis Ageneau <paul-louis at ageneau dot org>
pkgname=libjuice
pkgver=1.3.3
pkgrel=1
pkgdesc="UDP Interactive Connectivity Establishment (ICE) library"
arch=('x86_64' 'i686' 'armv7h' 'aarch64')
url="https://github.com/paullouisageneau/$pkgname"
license=('MPL2')
makedepends=('git' 'cmake')
depends=()
provides=("$pkgname")
conflicts=("$pkgname")
source=("git+https://github.com/paullouisageneau/$pkgname.git#tag=v$pkgver")
md5sums=('SKIP')
build() {
cd $pkgname
rm -rf build
cmake -B build -Wno-dev -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DNO_TESTS=1
cd build
make
}
package() {
cd $pkgname
cd build
make DESTDIR="$pkgdir/" install
}

1
libjuice/clean Normal file
View File

@ -0,0 +1 @@
rm -rf {src,pkg,libjuice}

4
libjuice/deps Normal file
View File

@ -0,0 +1,4 @@
git
cmake

6
libjuice/time Normal file
View File

@ -0,0 +1,6 @@
real 0m7.464s
user 0m6.118s
sys 0m0.776s

View File

@ -8,7 +8,7 @@
pkgname=librewolf
provides=($pkgname-bin $pkgname)
conflicts=($pkgname-bin)
pkgver=121.0
pkgver=122.0
pkgrel=02
_pkgrel=1
pkgdesc="Community-maintained fork of Firefox, focused on privacy, security and freedom -binary"
@ -111,12 +111,12 @@ license=(MPL GPL LGPL)
validpgpkeys=('662E3CDD6FE329002D0CA5BB40339DD82B12EF16') # librewolf maintainers
sha256sums=(dfc3cf10bd467493bc98712b625f35fdcd83b732366b987d49cebe5229f82c6e # librewolf-121.0-1-linux-x86_64-package.tar.bz2
69d218c6f374649004aa53373fd133a7d12d31e605941fd0fc07c90f5f7baa69 # librewolf-121.0-1-linux-x86_64-package.tar.bz2.sig
sha256sums=(9c79c5c2ff8e1f979b67c542c358b20d39e03a17e52ea123747360e18a3888d0 # librewolf-122.0-1-linux-x86_64-package.tar.bz2
a531fbc3130914adf1c1fcb75e491d45cc1d3c0f83650c4b4b266346b555fb8d # librewolf-122.0-1-linux-x86_64-package.tar.bz2.sig
SKIP # git source
7d01d317b7db7416783febc18ee1237ade2ec86c1567e2c2dd628a94cbf2f25d # librewolf.desktop
959c94c68cab8d5a8cff185ddf4dca92e84c18dccc6dc7c8fe11c78549cdc2f1 # default192x192.png
c3d94f33b96944e80b6fe84e36eaa9b4179ab144fe7aa58c5aa2efae0e2004b9) # librewolf.install
## 6425681c0ae2a0bc978c08d5612452b84e9aaf5580e7f20b9eebe3b7b9e87f24 librewolf-121.0-02-x86_64.pkg.tar.lz
## 489f7f8b7796e1bbff247beb962242255d64bfb82c1df5d518e4a8e31b801a88 librewolf-122.0-02-x86_64.pkg.tar.lz

View File

@ -3,7 +3,7 @@
pkgname=librewolf-bin
provides=(${pkgname//-bin/""})
conflicts=(${pkgname//-bin/""})
pkgver=121.0
pkgver=122.0
pkgrel=1
pkgdesc="Community-maintained fork of Firefox, focused on privacy, security and freedom."
arch=(x86_64 aarch64)
@ -43,9 +43,9 @@ source_x86_64=("${_uploadpath_x86_64}" "${_uploadpath_sig_x86_64}")
sha256sums=('SKIP'
'959c94c68cab8d5a8cff185ddf4dca92e84c18dccc6dc7c8fe11c78549cdc2f1'
'7d01d317b7db7416783febc18ee1237ade2ec86c1567e2c2dd628a94cbf2f25d')
sha256sums_x86_64=('dfc3cf10bd467493bc98712b625f35fdcd83b732366b987d49cebe5229f82c6e'
sha256sums_x86_64=('9c79c5c2ff8e1f979b67c542c358b20d39e03a17e52ea123747360e18a3888d0'
'SKIP')
sha256sums_aarch64=('5686bb208f52d85141b875c44b00d360cc3239452561d612222cea8b10e44620'
sha256sums_aarch64=('118aa713d9e7e4048a79111c819dff9801c3ec6a7bd6a74204f24be6753c52b5'
'SKIP')
package() {

View File

@ -6,7 +6,7 @@
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgname=md4c
pkgver=0.5.1
pkgver=0.5.2
pkgrel=01
pkgdesc='C Markdown parser'
url='https://github.com/mity/md4c'
@ -32,7 +32,7 @@ arch=(x86_64)
license=(MIT)
sha256sums=(2dca17c6175a7f11182943079c2a4f9adb5071433e3d3d05ba801ff794993f34) # md4c-0.5.1.tar.gz
sha256sums=(55d0111d48fb11883aaee91465e642b8b640775a4d6993c2d0e7a8092758ef21) # md4c-0.5.2.tar.gz
## 516c8eff093a61d493c940d107952dc690359ca9651dc750682c2b3554928154 md4c-0.5.1-01-x86_64.pkg.tar.lz
## 09a30e42bc1713e759e2e053f523b6b28b2245bfae8c515b642f102d1088940a md4c-0.5.2-01-x86_64.pkg.tar.lz

View File

@ -1,7 +1,7 @@
# Maintainer: Antonio Rojas <arojas@archlinux.org>
pkgname=md4c
pkgver=0.5.1
pkgver=0.5.2
pkgrel=1
pkgdesc='C Markdown parser'
arch=(x86_64)
@ -10,7 +10,7 @@ license=(MIT)
depends=(glibc)
makedepends=(cmake)
source=($pkgname-$pkgver.tar.gz::"https://github.com/mity/md4c/archive/release-$pkgver.tar.gz")
sha256sums=('2dca17c6175a7f11182943079c2a4f9adb5071433e3d3d05ba801ff794993f34')
sha256sums=('55d0111d48fb11883aaee91465e642b8b640775a4d6993c2d0e7a8092758ef21')
build() {
cmake -B build -S $pkgname-release-$pkgver \

View File

@ -6,7 +6,7 @@
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgname=pacman-contrib
pkgver=1.10.2
pkgver=1.10.4
pkgrel=01
pkgdesc="Contributed scripts and tools for pacman systems w/o systemd"
url="https://gitlab.archlinux.org/pacman/pacman-contrib"
@ -63,5 +63,5 @@ validpgpkeys=('5134EF9EAF65F95B6BB1608E50FB9B273A9D0BB5' # Johannes Löthberg <
sha256sums=(SKIP) ## pacman-contrib.git
## df096082ebabb75ea5e964db6d9d3dfe01cf866268d8d76955b1920e559f2827 pacman-contrib-1.10.2-01-x86_64.pkg.tar.lz
## 11bc5b2a72a92e863f07bb05f98aab8d62197161250b30cb637d67523824a6f7 pacman-contrib-1.10.4-01-x86_64.pkg.tar.lz

View File

@ -2,7 +2,7 @@
# Maintainer: Daniel M. Capella <polyzen@archlinux.org>
pkgname=pacman-contrib
pkgver=1.10.2
pkgver=1.10.4
pkgrel=1
pkgdesc='Contributed scripts and tools for pacman systems'
arch=('x86_64')

View File

@ -9,6 +9,7 @@ pkgname=python-pytest
_name=${pkgname#python-}
pkgver=7.4.4
pkgrel=01
epoch=1
pkgdesc="Simple powerful testing with Python"
url="https://pytest.org/"
depends=('python-iniconfig' 'python-packaging' 'python-pluggy') # 'python-attrs' 'python-exceptiongroup' 'python-tomli')
@ -20,25 +21,25 @@ makedepends=(
'python-setuptools-scm'
'python-wheel'
)
checkdepends=(
'python-argcomplete'
'python-attrs'
'python-hypothesis'
'python-nose'
'python-pygments'
'python-requests'
'python-xmlschema'
# Unlisted, but actually used. Check again after a while:
'lsof'
'python-decorator'
'python-docutils'
'python-exceptiongroup'
'python-jinja'
'python-numpy'
'python-pexpect'
'python-pytest-xdist'
'python-twisted'
)
#checkdepends=(
# 'python-argcomplete'
# 'python-attrs'
# 'python-hypothesis'
# 'python-nose'
# 'python-pygments'
# 'python-requests'
# 'python-xmlschema'
# # Unlisted, but actually used. Check again after a while:
# 'lsof'
# 'python-decorator'
# 'python-docutils'
# 'python-exceptiongroup'
# 'python-jinja'
# 'python-numpy'
# 'python-pexpect'
# 'python-pytest-xdist'
# 'python-twisted'
#)
source=("git+https://github.com/$_name-dev/$_name.git#tag=$pkgver")
## Remove dep on setuptools_scm
@ -56,11 +57,11 @@ build() {
python -m build --wheel --skip-dependency-check --no-isolation
}
check() {
cd "$_name"
# https://github.com/pytest-dev/pytest/issues/10042
PYTHONPATH="$PWD/src:$PYTHONPATH" pytest -o xfail_strict=False
}
#check() {
# cd "$_name"
# # https://github.com/pytest-dev/pytest/issues/10042
# PYTHONPATH="$PWD/src:$PYTHONPATH" pytest -o xfail_strict=False
#}
package() {
cd "$_name"
@ -81,5 +82,5 @@ license=('MIT')
sha256sums=(SKIP) # pytest
## d9ce286f91a7992ff3c5225753e0e305f3e8457827ab98b360600568e5b5de59 python-pytest-7.4.4-01-x86_64.pkg.tar.lz
## 2bed0d6c2d603a63437dd54260dd36324feabfa4997527c83f8dc267cc7f99c1 python-pytest-1_7.4.4-01-x86_64.pkg.tar.lz

View File

@ -6,6 +6,7 @@ pkgname=python-pytest
_name=${pkgname#python-}
pkgver=7.4.4
pkgrel=1
epoch=1
pkgdesc="Simple powerful testing with Python"
arch=('any')
license=('MIT')
@ -19,25 +20,25 @@ makedepends=(
'python-setuptools-scm'
'python-wheel'
)
checkdepends=(
'python-argcomplete'
'python-attrs'
'python-hypothesis'
'python-nose'
'python-pygments'
'python-requests'
'python-xmlschema'
# Unlisted, but actually used. Check again after a while:
'lsof'
'python-decorator'
'python-docutils'
'python-exceptiongroup'
'python-jinja'
'python-numpy'
'python-pexpect'
'python-pytest-xdist'
'python-twisted'
)
#checkdepends=(
# 'python-argcomplete'
# 'python-attrs'
# 'python-hypothesis'
# 'python-nose'
# 'python-pygments'
# 'python-requests'
# 'python-xmlschema'
# # Unlisted, but actually used. Check again after a while:
# 'lsof'
# 'python-decorator'
# 'python-docutils'
# 'python-exceptiongroup'
# 'python-jinja'
# 'python-numpy'
# 'python-pexpect'
# 'python-pytest-xdist'
# 'python-twisted'
#)
source=("git+https://github.com/$_name-dev/$_name.git#tag=$pkgver")
b2sums=('SKIP')
@ -46,11 +47,11 @@ build() {
python -m build --wheel --skip-dependency-check --no-isolation
}
check() {
cd "$_name"
# https://github.com/pytest-dev/pytest/issues/10042
PYTHONPATH="$PWD/src:$PYTHONPATH" pytest -o xfail_strict=False
}
#check() {
# cd "$_name"
# # https://github.com/pytest-dev/pytest/issues/10042
# PYTHONPATH="$PWD/src:$PYTHONPATH" pytest -o xfail_strict=False
#}
package() {
cd "$_name"

View File

@ -5,24 +5,6 @@ python-pluggy
python-build
python-installer
python-setuptools
python-wheel
python-argcomplete
python-attrs
python-hypothesis
python-nose
python-requests
python-xmlschema
lsof
python-decorator
python-docutils
python-jinja
python-numpy
python-pexpect
python-pygments
python-pytest-xdist
python-twisted
python-typing_extensions
python-exceptiongroup
python-setuptools-scm
python-wheel

28
python-pytest/deps.wtests Normal file
View File

@ -0,0 +1,28 @@
git
python-iniconfig
python-packaging
python-pluggy
python-build
python-installer
python-setuptools
python-wheel
python-argcomplete
python-attrs
python-hypothesis
python-nose
python-requests
python-xmlschema
lsof
python-decorator
python-docutils
python-jinja
python-numpy
python-pexpect
python-pygments
python-pytest-xdist
python-twisted
python-typing_extensions
python-exceptiongroup
python-setuptools-scm

View File

@ -6,7 +6,7 @@
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgname=wayland-protocols
pkgver=1.32
pkgver=1.33
pkgrel=01
pkgdesc='Specifications of extended Wayland protocols'
url='https://wayland.freedesktop.org/'
@ -51,8 +51,8 @@ license=('MIT')
validpgpkeys=('8307C0A224BABDA1BABD0EB9A6EEEC9E0136164A' # Jonas Ådahl
'A66D805F7C9329B4C5D82767CCC4F07FAC641EFF') # Daniel Stone
sha256sums=(7459799d340c8296b695ef857c07ddef24c5a09b09ab6a74f7b92640d2b1ba11 # wayland-protocols-1.32.tar.xz
97664bbdf99b1d9ec3bab55054a414d6816015fd3170d8845d88914620ea5e12) # wayland-protocols-1.32.tar.xz.sig
sha256sums=(94f0c50b090d6e61a03f62048467b19abbe851be4e11ae7b36f65f8b98c3963a # wayland-protocols-1.33.tar.xz
2dc6b3007b3bf0a149f25e108f56fb9082bbebf28c80c1d12af0a4743a08c776) # wayland-protocols-1.33.tar.xz.sig
## 22d02f9d37d2c71b83b44bb5dadf0ca99f19e7a72a1b271cdac672446c3236e7 wayland-protocols-1.33-01-x86_64.pkg.tar.lz
## 9dcda82554178fab6299f3ce36ebea939ea3bc236534b99b282102794521a685 wayland-protocols-1.32-01-x86_64.pkg.tar.lz

View File

@ -1,7 +1,7 @@
# Maintainer: Sébastien Luttringer <seblu@seblu.net>
pkgname=wayland-protocols
pkgver=1.32
pkgver=1.33
pkgrel=1
pkgdesc='Specifications of extended Wayland protocols'
arch=('any')
@ -11,7 +11,7 @@ makedepends=('wayland' 'meson' 'ninja')
validpgpkeys=('8307C0A224BABDA1BABD0EB9A6EEEC9E0136164A' # Jonas Ådahl
'A66D805F7C9329B4C5D82767CCC4F07FAC641EFF') # Daniel Stone
source=("https://gitlab.freedesktop.org/wayland/$pkgname/-/releases/$pkgver/downloads/$pkgname-$pkgver.tar.xz"{,.sig})
sha256sums=('7459799d340c8296b695ef857c07ddef24c5a09b09ab6a74f7b92640d2b1ba11'
sha256sums=('94f0c50b090d6e61a03f62048467b19abbe851be4e11ae7b36f65f8b98c3963a'
'SKIP')
prepare() {

View File

@ -6,12 +6,12 @@
#-----------------------------------------| DESCRIPTION |---------------------------------------
pkgname=xmonad
pkgver=0.17.1
pkgrel=0126
pkgver=0.17.2
pkgrel=01
pkgdesc='Lightweight X11 tiled window manager written in Haskell'
url='https://xmonad.org/'
depends=('ghc' 'haskell-x11' 'haskell-data-default-class' 'haskell-setlocale')
makedepends=('gendesk' 'pandoc' 'haskell-quickcheck' 'haskell-quickcheck-instances')
makedepends=('gendesk' 'pandoc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 'haskell-quickcheck-classes')
optdepends=('xorg-xmessage: for displaying visual error messages')
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/xmonad/xmonad/archive/v${pkgver}.tar.gz
dynamic-compilation.patch
@ -71,9 +71,9 @@ arch=(x86_64)
license=('BSD')
sha256sums=(055412bd2179f7f49a9556245dc45031b2a4e20db60f8eb59594661a9b56c730 # xmonad-0.17.1.tar.gz
sha256sums=(137caa6b2e711728ed2363dc1dd37712aaec044137f7a2e687665f848e52067b # xmonad-0.17.2.tar.gz
521bf939309cb8b7d8da6adf9da4e396390249e500a62621d86559dfa4dd6dd8 # dynamic-compilation.patch
2c0603f8779346dcbe2db5b04eaeddb908e15602d3ff5c86905898b9df51cb91) # xmonad.svg
## a9b4c9d92c627c248b560df132ef03c9c91d76606477bd10a34dbd27c5135291 xmonad-0.17.1-0126-x86_64.pkg.tar.lz
## 1db741fc32bb0f0f4f0da5840f5c57a7af668aa06568e693821a467d88cff081 xmonad-0.17.2-01-x86_64.pkg.tar.lz

View File

@ -5,19 +5,19 @@
# Contributor: shild <shildv@gmail.com>
pkgname=xmonad
pkgver=0.17.1
pkgrel=126
pkgver=0.17.2
pkgrel=1
pkgdesc='Lightweight X11 tiled window manager written in Haskell'
url='https://xmonad.org/'
arch=('x86_64')
license=('BSD')
depends=('ghc' 'haskell-x11' 'haskell-data-default-class' 'haskell-setlocale')
makedepends=('gendesk' 'pandoc' 'haskell-quickcheck' 'haskell-quickcheck-instances')
makedepends=('gendesk' 'pandoc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 'haskell-quickcheck-classes')
optdepends=('xorg-xmessage: for displaying visual error messages')
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/xmonad/xmonad/archive/v${pkgver}.tar.gz
dynamic-compilation.patch
xmonad.svg)
sha512sums=('606f0f94ded7d62790e65157333787579a74e3f948a56eab1eddf5dbffd989e5d308b2a79a41b0b81435b8f62d3962f2a9f629274a9fed6688b750f471128665'
sha512sums=('0265ce25d7d0432c1aabb04fd5deb1cbb1b933a1eb26e7472db8ab6beb09d3cc4021ced46ba8bb2b8db9f9b4d8ea317956cff71ab5da7994bc71d69995271419'
'ddfc766627459c804c3d675250132d0d9b34db0d1c6191ec91717801f6ee495521303d3f0f288cc162abf9d141ee3d276167b6540fa6c806340b90f9229bb377'
'31f0ceb724a9931aeda75ab706c8908b5d8341af4df50ab1d749814baacb748ad3622601cd99ac03bf936b698fcd854b23d1541e1772306e3337a13a79b110b6')

View File

@ -8,3 +8,4 @@ haskell-quickcheck
haskell-quickcheck-instances
haskell-quickcheck-classes