[arch-commits] Commit in emscripten/repos/community-x86_64 (12 files)

2021-01-16 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, January 17, 2021 @ 05:44:47
  Author: svenstaro
Revision: 821269

archrelease: copy trunk to community-x86_64

Added:
  emscripten/repos/community-x86_64/PKGBUILD
(from rev 821268, emscripten/trunk/PKGBUILD)
  emscripten/repos/community-x86_64/emscripten-config
(from rev 821268, emscripten/trunk/emscripten-config)
  emscripten/repos/community-x86_64/emscripten.install
(from rev 821268, emscripten/trunk/emscripten.install)
  emscripten/repos/community-x86_64/emscripten.sh
(from rev 821268, emscripten/trunk/emscripten.sh)
  emscripten/repos/community-x86_64/get-compatible-versions.sh
(from rev 821268, emscripten/trunk/get-compatible-versions.sh)
  emscripten/repos/community-x86_64/libcxxabi-include-libunwind.patch
(from rev 821268, emscripten/trunk/libcxxabi-include-libunwind.patch)
Deleted:
  emscripten/repos/community-x86_64/PKGBUILD
  emscripten/repos/community-x86_64/emscripten-config
  emscripten/repos/community-x86_64/emscripten.install
  emscripten/repos/community-x86_64/emscripten.sh
  emscripten/repos/community-x86_64/get-compatible-versions.sh
  emscripten/repos/community-x86_64/libcxxabi-include-libunwind.patch

---+
 PKGBUILD  |  218 +---
 emscripten-config |8 -
 emscripten.install|   26 ++--
 emscripten.sh |4 
 get-compatible-versions.sh|   30 ++--
 libcxxabi-include-libunwind.patch |   28 ++--
 6 files changed, 152 insertions(+), 162 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-17 05:44:36 UTC (rev 821268)
+++ PKGBUILD2021-01-17 05:44:47 UTC (rev 821269)
@@ -1,114 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Stefan Husmann 
-# Contributor: Vlad Kolotvin 
-
-pkgname=emscripten
-# NOTE: You need to run ./get-compatible-versions.sh after changing the pkgver!
-_binaryen_revision=bd9872ddf850bf177298a5274a15807e6227cd3d
-_llvm_project_revision=445289aa63e1b82b9eea6497fb2d0443813a9d4e
-# Sadly, upstream currently suggests bundling a binaryen version for the time 
being:
-# https://github.com/emscripten-core/emscripten/issues/12252
-# I'm obviously unhappy about that but it appears to be the only practical 
solution for the time being.
-pkgver=2.0.10
-pkgrel=1
-pkgdesc="Compile C and C++ into highly-optimizable JavaScript for the web"
-arch=('x86_64')
-url="http://emscripten.org;
-license=('custom')
-depends=('nodejs' 'python' 'which' 'acorn' 'nodejs')
-makedepends=('cmake' 'libxml2' 'git' 'ninja' 'npm')
-optdepends=('java-environment: for using clojure'
-'ruby: for using websockify addon'
-'cmake: for emcc --show-ports')
-install=emscripten.install
-conflicts=('binaryen')
-provides=('binaryen')
-source=("git+https://github.com/kripken/emscripten#tag=$pkgver;
-
git+https://github.com/llvm/llvm-project.git#commit=$_llvm_project_revision
-
git+https://github.com/WebAssembly/binaryen.git#commit=$_binaryen_revision
-"emscripten.sh"
-https://github.com/emscripten-core/emscripten/pull/12898.patch
-https://github.com/emscripten-core/emscripten/pull/12899.patch
-emscripten-config)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-
'fbe9b95b8d18e7d0c6ec5fded6f11b72fbe4ddd0391e5704b281ba79c479f3563e82423b790ddf3f0554a23d659193ca898a81fe3db509f16c30c7188b790e4d'
-
'e86fce6ac840a5f6da4b942827c0060d9180983672e31f79d3eb9e590ef32a63b36529e908214178f6f2c25e015a7eead7aee97fe47592e4ebc82767742cc716'
-
'6d116606af3bac3be485803913632571af2cea0978ed81507c639e75bf69126ead5bee727a2a3c335b65ba02ecdf78edf9b6d72e28e409d6f2f69c547475f688'
-
'8b5951493f69631045f44736917144b7679beb2bf087fca8a8ba887224cfc598fe8c76c5a4e7aa4a09fbb8f1b7b42556b68f4aa9e5b93fb130fd8bdab79053d9')
-
-prepare() {
-  cd emscripten
-  patch -Np1 -i "${srcdir}"/12898.patch
-  patch -Np1 -i "${srcdir}"/12899.patch
-}
-
-build() {
-  cd binaryen
-  cmake . \
-  -Bbuild \
-  -GNinja \
-  -DCMAKE_INSTALL_PREFIX=/usr
-  ninja -C build
-
-  # Inspired from 
https://github.com/WebAssembly/waterfall/blob/db2ea5eeb11b74cce9b9459be0cc88807744b1b5/src/build.py#L868
-  cd "$srcdir"/llvm-project/llvm
-  cmake . \
--Bbuild \
--GNinja \
--DCMAKE_CXX_FLAGS=-Wno-nonportable-include-path \
--DLLVM_ENABLE_LIBXML2=OFF \
--DLLVM_INCLUDE_EXAMPLES=OFF \
--DCOMPILER_RT_BUILD_XRAY=OFF \
--DCOMPILER_RT_INCLUDE_TESTS=OFF \
--DCOMPILER_RT_ENABLE_IOS=OFF \
--DCMAKE_INSTALL_PREFIX=/opt/emscripten-llvm \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DLLVM_BUILD_RUNTIME=OFF \
--DLLVM_TOOL_LTO_BUILD=ON \
--DLLVM_INSTALL_TOOLCHAIN_ONLY=ON \
--DLLVM_INCLUDE_EXAMPLES=OFF \
--DLLVM_INCLUDE_TESTS=OFF \
-

[arch-commits] Commit in emscripten/trunk (PKGBUILD)

2021-01-16 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, January 17, 2021 @ 05:44:36
  Author: svenstaro
Revision: 821268

upgpkg: emscripten 2.0.12-1

Modified:
  emscripten/trunk/PKGBUILD

--+
 PKGBUILD |   16 +++-
 1 file changed, 3 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-17 05:34:14 UTC (rev 821267)
+++ PKGBUILD2021-01-17 05:44:36 UTC (rev 821268)
@@ -5,12 +5,12 @@
 
 pkgname=emscripten
 # NOTE: You need to run ./get-compatible-versions.sh after changing the pkgver!
-_binaryen_revision=bd9872ddf850bf177298a5274a15807e6227cd3d
-_llvm_project_revision=445289aa63e1b82b9eea6497fb2d0443813a9d4e
+_binaryen_revision=d7e9150e38f14c7ca083fe48bf1f49ab77cfc794
+_llvm_project_revision=52e240a0721e4120a7143f6f5bab4760d28d48e8
 # Sadly, upstream currently suggests bundling a binaryen version for the time 
being:
 # https://github.com/emscripten-core/emscripten/issues/12252
 # I'm obviously unhappy about that but it appears to be the only practical 
solution for the time being.
-pkgver=2.0.10
+pkgver=2.0.12
 pkgrel=1
 pkgdesc="Compile C and C++ into highly-optimizable JavaScript for the web"
 arch=('x86_64')
@@ -28,23 +28,13 @@
 
git+https://github.com/llvm/llvm-project.git#commit=$_llvm_project_revision
 
git+https://github.com/WebAssembly/binaryen.git#commit=$_binaryen_revision
 "emscripten.sh"
-https://github.com/emscripten-core/emscripten/pull/12898.patch
-https://github.com/emscripten-core/emscripten/pull/12899.patch
 emscripten-config)
 sha512sums=('SKIP'
 'SKIP'
 'SKIP'
 
'fbe9b95b8d18e7d0c6ec5fded6f11b72fbe4ddd0391e5704b281ba79c479f3563e82423b790ddf3f0554a23d659193ca898a81fe3db509f16c30c7188b790e4d'
-
'e86fce6ac840a5f6da4b942827c0060d9180983672e31f79d3eb9e590ef32a63b36529e908214178f6f2c25e015a7eead7aee97fe47592e4ebc82767742cc716'
-
'6d116606af3bac3be485803913632571af2cea0978ed81507c639e75bf69126ead5bee727a2a3c335b65ba02ecdf78edf9b6d72e28e409d6f2f69c547475f688'
 
'8b5951493f69631045f44736917144b7679beb2bf087fca8a8ba887224cfc598fe8c76c5a4e7aa4a09fbb8f1b7b42556b68f4aa9e5b93fb130fd8bdab79053d9')
 
-prepare() {
-  cd emscripten
-  patch -Np1 -i "${srcdir}"/12898.patch
-  patch -Np1 -i "${srcdir}"/12899.patch
-}
-
 build() {
   cd binaryen
   cmake . \


[arch-commits] Commit in binaryen/trunk (PKGBUILD)

2021-01-16 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, January 17, 2021 @ 05:34:08
  Author: svenstaro
Revision: 821266

upgpkg: binaryen 1:99-1

Modified:
  binaryen/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-17 01:32:58 UTC (rev 821265)
+++ PKGBUILD2021-01-17 05:34:08 UTC (rev 821266)
@@ -3,7 +3,7 @@
 
 pkgname=binaryen
 epoch=1
-pkgver=98
+pkgver=99
 pkgrel=1
 pkgdesc="Compiler infrastructure and toolchain library for WebAssembly, in C++"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/WebAssembly/binaryen/archive/version_${pkgver}.tar.gz;
 b43807a835fc878e5eefcb8b4a18aff62d7f4540.patch
 "binaryen.sh")
-sha384sums=('494953f6e8fd32ad1abbf63ad6c9e404746e19ad7ad8c1006e92deab9f42a8baa6d4c68212c666d025e3768f198cda5f'
+sha384sums=('b5030b64c3ce6e006a2bbfd6c9f212e7b3c69c0b4d35b4a4b2875f06b44729f258dd95e7310c7696ed82c705975f7666'
 
'4b3f09e296b8816d2250fbb68b18b45856c728bfd39615d80fe962480c8313dc1898a7814562eed2c82f662acebe7b55'
 
'8ccff587d33aa2f8e66cc167ab887087993cea0899921d2e7cc69372c8b659770a4f4a00e9da61c75394af002c8c7660')
 


[arch-commits] Commit in binaryen/repos/community-x86_64 (6 files)

2021-01-16 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, January 17, 2021 @ 05:34:14
  Author: svenstaro
Revision: 821267

archrelease: copy trunk to community-x86_64

Added:
  binaryen/repos/community-x86_64/PKGBUILD
(from rev 821266, binaryen/trunk/PKGBUILD)
  binaryen/repos/community-x86_64/b43807a835fc878e5eefcb8b4a18aff62d7f4540.patch
(from rev 821266, 
binaryen/trunk/b43807a835fc878e5eefcb8b4a18aff62d7f4540.patch)
  binaryen/repos/community-x86_64/binaryen.sh
(from rev 821266, binaryen/trunk/binaryen.sh)
Deleted:
  binaryen/repos/community-x86_64/PKGBUILD
  binaryen/repos/community-x86_64/b43807a835fc878e5eefcb8b4a18aff62d7f4540.patch
  binaryen/repos/community-x86_64/binaryen.sh

+
 PKGBUILD   |   72 ++--
 b43807a835fc878e5eefcb8b4a18aff62d7f4540.patch |  386 +++
 binaryen.sh|6 
 3 files changed, 232 insertions(+), 232 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-17 05:34:08 UTC (rev 821266)
+++ PKGBUILD2021-01-17 05:34:14 UTC (rev 821267)
@@ -1,36 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Dario Ostuni 
-
-pkgname=binaryen
-epoch=1
-pkgver=98
-pkgrel=1
-pkgdesc="Compiler infrastructure and toolchain library for WebAssembly, in C++"
-arch=('x86_64')
-url="https://github.com/WebAssembly/binaryen;
-license=('MIT')
-makedepends=('cmake' 'ninja' 'python')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/WebAssembly/binaryen/archive/version_${pkgver}.tar.gz;
-b43807a835fc878e5eefcb8b4a18aff62d7f4540.patch
-"binaryen.sh")
-sha384sums=('494953f6e8fd32ad1abbf63ad6c9e404746e19ad7ad8c1006e92deab9f42a8baa6d4c68212c666d025e3768f198cda5f'
-
'4b3f09e296b8816d2250fbb68b18b45856c728bfd39615d80fe962480c8313dc1898a7814562eed2c82f662acebe7b55'
-
'8ccff587d33aa2f8e66cc167ab887087993cea0899921d2e7cc69372c8b659770a4f4a00e9da61c75394af002c8c7660')
-
-build() {
-cd binaryen-version_$pkgver
-
-cmake . \
--Bbuild \
--GNinja \
--DCMAKE_INSTALL_PREFIX=/usr
-ninja -C build
-}
-
-package() {
-cd binaryen-version_$pkgver
-DESTDIR="$pkgdir" ninja -C build install
-
-install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-install -Dm755 "$srcdir"/binaryen.sh "$pkgdir"/etc/profile.d/binaryen.sh
-}

Copied: binaryen/repos/community-x86_64/PKGBUILD (from rev 821266, 
binaryen/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-17 05:34:14 UTC (rev 821267)
@@ -0,0 +1,36 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Dario Ostuni 
+
+pkgname=binaryen
+epoch=1
+pkgver=99
+pkgrel=1
+pkgdesc="Compiler infrastructure and toolchain library for WebAssembly, in C++"
+arch=('x86_64')
+url="https://github.com/WebAssembly/binaryen;
+license=('MIT')
+makedepends=('cmake' 'ninja' 'python')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/WebAssembly/binaryen/archive/version_${pkgver}.tar.gz;
+b43807a835fc878e5eefcb8b4a18aff62d7f4540.patch
+"binaryen.sh")
+sha384sums=('b5030b64c3ce6e006a2bbfd6c9f212e7b3c69c0b4d35b4a4b2875f06b44729f258dd95e7310c7696ed82c705975f7666'
+
'4b3f09e296b8816d2250fbb68b18b45856c728bfd39615d80fe962480c8313dc1898a7814562eed2c82f662acebe7b55'
+
'8ccff587d33aa2f8e66cc167ab887087993cea0899921d2e7cc69372c8b659770a4f4a00e9da61c75394af002c8c7660')
+
+build() {
+cd binaryen-version_$pkgver
+
+cmake . \
+-Bbuild \
+-GNinja \
+-DCMAKE_INSTALL_PREFIX=/usr
+ninja -C build
+}
+
+package() {
+cd binaryen-version_$pkgver
+DESTDIR="$pkgdir" ninja -C build install
+
+install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+install -Dm755 "$srcdir"/binaryen.sh "$pkgdir"/etc/profile.d/binaryen.sh
+}

Deleted: b43807a835fc878e5eefcb8b4a18aff62d7f4540.patch
===
--- b43807a835fc878e5eefcb8b4a18aff62d7f4540.patch  2021-01-17 05:34:08 UTC 
(rev 821266)
+++ b43807a835fc878e5eefcb8b4a18aff62d7f4540.patch  2021-01-17 05:34:14 UTC 
(rev 821267)
@@ -1,193 +0,0 @@
-From b43807a835fc878e5eefcb8b4a18aff62d7f4540 Mon Sep 17 00:00:00 2001
-From: Alon Zakai 
-Date: Wed, 19 Aug 2020 14:55:46 -0700
-Subject: [PATCH] wasm-emscripten-finalize: Make EM_ASM modifications optional
- (#3044)
-
-wasm-emscripten-finalize renames EM_ASM calls to have the signature in
-the name. This isn't actually useful - emscripten doesn't benefit from that. I
-think it was optimized in fastcomp, and in upstream we copied the general
-form but not the optimizations, and then EM_JS came along which is
-easier to optimize anyhow.
-
-This PR makes those changes optional: when not doing them, it just
-leaves the calls as they are. Emscripten will need some changes to
-handle that, 

[arch-commits] Commit in haskell-call-stack/repos (2 files)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:32:58
  Author: felixonmars
Revision: 821265

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-call-stack/repos/community-staging-x86_64/
  haskell-call-stack/repos/community-staging-x86_64/PKGBUILD
(from rev 821264, haskell-call-stack/trunk/PKGBUILD)

--+
 PKGBUILD |   43 +++
 1 file changed, 43 insertions(+)

Copied: haskell-call-stack/repos/community-staging-x86_64/PKGBUILD (from rev 
821264, haskell-call-stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-01-17 01:32:58 UTC (rev 821265)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+# Contributor: Roger Duran 
+
+_hkgname=call-stack
+pkgname=haskell-call-stack
+pkgver=0.2.0
+pkgrel=85
+pkgdesc="Use GHC call-stacks in a backward compatible way"
+url="https://github.com/sol/call-stack;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-nanospec')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('c22862ca24906b07e258690da8c7f6fadf87f4216023cbe847e8ddf0c87548e5c353b5cd82c4748c6ef09604556884caafe5fdc1996be9d000d2db29aaef1537')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-call-stack/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:32:38
  Author: felixonmars
Revision: 821264

upgpkg: haskell-call-stack 0.2.0-85: rebuild with smallcheck 1.2.1

Modified:
  haskell-call-stack/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-17 01:23:51 UTC (rev 821263)
+++ PKGBUILD2021-01-17 01:32:38 UTC (rev 821264)
@@ -4,7 +4,7 @@
 _hkgname=call-stack
 pkgname=haskell-call-stack
 pkgver=0.2.0
-pkgrel=84
+pkgrel=85
 pkgdesc="Use GHC call-stacks in a backward compatible way"
 url="https://github.com/sol/call-stack;
 license=("MIT")


[arch-commits] Commit in haskell-nanospec/repos (2 files)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:23:51
  Author: felixonmars
Revision: 821263

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-nanospec/repos/community-staging-x86_64/
  haskell-nanospec/repos/community-staging-x86_64/PKGBUILD
(from rev 821262, haskell-nanospec/trunk/PKGBUILD)

--+
 PKGBUILD |   49 +
 1 file changed, 49 insertions(+)

Copied: haskell-nanospec/repos/community-staging-x86_64/PKGBUILD (from rev 
821262, haskell-nanospec/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-01-17 01:23:51 UTC (rev 821263)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=nanospec
+pkgname=haskell-nanospec
+pkgver=0.2.2
+pkgrel=99
+pkgdesc="A lightweight implementation of a subset of Hspec's API"
+url="https://github.com/commercialhaskell/nanospec;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+checkdepends=('haskell-hspec' 'haskell-silently')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('6161b5cc1797a3fdcd07cad14deaa3edd6faa87309b5e8a31834d7c1dda23737fe4f2e763b13da7f5ef6f6ee3a9414f88b9ae01e5403320ba23d76404324a3b0')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-nanospec/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:23:30
  Author: felixonmars
Revision: 821262

upgpkg: haskell-nanospec 0.2.2-99: rebuild with smallcheck 1.2.1 (rebuild pass 
1, specified --nocheck)

Modified:
  haskell-nanospec/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-17 01:22:48 UTC (rev 821261)
+++ PKGBUILD2021-01-17 01:23:30 UTC (rev 821262)
@@ -3,7 +3,7 @@
 _hkgname=nanospec
 pkgname=haskell-nanospec
 pkgver=0.2.2
-pkgrel=98
+pkgrel=99
 pkgdesc="A lightweight implementation of a subset of Hspec's API"
 url="https://github.com/commercialhaskell/nanospec;
 license=('MIT')


[arch-commits] Commit in haskell-stringbuilder/repos (2 files)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:22:48
  Author: felixonmars
Revision: 821261

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-stringbuilder/repos/community-staging-x86_64/
  haskell-stringbuilder/repos/community-staging-x86_64/PKGBUILD
(from rev 821260, haskell-stringbuilder/trunk/PKGBUILD)

--+
 PKGBUILD |   50 ++
 1 file changed, 50 insertions(+)

Copied: haskell-stringbuilder/repos/community-staging-x86_64/PKGBUILD (from rev 
821260, haskell-stringbuilder/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-01-17 01:22:48 UTC (rev 821261)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=stringbuilder
+pkgname=haskell-stringbuilder
+pkgver=0.5.1
+pkgrel=140
+pkgdesc="A writer monad for multi-line string literals"
+url="https://github.com/sol/stringbuilder;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+checkdepends=('haskell-hspec' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('09cbf01dce82b325393c0d6f0264792695d528a184052f5e1d5dbd3fc181fd11c280e77ba445f1e44c6a8dabc0b267aa90f4a9f1fc34135f1b741d2a5dca9369')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-stringbuilder/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:22:27
  Author: felixonmars
Revision: 821260

upgpkg: haskell-stringbuilder 0.5.1-140: rebuild with smallcheck 1.2.1 (rebuild 
pass 1, specified --nocheck)

Modified:
  haskell-stringbuilder/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-17 01:21:42 UTC (rev 821259)
+++ PKGBUILD2021-01-17 01:22:27 UTC (rev 821260)
@@ -4,7 +4,7 @@
 _hkgname=stringbuilder
 pkgname=haskell-stringbuilder
 pkgver=0.5.1
-pkgrel=139
+pkgrel=140
 pkgdesc="A writer monad for multi-line string literals"
 url="https://github.com/sol/stringbuilder;
 license=("MIT")


[arch-commits] Commit in haskell-base-compat-batteries/repos (2 files)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:21:42
  Author: felixonmars
Revision: 821259

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-base-compat-batteries/repos/community-staging-x86_64/
  haskell-base-compat-batteries/repos/community-staging-x86_64/PKGBUILD
(from rev 821258, haskell-base-compat-batteries/trunk/PKGBUILD)

--+
 PKGBUILD |   49 +
 1 file changed, 49 insertions(+)

Copied: haskell-base-compat-batteries/repos/community-staging-x86_64/PKGBUILD 
(from rev 821258, haskell-base-compat-batteries/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-01-17 01:21:42 UTC (rev 821259)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=base-compat-batteries
+pkgname=haskell-base-compat-batteries
+pkgver=0.11.2
+pkgrel=44
+pkgdesc="base-compat with extra batteries"
+url="https://hackage.haskell.org/package/base-compat-batteries;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base-compat')
+makedepends=('ghc')
+checkdepends=('haskell-hspec' 'haskell-hspec-discover' 'haskell-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('0b54b53bb762ca99cbfe82799a63f73229447325438ccae4849df676d14a4758177d9481391b628cca7921d9796ac3172ad8226b2530e151b7c59f86b82f381a')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-base-compat-batteries/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:21:24
  Author: felixonmars
Revision: 821258

upgpkg: haskell-base-compat-batteries 0.11.2-44: rebuild with smallcheck 1.2.1 
(rebuild pass 1, specified --nocheck)

Modified:
  haskell-base-compat-batteries/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-17 01:20:38 UTC (rev 821257)
+++ PKGBUILD2021-01-17 01:21:24 UTC (rev 821258)
@@ -3,7 +3,7 @@
 _hkgname=base-compat-batteries
 pkgname=haskell-base-compat-batteries
 pkgver=0.11.2
-pkgrel=43
+pkgrel=44
 pkgdesc="base-compat with extra batteries"
 url="https://hackage.haskell.org/package/base-compat-batteries;
 license=('MIT')


[arch-commits] Commit in haskell-hspec-discover/repos (2 files)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:20:38
  Author: felixonmars
Revision: 821257

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hspec-discover/repos/community-staging-x86_64/
  haskell-hspec-discover/repos/community-staging-x86_64/PKGBUILD
(from rev 821256, haskell-hspec-discover/trunk/PKGBUILD)

--+
 PKGBUILD |   49 +
 1 file changed, 49 insertions(+)

Copied: haskell-hspec-discover/repos/community-staging-x86_64/PKGBUILD (from 
rev 821256, haskell-hspec-discover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-01-17 01:20:38 UTC (rev 821257)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hspec-discover
+pkgname=haskell-hspec-discover
+pkgver=2.7.6
+pkgrel=4
+pkgdesc="Automatically discover and run Hspec tests"
+url="http://hspec.github.io/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+checkdepends=('haskell-quickcheck' 'haskell-hspec-meta')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('d2749a3c8f8363b590ee0c759e23e917407c67694bc54fa84581b1fce8dda48ac5c681d6bdb817edd48a348c420f6294e49bc79b85afe85bb2242d053e0f1cbe')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+   
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-hspec-discover/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:20:20
  Author: felixonmars
Revision: 821256

upgpkg: haskell-hspec-discover 2.7.6-4: rebuild with smallcheck 1.2.1 (rebuild 
pass 1, specified --nocheck)

Modified:
  haskell-hspec-discover/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-17 01:19:37 UTC (rev 821255)
+++ PKGBUILD2021-01-17 01:20:20 UTC (rev 821256)
@@ -3,7 +3,7 @@
 _hkgname=hspec-discover
 pkgname=haskell-hspec-discover
 pkgver=2.7.6
-pkgrel=3
+pkgrel=4
 pkgdesc="Automatically discover and run Hspec tests"
 url="http://hspec.github.io/;
 license=('MIT')


[arch-commits] Commit in haskell-generic-deriving/repos (2 files)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:19:37
  Author: felixonmars
Revision: 821255

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-generic-deriving/repos/community-staging-x86_64/
  haskell-generic-deriving/repos/community-staging-x86_64/PKGBUILD
(from rev 821254, haskell-generic-deriving/trunk/PKGBUILD)

--+
 PKGBUILD |   51 +++
 1 file changed, 51 insertions(+)

Copied: haskell-generic-deriving/repos/community-staging-x86_64/PKGBUILD (from 
rev 821254, haskell-generic-deriving/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-01-17 01:19:37 UTC (rev 821255)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=generic-deriving
+pkgname=haskell-generic-deriving
+pkgver=1.14
+pkgrel=31
+pkgdesc="Generic programming library for generalised deriving."
+url="https://github.com/dreixel/generic-deriving;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-th-abstraction')
+makedepends=('ghc')
+checkdepends=('haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('794b4846bbc34981301b3f973d6812cd93c2b777e6938347a10cfbf0a8527d885aa0e5dd4a4be9f2e7a89620d4c9bd2d663b0b9b54ed4bc0e82ccc4bd2712f35')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fbase-4-9
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-generic-deriving/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:19:19
  Author: felixonmars
Revision: 821254

upgpkg: haskell-generic-deriving 1.14-31: rebuild with smallcheck 1.2.1 
(rebuild pass 1, specified --nocheck)

Modified:
  haskell-generic-deriving/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-17 01:18:20 UTC (rev 821253)
+++ PKGBUILD2021-01-17 01:19:19 UTC (rev 821254)
@@ -4,7 +4,7 @@
 _hkgname=generic-deriving
 pkgname=haskell-generic-deriving
 pkgver=1.14
-pkgrel=30
+pkgrel=31
 pkgdesc="Generic programming library for generalised deriving."
 url="https://github.com/dreixel/generic-deriving;
 license=("BSD")


[arch-commits] Commit in haskell-smallcheck/repos/community-staging-x86_64 (2 files)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:18:20
  Author: felixonmars
Revision: 821253

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-smallcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 821252, haskell-smallcheck/trunk/PKGBUILD)
Deleted:
  haskell-smallcheck/repos/community-staging-x86_64/PKGBUILD

--+
 PKGBUILD |   74 ++---
 1 file changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-17 01:17:55 UTC (rev 821252)
+++ PKGBUILD2021-01-17 01:18:20 UTC (rev 821253)
@@ -1,37 +0,0 @@
-# Maintainer: Felix Yan 
-
-_hkgname=smallcheck
-pkgname=haskell-smallcheck
-pkgver=1.2.1
-pkgrel=1
-pkgdesc="A property-based testing library"
-url="https://github.com/feuerbach/smallcheck;
-license=('BSD')
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-logict')
-makedepends=('ghc')
-source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('42706fb769423bd7f8c2fe7a52d23b8cb4a22bfaabf43b8c29db2923c6413191158801e43d5597258f42ce2430ec81546d172d90246c9d3cf0f9343694eb5eeb')
-
-build() {
-cd $_hkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
-runhaskell Setup build $MAKEFLAGS
-runhaskell Setup register --gen-script
-runhaskell Setup unregister --gen-script
-sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
-sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-package() {
-cd $_hkgname-$pkgver
-
-install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
-install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
-runhaskell Setup copy --destdir="$pkgdir"
-install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
-}

Copied: haskell-smallcheck/repos/community-staging-x86_64/PKGBUILD (from rev 
821252, haskell-smallcheck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-17 01:18:20 UTC (rev 821253)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=smallcheck
+pkgname=haskell-smallcheck
+pkgver=1.2.1
+pkgrel=2
+pkgdesc="A property-based testing library"
+url="https://github.com/feuerbach/smallcheck;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-logict')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('42706fb769423bd7f8c2fe7a52d23b8cb4a22bfaabf43b8c29db2923c6413191158801e43d5597258f42ce2430ec81546d172d90246c9d3cf0f9343694eb5eeb')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-smallcheck/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:17:55
  Author: felixonmars
Revision: 821252

upgpkg: haskell-smallcheck 1.2.1-2: rebuild with smallcheck 1.2.1

Modified:
  haskell-smallcheck/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-17 01:16:58 UTC (rev 821251)
+++ PKGBUILD2021-01-17 01:17:55 UTC (rev 821252)
@@ -3,7 +3,7 @@
 _hkgname=smallcheck
 pkgname=haskell-smallcheck
 pkgver=1.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc="A property-based testing library"
 url="https://github.com/feuerbach/smallcheck;
 license=('BSD')


[arch-commits] Commit in haskell-logict/repos (2 files)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:16:58
  Author: felixonmars
Revision: 821251

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-logict/repos/community-staging-x86_64/
  haskell-logict/repos/community-staging-x86_64/PKGBUILD
(from rev 821250, haskell-logict/trunk/PKGBUILD)

--+
 PKGBUILD |   49 +
 1 file changed, 49 insertions(+)

Copied: haskell-logict/repos/community-staging-x86_64/PKGBUILD (from rev 
821250, haskell-logict/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-01-17 01:16:58 UTC (rev 821251)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=logict
+pkgname=haskell-logict
+pkgver=0.7.0.3
+pkgrel=48
+pkgdesc="A backtracking logic-programming monad."
+url="http://code.haskell.org/~dolio/;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc')
+checkdepends=('haskell-tasty' 'haskell-tasty-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('0d845daffb841efea93b59e48ee86daeb0dbacbe4fc7fa417ff71d1dcda3a5551901f589097416441736007d256197932b83de76a2f630a5f7835909cd758e79')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname "${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-logict/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:16:40
  Author: felixonmars
Revision: 821250

upgpkg: haskell-logict 0.7.0.3-48: rebuild with smallcheck 1.2.1 (rebuild pass 
1, specified --nocheck)

Modified:
  haskell-logict/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-17 01:15:55 UTC (rev 821249)
+++ PKGBUILD2021-01-17 01:16:40 UTC (rev 821250)
@@ -3,7 +3,7 @@
 _hkgname=logict
 pkgname=haskell-logict
 pkgver=0.7.0.3
-pkgrel=47
+pkgrel=48
 pkgdesc="A backtracking logic-programming monad."
 url="http://code.haskell.org/~dolio/;
 license=('BSD')


[arch-commits] Commit in haskell-smallcheck/repos (2 files)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:15:55
  Author: felixonmars
Revision: 821249

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-smallcheck/repos/community-staging-x86_64/
  haskell-smallcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 821248, haskell-smallcheck/trunk/PKGBUILD)

--+
 PKGBUILD |   37 +
 1 file changed, 37 insertions(+)

Copied: haskell-smallcheck/repos/community-staging-x86_64/PKGBUILD (from rev 
821248, haskell-smallcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-01-17 01:15:55 UTC (rev 821249)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=smallcheck
+pkgname=haskell-smallcheck
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="A property-based testing library"
+url="https://github.com/feuerbach/smallcheck;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-logict')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('42706fb769423bd7f8c2fe7a52d23b8cb4a22bfaabf43b8c29db2923c6413191158801e43d5597258f42ce2430ec81546d172d90246c9d3cf0f9343694eb5eeb')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-smallcheck/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Sunday, January 17, 2021 @ 01:15:38
  Author: felixonmars
Revision: 821248

upgpkg: haskell-smallcheck 1.2.1-1: rebuild with smallcheck 1.2.1

Modified:
  haskell-smallcheck/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-17 00:56:48 UTC (rev 821247)
+++ PKGBUILD2021-01-17 01:15:38 UTC (rev 821248)
@@ -2,8 +2,8 @@
 
 _hkgname=smallcheck
 pkgname=haskell-smallcheck
-pkgver=1.2.0
-pkgrel=55
+pkgver=1.2.1
+pkgrel=1
 pkgdesc="A property-based testing library"
 url="https://github.com/feuerbach/smallcheck;
 license=('BSD')
@@ -11,7 +11,7 @@
 depends=('ghc-libs' 'haskell-logict')
 makedepends=('ghc')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('97c021f3efd6541de99854cb2e8511d4af17225cbcbe17ddfb2efd011d75bd10114b7c8312532bd1c5516e2980b7ad03feb571ec26b91f7258f43460c7bc39a8')
+sha512sums=('42706fb769423bd7f8c2fe7a52d23b8cb4a22bfaabf43b8c29db2923c6413191158801e43d5597258f42ce2430ec81546d172d90246c9d3cf0f9343694eb5eeb')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in interception-tools/repos/community-x86_64 (2 files)

2021-01-16 Thread Brett Cornwall via arch-commits
Date: Sunday, January 17, 2021 @ 00:56:48
  Author: ainola
Revision: 821247

archrelease: copy trunk to community-x86_64

Added:
  interception-tools/repos/community-x86_64/PKGBUILD
(from rev 821246, interception-tools/trunk/PKGBUILD)
  interception-tools/repos/community-x86_64/interception-tools.install
(from rev 821246, interception-tools/trunk/interception-tools.install)

+
 PKGBUILD   |   38 ++
 interception-tools.install |4 
 2 files changed, 42 insertions(+)

Copied: interception-tools/repos/community-x86_64/PKGBUILD (from rev 821246, 
interception-tools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-17 00:56:48 UTC (rev 821247)
@@ -0,0 +1,38 @@
+# Maintainer: Brett Cornwall 
+# Contributor: Francisco Lopes
+
+pkgname=interception-tools
+pkgver=0.6.4
+pkgrel=2
+pkgdesc='A minimal composable infrastructure on top of libudev and libevdev'
+arch=('x86_64')
+license=('GPL3')
+url='https://gitlab.com/interception/linux/tools'
+depends=(
+'libevdev' 'libevdev.so'
+'yaml-cpp' 'libyaml-cpp.so'
+'systemd-libs' 'libudev.so'
+)
+makedepends=('cmake' 'systemd' 'boost')
+source=(
+
"$pkgname-$pkgver.tar.gz::https://gitlab.com/interception/linux/tools/-/archive/v$pkgver/tools-v$pkgver.tar.gz;
+)
+sha256sums=('1c333588d76ffc7675a32b9f90b2440287d1e2852910a87782878b457c36b3a1')
+
+build() {
+cmake -B build \
+  -S "tools-v${pkgver}" \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_BUILD_TYPE=None \
+  -Wno-dev
+cmake --build build
+}
+
+package() {
+install -dm755 "$pkgdir/etc/interception/udevmon.d"
+install -Dm644 "tools-v$pkgver/udevmon.service" -t 
"$pkgdir/usr/lib/systemd/system"
+install -Dm644 "tools-v$pkgver/README.md" -t 
"$pkgdir/usr/share/doc/$pkgname"
+
+cd build
+make DESTDIR="$pkgdir/" install
+}

Copied: interception-tools/repos/community-x86_64/interception-tools.install 
(from rev 821246, interception-tools/trunk/interception-tools.install)
===
--- interception-tools.install  (rev 0)
+++ interception-tools.install  2021-01-17 00:56:48 UTC (rev 821247)
@@ -0,0 +1,4 @@
+post_upgrade() {
+echo "The udevmon.yaml configuration file now is expected at:"
+echo "/etc/interception-tools/udevmon.yaml"
+}


[arch-commits] Commit in interception-tools/repos/community-x86_64 (3 files)

2021-01-16 Thread Brett Cornwall via arch-commits
Date: Sunday, January 17, 2021 @ 00:53:34
  Author: ainola
Revision: 821246

archrelease: copy trunk to community-x86_64

Deleted:
  interception-tools/repos/community-x86_64/PKGBUILD
  interception-tools/repos/community-x86_64/interception-tools.install
  interception-tools/repos/community-x86_64/udevmon.service

+
 PKGBUILD   |   40 ---
 interception-tools.install |4 ---
 udevmon.service|   44 ---
 3 files changed, 88 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-17 00:52:30 UTC (rev 821245)
+++ PKGBUILD2021-01-17 00:53:34 UTC (rev 821246)
@@ -1,40 +0,0 @@
-# Maintainer: Brett Cornwall 
-# Contributor: Francisco Lopes
-
-pkgname=interception-tools
-pkgver=0.6.4
-pkgrel=1
-pkgdesc='A minimal composable infrastructure on top of libudev and libevdev'
-arch=('x86_64')
-license=('GPL3')
-url='https://gitlab.com/interception/linux/tools'
-depends=(
-'libevdev' 'libevdev.so'
-'yaml-cpp' 'libyaml-cpp.so'
-'systemd-libs' 'libudev.so'
-)
-makedepends=('cmake' 'systemd' 'boost')
-source=(
-
"$pkgname-$pkgver.tar.gz::https://gitlab.com/interception/linux/tools/-/archive/v$pkgver/tools-v$pkgver.tar.gz;
-udevmon.service
-)
-sha256sums=('1c333588d76ffc7675a32b9f90b2440287d1e2852910a87782878b457c36b3a1'
-'cb4e046aa95cf591492f99543ce2fdc6d3dc94420893cc069fd568f9822d9e4b')
-
-build() {
-cmake -B build \
-  -S "tools-v${pkgver}" \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_BUILD_TYPE=None \
-  -Wno-dev
-cmake --build build
-}
-
-package() {
-install -dm755 "$pkgdir/etc/interception/udevmon.d"
-install -Dm644 udevmon.service -t "$pkgdir/usr/lib/systemd/system"
-install -Dm644 "tools-v$pkgver/README.md" -t 
"$pkgdir/usr/share/doc/$pkgname"
-
-cd build
-make DESTDIR="$pkgdir/" install
-}

Deleted: interception-tools.install
===
--- interception-tools.install  2021-01-17 00:52:30 UTC (rev 821245)
+++ interception-tools.install  2021-01-17 00:53:34 UTC (rev 821246)
@@ -1,4 +0,0 @@
-post_upgrade() {
-echo "The udevmon.yaml configuration file now is expected at:"
-echo "/etc/interception-tools/udevmon.yaml"
-}

Deleted: udevmon.service
===
--- udevmon.service 2021-01-17 00:52:30 UTC (rev 821245)
+++ udevmon.service 2021-01-17 00:53:34 UTC (rev 821246)
@@ -1,44 +0,0 @@
-[Unit]
-Description=Monitor input devices for launching tasks
-Wants=systemd-udev-settle.service
-After=systemd-udev-settle.service
-Documentation=man:udev(7)
-
-[Service]
-ExecStart=/usr/bin/udevmon -c /etc/interception/udevmon.yaml
-Nice=-20
-Restart=on-failure
-OOMScoreAdjust=-1000
-
-CapabilityBoundingSet=~CAP_SETUID CAP_SETGID CAP_SETPCAP CAP_SYS_PTRACE 
CAP_SYS_ADMIN CAP_NET_ADMIN CAP_SYS_RAWIO CAP_SYS_BOOT
-DeviceAllow=char-* rw
-DevicePolicy=strict
-IPAddressDeny=any
-LockPersonality=yes
-MemoryDenyWriteExecute=yes
-NoNewPrivileges=yes
-PrivateMounts=yes
-PrivateTmp=yes
-ProtectControlGroups=yes
-ProtectClock=yes
-ProtectHome=yes
-ProtectHostname=yes
-ProtectKernelLogs=yes
-ProtectKernelModules=yes
-ProtectKernelTunables=yes
-PrivateUsers=yes
-ProtectProc=invisible
-ProtectSystem=strict
-RestrictAddressFamilies=AF_NETLINK
-RestrictNamespaces=yes
-RestrictRealtime=yes
-RestrictSUIDSGID=yes
-SystemCallArchitectures=native
-SystemCallErrorNumber=EPERM
-SystemCallFilter=@system-service
-SystemCallFilter=~@privileged @resources
-UMask=077
-ProcSubset=pid
-
-[Install]
-WantedBy=multi-user.target


[arch-commits] Commit in interception-tools/trunk (PKGBUILD udevmon.service)

2021-01-16 Thread Brett Cornwall via arch-commits
Date: Sunday, January 17, 2021 @ 00:52:30
  Author: ainola
Revision: 821245

rm downstream service file, use upstream's

Modified:
  interception-tools/trunk/PKGBUILD
Deleted:
  interception-tools/trunk/udevmon.service

-+
 PKGBUILD|8 +++-
 udevmon.service |   44 
 2 files changed, 3 insertions(+), 49 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-17 00:06:03 UTC (rev 821244)
+++ PKGBUILD2021-01-17 00:52:30 UTC (rev 821245)
@@ -3,7 +3,7 @@
 
 pkgname=interception-tools
 pkgver=0.6.4
-pkgrel=1
+pkgrel=2
 pkgdesc='A minimal composable infrastructure on top of libudev and libevdev'
 arch=('x86_64')
 license=('GPL3')
@@ -16,10 +16,8 @@
 makedepends=('cmake' 'systemd' 'boost')
 source=(
 
"$pkgname-$pkgver.tar.gz::https://gitlab.com/interception/linux/tools/-/archive/v$pkgver/tools-v$pkgver.tar.gz;
-udevmon.service
 )
-sha256sums=('1c333588d76ffc7675a32b9f90b2440287d1e2852910a87782878b457c36b3a1'
-'cb4e046aa95cf591492f99543ce2fdc6d3dc94420893cc069fd568f9822d9e4b')
+sha256sums=('1c333588d76ffc7675a32b9f90b2440287d1e2852910a87782878b457c36b3a1')
 
 build() {
 cmake -B build \
@@ -32,7 +30,7 @@
 
 package() {
 install -dm755 "$pkgdir/etc/interception/udevmon.d"
-install -Dm644 udevmon.service -t "$pkgdir/usr/lib/systemd/system"
+install -Dm644 "tools-v$pkgver/udevmon.service" -t 
"$pkgdir/usr/lib/systemd/system"
 install -Dm644 "tools-v$pkgver/README.md" -t 
"$pkgdir/usr/share/doc/$pkgname"
 
 cd build

Deleted: udevmon.service
===
--- udevmon.service 2021-01-17 00:06:03 UTC (rev 821244)
+++ udevmon.service 2021-01-17 00:52:30 UTC (rev 821245)
@@ -1,44 +0,0 @@
-[Unit]
-Description=Monitor input devices for launching tasks
-Wants=systemd-udev-settle.service
-After=systemd-udev-settle.service
-Documentation=man:udev(7)
-
-[Service]
-ExecStart=/usr/bin/udevmon -c /etc/interception/udevmon.yaml
-Nice=-20
-Restart=on-failure
-OOMScoreAdjust=-1000
-
-CapabilityBoundingSet=~CAP_SETUID CAP_SETGID CAP_SETPCAP CAP_SYS_PTRACE 
CAP_SYS_ADMIN CAP_NET_ADMIN CAP_SYS_RAWIO CAP_SYS_BOOT
-DeviceAllow=char-* rw
-DevicePolicy=strict
-IPAddressDeny=any
-LockPersonality=yes
-MemoryDenyWriteExecute=yes
-NoNewPrivileges=yes
-PrivateMounts=yes
-PrivateTmp=yes
-ProtectControlGroups=yes
-ProtectClock=yes
-ProtectHome=yes
-ProtectHostname=yes
-ProtectKernelLogs=yes
-ProtectKernelModules=yes
-ProtectKernelTunables=yes
-PrivateUsers=yes
-ProtectProc=invisible
-ProtectSystem=strict
-RestrictAddressFamilies=AF_NETLINK
-RestrictNamespaces=yes
-RestrictRealtime=yes
-RestrictSUIDSGID=yes
-SystemCallArchitectures=native
-SystemCallErrorNumber=EPERM
-SystemCallFilter=@system-service
-SystemCallFilter=~@privileged @resources
-UMask=077
-ProcSubset=pid
-
-[Install]
-WantedBy=multi-user.target


[arch-commits] Commit in ibus-typing-booster/repos/extra-any (PKGBUILD PKGBUILD)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Sunday, January 17, 2021 @ 00:22:23
  Author: heftig
Revision: 406321

archrelease: copy trunk to extra-any

Added:
  ibus-typing-booster/repos/extra-any/PKGBUILD
(from rev 406319, ibus-typing-booster/trunk/PKGBUILD)
Deleted:
  ibus-typing-booster/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   76 ++---
 1 file changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-17 00:22:23 UTC (rev 406320)
+++ PKGBUILD2021-01-17 00:22:23 UTC (rev 406321)
@@ -1,38 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=ibus-typing-booster
-pkgver=2.9.9
-pkgrel=2
-pkgdesc="Predictive input method for the IBus platform"
-url="https://mike-fabian.github.io/ibus-typing-booster/;
-arch=(any)
-license=(GPL3 Apache)
-depends=(ibus python-gobject python-dbus python-pyenchant m17n-lib sqlite)
-makedepends=(git)
-_commit=72eec88b337129d9a71a2b7d1b2e1a1e477ca135  # tags/2.9.9
-source=("git+https://github.com/mike-fabian/ibus-typing-booster#commit=$_commit;)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --libexec=/usr/lib/ibus
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-
-  cd "$pkgdir/usr/share/$pkgname/data"
-  gzip -nf --best *.{txt,json} annotations{,Derived}/*.xml
-}

Copied: ibus-typing-booster/repos/extra-any/PKGBUILD (from rev 406319, 
ibus-typing-booster/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-17 00:22:23 UTC (rev 406321)
@@ -0,0 +1,38 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=ibus-typing-booster
+pkgver=2.10.2
+pkgrel=1
+pkgdesc="Predictive input method for the IBus platform"
+url="https://mike-fabian.github.io/ibus-typing-booster/;
+arch=(any)
+license=(GPL3 Apache)
+depends=(ibus python-gobject python-dbus python-pyenchant m17n-lib sqlite)
+makedepends=(git)
+_commit=bdbc947f4a9f3af26d4af4cf9110fe6135f2a706  # tags/2.10.2
+source=("git+https://github.com/mike-fabian/ibus-typing-booster#commit=$_commit;)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --libexec=/usr/lib/ibus
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  cd "$pkgdir/usr/share/$pkgname/data"
+  gzip -nf --best *.{txt,json} annotations{,Derived}/*.xml
+}


[arch-commits] Commit in ibus-typing-booster/trunk (PKGBUILD)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Sunday, January 17, 2021 @ 00:22:05
  Author: heftig
Revision: 406319

2.10.2-1

Modified:
  ibus-typing-booster/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-17 00:21:27 UTC (rev 406318)
+++ PKGBUILD2021-01-17 00:22:05 UTC (rev 406319)
@@ -1,8 +1,8 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=ibus-typing-booster
-pkgver=2.9.9
-pkgrel=2
+pkgver=2.10.2
+pkgrel=1
 pkgdesc="Predictive input method for the IBus platform"
 url="https://mike-fabian.github.io/ibus-typing-booster/;
 arch=(any)
@@ -9,7 +9,7 @@
 license=(GPL3 Apache)
 depends=(ibus python-gobject python-dbus python-pyenchant m17n-lib sqlite)
 makedepends=(git)
-_commit=72eec88b337129d9a71a2b7d1b2e1a1e477ca135  # tags/2.9.9
+_commit=bdbc947f4a9f3af26d4af4cf9110fe6135f2a706  # tags/2.10.2
 
source=("git+https://github.com/mike-fabian/ibus-typing-booster#commit=$_commit;)
 sha512sums=('SKIP')
 


[arch-commits] Commit in python-evdev/trunk (PKGBUILD)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Sunday, January 17, 2021 @ 00:21:27
  Author: heftig
Revision: 406318

1.4.0-1

Modified:
  python-evdev/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:43:49 UTC (rev 406317)
+++ PKGBUILD2021-01-17 00:21:27 UTC (rev 406318)
@@ -1,8 +1,8 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=python-evdev
-pkgver=1.3.0
-pkgrel=3
+pkgver=1.4.0
+pkgrel=1
 pkgdesc="Python bindings for the Linux input subsystem"
 url="https://python-evdev.readthedocs.io/en/latest/;
 arch=(x86_64)
@@ -9,7 +9,7 @@
 license=(BSD)
 depends=(python)
 makedepends=(git)
-_commit=43c8791d33ca1cc1ed787c7a7e29a2fcf9652a08  # tags/v1.3.0^0
+_commit=5adc2abf1ec8a02c05c80cb1b3e34ba1d4237803  # tags/v1.4.0^0
 source=("git+https://github.com/gvalkov/python-evdev#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in units/repos/community-x86_64 (4 files)

2021-01-16 Thread Kyle Keen via arch-commits
Date: Sunday, January 17, 2021 @ 00:06:03
  Author: kkeen
Revision: 821244

archrelease: copy trunk to community-x86_64

Added:
  units/repos/community-x86_64/PKGBUILD
(from rev 821243, units/trunk/PKGBUILD)
  units/repos/community-x86_64/units_currency.service
(from rev 821243, units/trunk/units_currency.service)
  units/repos/community-x86_64/units_currency.timer
(from rev 821243, units/trunk/units_currency.timer)
Deleted:
  units/repos/community-x86_64/PKGBUILD

+
 PKGBUILD   |   70 +--
 units_currency.service |8 +
 units_currency.timer   |   10 ++
 3 files changed, 56 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-17 00:05:34 UTC (rev 821243)
+++ PKGBUILD2021-01-17 00:06:03 UTC (rev 821244)
@@ -1,32 +0,0 @@
-# Maintainer: Kyle Keen 
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jeff Mickey 
-# Contributor: Steve Sansom 
-
-pkgname=units
-pkgver=2.21
-pkgrel=1
-pkgdesc="converts between different units"
-arch=('x86_64')
-url="https://www.gnu.org/software/units/units.html;
-depends=('readline')
-optdepends=('python-unidecode: for live currency rates'
-'python-requests: for live currency rates')
-makedepends=('python-unidecode' 'python-requests')
-license=("GPL")
-options=('!makeflags')
-validpgpkeys=('9AD8FC4162D7937CF64F972E1889D5F0E0636F49')
-source=(https://ftp.gnu.org/gnu/units/$pkgname-$pkgver.tar.gz{,.sig})
-sha256sums=('6c3e80a9f980589fd962a5852a2674642257db1c5fd5b27c4d9e664f3486cbaf'
-'SKIP')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --datadir=/usr/share --sharedstatedir=/var/lib
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: units/repos/community-x86_64/PKGBUILD (from rev 821243, 
units/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-17 00:06:03 UTC (rev 821244)
@@ -0,0 +1,38 @@
+# Maintainer: Kyle Keen 
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jeff Mickey 
+# Contributor: Steve Sansom 
+
+pkgname=units
+pkgver=2.21
+pkgrel=2
+pkgdesc="converts between different units"
+arch=('x86_64')
+url="https://www.gnu.org/software/units/units.html;
+depends=('readline')
+optdepends=('python-unidecode: for live currency rates'
+'python-requests: for live currency rates')
+makedepends=('python-unidecode' 'python-requests')
+license=("GPL")
+options=('!makeflags')
+validpgpkeys=('9AD8FC4162D7937CF64F972E1889D5F0E0636F49')
+source=(https://ftp.gnu.org/gnu/units/$pkgname-$pkgver.tar.gz{,.sig}
+'units_currency.timer'
+'units_currency.service')
+sha256sums=('6c3e80a9f980589fd962a5852a2674642257db1c5fd5b27c4d9e664f3486cbaf'
+'SKIP'
+'c1cb48a6157c850a0b7ecbf4387b82820d6e42f4a2c7ff0eb9de293bad6b128f'
+'52e8cd68110e797e3ee3737f06200505225039b18f3f9b87ae38b6c539c9ccb2')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr --datadir=/usr/share --sharedstatedir=/var/lib
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm644 ../units_currency.timer 
"$pkgdir/usr/lib/systemd/system/units_currency.timer"
+  install -Dm644 ../units_currency.service 
"$pkgdir/usr/lib/systemd/system/units_currency.service"
+}

Copied: units/repos/community-x86_64/units_currency.service (from rev 821243, 
units/trunk/units_currency.service)
===
--- units_currency.service  (rev 0)
+++ units_currency.service  2021-01-17 00:06:03 UTC (rev 821244)
@@ -0,0 +1,8 @@
+[Unit]
+Description=Update units currency rates database
+After=network-online.target
+Wants=network-online.target
+
+[Service]
+Type=oneshot
+ExecStart=/usr/bin/units_cur

Copied: units/repos/community-x86_64/units_currency.timer (from rev 821243, 
units/trunk/units_currency.timer)
===
--- units_currency.timer(rev 0)
+++ units_currency.timer2021-01-17 00:06:03 UTC (rev 821244)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Daily units currency rates database update
+
+[Timer]
+OnCalendar=daily
+AccuracySec=12h
+Persistent=true
+
+[Install]
+WantedBy=timers.target


[arch-commits] Commit in units/trunk (3 files)

2021-01-16 Thread Kyle Keen via arch-commits
Date: Sunday, January 17, 2021 @ 00:05:34
  Author: kkeen
Revision: 821243

upgpkg: units 2.21-2  add service for updating currencies

Added:
  units/trunk/units_currency.service
  units/trunk/units_currency.timer
Modified:
  units/trunk/PKGBUILD

+
 PKGBUILD   |   12 +---
 units_currency.service |8 
 units_currency.timer   |   10 ++
 3 files changed, 27 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:56:18 UTC (rev 821242)
+++ PKGBUILD2021-01-17 00:05:34 UTC (rev 821243)
@@ -5,7 +5,7 @@
 
 pkgname=units
 pkgver=2.21
-pkgrel=1
+pkgrel=2
 pkgdesc="converts between different units"
 arch=('x86_64')
 url="https://www.gnu.org/software/units/units.html;
@@ -16,9 +16,13 @@
 license=("GPL")
 options=('!makeflags')
 validpgpkeys=('9AD8FC4162D7937CF64F972E1889D5F0E0636F49')
-source=(https://ftp.gnu.org/gnu/units/$pkgname-$pkgver.tar.gz{,.sig})
+source=(https://ftp.gnu.org/gnu/units/$pkgname-$pkgver.tar.gz{,.sig}
+'units_currency.timer'
+'units_currency.service')
 sha256sums=('6c3e80a9f980589fd962a5852a2674642257db1c5fd5b27c4d9e664f3486cbaf'
-'SKIP')
+'SKIP'
+'c1cb48a6157c850a0b7ecbf4387b82820d6e42f4a2c7ff0eb9de293bad6b128f'
+'52e8cd68110e797e3ee3737f06200505225039b18f3f9b87ae38b6c539c9ccb2')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
@@ -29,4 +33,6 @@
 package() {
   cd "$srcdir/$pkgname-$pkgver"
   make DESTDIR="$pkgdir" install
+  install -Dm644 ../units_currency.timer 
"$pkgdir/usr/lib/systemd/system/units_currency.timer"
+  install -Dm644 ../units_currency.service 
"$pkgdir/usr/lib/systemd/system/units_currency.service"
 }

Added: units_currency.service
===
--- units_currency.service  (rev 0)
+++ units_currency.service  2021-01-17 00:05:34 UTC (rev 821243)
@@ -0,0 +1,8 @@
+[Unit]
+Description=Update units currency rates database
+After=network-online.target
+Wants=network-online.target
+
+[Service]
+Type=oneshot
+ExecStart=/usr/bin/units_cur

Added: units_currency.timer
===
--- units_currency.timer(rev 0)
+++ units_currency.timer2021-01-17 00:05:34 UTC (rev 821243)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Daily units currency rates database update
+
+[Timer]
+OnCalendar=daily
+AccuracySec=12h
+Persistent=true
+
+[Install]
+WantedBy=timers.target


[arch-commits] Commit in caribou/trunk (3.patch PKGBUILD)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Saturday, January 16, 2021 @ 22:55:50
  Author: heftig
Revision: 821241

0.4.21+66+g14f5428-3

Added:
  caribou/trunk/3.patch
Modified:
  caribou/trunk/PKGBUILD

--+
 3.patch  |   46 ++
 PKGBUILD |   28 +---
 2 files changed, 63 insertions(+), 11 deletions(-)

Added: 3.patch
===
--- 3.patch (rev 0)
+++ 3.patch 2021-01-16 22:55:50 UTC (rev 821241)
@@ -0,0 +1,46 @@
+From d41c8e44b1a290eaca16703406b113a630c6 Mon Sep 17 00:00:00 2001
+From: Michael Webster 
+Date: Tue, 12 Jan 2021 18:01:47 +
+Subject: [PATCH] xadapter.vala: Remove XkbKeyTypesMask and fields from
+ XKbChangeMap call.
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+This was originally a workaround for xFree86 4.3 - see:
+https://bugzilla.gnome.org/show_bug.cgi?id=673547
+​
+As of https://gitlab.freedesktop.org/xorg/xserver/-/commit/87c64fc5b0 this
+causes a BadLength error when attempting to use shifted characters.
+​
+Ref:
+https://www.x.org/releases/X11R7.7/doc/libX11/XKB/xkblib.html#Changing_Map_Components_in_the_Server
+---
+ libcaribou/xadapter.vala | 9 ++---
+ 1 file changed, 2 insertions(+), 7 deletions(-)
+
+diff --git a/libcaribou/xadapter.vala b/libcaribou/xadapter.vala
+index 22858b7..1da5a78 100644
+--- a/libcaribou/xadapter.vala
 b/libcaribou/xadapter.vala
+@@ -195,15 +195,10 @@ namespace Caribou {
+ 
+ Xkb.MapChanges changes = Xkb.MapChanges ();
+ 
+-// We don't touch key types here but include the
+-// information in XkbSetMap request to the server, because
+-// some X servers need the information to check the sanity
+-// of the keysyms change.
+-changes.changed = (ushort) (Xkb.KeySymsMask | Xkb.KeyTypesMask);
++changes.changed = (ushort) Xkb.KeySymsMask;
+ changes.first_key_sym = (char) this.reserved_keycode;
+ changes.num_key_syms = 
this.xkbdesc.map.key_sym_map[this.reserved_keycode].width;
+-changes.first_type = 0;
+-changes.num_types = this.xkbdesc.map.num_types;
++
+ Xkb.change_map (this.xdisplay, this.xkbdesc, changes);
+ 
+ this.xdisplay.flush ();
+-- 
+GitLab
+

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:53:49 UTC (rev 821240)
+++ PKGBUILD2021-01-16 22:55:50 UTC (rev 821241)
@@ -1,12 +1,13 @@
-# Maintainer : Ionut Biru 
+# Contributor: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
 # Contributor: Adam Hani Schakaki 
 
 pkgname=caribou
 pkgver=0.4.21+66+g14f5428
-pkgrel=2
+pkgrel=3
 pkgdesc="A text entry and UI navigation application (on-screen keyboard)"
-arch=('x86_64')
-url="http://live.gnome.org/Caribou;
+url="https://wiki.gnome.org/Projects/Caribou;
+arch=(x86_64)
 license=(LGPL)
 depends=(at-spi2-atk python-atspi python-gobject gtk3 libxklavier libgee 
clutter dconf)
 makedepends=(intltool docbook-xsl gtk2 gobject-introspection vala git 
gnome-common)
@@ -13,8 +14,10 @@
 options=(!emptydirs)
 _commit=14f54287535ea3b5914638843710a8cef7b68e68  # master
 source=("git+https://gitlab.gnome.org/GNOME/caribou.git#commit=$_commit;
+3.patch
 unicode_to_keyval-symbol-check.patch)
 sha256sums=('SKIP'
+'c88b04a927e5a407503c007a78dafa7dcb71cf2002bbb3751d57cc21d090a2ed'
 '7b8969c275df30613531728408d75af1af22199b4fe3835d5ef67355f747799e')
 
 pkgver() {
@@ -25,8 +28,12 @@
 prepare() {
   cd $pkgname
 
+  # https://bugs.archlinux.org/task/69338
+  # https://gitlab.gnome.org/GNOME/caribou/-/merge_requests/3
+  git apply -3 ../3.patch
+
   # https://gitlab.gnome.org/GNOME/caribou/-/issues/7
-  patch -Np1 -i ../unicode_to_keyval-symbol-check.patch
+  git apply -3 ../unicode_to_keyval-symbol-check.patch
 
   NOCONFIGURE=1 ./autogen.sh
 }
@@ -33,15 +40,14 @@
 
 build() {
   cd $pkgname
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/$pkgname \
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib \
 --disable-static \
 --disable-schemas-compile
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
   make
 }
 


[arch-commits] Commit in caribou/repos/community-x86_64 (5 files)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Saturday, January 16, 2021 @ 22:56:18
  Author: heftig
Revision: 821242

archrelease: copy trunk to community-x86_64

Added:
  caribou/repos/community-x86_64/3.patch
(from rev 821241, caribou/trunk/3.patch)
  caribou/repos/community-x86_64/PKGBUILD
(from rev 821241, caribou/trunk/PKGBUILD)
  caribou/repos/community-x86_64/unicode_to_keyval-symbol-check.patch
(from rev 821241, caribou/trunk/unicode_to_keyval-symbol-check.patch)
Deleted:
  caribou/repos/community-x86_64/PKGBUILD
  caribou/repos/community-x86_64/unicode_to_keyval-symbol-check.patch

--+
 3.patch  |   46 
 PKGBUILD |  122 +
 unicode_to_keyval-symbol-check.patch |   26 +++
 3 files changed, 123 insertions(+), 71 deletions(-)

Copied: caribou/repos/community-x86_64/3.patch (from rev 821241, 
caribou/trunk/3.patch)
===
--- 3.patch (rev 0)
+++ 3.patch 2021-01-16 22:56:18 UTC (rev 821242)
@@ -0,0 +1,46 @@
+From d41c8e44b1a290eaca16703406b113a630c6 Mon Sep 17 00:00:00 2001
+From: Michael Webster 
+Date: Tue, 12 Jan 2021 18:01:47 +
+Subject: [PATCH] xadapter.vala: Remove XkbKeyTypesMask and fields from
+ XKbChangeMap call.
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+This was originally a workaround for xFree86 4.3 - see:
+https://bugzilla.gnome.org/show_bug.cgi?id=673547
+​
+As of https://gitlab.freedesktop.org/xorg/xserver/-/commit/87c64fc5b0 this
+causes a BadLength error when attempting to use shifted characters.
+​
+Ref:
+https://www.x.org/releases/X11R7.7/doc/libX11/XKB/xkblib.html#Changing_Map_Components_in_the_Server
+---
+ libcaribou/xadapter.vala | 9 ++---
+ 1 file changed, 2 insertions(+), 7 deletions(-)
+
+diff --git a/libcaribou/xadapter.vala b/libcaribou/xadapter.vala
+index 22858b7..1da5a78 100644
+--- a/libcaribou/xadapter.vala
 b/libcaribou/xadapter.vala
+@@ -195,15 +195,10 @@ namespace Caribou {
+ 
+ Xkb.MapChanges changes = Xkb.MapChanges ();
+ 
+-// We don't touch key types here but include the
+-// information in XkbSetMap request to the server, because
+-// some X servers need the information to check the sanity
+-// of the keysyms change.
+-changes.changed = (ushort) (Xkb.KeySymsMask | Xkb.KeyTypesMask);
++changes.changed = (ushort) Xkb.KeySymsMask;
+ changes.first_key_sym = (char) this.reserved_keycode;
+ changes.num_key_syms = 
this.xkbdesc.map.key_sym_map[this.reserved_keycode].width;
+-changes.first_type = 0;
+-changes.num_types = this.xkbdesc.map.num_types;
++
+ Xkb.change_map (this.xdisplay, this.xkbdesc, changes);
+ 
+ this.xdisplay.flush ();
+-- 
+GitLab
+

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 22:55:50 UTC (rev 821241)
+++ PKGBUILD2021-01-16 22:56:18 UTC (rev 821242)
@@ -1,58 +0,0 @@
-# Maintainer : Ionut Biru 
-# Contributor: Adam Hani Schakaki 
-
-pkgname=caribou
-pkgver=0.4.21+66+g14f5428
-pkgrel=2
-pkgdesc="A text entry and UI navigation application (on-screen keyboard)"
-arch=('x86_64')
-url="http://live.gnome.org/Caribou;
-license=(LGPL)
-depends=(at-spi2-atk python-atspi python-gobject gtk3 libxklavier libgee 
clutter dconf)
-makedepends=(intltool docbook-xsl gtk2 gobject-introspection vala git 
gnome-common)
-options=(!emptydirs)
-_commit=14f54287535ea3b5914638843710a8cef7b68e68  # master
-source=("git+https://gitlab.gnome.org/GNOME/caribou.git#commit=$_commit;
-unicode_to_keyval-symbol-check.patch)
-sha256sums=('SKIP'
-'7b8969c275df30613531728408d75af1af22199b4fe3835d5ef67355f747799e')
-
-pkgver() {
-  cd $pkgname
-  git describe --long | sed -e 's/-/+/g' -e 's/^CARIBOU_//' -e 's/_/./g'
-}
-
-prepare() {
-  cd $pkgname
-
-  # https://gitlab.gnome.org/GNOME/caribou/-/issues/7
-  patch -Np1 -i ../unicode_to_keyval-symbol-check.patch
-
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/$pkgname \
---disable-static \
---disable-schemas-compile
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd $pkgname
-  make -k check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: caribou/repos/community-x86_64/PKGBUILD (from rev 821241, 
caribou/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 22:56:18 UTC (rev 821242)
@@ -0,0 +1,64 @@
+# Contributor: Jan Alexander Steffens (heftig) 
+# Contributor: 

[arch-commits] Commit in haskell-primitive/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:56
  Author: felixonmars
Revision: 821213

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-primitive/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:53 UTC (rev 821212)
+++ PKGBUILD2021-01-16 22:50:56 UTC (rev 821213)
@@ -3,7 +3,7 @@
 
 pkgname=haskell-primitive
 pkgver=0.7.1.0
-pkgrel=63
+pkgrel=62
 pkgdesc="Wrappers for primitive operations"
 url="https://hackage.haskell.org/package/primitive;
 license=("BSD")


[arch-commits] Commit in haskell-tasty-hunit/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:59
  Author: felixonmars
Revision: 821214

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-tasty-hunit/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:56 UTC (rev 821213)
+++ PKGBUILD2021-01-16 22:50:59 UTC (rev 821214)
@@ -4,7 +4,7 @@
 _hkgname=tasty-hunit
 pkgname=haskell-tasty-hunit
 pkgver=0.10.0.3
-pkgrel=40
+pkgrel=39
 pkgdesc="HUnit support for the Tasty test framework."
 url="https://documentup.com/feuerbach/tasty;
 license=("MIT")


[arch-commits] Commit in haskell-tasty/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:53
  Author: felixonmars
Revision: 821212

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-tasty/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:50 UTC (rev 821211)
+++ PKGBUILD2021-01-16 22:50:53 UTC (rev 821212)
@@ -4,7 +4,7 @@
 _hkgname=tasty
 pkgname=haskell-tasty
 pkgver=1.3.1
-pkgrel=111
+pkgrel=110
 pkgdesc="Modern and extensible testing framework"
 url="http://documentup.com/feuerbach/tasty;
 license=("MIT")


[arch-commits] Commit in haskell-bifunctors/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:39
  Author: felixonmars
Revision: 821207

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-bifunctors/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:36 UTC (rev 821206)
+++ PKGBUILD2021-01-16 22:50:39 UTC (rev 821207)
@@ -4,7 +4,7 @@
 _hkgname=bifunctors
 pkgname=haskell-bifunctors
 pkgver=5.5.9
-pkgrel=9
+pkgrel=8
 pkgdesc="Bifunctors"
 url="https://github.com/ekmett/bifunctors/;
 license=("BSD")


[arch-commits] Commit in haskell-ansi-wl-pprint/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:48
  Author: felixonmars
Revision: 821210

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-ansi-wl-pprint/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:45 UTC (rev 821209)
+++ PKGBUILD2021-01-16 22:50:48 UTC (rev 821210)
@@ -4,7 +4,7 @@
 _hkgname=ansi-wl-pprint
 pkgname=haskell-ansi-wl-pprint
 pkgver=0.6.9
-pkgrel=111
+pkgrel=110
 pkgdesc="The Wadler/Leijen Pretty Printer for colored ANSI terminal output"
 url="https://github.com/ekmett/ansi-wl-pprint;
 license=("BSD")


[arch-commits] Commit in haskell-optparse-applicative/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:50
  Author: felixonmars
Revision: 821211

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-optparse-applicative/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:48 UTC (rev 821210)
+++ PKGBUILD2021-01-16 22:50:50 UTC (rev 821211)
@@ -4,7 +4,7 @@
 _hkgname=optparse-applicative
 pkgname=haskell-optparse-applicative
 pkgver=0.16.1.0
-pkgrel=39
+pkgrel=38
 pkgdesc="Utilities and combinators for parsing command line options"
 url="https://github.com/pcapriotti/optparse-applicative;
 license=("BSD")


[arch-commits] Commit in haskell-ansi-terminal/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:45
  Author: felixonmars
Revision: 821209

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-ansi-terminal/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:41 UTC (rev 821208)
+++ PKGBUILD2021-01-16 22:50:45 UTC (rev 821209)
@@ -4,7 +4,7 @@
 _hkgname=ansi-terminal
 pkgname=haskell-ansi-terminal
 pkgver=0.11
-pkgrel=51
+pkgrel=50
 pkgdesc="Simple ANSI terminal support, with Windows compatibility"
 url="https://github.com/feuerbach/ansi-terminal;
 license=("BSD")


[arch-commits] Commit in haskell-comonad/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:36
  Author: felixonmars
Revision: 821206

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-comonad/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:33 UTC (rev 821205)
+++ PKGBUILD2021-01-16 22:50:36 UTC (rev 821206)
@@ -4,7 +4,7 @@
 _hkgname=comonad
 pkgname=haskell-comonad
 pkgver=5.0.8
-pkgrel=11
+pkgrel=10
 pkgdesc="Comonads"
 url="https://github.com/ekmett/comonad/;
 license=("BSD")


[arch-commits] Commit in haskell-distributive/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:33
  Author: felixonmars
Revision: 821205

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-distributive/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:30 UTC (rev 821204)
+++ PKGBUILD2021-01-16 22:50:33 UTC (rev 821205)
@@ -4,7 +4,7 @@
 _hkgname=distributive
 pkgname=haskell-distributive
 pkgver=0.6.2.1
-pkgrel=12
+pkgrel=11
 pkgdesc="Distributive functors -- Dual to Traversable"
 url="https://github.com/ekmett/distributive/;
 license=("BSD")


[arch-commits] Commit in haskell-colour/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:41
  Author: felixonmars
Revision: 821208

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-colour/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:39 UTC (rev 821207)
+++ PKGBUILD2021-01-16 22:50:41 UTC (rev 821208)
@@ -4,7 +4,7 @@
 _hkgname=colour
 pkgname=haskell-colour
 pkgver=2.3.5
-pkgrel=109
+pkgrel=108
 pkgdesc="A model for human colour/color perception"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("MIT")


[arch-commits] Commit in haskell-splitmix/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:27
  Author: felixonmars
Revision: 821203

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-splitmix/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:24 UTC (rev 821202)
+++ PKGBUILD2021-01-16 22:50:27 UTC (rev 821203)
@@ -3,7 +3,7 @@
 _hkgname=splitmix
 pkgname=haskell-splitmix
 pkgver=0.1.0.3
-pkgrel=39
+pkgrel=38
 pkgdesc="Fast Splittable PRNG"
 url="https://github.com/haskellari/splitmix;
 license=('BSD')


[arch-commits] Commit in haskell-base-compat-batteries/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:24
  Author: felixonmars
Revision: 821202

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-base-compat-batteries/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:21 UTC (rev 821201)
+++ PKGBUILD2021-01-16 22:50:24 UTC (rev 821202)
@@ -3,7 +3,7 @@
 _hkgname=base-compat-batteries
 pkgname=haskell-base-compat-batteries
 pkgver=0.11.2
-pkgrel=44
+pkgrel=43
 pkgdesc="base-compat with extra batteries"
 url="https://hackage.haskell.org/package/base-compat-batteries;
 license=('MIT')


[arch-commits] Commit in haskell-base-orphans/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:21
  Author: felixonmars
Revision: 821201

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-base-orphans/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:19 UTC (rev 821200)
+++ PKGBUILD2021-01-16 22:50:21 UTC (rev 821201)
@@ -4,7 +4,7 @@
 _hkgname=base-orphans
 pkgname=haskell-base-orphans
 pkgver=0.8.4
-pkgrel=34
+pkgrel=33
 pkgdesc="Backwards-compatible orphan instances for base"
 url="https://github.com/haskell-compat/base-orphans#readme;
 license=("MIT")


[arch-commits] Commit in haskell-generic-deriving/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:30
  Author: felixonmars
Revision: 821204

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-generic-deriving/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:27 UTC (rev 821203)
+++ PKGBUILD2021-01-16 22:50:30 UTC (rev 821204)
@@ -4,7 +4,7 @@
 _hkgname=generic-deriving
 pkgname=haskell-generic-deriving
 pkgver=1.14
-pkgrel=31
+pkgrel=30
 pkgdesc="Generic programming library for generalised deriving."
 url="https://github.com/dreixel/generic-deriving;
 license=("BSD")


[arch-commits] Commit in haskell-hspec-discover/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:19
  Author: felixonmars
Revision: 821200

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-hspec-discover/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:16 UTC (rev 821199)
+++ PKGBUILD2021-01-16 22:50:19 UTC (rev 821200)
@@ -3,7 +3,7 @@
 _hkgname=hspec-discover
 pkgname=haskell-hspec-discover
 pkgver=2.7.6
-pkgrel=4
+pkgrel=3
 pkgdesc="Automatically discover and run Hspec tests"
 url="http://hspec.github.io/;
 license=('MIT')


[arch-commits] Commit in haskell-hspec-expectations/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:03
  Author: felixonmars
Revision: 821195

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-hspec-expectations/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:00 UTC (rev 821194)
+++ PKGBUILD2021-01-16 22:50:03 UTC (rev 821195)
@@ -3,7 +3,7 @@
 _hkgname=hspec-expectations
 pkgname=haskell-hspec-expectations
 pkgver=0.8.2
-pkgrel=106
+pkgrel=105
 pkgdesc="Catchy combinators for HUnit"
 url="https://github.com/sol/hspec-expectations;
 license=('MIT')


[arch-commits] Commit in haskell-unliftio/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:13
  Author: felixonmars
Revision: 821198

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-unliftio/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:10 UTC (rev 821197)
+++ PKGBUILD2021-01-16 22:50:13 UTC (rev 821198)
@@ -4,7 +4,7 @@
 _hkgname=unliftio
 pkgname=haskell-unliftio
 pkgver=0.2.13.1
-pkgrel=51
+pkgrel=50
 pkgdesc="The MonadUnliftIO typeclass for unlifting monads to IO (batteries 
included)"
 url="https://github.com/fpco/monad-unlift;
 license=("MIT")


[arch-commits] Commit in haskell-async/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:10
  Author: felixonmars
Revision: 821197

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-async/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:07 UTC (rev 821196)
+++ PKGBUILD2021-01-16 22:50:10 UTC (rev 821197)
@@ -4,7 +4,7 @@
 _hkgname=async
 pkgname=haskell-async
 pkgver=2.2.2
-pkgrel=74
+pkgrel=73
 pkgdesc="Run IO operations asynchronously and wait for their results"
 url="https://github.com/simonmar/async;
 license=("BSD")


[arch-commits] Commit in haskell-hashable/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:07
  Author: felixonmars
Revision: 821196

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-hashable/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:03 UTC (rev 821195)
+++ PKGBUILD2021-01-16 22:50:07 UTC (rev 821196)
@@ -4,7 +4,7 @@
 _hkgname=hashable
 pkgname=haskell-hashable
 pkgver=1.3.0.0
-pkgrel=70
+pkgrel=69
 pkgdesc="Mutable hash tables in the ST monad"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('BSD')


[arch-commits] Commit in haskell-logging-facade/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:16
  Author: felixonmars
Revision: 821199

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-logging-facade/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:50:13 UTC (rev 821198)
+++ PKGBUILD2021-01-16 22:50:16 UTC (rev 821199)
@@ -4,7 +4,7 @@
 _hkgname=logging-facade
 pkgname=haskell-logging-facade
 pkgver=0.3.0
-pkgrel=141
+pkgrel=140
 pkgdesc="Simple logging abstraction that allows multiple back-ends"
 url="https://github.com/sol/logging-facade;
 license=("MIT")


[arch-commits] Commit in haskell-call-stack/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:49:52
  Author: felixonmars
Revision: 821191

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-call-stack/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:49:49 UTC (rev 821190)
+++ PKGBUILD2021-01-16 22:49:52 UTC (rev 821191)
@@ -4,7 +4,7 @@
 _hkgname=call-stack
 pkgname=haskell-call-stack
 pkgver=0.2.0
-pkgrel=85
+pkgrel=84
 pkgdesc="Use GHC call-stacks in a backward compatible way"
 url="https://github.com/sol/call-stack;
 license=("MIT")


[arch-commits] Commit in haskell-hunit/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:49:55
  Author: felixonmars
Revision: 821192

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-hunit/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:49:52 UTC (rev 821191)
+++ PKGBUILD2021-01-16 22:49:55 UTC (rev 821192)
@@ -4,7 +4,7 @@
 _hkgname=HUnit
 pkgname=haskell-hunit
 pkgver=1.6.1.0
-pkgrel=30
+pkgrel=29
 pkgdesc="A unit testing framework for Haskell"
 url="http://hunit.sourceforge.net/;
 license=("BSD")


[arch-commits] Commit in haskell-pcre-light/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:50:00
  Author: felixonmars
Revision: 821194

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-pcre-light/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:49:57 UTC (rev 821193)
+++ PKGBUILD2021-01-16 22:50:00 UTC (rev 821194)
@@ -4,7 +4,7 @@
 _hkgname=pcre-light
 pkgname=haskell-pcre-light
 pkgver=0.4.1.0
-pkgrel=83
+pkgrel=82
 pkgdesc="Portable regex library for Perl 5 compatible regular expressions"
 url="https://github.com/Daniel-Diaz/pcre-light;
 license=("BSD")


[arch-commits] Commit in haskell-doctest/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:49:57
  Author: felixonmars
Revision: 821193

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-doctest/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:49:55 UTC (rev 821192)
+++ PKGBUILD2021-01-16 22:49:57 UTC (rev 821193)
@@ -4,7 +4,7 @@
 _hkgname=doctest
 pkgname=haskell-doctest
 pkgver=0.17
-pkgrel=64
+pkgrel=63
 pkgdesc="Test interactive Haskell examples"
 url="https://github.com/sol/doctest;
 license=("MIT")


[arch-commits] Commit in haskell-logict/trunk (PKGBUILD)

2021-01-16 Thread Felix Yan via arch-commits
Date: Saturday, January 16, 2021 @ 22:49:46
  Author: felixonmars
Revision: 821189

revert logict 0.7.1.0: https://github.com/Bodigrim/smallcheck/issues/49

Modified:
  haskell-logict/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:43:33 UTC (rev 821188)
+++ PKGBUILD2021-01-16 22:49:46 UTC (rev 821189)
@@ -2,8 +2,8 @@
 
 _hkgname=logict
 pkgname=haskell-logict
-pkgver=0.7.1.0
-pkgrel=2
+pkgver=0.7.0.3
+pkgrel=47
 pkgdesc="A backtracking logic-programming monad."
 url="http://code.haskell.org/~dolio/;
 license=('BSD')
@@ -10,9 +10,9 @@
 arch=('x86_64')
 depends=('ghc-libs')
 makedepends=('ghc')
-checkdepends=('haskell-async' 'haskell-tasty' 'haskell-tasty-hunit')
+checkdepends=('haskell-tasty' 'haskell-tasty-hunit')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('b6d37521ab1f9ec6c2fd5eea27f6d221680cc043a0fd6413c5ac37f1bfeb2d87a15fba92774d36b6a11cd685b2b78f6710441ca91dfd5aa376735d95425d6b53')
+sha512sums=('0d845daffb841efea93b59e48ee86daeb0dbacbe4fc7fa417ff71d1dcda3a5551901f589097416441736007d256197932b83de76a2f630a5f7835909cd758e79')
 
 build() {
 cd $_hkgname-$pkgver


[arch-commits] Commit in caribou/repos (3 files)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Saturday, January 16, 2021 @ 22:43:33
  Author: heftig
Revision: 821188

archrelease: copy trunk to community-x86_64

Added:
  caribou/repos/community-x86_64/
  caribou/repos/community-x86_64/PKGBUILD
(from rev 821187, caribou/trunk/PKGBUILD)
  caribou/repos/community-x86_64/unicode_to_keyval-symbol-check.patch
(from rev 821187, caribou/trunk/unicode_to_keyval-symbol-check.patch)

--+
 PKGBUILD |   58 +
 unicode_to_keyval-symbol-check.patch |   13 +++
 2 files changed, 71 insertions(+)

Copied: caribou/repos/community-x86_64/PKGBUILD (from rev 821187, 
caribou/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-01-16 22:43:33 UTC (rev 821188)
@@ -0,0 +1,58 @@
+# Maintainer : Ionut Biru 
+# Contributor: Adam Hani Schakaki 
+
+pkgname=caribou
+pkgver=0.4.21+66+g14f5428
+pkgrel=2
+pkgdesc="A text entry and UI navigation application (on-screen keyboard)"
+arch=('x86_64')
+url="http://live.gnome.org/Caribou;
+license=(LGPL)
+depends=(at-spi2-atk python-atspi python-gobject gtk3 libxklavier libgee 
clutter dconf)
+makedepends=(intltool docbook-xsl gtk2 gobject-introspection vala git 
gnome-common)
+options=(!emptydirs)
+_commit=14f54287535ea3b5914638843710a8cef7b68e68  # master
+source=("git+https://gitlab.gnome.org/GNOME/caribou.git#commit=$_commit;
+unicode_to_keyval-symbol-check.patch)
+sha256sums=('SKIP'
+'7b8969c275df30613531728408d75af1af22199b4fe3835d5ef67355f747799e')
+
+pkgver() {
+  cd $pkgname
+  git describe --long | sed -e 's/-/+/g' -e 's/^CARIBOU_//' -e 's/_/./g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # https://gitlab.gnome.org/GNOME/caribou/-/issues/7
+  patch -Np1 -i ../unicode_to_keyval-symbol-check.patch
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/$pkgname \
+--disable-static \
+--disable-schemas-compile
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  make -k check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: caribou/repos/community-x86_64/unicode_to_keyval-symbol-check.patch 
(from rev 821187, caribou/trunk/unicode_to_keyval-symbol-check.patch)
===
--- community-x86_64/unicode_to_keyval-symbol-check.patch   
(rev 0)
+++ community-x86_64/unicode_to_keyval-symbol-check.patch   2021-01-16 
22:43:33 UTC (rev 821188)
@@ -0,0 +1,13 @@
+diff --git a/libcaribou/key-model.vala b/libcaribou/key-model.vala
+index 89015bc..e88342e 100644
+--- a/libcaribou/key-model.vala
 b/libcaribou/key-model.vala
+@@ -101,7 +101,7 @@ namespace Caribou {
+ unichar uc;
+ while (text.get_next_char (ref index, out uc)) {
+ uint keyval = Gdk.unicode_to_keyval (uc);
+-if (keyval != uc | 0x0100)
++if (keyval != (uc | 0x0100))
+ _keyvals += keyval;
+ }
+ } else {


[arch-commits] Commit in (caribou)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Saturday, January 16, 2021 @ 22:43:49
  Author: heftig
Revision: 406317

extra2community: Moving caribou from extra to community

Deleted:
  caribou/


[arch-commits] Commit in (5 files)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Saturday, January 16, 2021 @ 22:43:29
  Author: heftig
Revision: 821187

extra2community: Moving caribou from extra to community

Added:
  caribou/
  caribou/repos/
  caribou/trunk/
  caribou/trunk/PKGBUILD
  caribou/trunk/unicode_to_keyval-symbol-check.patch

--+
 PKGBUILD |   58 +
 unicode_to_keyval-symbol-check.patch |   13 +++
 2 files changed, 71 insertions(+)

Added: caribou/trunk/PKGBUILD
===
--- caribou/trunk/PKGBUILD  (rev 0)
+++ caribou/trunk/PKGBUILD  2021-01-16 22:43:29 UTC (rev 821187)
@@ -0,0 +1,58 @@
+# Maintainer : Ionut Biru 
+# Contributor: Adam Hani Schakaki 
+
+pkgname=caribou
+pkgver=0.4.21+66+g14f5428
+pkgrel=2
+pkgdesc="A text entry and UI navigation application (on-screen keyboard)"
+arch=('x86_64')
+url="http://live.gnome.org/Caribou;
+license=(LGPL)
+depends=(at-spi2-atk python-atspi python-gobject gtk3 libxklavier libgee 
clutter dconf)
+makedepends=(intltool docbook-xsl gtk2 gobject-introspection vala git 
gnome-common)
+options=(!emptydirs)
+_commit=14f54287535ea3b5914638843710a8cef7b68e68  # master
+source=("git+https://gitlab.gnome.org/GNOME/caribou.git#commit=$_commit;
+unicode_to_keyval-symbol-check.patch)
+sha256sums=('SKIP'
+'7b8969c275df30613531728408d75af1af22199b4fe3835d5ef67355f747799e')
+
+pkgver() {
+  cd $pkgname
+  git describe --long | sed -e 's/-/+/g' -e 's/^CARIBOU_//' -e 's/_/./g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # https://gitlab.gnome.org/GNOME/caribou/-/issues/7
+  patch -Np1 -i ../unicode_to_keyval-symbol-check.patch
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/$pkgname \
+--disable-static \
+--disable-schemas-compile
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  make -k check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Added: caribou/trunk/unicode_to_keyval-symbol-check.patch
===
--- caribou/trunk/unicode_to_keyval-symbol-check.patch  
(rev 0)
+++ caribou/trunk/unicode_to_keyval-symbol-check.patch  2021-01-16 22:43:29 UTC 
(rev 821187)
@@ -0,0 +1,13 @@
+diff --git a/libcaribou/key-model.vala b/libcaribou/key-model.vala
+index 89015bc..e88342e 100644
+--- a/libcaribou/key-model.vala
 b/libcaribou/key-model.vala
+@@ -101,7 +101,7 @@ namespace Caribou {
+ unichar uc;
+ while (text.get_next_char (ref index, out uc)) {
+ uint keyval = Gdk.unicode_to_keyval (uc);
+-if (keyval != uc | 0x0100)
++if (keyval != (uc | 0x0100))
+ _keyvals += keyval;
+ }
+ } else {


[arch-commits] Commit in modemmanager/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Saturday, January 16, 2021 @ 22:14:13
  Author: heftig
Revision: 406314

archrelease: copy trunk to extra-x86_64

Added:
  modemmanager/repos/extra-x86_64/PKGBUILD
(from rev 406312, modemmanager/trunk/PKGBUILD)
Deleted:
  modemmanager/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  168 ++---
 1 file changed, 84 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 22:14:12 UTC (rev 406313)
+++ PKGBUILD2021-01-16 22:14:13 UTC (rev 406314)
@@ -1,84 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgbase=modemmanager
-pkgname=(modemmanager libmm-glib)
-pkgver=1.14.8
-pkgrel=1
-pkgdesc="Mobile broadband modem management service"
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/ModemManager/;
-license=(GPL2 LGPL2.1)
-depends=(systemd libgudev polkit ppp libqmi libmbim
- mobile-broadband-provider-info)
-makedepends=(gtk-doc gobject-introspection vala autoconf-archive git)
-_commit=19c2266a328ce39033f8d15f5c7ff3561149b22b  # tags/1.14.8
-source=("git+https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd ModemManager
-  git describe --tags | sed 's/-rc/rc/;s/-/+/g'
-}
-
-prepare() {
-  cd ModemManager
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd ModemManager
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---sbindir=/usr/bin \
---with-dbus-sys-dir=/usr/share/dbus-1/system.d \
---with-udev-base-dir=/usr/lib/udev \
---with-polkit=permissive \
---with-systemd-journal \
---with-systemd-suspend-resume \
---enable-compile-warnings=yes \
---enable-gtk-doc \
---disable-static
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-check() {
-  cd ModemManager
-  make -k check
-}
-
-package_modemmanager() {
-  depends+=(libmm-glib.so libg{lib,object,io,module}-2.0.so libsystemd.so 
libgudev-1.0.so
-libqmi-glib.so libmbim-glib.so)
-  optdepends=('usb_modeswitch: install if your modem shows up as a storage 
drive')
-  options=(!emptydirs)
-
-  cd ModemManager
-  make DESTDIR="$pkgdir" install
-  make DESTDIR="$pkgdir" -C libmm-glib uninstall
-  make DESTDIR="$pkgdir" -C vapi uninstall
-
-  # Some stuff to move is left over
-  mv "$pkgdir/usr/include" ..
-  mv "$pkgdir/usr/lib/pkgconfig" ..
-}
-
-package_libmm-glib() {
-  pkgdesc="ModemManager library"
-  depends=(libg{lib,object,io}-2.0.so)
-  provides=(libmm-glib.so)
-
-  install -d "$pkgdir/usr/lib"
-  mv include "$pkgdir/usr"
-  mv pkgconfig "$pkgdir/usr/lib"
-
-  cd ModemManager
-  make DESTDIR="$pkgdir" -C libmm-glib install
-  make DESTDIR="$pkgdir" -C vapi install
-}

Copied: modemmanager/repos/extra-x86_64/PKGBUILD (from rev 406312, 
modemmanager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 22:14:13 UTC (rev 406314)
@@ -0,0 +1,84 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgbase=modemmanager
+pkgname=(modemmanager libmm-glib)
+pkgver=1.14.10
+pkgrel=1
+pkgdesc="Mobile broadband modem management service"
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/ModemManager/;
+license=(GPL2 LGPL2.1)
+depends=(systemd libgudev polkit ppp libqmi libmbim
+ mobile-broadband-provider-info)
+makedepends=(gtk-doc gobject-introspection vala autoconf-archive git)
+_commit=304a1b123fe87cf5f3b9067fb83f37c9e09e12f5  # tags/1.14.10
+source=("git+https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ModemManager
+  git describe --tags | sed 's/-rc/rc/;s/-/+/g'
+}
+
+prepare() {
+  cd ModemManager
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd ModemManager
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--with-dbus-sys-dir=/usr/share/dbus-1/system.d \
+--with-udev-base-dir=/usr/lib/udev \
+--with-polkit=permissive \
+--with-systemd-journal \
+--with-systemd-suspend-resume \
+--enable-compile-warnings=yes \
+--enable-gtk-doc \
+--disable-static
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd ModemManager
+  make -k check
+}
+
+package_modemmanager() {
+  depends+=(libmm-glib.so libg{lib,object,io,module}-2.0.so libsystemd.so 
libgudev-1.0.so
+libqmi-glib.so libmbim-glib.so)
+  optdepends=('usb_modeswitch: install if your modem shows up as a storage 
drive')
+  options=(!emptydirs)
+
+  cd ModemManager
+  make DESTDIR="$pkgdir" install
+  make DESTDIR="$pkgdir" -C 

[arch-commits] Commit in pulseaudio/repos/extra-x86_64 (4 files)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Saturday, January 16, 2021 @ 22:14:15
  Author: heftig
Revision: 406315

archrelease: copy trunk to extra-x86_64

Added:
  pulseaudio/repos/extra-x86_64/PKGBUILD
(from rev 406313, pulseaudio/trunk/PKGBUILD)
  pulseaudio/repos/extra-x86_64/pulseaudio.install
(from rev 406314, pulseaudio/trunk/pulseaudio.install)
Deleted:
  pulseaudio/repos/extra-x86_64/PKGBUILD
  pulseaudio/repos/extra-x86_64/pulseaudio.install

+
 PKGBUILD   |  402 +--
 pulseaudio.install |   28 +--
 2 files changed, 215 insertions(+), 215 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 22:14:13 UTC (rev 406314)
+++ PKGBUILD2021-01-16 22:14:15 UTC (rev 406315)
@@ -1,201 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=pulseaudio
-pkgname=(pulseaudio libpulse alsa-card-profiles 
pulseaudio-{zeroconf,lirc,jack,bluetooth,equalizer,rtp})
-pkgdesc="A featureful, general-purpose sound server"
-pkgver=14.1
-pkgrel=2
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/PulseAudio/;
-license=(GPL)
-makedepends=(libasyncns libcap attr libxtst libsm libsndfile rtkit libsoxr
- speexdsp tdb systemd dbus avahi bluez bluez-libs jack2 sbc
- lirc openssl fftw orc gtk3 webrtc-audio-processing check git meson
- xmltoman)
-_commit=d6c8c9ce37f38ea95275453f75b112b393abc38b  # tags/v14.1^0
-source=("git+https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd pulseaudio
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd pulseaudio
-
-  # Freeze version before patching
-  ./git-version-gen doesnt-exist >.tarball-version
-
-  # Pick some ACP updates required by pipewire
-  git cherry-pick -n \
-a28f2e7293a055588f7bba568b5049ff91b3aad0 \
-69ba5a2b58ad6e98c8899aa297afd8276dbbe052 \
-05c373d939506f31f96e58d8390b92e737e12afc \
-a73ec2a3f4f03829575761dc17546cf3226861c7 \
-71aa4720a4194e9602271634d9042b8e56a8217f \
-7ec6ee4725a72b42ddcb38550efc968a06e6be2f \
-836ba89c4a3cd15efa33f9e70ed8e4764bcb3793 \
-19e34d8d5bb9380ed70607b3f661c26df6d4836c
-}
-
-build() {
-  arch-meson pulseaudio build \
--D alsadatadir=/usr/share/alsa-card-profile/mixer \
--D pulsedsp-location='/usr/\$LIB/pulseaudio' \
--D stream-restore-clear-old-devices=true \
--D udevrulesdir=/usr/lib/udev/rules.d
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-  ninja -C build test-daemon
-}
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-package_pulseaudio() {
-  depends=("libpulse=$pkgver-$pkgrel" alsa-card-profiles rtkit libltdl speexdsp
-   tdb orc libsoxr webrtc-audio-processing libxtst)
-  optdepends=('pulseaudio-alsa: ALSA configuration (recommended)'
-  'pulseaudio-zeroconf: Zeroconf support'
-  'pulseaudio-lirc: IR (lirc) support'
-  'pulseaudio-jack: Jack support'
-  'pulseaudio-bluetooth: Bluetooth support'
-  'pulseaudio-equalizer: Graphical equalizer'
-  'pulseaudio-rtp: RTP and RAOP support')
-  backup=(etc/pulse/{daemon.conf,default.pa,system.pa})
-  install=pulseaudio.install
-  replaces=('pulseaudio-xen<=9.0' 'pulseaudio-gconf<=11.1')
-
-  local pulsever=$(cd pulseaudio; ./git-version-gen .tarball-version)
-  while [[ $pulsever = *.*.* ]]; do
-pulsever=${pulsever%.*}
-  done
-  pulsever=${pulsever%%-*}
-
-  DESTDIR="$pkgdir" meson install -C build
-
-  cd "$pkgdir"
-
-  # Superseded by socket activation
-  sed -e '/autospawn/iautospawn = no' \
-  -i etc/pulse/client.conf
-
-  # Disable cork-request module, can result in e.g. media players unpausing
-  # when there's a Skype call incoming
-  sed -e 's|/usr/bin/pactl load-module module-x11-cork-request|#&|' \
-  -i usr/bin/start-pulseaudio-x11
-
-  # Required by qpaeq
-  sed -e '/Load several protocols/aload-module module-dbus-protocol' \
-  -i etc/pulse/default.pa
-
-  rm -r etc/dbus-1
-
-  # Split packages
-  _pick libpulse etc/pulse/client.conf
-  _pick libpulse usr/bin/pa{cat,ctl,dsp,mon,play,rec,record}
-  _pick libpulse usr/lib/libpulse{,-simple,-mainloop-glib}.so*
-  _pick libpulse usr/lib/{cmake,pkgconfig}
-  _pick libpulse usr/lib/pulseaudio/libpulse{dsp,common-*}.so
-  _pick libpulse usr/include
-  _pick libpulse usr/share/man/man1/pa{cat,ctl,dsp,mon,play,rec,record}.1
-  _pick libpulse usr/share/man/man5/pulse-client.conf.5
-  _pick libpulse usr/share/vala
-
-  _pick alsa-card-profiles usr/share/alsa-card-profile
-
-  local moddir=usr/lib/pulse-$pulsever/modules
-
-  _pick zeroconf $moddir/libavahi-wrap.so
-  _pick zeroconf $moddir/module-zeroconf-{publish,discover}.so
-  _pick zeroconf 

[arch-commits] Commit in adobe-source-code-pro-fonts/repos/extra-any (2 files)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Saturday, January 16, 2021 @ 22:14:12
  Author: heftig
Revision: 406313

archrelease: copy trunk to extra-any

Added:
  adobe-source-code-pro-fonts/repos/extra-any/PKGBUILD
(from rev 406312, adobe-source-code-pro-fonts/trunk/PKGBUILD)
Deleted:
  adobe-source-code-pro-fonts/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   42 +-
 1 file changed, 21 insertions(+), 21 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 22:14:00 UTC (rev 406312)
+++ PKGBUILD2021-01-16 22:14:12 UTC (rev 406313)
@@ -1,21 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=adobe-source-code-pro-fonts
-pkgver=2.032ro+1.052it+1.012var
-pkgrel=1
-pkgdesc="Monospaced font family for user interface and coding environments"
-url="https://adobe-fonts.github.io/source-code-pro/;
-arch=(any)
-license=(custom)
-_relver=2.032R-ro/1.052R-it/1.012R-VAR
-_tarname=source-code-pro-${_relver//\//-}
-source=("$_tarname.tar.gz::https://github.com/adobe-fonts/source-code-pro/archive/$_relver.tar.gz;)
-sha256sums=('4e21492169b9efdd8c40ed6c34aa0d5e58d2a8724d0cd98f2e0f88ccf5ecc78c')
-
-package() {
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/fonts/${pkgname%-fonts}" -m644 OTF/*.otf 
VAR/*.otf
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: adobe-source-code-pro-fonts/repos/extra-any/PKGBUILD (from rev 406312, 
adobe-source-code-pro-fonts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 22:14:12 UTC (rev 406313)
@@ -0,0 +1,21 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=adobe-source-code-pro-fonts
+pkgver=2.038ro+1.058it+1.018var
+pkgrel=1
+pkgdesc="Monospaced font family for user interface and coding environments"
+url="https://adobe-fonts.github.io/source-code-pro/;
+arch=(any)
+license=(custom)
+_relver=2.038R-ro/1.058R-it/1.018R-VAR
+_tarname=source-code-pro-${_relver//\//-}
+source=("$_tarname.tar.gz::https://github.com/adobe-fonts/source-code-pro/archive/$_relver.tar.gz;)
+sha256sums=('d8f879fefd66ecb7291ea2d73984b9c0a97fb499424e58290ba6b81787d0c725')
+
+package() {
+  cd $_tarname
+  install -Dt "$pkgdir/usr/share/fonts/${pkgname%-fonts}" -m644 OTF/*.otf 
VAR/*.otf
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in lib32-libpulse/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Saturday, January 16, 2021 @ 22:14:13
  Author: heftig
Revision: 821186

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libpulse/repos/multilib-x86_64/PKGBUILD
(from rev 821185, lib32-libpulse/trunk/PKGBUILD)
Deleted:
  lib32-libpulse/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |  161 -
 1 file changed, 86 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 21:56:18 UTC (rev 821185)
+++ PKGBUILD2021-01-16 22:14:13 UTC (rev 821186)
@@ -1,75 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-_pkgbasename=libpulse
-pkgname=lib32-$_pkgbasename
-pkgdesc="A featureful, general-purpose sound server (32-bit client libraries)"
-pkgver=14.1
-pkgrel=1
-arch=(x86_64)
-url="https://www.freedesktop.org/wiki/Software/PulseAudio/;
-license=(LGPL)
-depends=(lib32-{dbus,libasyncns,libcap,libxtst,libsm,libsndfile,systemd}
- $_pkgbasename)
-makedepends=(lib32-{speexdsp,glib2,gtk3} git meson)
-optdepends=('lib32-alsa-plugins: ALSA support')
-provides=("lib32-pulseaudio=$pkgver")
-conflicts=(lib32-pulseaudio)
-replaces=(lib32-pulseaudio)
-_commit=d6c8c9ce37f38ea95275453f75b112b393abc38b  # tags/v14.1^0
-source=("git+https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd pulseaudio
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd pulseaudio
-
-  # Freeze version before patching
-  ./git-version-gen doesnt-exist >.tarball-version
-}
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
-
-  arch-meson pulseaudio build \
---libdir /usr/lib32 \
---auto-features auto \
--D man=false \
--D tests=false \
--D avahi=disabled \
--D bluez5=false \
--D gcov=false \
--D pulsedsp-location='/usr/\$LIB/pulseaudio' \
--D stream-restore-clear-old-devices=true \
--D udevrulesdir=/usr/lib/udev/rules.d
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-_pick() {
-  local f d
-  for f; do
-d="$pkgdir/${f#$srcdir/install/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-package() {
-  DESTDIR="$srcdir/install" meson install -C build
-
-  cd install
-  _pick usr/lib32/libpulse{,-simple,-mainloop-glib}.so*
-  _pick usr/lib32/{cmake,pkgconfig}
-  _pick usr/lib32/pulseaudio/libpulse{dsp,common-*}.so
-}
-# vim:set sw=2 et:

Copied: lib32-libpulse/repos/multilib-x86_64/PKGBUILD (from rev 821185, 
lib32-libpulse/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 22:14:13 UTC (rev 821186)
@@ -0,0 +1,86 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+_pkgbasename=libpulse
+pkgname=lib32-$_pkgbasename
+pkgdesc="A featureful, general-purpose sound server (32-bit client libraries)"
+pkgver=14.2
+pkgrel=1
+arch=(x86_64)
+url="https://www.freedesktop.org/wiki/Software/PulseAudio/;
+license=(LGPL)
+depends=(lib32-{dbus,libasyncns,libcap,libxtst,libsm,libsndfile,systemd}
+ $_pkgbasename)
+makedepends=(lib32-{speexdsp,glib2,gtk3} git meson)
+optdepends=('lib32-alsa-plugins: ALSA support')
+provides=("lib32-pulseaudio=$pkgver")
+conflicts=(lib32-pulseaudio)
+replaces=(lib32-pulseaudio)
+_commit=6a487c5244563f49a025088de3510c80824fc99e  # tags/v14.2^0
+source=("git+https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd pulseaudio
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd pulseaudio
+
+  # Freeze version before patching
+  ./git-version-gen doesnt-exist >.tarball-version
+
+  # Pick some ACP updates required by pipewire
+  git cherry-pick -n \
+a28f2e7293a055588f7bba568b5049ff91b3aad0 \
+69ba5a2b58ad6e98c8899aa297afd8276dbbe052 \
+05c373d939506f31f96e58d8390b92e737e12afc \
+a73ec2a3f4f03829575761dc17546cf3226861c7 \
+71aa4720a4194e9602271634d9042b8e56a8217f \
+7ec6ee4725a72b42ddcb38550efc968a06e6be2f \
+836ba89c4a3cd15efa33f9e70ed8e4764bcb3793 \
+19e34d8d5bb9380ed70607b3f661c26df6d4836c
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
+
+  arch-meson pulseaudio build \
+--libdir /usr/lib32 \
+--auto-features auto \
+-D man=false \
+-D tests=false \
+-D avahi=disabled \
+-D bluez5=false \
+-D gcov=false \
+-D pulsedsp-location='/usr/\$LIB/pulseaudio' \
+-D stream-restore-clear-old-devices=true \
+-D udevrulesdir=/usr/lib/udev/rules.d
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+_pick() {
+  local f d
+  for f; do
+d="$pkgdir/${f#$srcdir/install/}"
+mkdir -p "$(dirname "$d")"

[arch-commits] Commit in adobe-source-code-pro-fonts/trunk (PKGBUILD)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Saturday, January 16, 2021 @ 22:14:00
  Author: heftig
Revision: 406312

2.038ro+1.058it+1.018var-1

Modified:
  adobe-source-code-pro-fonts/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 22:13:28 UTC (rev 406311)
+++ PKGBUILD2021-01-16 22:14:00 UTC (rev 406312)
@@ -1,16 +1,16 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=adobe-source-code-pro-fonts
-pkgver=2.032ro+1.052it+1.012var
+pkgver=2.038ro+1.058it+1.018var
 pkgrel=1
 pkgdesc="Monospaced font family for user interface and coding environments"
 url="https://adobe-fonts.github.io/source-code-pro/;
 arch=(any)
 license=(custom)
-_relver=2.032R-ro/1.052R-it/1.012R-VAR
+_relver=2.038R-ro/1.058R-it/1.018R-VAR
 _tarname=source-code-pro-${_relver//\//-}
 
source=("$_tarname.tar.gz::https://github.com/adobe-fonts/source-code-pro/archive/$_relver.tar.gz;)
-sha256sums=('4e21492169b9efdd8c40ed6c34aa0d5e58d2a8724d0cd98f2e0f88ccf5ecc78c')
+sha256sums=('d8f879fefd66ecb7291ea2d73984b9c0a97fb499424e58290ba6b81787d0c725')
 
 package() {
   cd $_tarname


[arch-commits] Commit in modemmanager/trunk (PKGBUILD)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Saturday, January 16, 2021 @ 22:13:28
  Author: heftig
Revision: 406311

1.14.10-1

Modified:
  modemmanager/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 21:56:40 UTC (rev 406310)
+++ PKGBUILD2021-01-16 22:13:28 UTC (rev 406311)
@@ -3,7 +3,7 @@
 
 pkgbase=modemmanager
 pkgname=(modemmanager libmm-glib)
-pkgver=1.14.8
+pkgver=1.14.10
 pkgrel=1
 pkgdesc="Mobile broadband modem management service"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 depends=(systemd libgudev polkit ppp libqmi libmbim
  mobile-broadband-provider-info)
 makedepends=(gtk-doc gobject-introspection vala autoconf-archive git)
-_commit=19c2266a328ce39033f8d15f5c7ff3561149b22b  # tags/1.14.8
+_commit=304a1b123fe87cf5f3b9067fb83f37c9e09e12f5  # tags/1.14.10
 
source=("git+https://gitlab.freedesktop.org/mobile-broadband/ModemManager.git#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in lib32-libpulse/trunk (PKGBUILD)

2021-01-16 Thread Jan Steffens via arch-commits
Date: Saturday, January 16, 2021 @ 21:56:18
  Author: heftig
Revision: 821185

14.2-1

Modified:
  lib32-libpulse/trunk/PKGBUILD

--+
 PKGBUILD |   15 +--
 1 file changed, 13 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 21:07:47 UTC (rev 821184)
+++ PKGBUILD2021-01-16 21:56:18 UTC (rev 821185)
@@ -3,7 +3,7 @@
 _pkgbasename=libpulse
 pkgname=lib32-$_pkgbasename
 pkgdesc="A featureful, general-purpose sound server (32-bit client libraries)"
-pkgver=14.1
+pkgver=14.2
 pkgrel=1
 arch=(x86_64)
 url="https://www.freedesktop.org/wiki/Software/PulseAudio/;
@@ -15,7 +15,7 @@
 provides=("lib32-pulseaudio=$pkgver")
 conflicts=(lib32-pulseaudio)
 replaces=(lib32-pulseaudio)
-_commit=d6c8c9ce37f38ea95275453f75b112b393abc38b  # tags/v14.1^0
+_commit=6a487c5244563f49a025088de3510c80824fc99e  # tags/v14.2^0
 
source=("git+https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -29,6 +29,17 @@
 
   # Freeze version before patching
   ./git-version-gen doesnt-exist >.tarball-version
+
+  # Pick some ACP updates required by pipewire
+  git cherry-pick -n \
+a28f2e7293a055588f7bba568b5049ff91b3aad0 \
+69ba5a2b58ad6e98c8899aa297afd8276dbbe052 \
+05c373d939506f31f96e58d8390b92e737e12afc \
+a73ec2a3f4f03829575761dc17546cf3226861c7 \
+71aa4720a4194e9602271634d9042b8e56a8217f \
+7ec6ee4725a72b42ddcb38550efc968a06e6be2f \
+836ba89c4a3cd15efa33f9e70ed8e4764bcb3793 \
+19e34d8d5bb9380ed70607b3f661c26df6d4836c
 }
 
 build() {


[arch-commits] Commit in imagemagick/repos/extra-x86_64 (4 files)

2021-01-16 Thread Antonio Rojas via arch-commits
Date: Saturday, January 16, 2021 @ 21:08:23
  Author: arojas
Revision: 406309

archrelease: copy trunk to extra-x86_64

Added:
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 406308, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/arch-fonts.diff
(from rev 406308, imagemagick/trunk/arch-fonts.diff)
Deleted:
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/arch-fonts.diff

-+
 PKGBUILD|  240 +++---
 arch-fonts.diff |  214 
 2 files changed, 227 insertions(+), 227 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 21:08:10 UTC (rev 406308)
+++ PKGBUILD2021-01-16 21:08:23 UTC (rev 406309)
@@ -1,120 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Eric BĂ©langer 
-
-pkgbase=imagemagick
-pkgname=(imagemagick imagemagick-doc)
-pkgver=7.0.10.57
-pkgrel=1
-pkgdesc="An image viewing/manipulation program"
-url="https://www.imagemagick.org/;
-arch=(x86_64)
-license=(custom)
-makedepends=(ghostscript openexr libwmf librsvg libxml2 openjpeg2 libraw 
opencl-headers libwebp libzip
- chrpath ocl-icd glu ghostpcl ghostxps libheif jbigkit lcms2 
libxext liblqr libraqm libpng djvulibre)
-checkdepends=(gsfonts ttf-dejavu)
-_relname=ImageMagick-${pkgver%%.*}
-_tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
-source=(https://imagemagick.org/download/$_tarname.tar.xz{,.asc}
-arch-fonts.diff)
-sha256sums=('5018d15f12963bd6d86c8a667fba2795ec818a71612b6064f84a0c29a545af21'
-'SKIP'
-'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
-validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae
-
-shopt -s extglob
-
-prepare() {
-  mkdir -p docpkg/usr/share
-
-  cd $_tarname
-
-  # Fix up typemaps to match our packages, where possible
-  patch -p1 -i ../arch-fonts.diff
-}
-
-build() {
-  cd $_tarname
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---enable-shared \
---with-dejavu-font-dir=/usr/share/fonts/TTF \
---with-gs-font-dir=/usr/share/fonts/gsfonts \
-PSDelegate=/usr/bin/gs \
-XPSDelegate=/usr/bin/gxps \
-PCLDelegate=/usr/bin/gpcl6 \
---enable-hdri \
---enable-opencl \
---without-gslib \
---with-djvu \
---with-lqr \
---with-modules \
---with-openexr \
---with-openjp2 \
---with-perl \
---with-perl-options=INSTALLDIRS=vendor \
---with-rsvg \
---with-webp \
---with-wmf \
---with-xml \
---without-autotrace \
---without-dps \
---without-fftw \
---without-fpx \
---without-gcc-arch \
---without-gvc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() (
-  cd $_tarname
-  ulimit -n 4096
-  make check
-)
-
-package_imagemagick() {
-  depends=(libltdl lcms2 fontconfig libxext liblqr libraqm libpng libxml2)
-  optdepends=('ghostscript: PS/PDF support'
-  'libheif: HEIF support'
-  'libraw: DNG support'
-  'librsvg: SVG support'
-  'libwebp: WEBP support'
-  'libwmf: WMF support'
-  'libxml2: Magick Scripting Language'
-  'ocl-icd: OpenCL support'
-  'openexr: OpenEXR support'
-  'openjpeg2: JPEG2000 support'
-  'djvulibre: DJVU support'
-  'pango: Text rendering'
-  'imagemagick-doc: manual and API docs')
-  options=(!emptydirs libtool)
-  
backup=(etc/$_relname/{colors,delegates,log,mime,policy,quantization-table,thresholds,type,type-{dejavu,ghostscript}}.xml)
-  conflicts=(imagemagick6)
-  provides=(libmagick)
-  replaces=(imagemagick6 libmagick)
-
-  cd $_tarname
-  make DESTDIR="$pkgdir" install
-
-  find "$pkgdir/usr/lib/perl5" -name '*.so' -exec chrpath -d {} +
-  rm "$pkgdir"/etc/$_relname/type-{apple,urw-base35,windows}.xml
-  rm "$pkgdir"/usr/lib/*.la
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-
-# Split docs
-  mv "$pkgdir/usr/share/doc" "$srcdir/docpkg/usr/share/"
-
-# Harden security policy https://bugs.archlinux.org/task/62785
-  sed -e '/<\/policymap>/i \ \ ' -i "$pkgdir"/etc/ImageMagick-7/policy.xml
-}
-
-package_imagemagick-doc() {
-  pkgdesc+=" (manual and API docs)"
-
-  mv docpkg/* "$pkgdir"
-
-  cd $_tarname
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENSE NOTICE
-}

Copied: imagemagick/repos/extra-x86_64/PKGBUILD (from rev 406308, 
imagemagick/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 21:08:23 UTC (rev 406309)
@@ -0,0 +1,120 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Eric BĂ©langer 
+
+pkgbase=imagemagick
+pkgname=(imagemagick imagemagick-doc)
+pkgver=7.0.10.58
+pkgrel=1
+pkgdesc="An image viewing/manipulation program"

[arch-commits] Commit in imagemagick/trunk (PKGBUILD)

2021-01-16 Thread Antonio Rojas via arch-commits
Date: Saturday, January 16, 2021 @ 21:08:10
  Author: arojas
Revision: 406308

Update to 7.0.10.58

Modified:
  imagemagick/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 14:49:50 UTC (rev 406307)
+++ PKGBUILD2021-01-16 21:08:10 UTC (rev 406308)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=(imagemagick imagemagick-doc)
-pkgver=7.0.10.57
+pkgver=7.0.10.58
 pkgrel=1
 pkgdesc="An image viewing/manipulation program"
 url="https://www.imagemagick.org/;
@@ -16,7 +16,7 @@
 _tarname=ImageMagick-${pkgver%.*}-${pkgver##*.}
 source=(https://imagemagick.org/download/$_tarname.tar.xz{,.asc}
 arch-fonts.diff)
-sha256sums=('5018d15f12963bd6d86c8a667fba2795ec818a71612b6064f84a0c29a545af21'
+sha256sums=('7bcde2f66a3a06299523c782a2e1ceb0ed27e6e3134a9f3d0525beb09aa485c1'
 'SKIP'
 'a85b744c61b1b563743ecb7c7adad999d7ed9a8af816650e3ab9321b2b102e73')
 validpgpkeys=(D8272EF51DA223E4D05B466989AB63D48277377A)  # Lexie Parsimoniae


[arch-commits] Commit in perl-datetime-timezone/repos/community-any (4 files)

2021-01-16 Thread Sergej Pupykin via arch-commits
Date: Saturday, January 16, 2021 @ 21:07:47
  Author: spupykin
Revision: 821184

archrelease: copy trunk to community-any

Added:
  perl-datetime-timezone/repos/community-any/ChangeLog
(from rev 821183, perl-datetime-timezone/trunk/ChangeLog)
  perl-datetime-timezone/repos/community-any/PKGBUILD
(from rev 821183, perl-datetime-timezone/trunk/PKGBUILD)
Deleted:
  perl-datetime-timezone/repos/community-any/ChangeLog
  perl-datetime-timezone/repos/community-any/PKGBUILD

---+
 ChangeLog |   10 +-
 PKGBUILD  |   56 
 2 files changed, 33 insertions(+), 33 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2021-01-16 21:07:38 UTC (rev 821183)
+++ ChangeLog   2021-01-16 21:07:47 UTC (rev 821184)
@@ -1,5 +0,0 @@
-
-2008-01-05  Douglas Soares de Andrade  
-
-   * Updated for x86_64
-

Copied: perl-datetime-timezone/repos/community-any/ChangeLog (from rev 821183, 
perl-datetime-timezone/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2021-01-16 21:07:47 UTC (rev 821184)
@@ -0,0 +1,5 @@
+
+2008-01-05  Douglas Soares de Andrade  
+
+   * Updated for x86_64
+

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 21:07:38 UTC (rev 821183)
+++ PKGBUILD2021-01-16 21:07:47 UTC (rev 821184)
@@ -1,28 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: François Charette 
-
-pkgname=perl-datetime-timezone
-pkgver=2.35
-pkgrel=2
-pkgdesc="Time zone object base class and factory "
-arch=(any)
-url="https://search.cpan.org/dist/DateTime-TimeZone;
-license=('GPL' 'PerlArtistic')
-depends=('perl-class-singleton>=1.03' 'perl-params-validate>=0.72' 
'perl-class-load'
-'perl-list-allutils')
-options=('!emptydirs')
-source=(https://www.cpan.org/CPAN/authors/id/D/DR/DROLSKY/DateTime-TimeZone-$pkgver.tar.gz)
-sha256sums=('79fadc0f24b6b23ffb560524544d9d200902578bf9e0943b9aa8fc5077ca8b02')
-
-build() {
-  cd  "$srcdir"/DateTime-TimeZone-$pkgver
-  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-package() {
-  cd  "$srcdir"/DateTime-TimeZone-$pkgver
-  make install DESTDIR="$pkgdir"
-  find "$pkgdir" -name '.packlist' -delete
-  find "$pkgdir" -name '*.pod' -delete
-}

Copied: perl-datetime-timezone/repos/community-any/PKGBUILD (from rev 821183, 
perl-datetime-timezone/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 21:07:47 UTC (rev 821184)
@@ -0,0 +1,28 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: François Charette 
+
+pkgname=perl-datetime-timezone
+pkgver=2.44
+pkgrel=1
+pkgdesc="Time zone object base class and factory "
+arch=(any)
+url="https://search.cpan.org/dist/DateTime-TimeZone;
+license=('GPL' 'PerlArtistic')
+depends=('perl-class-singleton>=1.03' 'perl-params-validate>=0.72' 
'perl-class-load'
+'perl-list-allutils')
+options=('!emptydirs')
+source=(https://www.cpan.org/CPAN/authors/id/D/DR/DROLSKY/DateTime-TimeZone-$pkgver.tar.gz)
+sha256sums=('573dd4059a2dfd3833d6a7d2bf084778ac6595a009b11dea6360d7d022ce4526')
+
+build() {
+  cd  "$srcdir"/DateTime-TimeZone-$pkgver
+  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+package() {
+  cd  "$srcdir"/DateTime-TimeZone-$pkgver
+  make install DESTDIR="$pkgdir"
+  find "$pkgdir" -name '.packlist' -delete
+  find "$pkgdir" -name '*.pod' -delete
+}


[arch-commits] Commit in perl-datetime-timezone/trunk (PKGBUILD)

2021-01-16 Thread Sergej Pupykin via arch-commits
Date: Saturday, January 16, 2021 @ 21:07:38
  Author: spupykin
Revision: 821183

upgpkg: perl-datetime-timezone 2.44-1

Modified:
  perl-datetime-timezone/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 21:07:30 UTC (rev 821182)
+++ PKGBUILD2021-01-16 21:07:38 UTC (rev 821183)
@@ -2,8 +2,8 @@
 # Contributor: François Charette 
 
 pkgname=perl-datetime-timezone
-pkgver=2.35
-pkgrel=2
+pkgver=2.44
+pkgrel=1
 pkgdesc="Time zone object base class and factory "
 arch=(any)
 url="https://search.cpan.org/dist/DateTime-TimeZone;
@@ -12,7 +12,7 @@
 'perl-list-allutils')
 options=('!emptydirs')
 
source=(https://www.cpan.org/CPAN/authors/id/D/DR/DROLSKY/DateTime-TimeZone-$pkgver.tar.gz)
-sha256sums=('79fadc0f24b6b23ffb560524544d9d200902578bf9e0943b9aa8fc5077ca8b02')
+sha256sums=('573dd4059a2dfd3833d6a7d2bf084778ac6595a009b11dea6360d7d022ce4526')
 
 build() {
   cd  "$srcdir"/DateTime-TimeZone-$pkgver


[arch-commits] Commit in openvswitch/repos/community-x86_64 (10 files)

2021-01-16 Thread Sergej Pupykin via arch-commits
Date: Saturday, January 16, 2021 @ 21:07:30
  Author: spupykin
Revision: 821182

archrelease: copy trunk to community-x86_64

Added:
  openvswitch/repos/community-x86_64/PKGBUILD
(from rev 821181, openvswitch/trunk/PKGBUILD)
  openvswitch/repos/community-x86_64/openvswitch.install
(from rev 821181, openvswitch/trunk/openvswitch.install)
  openvswitch/repos/community-x86_64/openvswitch.tmpfiles
(from rev 821181, openvswitch/trunk/openvswitch.tmpfiles)
  openvswitch/repos/community-x86_64/ovs-vswitchd.service
(from rev 821181, openvswitch/trunk/ovs-vswitchd.service)
  openvswitch/repos/community-x86_64/ovsdb-server.service
(from rev 821181, openvswitch/trunk/ovsdb-server.service)
Deleted:
  openvswitch/repos/community-x86_64/PKGBUILD
  openvswitch/repos/community-x86_64/openvswitch.install
  openvswitch/repos/community-x86_64/openvswitch.tmpfiles
  openvswitch/repos/community-x86_64/ovs-vswitchd.service
  openvswitch/repos/community-x86_64/ovsdb-server.service

--+
 PKGBUILD |  106 -
 openvswitch.install  |   26 ++--
 openvswitch.tmpfiles |2 
 ovs-vswitchd.service |   30 ++---
 ovsdb-server.service |   14 +++---
 5 files changed, 89 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 21:07:17 UTC (rev 821181)
+++ PKGBUILD2021-01-16 21:07:30 UTC (rev 821182)
@@ -1,53 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Pedro Martinez-Julia (pedr...@um.es)
-# Contributor: Matt Monaco 
-
-pkgname=openvswitch
-pkgver=2.14.0
-pkgrel=1
-pkgdesc="Production Quality, Multilayer Open Virtual Switch"
-url="http://openvswitch.org;
-license=('APACHE')
-arch=(x86_64)
-install=openvswitch.install
-source=("http://openvswitch.org/releases/openvswitch-$pkgver.tar.gz;
-   openvswitch.tmpfiles
-   ovsdb-server.service
-   ovs-vswitchd.service)
-depends=('openssl' 'libcap-ng')
-makedepends=('python-six')
-optdepends=('python-six')
-sha256sums=('4171e52a8c0ffe160c1daa6687219d902a2a6969b296d223d8dac980ab99a260'
-'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9'
-'fa2412b81c77921418131a4f6fd38956f50ffcc7b908ec91f94d3607a05d060b'
-'679c8f03b78bba03237c6135f1bd7711430248e8477202c8b0de4ff4828b9f61')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i \
--e 
's|$(sysconfdir)/bash_completion.d|/usr/share/bash-completion/completions|g' \
-Makefile.am
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./boot.sh
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---with-rundir=/run/openvswitch \
---sbindir=/usr/bin \
-PYTHON=/usr/bin/python2
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-  install -Dm0644 "$srcdir"/openvswitch.tmpfiles 
"$pkgdir/usr/lib/tmpfiles.d/openvswitch.conf"
-  install -Dm0644 "$srcdir"/ovsdb-server.service 
"$pkgdir/usr/lib/systemd/system/ovsdb-server.service"
-  install -Dm0644 "$srcdir"/ovs-vswitchd.service 
"$pkgdir/usr/lib/systemd/system/ovs-vswitchd.service"
-  install -dm0755 "$pkgdir/etc/openvswitch"
-  rm -rf "$pkgdir"/run
-}

Copied: openvswitch/repos/community-x86_64/PKGBUILD (from rev 821181, 
openvswitch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 21:07:30 UTC (rev 821182)
@@ -0,0 +1,53 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Pedro Martinez-Julia (pedr...@um.es)
+# Contributor: Matt Monaco 
+
+pkgname=openvswitch
+pkgver=2.14.1
+pkgrel=1
+pkgdesc="Production Quality, Multilayer Open Virtual Switch"
+url="http://openvswitch.org;
+license=('APACHE')
+arch=(x86_64)
+install=openvswitch.install
+source=("http://openvswitch.org/releases/openvswitch-$pkgver.tar.gz;
+   openvswitch.tmpfiles
+   ovsdb-server.service
+   ovs-vswitchd.service)
+depends=('openssl' 'libcap-ng')
+makedepends=('python-six')
+optdepends=('python-six')
+sha256sums=('180b6d42c0ab4b26f21f58b8bf3b3376203d7475aa7a8ef151365514c35088fe'
+'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9'
+'fa2412b81c77921418131a4f6fd38956f50ffcc7b908ec91f94d3607a05d060b'
+'679c8f03b78bba03237c6135f1bd7711430248e8477202c8b0de4ff4828b9f61')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  sed -i \
+-e 
's|$(sysconfdir)/bash_completion.d|/usr/share/bash-completion/completions|g' \
+Makefile.am
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./boot.sh
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--with-rundir=/run/openvswitch \
+--sbindir=/usr/bin \
+PYTHON=/usr/bin/python2
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+  install -Dm0644 

[arch-commits] Commit in openvswitch/trunk (PKGBUILD)

2021-01-16 Thread Sergej Pupykin via arch-commits
Date: Saturday, January 16, 2021 @ 21:07:17
  Author: spupykin
Revision: 821181

upgpkg: openvswitch 2.14.1-1

Modified:
  openvswitch/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 21:06:16 UTC (rev 821180)
+++ PKGBUILD2021-01-16 21:07:17 UTC (rev 821181)
@@ -3,7 +3,7 @@
 # Contributor: Matt Monaco 
 
 pkgname=openvswitch
-pkgver=2.14.0
+pkgver=2.14.1
 pkgrel=1
 pkgdesc="Production Quality, Multilayer Open Virtual Switch"
 url="http://openvswitch.org;
@@ -17,7 +17,7 @@
 depends=('openssl' 'libcap-ng')
 makedepends=('python-six')
 optdepends=('python-six')
-sha256sums=('4171e52a8c0ffe160c1daa6687219d902a2a6969b296d223d8dac980ab99a260'
+sha256sums=('180b6d42c0ab4b26f21f58b8bf3b3376203d7475aa7a8ef151365514c35088fe'
 'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9'
 'fa2412b81c77921418131a4f6fd38956f50ffcc7b908ec91f94d3607a05d060b'
 '679c8f03b78bba03237c6135f1bd7711430248e8477202c8b0de4ff4828b9f61')


[arch-commits] Commit in nextcloud/trunk (PKGBUILD)

2021-01-16 Thread Sergej Pupykin via arch-commits
Date: Saturday, January 16, 2021 @ 21:06:05
  Author: spupykin
Revision: 821179

upgpkg: nextcloud 20.0.5-1

Modified:
  nextcloud/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 21:05:53 UTC (rev 821178)
+++ PKGBUILD2021-01-16 21:06:05 UTC (rev 821179)
@@ -1,7 +1,7 @@
 # Maintainer: Sergej Pupykin 
 
 pkgname=nextcloud
-pkgver=20.0.4
+pkgver=20.0.5
 pkgrel=1
 pkgdesc="A cloud server to store your files centrally on a hardware controlled 
by you"
 arch=('any')
@@ -25,7 +25,7 @@
 
source=("https://download.nextcloud.com/server/releases/nextcloud-${pkgver}.tar.bz2"{,.asc}
 'apache.example.conf'
 'nextcloud.hook')
-sha256sums=('269f1622e326f5d11e387d3861aad4e2b0e79334ae97eed5a7b3352ba7661420'
+sha256sums=('5c70dd33024012a1651fd099133d052d129a4dadc6935f44bb9c3e2b360befe3'
 'SKIP'
 '30a8ad62b0dc9523ca7f0387b1f0483d196c1e011ec7e3a5b98e7d33c721d4bf'
 'd084cd6423c03f98087884b3c7b81f9510d1bea6c518860b64787a7f976cf0d3')


[arch-commits] Commit in nextcloud/repos/community-any (6 files)

2021-01-16 Thread Sergej Pupykin via arch-commits
Date: Saturday, January 16, 2021 @ 21:06:16
  Author: spupykin
Revision: 821180

archrelease: copy trunk to community-any

Added:
  nextcloud/repos/community-any/PKGBUILD
(from rev 821179, nextcloud/trunk/PKGBUILD)
  nextcloud/repos/community-any/apache.example.conf
(from rev 821179, nextcloud/trunk/apache.example.conf)
  nextcloud/repos/community-any/nextcloud.hook
(from rev 821179, nextcloud/trunk/nextcloud.hook)
Deleted:
  nextcloud/repos/community-any/PKGBUILD
  nextcloud/repos/community-any/apache.example.conf
  nextcloud/repos/community-any/nextcloud.hook

-+
 PKGBUILD|  114 +-
 apache.example.conf |   34 +++---
 nextcloud.hook  |   26 +--
 3 files changed, 87 insertions(+), 87 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 21:06:05 UTC (rev 821179)
+++ PKGBUILD2021-01-16 21:06:16 UTC (rev 821180)
@@ -1,57 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=nextcloud
-pkgver=20.0.4
-pkgrel=1
-pkgdesc="A cloud server to store your files centrally on a hardware controlled 
by you"
-arch=('any')
-url="https://nextcloud.com;
-license=('AGPL')
-depends=()
-optdepends=('php-apache: to use the Apache web server'
-'php-sqlite: to use the SQLite database backend'
-'php-pgsql: to use the PostgreSQL database backend'
-'php-ldap: LDAP authentication'
-'php-intl'
-'php-apcu'
-'mariadb: to use the MySQL database backend'
-'smbclient: to mount SAMBA shares'
-'ffmpeg: file preview'
-'libreoffice: file preview')
-options=('!strip')
-backup=('etc/webapps/nextcloud/apache.example.conf'
-'etc/webapps/nextcloud/config/config.php')
-validpgpkeys=('28806A878AE423A28372792ED75899B9A724937A')
-source=("https://download.nextcloud.com/server/releases/nextcloud-${pkgver}.tar.bz2"{,.asc}
-'apache.example.conf'
-'nextcloud.hook')
-sha256sums=('269f1622e326f5d11e387d3861aad4e2b0e79334ae97eed5a7b3352ba7661420'
-'SKIP'
-'30a8ad62b0dc9523ca7f0387b1f0483d196c1e011ec7e3a5b98e7d33c721d4bf'
-'d084cd6423c03f98087884b3c7b81f9510d1bea6c518860b64787a7f976cf0d3')
-
-package() {
-depends=('php>=7.4.0' 'php<7.5.0' 'php-gd')
-
-# install project
-install -d "$pkgdir"/usr/share/webapps/
-cp -R "$srcdir"/${pkgname} "$pkgdir"/usr/share/webapps/.
-
-# install apache config file
-install -d  "$pkgdir"/etc/webapps/${pkgname}
-install -m 644 "$srcdir"/apache.example.conf  
"$pkgdir"/etc/webapps/${pkgname}
-
-# move config to /etc
-install -d  "$pkgdir"/etc/webapps/${pkgname}
-mv "$pkgdir"/usr/share/webapps/${pkgname}/config 
"$pkgdir"/etc/webapps/${pkgname}/config
-chown -R http:http "$pkgdir"/etc/webapps/${pkgname}
-ln -s /etc/webapps/${pkgname}/config 
"$pkgdir"/usr/share/webapps/${pkgname}/config
-chown -R root:http "$pkgdir"/usr/share/webapps/${pkgname}
-
-find "$pkgdir"/usr/share/webapps/${pkgname} -type f -exec chmod 0644 {} \;
-find "$pkgdir"/usr/share/webapps/${pkgname} -type d -exec chmod 0755 {} \;
-
-chmod a+x "$pkgdir"/usr/share/webapps/${pkgname}/occ
-
-#install -Dm0644 "$srcdir"/nextcloud.hook 
"$pkgdir"/usr/share/libalpm/hooks/nextcloud.hook
-}

Copied: nextcloud/repos/community-any/PKGBUILD (from rev 821179, 
nextcloud/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 21:06:16 UTC (rev 821180)
@@ -0,0 +1,57 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=nextcloud
+pkgver=20.0.5
+pkgrel=1
+pkgdesc="A cloud server to store your files centrally on a hardware controlled 
by you"
+arch=('any')
+url="https://nextcloud.com;
+license=('AGPL')
+depends=()
+optdepends=('php-apache: to use the Apache web server'
+'php-sqlite: to use the SQLite database backend'
+'php-pgsql: to use the PostgreSQL database backend'
+'php-ldap: LDAP authentication'
+'php-intl'
+'php-apcu'
+'mariadb: to use the MySQL database backend'
+'smbclient: to mount SAMBA shares'
+'ffmpeg: file preview'
+'libreoffice: file preview')
+options=('!strip')
+backup=('etc/webapps/nextcloud/apache.example.conf'
+'etc/webapps/nextcloud/config/config.php')
+validpgpkeys=('28806A878AE423A28372792ED75899B9A724937A')
+source=("https://download.nextcloud.com/server/releases/nextcloud-${pkgver}.tar.bz2"{,.asc}
+'apache.example.conf'
+'nextcloud.hook')
+sha256sums=('5c70dd33024012a1651fd099133d052d129a4dadc6935f44bb9c3e2b360befe3'
+'SKIP'
+'30a8ad62b0dc9523ca7f0387b1f0483d196c1e011ec7e3a5b98e7d33c721d4bf'
+'d084cd6423c03f98087884b3c7b81f9510d1bea6c518860b64787a7f976cf0d3')
+
+package() {
+

[arch-commits] Commit in igmpproxy/repos/community-x86_64 (4 files)

2021-01-16 Thread Sergej Pupykin via arch-commits
Date: Saturday, January 16, 2021 @ 21:05:53
  Author: spupykin
Revision: 821178

archrelease: copy trunk to community-x86_64

Added:
  igmpproxy/repos/community-x86_64/PKGBUILD
(from rev 821177, igmpproxy/trunk/PKGBUILD)
  igmpproxy/repos/community-x86_64/igmpproxy.service
(from rev 821177, igmpproxy/trunk/igmpproxy.service)
Deleted:
  igmpproxy/repos/community-x86_64/PKGBUILD
  igmpproxy/repos/community-x86_64/igmpproxy.service

---+
 PKGBUILD  |   58 ++--
 igmpproxy.service |   20 -
 2 files changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 21:05:40 UTC (rev 821177)
+++ PKGBUILD2021-01-16 21:05:53 UTC (rev 821178)
@@ -1,29 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jan "heftig" Steffens 
-# Contributor: sda 
-
-pkgname=igmpproxy
-pkgver=0.2.1
-pkgrel=2
-pkgdesc="a simple multicast router for Linux only using the IGMP protocol"
-arch=(x86_64)
-url="https://github.com/pali/igmpproxy;
-license=('GPL')
-depends=()
-backup=("etc/igmpproxy.conf")
-source=("https://github.com/pali/igmpproxy/releases/download/$pkgver/igmpproxy-$pkgver.tar.gz;
-   "igmpproxy.service")
-sha256sums=('d351e623037390f575c1203d9cbb7ba33a8bdef85a3c5e1d2901c5a2a38449a1'
-'9f2eed64578b8bfb3091594cb32b3cd29798ba148d790286429cc6c86b8d423f')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 "$srcdir"/$pkgname.service 
"$pkgdir"/usr/lib/systemd/system/$pkgname.service
-}

Copied: igmpproxy/repos/community-x86_64/PKGBUILD (from rev 821177, 
igmpproxy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 21:05:53 UTC (rev 821178)
@@ -0,0 +1,29 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jan "heftig" Steffens 
+# Contributor: sda 
+
+pkgname=igmpproxy
+pkgver=0.3
+pkgrel=1
+pkgdesc="a simple multicast router for Linux only using the IGMP protocol"
+arch=(x86_64)
+url="https://github.com/pali/igmpproxy;
+license=('GPL')
+depends=()
+backup=("etc/igmpproxy.conf")
+source=("https://github.com/pali/igmpproxy/releases/download/$pkgver/igmpproxy-$pkgver.tar.gz;
+   "igmpproxy.service")
+sha256sums=('d1fc244cb2fbbf99f720bda3e841fe59ece9b6919073790b4b892739b1b844eb'
+'9f2eed64578b8bfb3091594cb32b3cd29798ba148d790286429cc6c86b8d423f')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 "$srcdir"/$pkgname.service 
"$pkgdir"/usr/lib/systemd/system/$pkgname.service
+}

Deleted: igmpproxy.service
===
--- igmpproxy.service   2021-01-16 21:05:40 UTC (rev 821177)
+++ igmpproxy.service   2021-01-16 21:05:53 UTC (rev 821178)
@@ -1,10 +0,0 @@
-[Unit]
-Description=IGMP proxy
-After=network.target
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/igmpproxy /etc/igmpproxy.conf
-
-[Install]
-WantedBy=multi-user.target

Copied: igmpproxy/repos/community-x86_64/igmpproxy.service (from rev 821177, 
igmpproxy/trunk/igmpproxy.service)
===
--- igmpproxy.service   (rev 0)
+++ igmpproxy.service   2021-01-16 21:05:53 UTC (rev 821178)
@@ -0,0 +1,10 @@
+[Unit]
+Description=IGMP proxy
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/igmpproxy /etc/igmpproxy.conf
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in igmpproxy/trunk (PKGBUILD)

2021-01-16 Thread Sergej Pupykin via arch-commits
Date: Saturday, January 16, 2021 @ 21:05:40
  Author: spupykin
Revision: 821177

upgpkg: igmpproxy 0.3-1

Modified:
  igmpproxy/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 20:47:14 UTC (rev 821176)
+++ PKGBUILD2021-01-16 21:05:40 UTC (rev 821177)
@@ -3,8 +3,8 @@
 # Contributor: sda 
 
 pkgname=igmpproxy
-pkgver=0.2.1
-pkgrel=2
+pkgver=0.3
+pkgrel=1
 pkgdesc="a simple multicast router for Linux only using the IGMP protocol"
 arch=(x86_64)
 url="https://github.com/pali/igmpproxy;
@@ -13,7 +13,7 @@
 backup=("etc/igmpproxy.conf")
 
source=("https://github.com/pali/igmpproxy/releases/download/$pkgver/igmpproxy-$pkgver.tar.gz;
"igmpproxy.service")
-sha256sums=('d351e623037390f575c1203d9cbb7ba33a8bdef85a3c5e1d2901c5a2a38449a1'
+sha256sums=('d1fc244cb2fbbf99f720bda3e841fe59ece9b6919073790b4b892739b1b844eb'
 '9f2eed64578b8bfb3091594cb32b3cd29798ba148d790286429cc6c86b8d423f')
 
 build() {


[arch-commits] Commit in xfce4-whiskermenu-plugin/repos/community-x86_64 (2 files)

2021-01-16 Thread Christian Hesse via arch-commits
Date: Saturday, January 16, 2021 @ 20:47:14
  Author: eworm
Revision: 821176

archrelease: copy trunk to community-x86_64

Added:
  xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD
(from rev 821175, xfce4-whiskermenu-plugin/trunk/PKGBUILD)
Deleted:
  xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   62 ++---
 1 file changed, 31 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 20:47:06 UTC (rev 821175)
+++ PKGBUILD2021-01-16 20:47:14 UTC (rev 821176)
@@ -1,31 +0,0 @@
-# Maintainer: Brad Fanella 
-# Contributor: Alexander F Rødseth 
-# Contributor: Graeme Gott 
-
-pkgname=xfce4-whiskermenu-plugin
-pkgver=2.5.1
-pkgrel=1
-pkgdesc='Menu for Xfce4'
-arch=('x86_64')
-url='https://gottcode.org/xfce4-whiskermenu-plugin/'
-groups=('xfce4-goodies')
-license=('GPL2')
-depends=('garcon' 'xfce4-panel' 'gtk3>=3.22')
-makedepends=('cmake' 'ninja')
-source=("https://archive.be.xfce.org/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2;)
-sha256sums=('b2074f8a9caa766e2d97f0b960ef2f4d1e20dd804497229bc1f0157791896925')
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -GNinja
-   ninja
-}
-
-package() {
-   DESTDIR="$pkgdir" ninja -C build install
-}

Copied: xfce4-whiskermenu-plugin/repos/community-x86_64/PKGBUILD (from rev 
821175, xfce4-whiskermenu-plugin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 20:47:14 UTC (rev 821176)
@@ -0,0 +1,31 @@
+# Maintainer: Brad Fanella 
+# Contributor: Alexander F Rødseth 
+# Contributor: Graeme Gott 
+
+pkgname=xfce4-whiskermenu-plugin
+pkgver=2.5.2
+pkgrel=1
+pkgdesc='Menu for Xfce4'
+arch=('x86_64')
+url='https://gottcode.org/xfce4-whiskermenu-plugin/'
+groups=('xfce4-goodies')
+license=('GPL2')
+depends=('garcon' 'xfce4-panel' 'gtk3>=3.22')
+makedepends=('cmake' 'ninja')
+source=("https://archive.be.xfce.org/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2;)
+sha256sums=('a6f7070afd1c9020257d8ed7483872643a6cddd76d5d73de107c7fbd981fc515')
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -GNinja
+   ninja
+}
+
+package() {
+   DESTDIR="$pkgdir" ninja -C build install
+}


[arch-commits] Commit in xfce4-whiskermenu-plugin/trunk (PKGBUILD)

2021-01-16 Thread Christian Hesse via arch-commits
Date: Saturday, January 16, 2021 @ 20:47:06
  Author: eworm
Revision: 821175

upgpkg: xfce4-whiskermenu-plugin 2.5.2-1: new upstream release

Modified:
  xfce4-whiskermenu-plugin/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 19:09:11 UTC (rev 821174)
+++ PKGBUILD2021-01-16 20:47:06 UTC (rev 821175)
@@ -3,7 +3,7 @@
 # Contributor: Graeme Gott 
 
 pkgname=xfce4-whiskermenu-plugin
-pkgver=2.5.1
+pkgver=2.5.2
 pkgrel=1
 pkgdesc='Menu for Xfce4'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('garcon' 'xfce4-panel' 'gtk3>=3.22')
 makedepends=('cmake' 'ninja')
 
source=("https://archive.be.xfce.org/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2;)
-sha256sums=('b2074f8a9caa766e2d97f0b960ef2f4d1e20dd804497229bc1f0157791896925')
+sha256sums=('a6f7070afd1c9020257d8ed7483872643a6cddd76d5d73de107c7fbd981fc515')
 
 build() {
mkdir -p build


[arch-commits] Commit in ceph/trunk (PKGBUILD)

2021-01-16 Thread Frederik Schwan via arch-commits
Date: Saturday, January 16, 2021 @ 19:09:01
  Author: freswa
Revision: 821173

fix FS#69335

Modified:
  ceph/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 18:15:07 UTC (rev 821172)
+++ PKGBUILD2021-01-16 19:09:01 UTC (rev 821173)
@@ -5,7 +5,7 @@
 pkgname=('ceph' 'ceph-libs' 'ceph-mgr')
 _zstdver=1.4.5
 pkgver=15.2.8
-pkgrel=1
+pkgrel=2
 pkgdesc='Distributed, fault-tolerant storage platform delivering object, 
block, and file system'
 arch=('x86_64')
 url='https://ceph.com/'
@@ -209,7 +209,7 @@
 
 package_ceph-libs() {
   depends=('boost-libs' 'curl' 'glibc' 'keyutils' 'libutil-linux' 'bzip2' 
'lz4' 'nss'
-   'oath-toolkit' 'python' 'snappy' 'systemd-libs')
+   'oath-toolkit' 'python' 'snappy' 'systemd-libs' 'fmt')
 
   cd "${srcdir}/${pkgbase}-${pkgver}"
 


[arch-commits] Commit in python-autobahn/repos/community-x86_64 (PKGBUILD PKGBUILD)

2021-01-16 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, January 16, 2021 @ 18:15:07
  Author: yan12125
Revision: 821172

archrelease: copy trunk to community-x86_64

Added:
  python-autobahn/repos/community-x86_64/PKGBUILD
(from rev 821171, python-autobahn/trunk/PKGBUILD)
Deleted:
  python-autobahn/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  126 ++---
 1 file changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 18:14:30 UTC (rev 821171)
+++ PKGBUILD2021-01-16 18:15:07 UTC (rev 821172)
@@ -1,63 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Chih-Hsuan Yen 
-# Maintainer: Anatol Pomozov
-
-pkgname=python-autobahn
-pkgver=20.12.3
-pkgrel=1
-pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
-arch=(x86_64)
-url='https://crossbar.io/autobahn/'
-license=(MIT)
-depends=(python-cffi python-twisted python-txaio python-wsaccel
- python-setuptools python-cryptography)
-makedepends=(python-argon2_cffi python-cbor python-flatbuffers
- python-msgpack python-passlib python-pynacl python-pytrie
- python-ubjson)
-checkdepends=(python-pytest python-pytest-asyncio)
-optdepends=(
-  'python-cbor: CBOR serializer support'
-  'python-flatbuffers: FlatBuffers serializer support'
-  'python-msgpack: MsgPack serializer support'
-  'python-u-msgpack: pure-python alternative to python-msgpack for MsgPack 
serializer support'
-  'python-ubjson: UBJSON serializer support'
-  'python-ujson: accelerated JSON serializer support'
-  'python-argon2_cffi: WAMP-SCRAM authentication support'
-  'python-passlib: WAMP-SCRAM authentication support'
-  'python-pynacl: WAMP-cryptosign and WAMP-cryptobox support'
-  'python-pytrie: WAMP-cryptobox support'
-  'python-pyopenssl: SSL/TLS support'
-  'python-snappy: snappy compression suppport for WebSocket messages'
-)
-
-source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('410a93e0e29882c8b5d5ab05d220b07609b886ef5f23c0b8d39153254ffd6895')
-
-prepare() {
-  cd "$srcdir/autobahn-$pkgver"
-  # For reproducibility
-  # If Arch decides to increase CPU requirements [1], -march=x86-64 can be
-  # replaced with -march=nehalem so that the SSE 4.1 implementation is built
-  # [1] 
https://lists.archlinux.org/pipermail/arch-dev-public/2020-March/029914.html
-  sed -i 's#-march=native#-march=x86-64#' autobahn/nvx/_utf8validator.py
-}
-
-build() {
-  cd "$srcdir/autobahn-$pkgver"
-  AUTOBAHN_USE_NVX=1 python setup.py build
-}
-
-check() {
-  cd "$srcdir/autobahn-$pkgver"
-  pyver=$(python -c "import sys; print('{}.{}'.format(*sys.version_info[:2]))")
-  # "autobahn on asyncio is tested using pytest, while for twisted we are 
using twisted trial"
-  # 
https://github.com/crossbario/autobahn-python/issues/1235#issuecomment-522440810
-  USE_TWISTED=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver trial3 autobahn
-  USE_ASYNCIO=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver pytest autobahn
-}
-
-package() {
-  cd "$srcdir/autobahn-$pkgver"
-  AUTOBAHN_USE_NVX=1 python setup.py install --root="$pkgdir" --optimize=1 
--skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-autobahn/repos/community-x86_64/PKGBUILD (from rev 821171, 
python-autobahn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 18:15:07 UTC (rev 821172)
@@ -0,0 +1,63 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Chih-Hsuan Yen 
+# Maintainer: Anatol Pomozov
+
+pkgname=python-autobahn
+pkgver=20.12.3
+pkgrel=2
+pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
+arch=(x86_64)
+url='https://crossbar.io/autobahn/'
+license=(MIT)
+depends=(python-cffi python-twisted python-txaio python-wsaccel
+ python-cryptography)
+makedepends=(python-argon2_cffi python-cbor python-flatbuffers
+ python-msgpack python-passlib python-pynacl python-pytrie
+ python-setuptools python-ubjson)
+checkdepends=(python-pytest python-pytest-asyncio)
+optdepends=(
+  'python-cbor: CBOR serializer support'
+  'python-flatbuffers: FlatBuffers serializer support'
+  'python-msgpack: MsgPack serializer support'
+  'python-u-msgpack: pure-python alternative to python-msgpack for MsgPack 
serializer support'
+  'python-ubjson: UBJSON serializer support'
+  'python-ujson: accelerated JSON serializer support'
+  'python-argon2_cffi: WAMP-SCRAM authentication support'
+  'python-passlib: WAMP-SCRAM authentication support'
+  'python-pynacl: WAMP-cryptosign and WAMP-cryptobox support'
+  'python-pytrie: WAMP-cryptobox support'
+  'python-pyopenssl: SSL/TLS support'
+  'python-snappy: snappy compression suppport for WebSocket messages'
+)
+
+source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)

[arch-commits] Commit in python-autobahn/trunk (PKGBUILD)

2021-01-16 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, January 16, 2021 @ 18:14:30
  Author: yan12125
Revision: 821171

upgpkg: python-autobahn 20.12.3-2; move setuptools to makedepends

Strictly speaking, autobahn *does* use setuptools - autobahn.xbr imports 
pkg_resources.
However, the xbr module cannot be imported only by installing this package as 
many of its
dependencies are not packaged, so dropping setuptools from depends anyway.

Ref: 
https://archlinux.org/todo/cleanup-of-python-setuptools-dependency-for-console-scripts/

Modified:
  python-autobahn/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 17:32:46 UTC (rev 821170)
+++ PKGBUILD2021-01-16 18:14:30 UTC (rev 821171)
@@ -4,16 +4,16 @@
 
 pkgname=python-autobahn
 pkgver=20.12.3
-pkgrel=1
+pkgrel=2
 pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
 arch=(x86_64)
 url='https://crossbar.io/autobahn/'
 license=(MIT)
 depends=(python-cffi python-twisted python-txaio python-wsaccel
- python-setuptools python-cryptography)
+ python-cryptography)
 makedepends=(python-argon2_cffi python-cbor python-flatbuffers
  python-msgpack python-passlib python-pynacl python-pytrie
- python-ubjson)
+ python-setuptools python-ubjson)
 checkdepends=(python-pytest python-pytest-asyncio)
 optdepends=(
   'python-cbor: CBOR serializer support'


[arch-commits] Commit in artyfx/repos/community-x86_64 (PKGBUILD PKGBUILD)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 17:32:46
  Author: dvzrv
Revision: 821170

archrelease: copy trunk to community-x86_64

Added:
  artyfx/repos/community-x86_64/PKGBUILD
(from rev 821169, artyfx/trunk/PKGBUILD)
Deleted:
  artyfx/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   91 ++---
 1 file changed, 40 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 17:32:39 UTC (rev 821169)
+++ PKGBUILD2021-01-16 17:32:46 UTC (rev 821170)
@@ -1,51 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=artyfx
-pkgver=1.3
-pkgrel=3
-pkgdesc="A plugin bundle of artistic real-time audio effects"
-arch=('x86_64')
-url="http://openavproductions.com/artyfx/;
-license=('GPL2')
-groups=('lv2-plugins' 'pro-audio')
-depends=('cairo' 'gcc-libs' 'glibc' 'libx11')
-makedepends=('cmake' 'lv2' 'libsndfile')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openAVproductions/openAV-${pkgname}/archive/release-${pkgver}.tar.gz;
-
"${pkgname}-1.3-lv2-1.18.0.patch::https://github.com/openAVproductions/openAV-ArtyFX/pull/41/commits/492587461b50d140455aa3c98d915eb8673bebf0.patch;
-
"${pkgname}-1.3-build_flags.patch::https://github.com/openAVproductions/openAV-ArtyFX/commit/5de759f3c3eae061b3b1223c22f94cd80deda233.patch;)
-sha512sums=('51931d0497c91150db738ffe7199e1cd3a86d43d34b371b9719b8d0b504bebf3b9cf14e20d299081b0482f51ef7a6e825e8bf0c832b0caf3bc4a8f8221990a97'
-
'e06c99b49dc77d7099794a257cb3161f57f4655adfd461f0ca487fae4653d69ddbecedb5b02ee81343dd8341517dfa25e56012a2744611d60f11b3c63672238a'
-
'27aa9e8ba0947f2d5acfb5d4d6f1a9e2e01da5c2cea1c7804164a14169dcf9293af994bb5316b910da2e0b2e9cb2a74039c4e4607909717951729171b8f34344')
-
-prepare() {
-  mv -v "openAV-ArtyFX-release-${pkgver}" "${pkgname}-${pkgver}"
-  cd "$pkgname-$pkgver"
-  # fixing build with lv2 >= 1.18.0
-  # https://github.com/openAVproductions/openAV-ArtyFX/issues/40
-  patch -Np1 -i "../${pkgname}-1.3-lv2-1.18.0.patch"
-  # fixing build flags
-  # https://github.com/openAVproductions/openAV-ArtyFX/issues/41
-  patch -Np1 -i "../${pkgname}-1.3-build_flags.patch"
-}
-
-build() {
-  export CFLAGS+=" ${CPPFLAGS}"
-  export CXXFLAGS+=" ${CPPFLAGS}"
-  cd "$pkgname-$pkgver"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_GUI=ON \
--DBUILD_SSE=ON \
--Wno-dev \
--Bbuild \
--S .
-  make VERBOSE=1 -C build
-}
-
-package() {
-  depends+=('libsndfile.so')
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install -C build
-  # docs
-  install -vDm 644 {CHANGELOG,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: artyfx/repos/community-x86_64/PKGBUILD (from rev 821169, 
artyfx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 17:32:46 UTC (rev 821170)
@@ -0,0 +1,40 @@
+# Maintainer: David Runge 
+
+pkgname=artyfx
+pkgver=1.3.1
+pkgrel=1
+pkgdesc="A plugin bundle of artistic real-time audio effects"
+arch=('x86_64')
+url="http://openavproductions.com/artyfx/;
+license=('GPL2')
+groups=('lv2-plugins' 'pro-audio')
+depends=('cairo' 'gcc-libs' 'glibc' 'libx11' 'lv2-host')
+makedepends=('cmake' 'lv2' 'libsndfile')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openAVproductions/openAV-${pkgname}/archive/release-${pkgver}.tar.gz;)
+sha512sums=('7fe84783f460e5ac62d715990a7140259b8e2f1e0a531cf6cde63dadfb51e934abd17c81a8c280699279c0af2aa74ee05e073d32539d99fa37d83a0b1cfc0c49')
+b2sums=('cd858f64743529084130b5b4d8851d8d69d8aada3a63e0634a41057390e858e5c5d7591fc45cea2c46644a6a3bd086d3ce5cac73bc61e94cd28f7046cc06')
+
+prepare() {
+  mv -v "openAV-ArtyFX-release-${pkgver}" "${pkgname}-${pkgver}"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-DBUILD_GUI=ON \
+-DBUILD_SSE=ON \
+-Wno-dev \
+-Bbuild \
+-S .
+  make VERBOSE=1 -C build
+}
+
+package() {
+  depends+=('libsndfile.so')
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install -C build
+  # docs
+  install -vDm 644 {CHANGELOG,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in artyfx/trunk (PKGBUILD)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 17:32:39
  Author: dvzrv
Revision: 821169

upgpkg: artyfx 1.3.1-1: Upgrade to 1.3.1.

Remove all upstreamed patches.
Apply latest cmake guidelines.

Modified:
  artyfx/trunk/PKGBUILD

--+
 PKGBUILD |   25 +++--
 1 file changed, 7 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 17:21:10 UTC (rev 821168)
+++ PKGBUILD2021-01-16 17:32:39 UTC (rev 821169)
@@ -1,38 +1,27 @@
 # Maintainer: David Runge 
 
 pkgname=artyfx
-pkgver=1.3
-pkgrel=3
+pkgver=1.3.1
+pkgrel=1
 pkgdesc="A plugin bundle of artistic real-time audio effects"
 arch=('x86_64')
 url="http://openavproductions.com/artyfx/;
 license=('GPL2')
 groups=('lv2-plugins' 'pro-audio')
-depends=('cairo' 'gcc-libs' 'glibc' 'libx11')
+depends=('cairo' 'gcc-libs' 'glibc' 'libx11' 'lv2-host')
 makedepends=('cmake' 'lv2' 'libsndfile')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openAVproductions/openAV-${pkgname}/archive/release-${pkgver}.tar.gz;
-
"${pkgname}-1.3-lv2-1.18.0.patch::https://github.com/openAVproductions/openAV-ArtyFX/pull/41/commits/492587461b50d140455aa3c98d915eb8673bebf0.patch;
-
"${pkgname}-1.3-build_flags.patch::https://github.com/openAVproductions/openAV-ArtyFX/commit/5de759f3c3eae061b3b1223c22f94cd80deda233.patch;)
-sha512sums=('51931d0497c91150db738ffe7199e1cd3a86d43d34b371b9719b8d0b504bebf3b9cf14e20d299081b0482f51ef7a6e825e8bf0c832b0caf3bc4a8f8221990a97'
-
'e06c99b49dc77d7099794a257cb3161f57f4655adfd461f0ca487fae4653d69ddbecedb5b02ee81343dd8341517dfa25e56012a2744611d60f11b3c63672238a'
-
'27aa9e8ba0947f2d5acfb5d4d6f1a9e2e01da5c2cea1c7804164a14169dcf9293af994bb5316b910da2e0b2e9cb2a74039c4e4607909717951729171b8f34344')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openAVproductions/openAV-${pkgname}/archive/release-${pkgver}.tar.gz;)
+sha512sums=('7fe84783f460e5ac62d715990a7140259b8e2f1e0a531cf6cde63dadfb51e934abd17c81a8c280699279c0af2aa74ee05e073d32539d99fa37d83a0b1cfc0c49')
+b2sums=('cd858f64743529084130b5b4d8851d8d69d8aada3a63e0634a41057390e858e5c5d7591fc45cea2c46644a6a3bd086d3ce5cac73bc61e94cd28f7046cc06')
 
 prepare() {
   mv -v "openAV-ArtyFX-release-${pkgver}" "${pkgname}-${pkgver}"
-  cd "$pkgname-$pkgver"
-  # fixing build with lv2 >= 1.18.0
-  # https://github.com/openAVproductions/openAV-ArtyFX/issues/40
-  patch -Np1 -i "../${pkgname}-1.3-lv2-1.18.0.patch"
-  # fixing build flags
-  # https://github.com/openAVproductions/openAV-ArtyFX/issues/41
-  patch -Np1 -i "../${pkgname}-1.3-build_flags.patch"
 }
 
 build() {
-  export CFLAGS+=" ${CPPFLAGS}"
-  export CXXFLAGS+=" ${CPPFLAGS}"
   cd "$pkgname-$pkgver"
   cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
 -DBUILD_GUI=ON \
 -DBUILD_SSE=ON \
 -Wno-dev \


[arch-commits] Commit in avldrums.lv2/repos/community-x86_64 (4 files)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 17:21:10
  Author: dvzrv
Revision: 821168

archrelease: copy trunk to community-x86_64

Added:
  avldrums.lv2/repos/community-x86_64/PKGBUILD
(from rev 821167, avldrums.lv2/trunk/PKGBUILD)
  
avldrums.lv2/repos/community-x86_64/avldrums.lv2-0.4.2-use-system-fluidsynth.patch
(from rev 821167, 
avldrums.lv2/trunk/avldrums.lv2-0.4.2-use-system-fluidsynth.patch)
Deleted:
  avldrums.lv2/repos/community-x86_64/PKGBUILD
  
avldrums.lv2/repos/community-x86_64/avldrums.lv2-0.4.1-use-system-fluidsynth.patch

+
 PKGBUILD   |   77 ---
 avldrums.lv2-0.4.1-use-system-fluidsynth.patch |   54 
 avldrums.lv2-0.4.2-use-system-fluidsynth.patch |   54 
 3 files changed, 95 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 17:21:02 UTC (rev 821167)
+++ PKGBUILD2021-01-16 17:21:10 UTC (rev 821168)
@@ -1,36 +0,0 @@
-# Maintainer: David Runge 
-pkgname=avldrums.lv2
-pkgver=0.4.1
-pkgrel=1
-pkgdesc="A simple Drum Sample Player Plugin, dedicated to the AVLinux Drumkits"
-arch=('x86_64')
-url="https://x42-plugins.com/x42/x42-avldrums;
-license=('GPL2')
-groups=('pro-audio' 'lv2-plugins')
-depends=('cairo' 'glib2' 'glibc' 'libfluidsynth.so' 'libglvnd' 'libx11' 
'pango')
-makedepends=('git' 'glu' 'lv2')
-source=("$pkgname-$pkgver::git+https://github.com/x42/${pkgname}.git#tag=v${pkgver};
-"git+https://github.com/x42/robtk;
-"${pkgname}-${pkgver}-use-system-fluidsynth.patch")
-sha512sums=('SKIP'
-'SKIP'
-
'849123389ea7373251ae02fd5fdac0483a0cd000360f324af11e29269df720a0ec5501911cb92ed41a3211dabd0c868c6b626923b8a648a7fc5ff308fe3c18e5')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  git submodule init
-  git config submodule.robtk.url "${srcdir}/robtk"
-  git submodule update
-  # build against system fluidsynth
-  patch -Np1 -i "../${pkgname}-${pkgver}-use-system-fluidsynth.patch"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" PREFIX='/usr' install
-}

Copied: avldrums.lv2/repos/community-x86_64/PKGBUILD (from rev 821167, 
avldrums.lv2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 17:21:10 UTC (rev 821168)
@@ -0,0 +1,41 @@
+# Maintainer: David Runge 
+
+pkgname=avldrums.lv2
+pkgver=0.4.2
+pkgrel=1
+pkgdesc="A simple Drum Sample Player Plugin, dedicated to the AVLinux Drumkits"
+arch=('x86_64')
+url="https://x42-plugins.com/x42/x42-avldrums;
+license=('GPL2')
+groups=('pro-audio' 'lv2-plugins')
+depends=('cairo' 'glibc' 'libglvnd' 'libx11' 'lv2-host')
+makedepends=('fluidsynth' 'git' 'glib2' 'glu' 'lv2' 'pango')
+source=("git+https://github.com/x42/${pkgname}.git#tag=v${pkgver};
+"git+https://github.com/x42/robtk;
+"${pkgname}-0.4.2-use-system-fluidsynth.patch")
+sha512sums=('SKIP'
+'SKIP'
+
'a47ac0c731e843000bd0b05e58ed2f1159df596ac2303583ebecd3010cb381506cd704fcd7c187ba45961cffb0c5b73ea01b19fc4c75a2bf376e6d7596d17d33')
+b2sums=('SKIP'
+'SKIP'
+
'aeff7bd322e9e1fa36c36096cdbfc8f3db9a0a726eda27f9f38375c6b887acddaca4ab907ccf59c633d8813c4d992ffdc23524e5beb4209f851cacef9750c577')
+
+prepare() {
+  cd "${pkgname}"
+  git submodule init
+  git config submodule.robtk.url "${srcdir}/robtk"
+  git submodule update
+  # build against system fluidsynth
+  patch -Np1 -i "../${pkgname}-0.4.2-use-system-fluidsynth.patch"
+}
+
+build() {
+  cd "${pkgname}"
+  make
+}
+
+package() {
+  depends+=('libfluidsynth.so' 'libgobject-2.0.so' 'libpango-1.0.so' 
'libpangocairo-1.0.so')
+  cd "${pkgname}"
+  make DESTDIR="$pkgdir/" PREFIX='/usr' install
+}

Deleted: avldrums.lv2-0.4.1-use-system-fluidsynth.patch
===
--- avldrums.lv2-0.4.1-use-system-fluidsynth.patch  2021-01-16 17:21:02 UTC 
(rev 821167)
+++ avldrums.lv2-0.4.1-use-system-fluidsynth.patch  2021-01-16 17:21:10 UTC 
(rev 821168)
@@ -1,54 +0,0 @@
-diff --git c/Makefile w/Makefile
-index 1adc235..97847cb 100644
 c/Makefile
-+++ w/Makefile
-@@ -155,7 +155,7 @@ override CFLAGS += -fPIC -fvisibility=hidden
- else
- override CFLAGS += -DPTW32_STATIC_LIB
- endif
--override LOADLIBES += `pkg-config $(PKG_UI_FLAGS) --libs glib-2.0`
-+override LOADLIBES += `pkg-config $(PKG_UI_FLAGS) --libs glib-2.0 fluidsynth`
- 
- 
- GLUICFLAGS+=`pkg-config --cflags cairo pango` $(CFLAGS)
-@@ -231,38 +231,8 @@ endif
- $(BUILDDIR)%.sf2:
-   cp -v sf2/$(*F).sf2 $@
- 
--FLUID_SRC = \
--fluidsynth/src/fluid_adsr_env.c \
--fluidsynth/src/fluid_chan.c \
--fluidsynth/src/fluid_chorus.c \
--fluidsynth/src/fluid_conv.c \
--

[arch-commits] Commit in avldrums.lv2/trunk (3 files)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 17:21:02
  Author: dvzrv
Revision: 821167

upgpkg: avldrums.lv2 0.4.2-1: Upgrade to 0.4.2.

Add lv2-host to depends (as this plugin is only useful in a host).
Add all available sodeps in package() and the respective packages in 
makedepends.
Rebase patch to devendor fluidsynth on 0.4.2.

Added:
  avldrums.lv2/trunk/avldrums.lv2-0.4.2-use-system-fluidsynth.patch
Modified:
  avldrums.lv2/trunk/PKGBUILD
Deleted:
  avldrums.lv2/trunk/avldrums.lv2-0.4.1-use-system-fluidsynth.patch

+
 PKGBUILD   |   25 ++
 avldrums.lv2-0.4.1-use-system-fluidsynth.patch |   54 ---
 avldrums.lv2-0.4.2-use-system-fluidsynth.patch |   54 +++
 3 files changed, 69 insertions(+), 64 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 17:01:30 UTC (rev 821166)
+++ PKGBUILD2021-01-16 17:21:02 UTC (rev 821167)
@@ -1,6 +1,7 @@
 # Maintainer: David Runge 
+
 pkgname=avldrums.lv2
-pkgver=0.4.1
+pkgver=0.4.2
 pkgrel=1
 pkgdesc="A simple Drum Sample Player Plugin, dedicated to the AVLinux Drumkits"
 arch=('x86_64')
@@ -7,30 +8,34 @@
 url="https://x42-plugins.com/x42/x42-avldrums;
 license=('GPL2')
 groups=('pro-audio' 'lv2-plugins')
-depends=('cairo' 'glib2' 'glibc' 'libfluidsynth.so' 'libglvnd' 'libx11' 
'pango')
-makedepends=('git' 'glu' 'lv2')
-source=("$pkgname-$pkgver::git+https://github.com/x42/${pkgname}.git#tag=v${pkgver};
+depends=('cairo' 'glibc' 'libglvnd' 'libx11' 'lv2-host')
+makedepends=('fluidsynth' 'git' 'glib2' 'glu' 'lv2' 'pango')
+source=("git+https://github.com/x42/${pkgname}.git#tag=v${pkgver};
 "git+https://github.com/x42/robtk;
-"${pkgname}-${pkgver}-use-system-fluidsynth.patch")
+"${pkgname}-0.4.2-use-system-fluidsynth.patch")
 sha512sums=('SKIP'
 'SKIP'
-
'849123389ea7373251ae02fd5fdac0483a0cd000360f324af11e29269df720a0ec5501911cb92ed41a3211dabd0c868c6b626923b8a648a7fc5ff308fe3c18e5')
+
'a47ac0c731e843000bd0b05e58ed2f1159df596ac2303583ebecd3010cb381506cd704fcd7c187ba45961cffb0c5b73ea01b19fc4c75a2bf376e6d7596d17d33')
+b2sums=('SKIP'
+'SKIP'
+
'aeff7bd322e9e1fa36c36096cdbfc8f3db9a0a726eda27f9f38375c6b887acddaca4ab907ccf59c633d8813c4d992ffdc23524e5beb4209f851cacef9750c577')
 
 prepare() {
-  cd "${pkgname}-${pkgver}"
+  cd "${pkgname}"
   git submodule init
   git config submodule.robtk.url "${srcdir}/robtk"
   git submodule update
   # build against system fluidsynth
-  patch -Np1 -i "../${pkgname}-${pkgver}-use-system-fluidsynth.patch"
+  patch -Np1 -i "../${pkgname}-0.4.2-use-system-fluidsynth.patch"
 }
 
 build() {
-  cd "$pkgname-$pkgver"
+  cd "${pkgname}"
   make
 }
 
 package() {
-  cd "$pkgname-$pkgver"
+  depends+=('libfluidsynth.so' 'libgobject-2.0.so' 'libpango-1.0.so' 
'libpangocairo-1.0.so')
+  cd "${pkgname}"
   make DESTDIR="$pkgdir/" PREFIX='/usr' install
 }

Deleted: avldrums.lv2-0.4.1-use-system-fluidsynth.patch
===
--- avldrums.lv2-0.4.1-use-system-fluidsynth.patch  2021-01-16 17:01:30 UTC 
(rev 821166)
+++ avldrums.lv2-0.4.1-use-system-fluidsynth.patch  2021-01-16 17:21:02 UTC 
(rev 821167)
@@ -1,54 +0,0 @@
-diff --git c/Makefile w/Makefile
-index 1adc235..97847cb 100644
 c/Makefile
-+++ w/Makefile
-@@ -155,7 +155,7 @@ override CFLAGS += -fPIC -fvisibility=hidden
- else
- override CFLAGS += -DPTW32_STATIC_LIB
- endif
--override LOADLIBES += `pkg-config $(PKG_UI_FLAGS) --libs glib-2.0`
-+override LOADLIBES += `pkg-config $(PKG_UI_FLAGS) --libs glib-2.0 fluidsynth`
- 
- 
- GLUICFLAGS+=`pkg-config --cflags cairo pango` $(CFLAGS)
-@@ -231,38 +231,8 @@ endif
- $(BUILDDIR)%.sf2:
-   cp -v sf2/$(*F).sf2 $@
- 
--FLUID_SRC = \
--fluidsynth/src/fluid_adsr_env.c \
--fluidsynth/src/fluid_chan.c \
--fluidsynth/src/fluid_chorus.c \
--fluidsynth/src/fluid_conv.c \
--fluidsynth/src/fluid_defsfont.c \
--fluidsynth/src/fluid_event.c \
--fluidsynth/src/fluid_gen.c \
--fluidsynth/src/fluid_hash.c \
--fluidsynth/src/fluid_iir_filter.c \
--fluidsynth/src/fluid_lfo.c \
--fluidsynth/src/fluid_list.c \
--fluidsynth/src/fluid_midi.c \
--fluidsynth/src/fluid_mod.c \
--fluidsynth/src/fluid_rev.c \
--fluidsynth/src/fluid_ringbuffer.c \
--fluidsynth/src/fluid_rvoice.c \
--fluidsynth/src/fluid_rvoice_dsp.c \
--fluidsynth/src/fluid_rvoice_event.c \
--fluidsynth/src/fluid_rvoice_mixer.c \
--fluidsynth/src/fluid_samplecache.c \
--fluidsynth/src/fluid_settings.c \
--fluidsynth/src/fluid_sffile.c \
--fluidsynth/src/fluid_sfont.c \
--

[arch-commits] Commit in python-django-mailman3/repos/community-any (2 files)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 17:01:30
  Author: dvzrv
Revision: 821166

archrelease: copy trunk to community-any

Added:
  python-django-mailman3/repos/community-any/PKGBUILD
(from rev 821165, python-django-mailman3/trunk/PKGBUILD)
Deleted:
  python-django-mailman3/repos/community-any/PKGBUILD

--+
 PKGBUILD |   86 +++--
 1 file changed, 44 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 17:01:21 UTC (rev 821165)
+++ PKGBUILD2021-01-16 17:01:30 UTC (rev 821166)
@@ -1,42 +0,0 @@
-# Maintainer: David Runge 
-
-_name=django-mailman3
-pkgname=python-django-mailman3
-pkgver=1.3.4
-pkgrel=3
-pkgdesc="Libraries and templates to Django-based interfaces interacting with 
Mailman"
-arch=('any')
-url="https://gitlab.com/mailman/django-mailman3;
-license=('GPL3')
-depends=('python-django' 'python-django-allauth' 'python-django-gravatar'
-'python-mailmanclient' 'python-pytz')
-makedepends=('python-setuptools')
-checkdepends=('python-coverage' 'python-mock' 'python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"{,.asc})
-sha512sums=('0b28636caec452efeda2b1b44f1d5ad44740ab0c3ea7b03d7d2e6bf420b1a788d5858e5c827824ef6baf2a463232ec53f404d3de0c22cf6ee17065236f7fcd91'
-'SKIP')
-validpgpkeys=('541EA0448453394FF77A0ECC9D9B2BA061D0A67C') # Abhilash Raj 

-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  django-admin.py test --settings=django_mailman3.tests.settings_test 
django_mailman3
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: python-django-mailman3/repos/community-any/PKGBUILD (from rev 821165, 
python-django-mailman3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 17:01:30 UTC (rev 821166)
@@ -0,0 +1,44 @@
+# Maintainer: David Runge 
+
+_name=django-mailman3
+pkgname=python-django-mailman3
+pkgver=1.3.5
+pkgrel=1
+pkgdesc="Libraries and templates to Django-based interfaces interacting with 
Mailman"
+arch=('any')
+url="https://gitlab.com/mailman/django-mailman3;
+license=('GPL3')
+depends=('python-django' 'python-django-allauth' 'python-django-gravatar'
+'python-mailmanclient' 'python-pytz')
+makedepends=('python-setuptools')
+checkdepends=('python-coverage' 'python-mock' 'python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"{,.asc})
+sha512sums=('8bc16ca07a710e4dceb5678e056b39d14607928c9b25a321341c1b81ac519c6824f024607dd4ae7fe1ba866939100949d9ee8371f74e5bc3386bd89c677a2c14'
+'SKIP')
+b2sums=('ddf78a2160777db65b74822a681d701124284161f8a27acf489dde2f91ddf8335626a3bcb5a644b23522969fb1519ec490ed0952eb402ddb8a0b943c3f4b8bd7'
+'SKIP')
+validpgpkeys=('541EA0448453394FF77A0ECC9D9B2BA061D0A67C') # Abhilash Raj 

+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  django-admin.py test --settings=django_mailman3.tests.settings_test 
django_mailman3
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in python-django-mailman3/trunk (PKGBUILD)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 17:01:21
  Author: dvzrv
Revision: 821165

upgpkg: python-django-mailman3 1.3.5-1: Upgrade to 1.3.5.

Modified:
  python-django-mailman3/trunk/PKGBUILD

--+
 PKGBUILD |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 16:59:15 UTC (rev 821164)
+++ PKGBUILD2021-01-16 17:01:21 UTC (rev 821165)
@@ -2,8 +2,8 @@
 
 _name=django-mailman3
 pkgname=python-django-mailman3
-pkgver=1.3.4
-pkgrel=3
+pkgver=1.3.5
+pkgrel=1
 pkgdesc="Libraries and templates to Django-based interfaces interacting with 
Mailman"
 arch=('any')
 url="https://gitlab.com/mailman/django-mailman3;
@@ -13,8 +13,10 @@
 makedepends=('python-setuptools')
 checkdepends=('python-coverage' 'python-mock' 'python-pytest')
 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"{,.asc})
-sha512sums=('0b28636caec452efeda2b1b44f1d5ad44740ab0c3ea7b03d7d2e6bf420b1a788d5858e5c827824ef6baf2a463232ec53f404d3de0c22cf6ee17065236f7fcd91'
+sha512sums=('8bc16ca07a710e4dceb5678e056b39d14607928c9b25a321341c1b81ac519c6824f024607dd4ae7fe1ba866939100949d9ee8371f74e5bc3386bd89c677a2c14'
 'SKIP')
+b2sums=('ddf78a2160777db65b74822a681d701124284161f8a27acf489dde2f91ddf8335626a3bcb5a644b23522969fb1519ec490ed0952eb402ddb8a0b943c3f4b8bd7'
+'SKIP')
 validpgpkeys=('541EA0448453394FF77A0ECC9D9B2BA061D0A67C') # Abhilash Raj 

 
 prepare() {


[arch-commits] Commit in patchmatrix/repos/community-x86_64 (PKGBUILD PKGBUILD)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 16:59:15
  Author: dvzrv
Revision: 821164

archrelease: copy trunk to community-x86_64

Added:
  patchmatrix/repos/community-x86_64/PKGBUILD
(from rev 821163, patchmatrix/trunk/PKGBUILD)
Deleted:
  patchmatrix/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   92 ++---
 1 file changed, 46 insertions(+), 46 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 16:58:48 UTC (rev 821163)
+++ PKGBUILD2021-01-16 16:59:15 UTC (rev 821164)
@@ -1,46 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=patchmatrix
-pkgver=0.20.0
-pkgrel=1
-pkgdesc="A JACK patchbay in flow matrix style"
-arch=('x86_64')
-url="https://git.open-music-kontrollers.ch/lad/patchmatrix/about/;
-license=('Artistic2.0')
-groups=('lv2-plugins' 'pro-audio')
-depends=('glibc' 'hicolor-icon-theme' 'libglvnd' 'libx11')
-makedepends=('glu' 'jack' 'lv2' 'meson')
-source=("https://git.open-music-kontrollers.ch/lad/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha512sums=('5be32eaad63bd338d7bbce127a95e44ed4450818904e1de757d4dc2c03cb60032e9fb5999e335b2e17530e1cd36ca9398b2b965fddc42f8c5f76faa323521bf3'
-'SKIP')
-b2sums=('73779744c27d87365cadd0bb76d18d1a5c4e307ebeb1dd21099d020b2969e82adeeeb5e92ed34692f74f49848f540510b2afca431ec4148845c0fa98f505840d'
-'SKIP')
-validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

-
-build() {
-  cd "$pkgname-$pkgver"
-  meson --prefix=/usr \
---libexecdir lib \
---sbindir bin \
---buildtype plain \
---auto-features enabled \
---wrap-mode nodownload \
--D b_lto=true \
--D b_pie=true \
-build
-  ninja -C build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  meson test -C build
-}
-
-package() {
-  depends+=('libjack.so')
-  cd "$pkgname-$pkgver"
-  DESTDIR="${pkgdir}" meson install -C build
-  # docs
-  install -vDm 644 {ChangeLog,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: patchmatrix/repos/community-x86_64/PKGBUILD (from rev 821163, 
patchmatrix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 16:59:15 UTC (rev 821164)
@@ -0,0 +1,46 @@
+# Maintainer: David Runge 
+
+pkgname=patchmatrix
+pkgver=0.22.0
+pkgrel=1
+pkgdesc="A JACK patchbay in flow matrix style"
+arch=('x86_64')
+url="https://git.open-music-kontrollers.ch/lad/patchmatrix/about/;
+license=('Artistic2.0')
+groups=('lv2-plugins' 'pro-audio')
+depends=('glibc' 'hicolor-icon-theme' 'libglvnd' 'libx11')
+makedepends=('glew' 'glu' 'jack' 'lv2' 'meson')
+source=("https://git.open-music-kontrollers.ch/lad/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha512sums=('d2a35ef752cdccee6dbd9a145016768c48cb522f7b513ef55305ab1c20760aa37248a7f788334b50ff4b40b597eb253c37ea92da888bb31690bf946e19343088'
+'SKIP')
+b2sums=('b15e8d14554936e5ed14a80590d0261a3f36cdf417d772e2157e0fcac07ecf5539ec62034655e192af6ce14aae56bd8d347bf8d1a09ddf17f202fbef7042922a'
+'SKIP')
+validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

+
+build() {
+  cd "$pkgname-$pkgver"
+  meson --prefix=/usr \
+--libexecdir lib \
+--sbindir bin \
+--buildtype plain \
+--auto-features enabled \
+--wrap-mode nodownload \
+-D b_lto=true \
+-D b_pie=true \
+build
+  ninja -C build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  meson test -C build
+}
+
+package() {
+  depends+=('libGLEW.so' 'libjack.so')
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  # docs
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in patchmatrix/trunk (PKGBUILD)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 16:58:48
  Author: dvzrv
Revision: 821163

upgpkg: patchmatrix 0.22.0-1: Upgrade to 0.22.0.

Add glew/libGLEW.so as new dependency.

Modified:
  patchmatrix/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 16:55:23 UTC (rev 821162)
+++ PKGBUILD2021-01-16 16:58:48 UTC (rev 821163)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=patchmatrix
-pkgver=0.20.0
+pkgver=0.22.0
 pkgrel=1
 pkgdesc="A JACK patchbay in flow matrix style"
 arch=('x86_64')
@@ -9,11 +9,11 @@
 license=('Artistic2.0')
 groups=('lv2-plugins' 'pro-audio')
 depends=('glibc' 'hicolor-icon-theme' 'libglvnd' 'libx11')
-makedepends=('glu' 'jack' 'lv2' 'meson')
+makedepends=('glew' 'glu' 'jack' 'lv2' 'meson')
 
source=("https://git.open-music-kontrollers.ch/lad/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha512sums=('5be32eaad63bd338d7bbce127a95e44ed4450818904e1de757d4dc2c03cb60032e9fb5999e335b2e17530e1cd36ca9398b2b965fddc42f8c5f76faa323521bf3'
+sha512sums=('d2a35ef752cdccee6dbd9a145016768c48cb522f7b513ef55305ab1c20760aa37248a7f788334b50ff4b40b597eb253c37ea92da888bb31690bf946e19343088'
 'SKIP')
-b2sums=('73779744c27d87365cadd0bb76d18d1a5c4e307ebeb1dd21099d020b2969e82adeeeb5e92ed34692f74f49848f540510b2afca431ec4148845c0fa98f505840d'
+b2sums=('b15e8d14554936e5ed14a80590d0261a3f36cdf417d772e2157e0fcac07ecf5539ec62034655e192af6ce14aae56bd8d347bf8d1a09ddf17f202fbef7042922a'
 'SKIP')
 validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

 
@@ -37,7 +37,7 @@
 }
 
 package() {
-  depends+=('libjack.so')
+  depends+=('libGLEW.so' 'libjack.so')
   cd "$pkgname-$pkgver"
   DESTDIR="${pkgdir}" meson install -C build
   # docs


[arch-commits] Commit in jacktrip/repos/community-x86_64 (PKGBUILD PKGBUILD)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 16:55:23
  Author: dvzrv
Revision: 821162

archrelease: copy trunk to community-x86_64

Added:
  jacktrip/repos/community-x86_64/PKGBUILD
(from rev 821161, jacktrip/trunk/PKGBUILD)
Deleted:
  jacktrip/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   64 ++---
 1 file changed, 32 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 16:55:11 UTC (rev 821161)
+++ PKGBUILD2021-01-16 16:55:23 UTC (rev 821162)
@@ -1,32 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=jacktrip
-pkgver=1.2.2
-pkgrel=1
-pkgdesc="Multi-machine audio network performance over the Internet"
-arch=('x86_64')
-url="https://github.com/jacktrip/jacktrip;
-license=('MIT')
-groups=('pro-audio')
-depends=('gcc-libs' 'glibc' 'qt5-base')
-makedepends=('jack')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('5183e99d392afea74c70fb2e6519150327a7db1f2bc7f81a97b8b1916e059eb2fcb36dd433cf90695060af6156d25ace347873570dd9702d2380e38be6e2bf7e')
-b2sums=('33d08cb796d8d823729821454ff4b3fcc60c48385731cd4177f194fde675240d66b141ee2252c45ede76cdadcd9cd7a8a90b62de56fd3f3b8ec3b408a41efcfa')
-
-build() {
-  cd "${pkgname}-${pkgver}/src"
-  qmake-qt5 -spec linux-g++ "${pkgname}.pro"
-  make release
-}
-
-package() {
-  depends+=('libjack.so')
-  cd "${pkgname}-${pkgver}"
-  install -vDm 755 "src/${pkgname}" -t "${pkgdir}/usr/bin/"
-  # license
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  # docs
-  install -vDm 644 {CHANGESLOG.txt,README.md,TODO.txt} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: jacktrip/repos/community-x86_64/PKGBUILD (from rev 821161, 
jacktrip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 16:55:23 UTC (rev 821162)
@@ -0,0 +1,32 @@
+# Maintainer: David Runge 
+
+pkgname=jacktrip
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="Multi-machine audio network performance over the Internet"
+arch=('x86_64')
+url="https://github.com/jacktrip/jacktrip;
+license=('MIT')
+groups=('pro-audio')
+depends=('gcc-libs' 'glibc' 'qt5-base')
+makedepends=('jack')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('050203521a53a8f944a5365c4f6106ae6db37dd2a8dc0fd74edd98cc6d5306efde2c29bce2bb22a6abcca14e44545abe32c2d4066774ca8bc71e5848c1409d9a')
+b2sums=('2ca3f7bdf3fc808dd7919e77e2c25bfc287e576dc05d20e5a070057cd6498f33351fe83c32200d5ef9eec202954bde4b53c02265f4cc9405a27540c336e88fcd')
+
+build() {
+  cd "${pkgname}-${pkgver}/src"
+  qmake-qt5 -spec linux-g++ "${pkgname}.pro"
+  make release
+}
+
+package() {
+  depends+=('libjack.so')
+  cd "${pkgname}-${pkgver}"
+  install -vDm 755 "src/${pkgname}" -t "${pkgdir}/usr/bin/"
+  # license
+  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  # docs
+  install -vDm 644 {CHANGESLOG.txt,README.md,TODO.txt} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in jacktrip/trunk (PKGBUILD)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 16:55:11
  Author: dvzrv
Revision: 821161

upgpkg: jacktrip 1.3.0-1: Upgrade to 1.3.0.

Modified:
  jacktrip/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 16:52:13 UTC (rev 821160)
+++ PKGBUILD2021-01-16 16:55:11 UTC (rev 821161)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=jacktrip
-pkgver=1.2.2
+pkgver=1.3.0
 pkgrel=1
 pkgdesc="Multi-machine audio network performance over the Internet"
 arch=('x86_64')
@@ -11,8 +11,8 @@
 depends=('gcc-libs' 'glibc' 'qt5-base')
 makedepends=('jack')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha512sums=('5183e99d392afea74c70fb2e6519150327a7db1f2bc7f81a97b8b1916e059eb2fcb36dd433cf90695060af6156d25ace347873570dd9702d2380e38be6e2bf7e')
-b2sums=('33d08cb796d8d823729821454ff4b3fcc60c48385731cd4177f194fde675240d66b141ee2252c45ede76cdadcd9cd7a8a90b62de56fd3f3b8ec3b408a41efcfa')
+sha512sums=('050203521a53a8f944a5365c4f6106ae6db37dd2a8dc0fd74edd98cc6d5306efde2c29bce2bb22a6abcca14e44545abe32c2d4066774ca8bc71e5848c1409d9a')
+b2sums=('2ca3f7bdf3fc808dd7919e77e2c25bfc287e576dc05d20e5a070057cd6498f33351fe83c32200d5ef9eec202954bde4b53c02265f4cc9405a27540c336e88fcd')
 
 build() {
   cd "${pkgname}-${pkgver}/src"


[arch-commits] Commit in sherlock.lv2/repos/community-x86_64 (PKGBUILD PKGBUILD)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 16:52:13
  Author: dvzrv
Revision: 821160

archrelease: copy trunk to community-x86_64

Added:
  sherlock.lv2/repos/community-x86_64/PKGBUILD
(from rev 821159, sherlock.lv2/trunk/PKGBUILD)
Deleted:
  sherlock.lv2/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  102 ++---
 1 file changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 16:52:01 UTC (rev 821159)
+++ PKGBUILD2021-01-16 16:52:13 UTC (rev 821160)
@@ -1,51 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=sherlock.lv2
-pkgver=0.24.0
-pkgrel=1
-pkgdesc="An investigative plugin bundle"
-arch=('x86_64')
-url="https://open-music-kontrollers.ch/lv2/sherlock/;
-license=('Artistic2.0')
-groups=('lv2-plugins' 'pro-audio')
-depends=('glibc' 'libglvnd' 'libx11')
-makedepends=('flex' 'glu' 'lv2' 'meson' 'serd' 'sord' 'sratom')
-checkdepends=('lv2lint')
-source=("https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz"{,.asc})
-sha512sums=('40603ca53978e0fad7b593a3ed8ff429ad15930e6da6119da21058d5eb10c6183a4ea8ed93c9561bd187a2b8966f822d9434f4d0098e807c258fa2ab15234fd1'
-'SKIP')
-b2sums=('a95dd9a4677179a2aa345c64b490111c931b32a63df36279581beb0da365b43c0492e8708773d8c5d7459afce64b7750ebf289236b7b9ead47ea8de1594f7ac2'
-'SKIP')
-validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

-
-build() {
-  cd "$pkgname-$pkgver"
-  meson --prefix=/usr \
---libdir=lib \
---libexecdir lib \
---sbindir bin \
---buildtype plain \
---auto-features enabled \
---wrap-mode nodownload \
--D b_lto=true \
--D b_pie=true \
-build
-  ninja -C build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  _plugin_names=('atom_inspector' 'midi_inspector' 'osc_inspector')
-  for _plugin in ${_plugin_names[@]}; do
-lv2lint -Mpack -I "build/" 
"http://open-music-kontrollers.ch/lv2/sherlock#${_plugin};
-  done
-}
-
-package() {
-  depends+=('libserd-0.so' 'libsratom-0.so')
-  cd "$pkgname-$pkgver"
-  DESTDIR="${pkgdir}" meson install -C build
-  # docs
-  install -vDm 644 {ChangeLog,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: sherlock.lv2/repos/community-x86_64/PKGBUILD (from rev 821159, 
sherlock.lv2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 16:52:13 UTC (rev 821160)
@@ -0,0 +1,51 @@
+# Maintainer: David Runge 
+
+pkgname=sherlock.lv2
+pkgver=0.26.0
+pkgrel=1
+pkgdesc="An investigative plugin bundle"
+arch=('x86_64')
+url="https://open-music-kontrollers.ch/lv2/sherlock/;
+license=('Artistic2.0')
+groups=('lv2-plugins' 'pro-audio')
+depends=('glibc' 'libglvnd' 'libx11' 'lv2-host')
+makedepends=('flex' 'glew' 'glu' 'lv2' 'meson' 'serd' 'sord' 'sratom')
+checkdepends=('lv2lint')
+source=("https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz"{,.asc})
+sha512sums=('2d9129c2b9186729c57137e3a6efc7cdf8bb466882a9a222a57a65478bd0f1c67a57c5336d11f64a7a8114674aaccb20b73f533ac73046b09d01448be5381114'
+'SKIP')
+b2sums=('c2413a0e7c5629ffc23a3914ddf370f91225ec776433151a732883e33e62387a5a80fa8c950e7e2d3d9f1a55d6105ccac70813dcfd32e5972366f59d8e1e4355'
+'SKIP')
+validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

+
+build() {
+  cd "$pkgname-$pkgver"
+  meson --prefix=/usr \
+--libdir=lib \
+--libexecdir lib \
+--sbindir bin \
+--buildtype plain \
+--auto-features enabled \
+--wrap-mode nodownload \
+-D b_lto=true \
+-D b_pie=true \
+build
+  ninja -C build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  _plugin_names=('atom_inspector' 'midi_inspector' 'osc_inspector')
+  for _plugin in ${_plugin_names[@]}; do
+lv2lint -Mpack -I "build/" 
"http://open-music-kontrollers.ch/lv2/sherlock#${_plugin};
+  done
+}
+
+package() {
+  depends+=('libGLEW.so' 'libserd-0.so' 'libsratom-0.so')
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  # docs
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in sherlock.lv2/trunk (PKGBUILD)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 16:52:01
  Author: dvzrv
Revision: 821159

upgpkg: sherlock.lv2 0.26.0-1: Upgrade to 0.26.0.

Add glew/libGLEW.so as new dependency.

Modified:
  sherlock.lv2/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 16:34:59 UTC (rev 821158)
+++ PKGBUILD2021-01-16 16:52:01 UTC (rev 821159)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=sherlock.lv2
-pkgver=0.24.0
+pkgver=0.26.0
 pkgrel=1
 pkgdesc="An investigative plugin bundle"
 arch=('x86_64')
@@ -8,13 +8,13 @@
 url="https://open-music-kontrollers.ch/lv2/sherlock/;
 license=('Artistic2.0')
 groups=('lv2-plugins' 'pro-audio')
-depends=('glibc' 'libglvnd' 'libx11')
-makedepends=('flex' 'glu' 'lv2' 'meson' 'serd' 'sord' 'sratom')
+depends=('glibc' 'libglvnd' 'libx11' 'lv2-host')
+makedepends=('flex' 'glew' 'glu' 'lv2' 'meson' 'serd' 'sord' 'sratom')
 checkdepends=('lv2lint')
 
source=("https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz"{,.asc})
-sha512sums=('40603ca53978e0fad7b593a3ed8ff429ad15930e6da6119da21058d5eb10c6183a4ea8ed93c9561bd187a2b8966f822d9434f4d0098e807c258fa2ab15234fd1'
+sha512sums=('2d9129c2b9186729c57137e3a6efc7cdf8bb466882a9a222a57a65478bd0f1c67a57c5336d11f64a7a8114674aaccb20b73f533ac73046b09d01448be5381114'
 'SKIP')
-b2sums=('a95dd9a4677179a2aa345c64b490111c931b32a63df36279581beb0da365b43c0492e8708773d8c5d7459afce64b7750ebf289236b7b9ead47ea8de1594f7ac2'
+b2sums=('c2413a0e7c5629ffc23a3914ddf370f91225ec776433151a732883e33e62387a5a80fa8c950e7e2d3d9f1a55d6105ccac70813dcfd32e5972366f59d8e1e4355'
 'SKIP')
 validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

 
@@ -42,7 +42,7 @@
 }
 
 package() {
-  depends+=('libserd-0.so' 'libsratom-0.so')
+  depends+=('libGLEW.so' 'libserd-0.so' 'libsratom-0.so')
   cd "$pkgname-$pkgver"
   DESTDIR="${pkgdir}" meson install -C build
   # docs


[arch-commits] Commit in vm.lv2/repos/community-x86_64 (PKGBUILD PKGBUILD)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 16:34:59
  Author: dvzrv
Revision: 821158

archrelease: copy trunk to community-x86_64

Added:
  vm.lv2/repos/community-x86_64/PKGBUILD
(from rev 821157, vm.lv2/trunk/PKGBUILD)
Deleted:
  vm.lv2/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  101 ++---
 1 file changed, 51 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 16:34:47 UTC (rev 821157)
+++ PKGBUILD2021-01-16 16:34:59 UTC (rev 821158)
@@ -1,50 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=vm.lv2
-pkgver=0.10.0
-pkgrel=1
-pkgdesc="A virtual machine LV2 plugin bundle"
-arch=('x86_64')
-url="https://open-music-kontrollers.ch/lv2/vm/#;
-license=('Artistic2.0')
-groups=('lv2-plugins' 'pro-audio')
-depends=('glibc' 'libglvnd')
-makedepends=('glu' 'lv2' 'meson')
-checkdepends=('lv2lint')
-source=("https://git.open-music-kontrollers.ch/lv2//$pkgname/snapshot/$pkgname-$pkgver.tar.xz"{,.asc})
-sha512sums=('86e2bda3449904e731d491324f7bc3bd18bda75835c3f05cc29acb246b7c62581e0700f6397fc8c8427861ed50a3d490387a8524b679b620f117535fd9c76329'
-'SKIP')
-b2sums=('8864e3f2dcff756cbb7efe21df09fe2e0424c35cb62faf050675b36fe53631b1abe727fd353c9f9d956518bd2e85bf5ba8662e31aa6964de2cc2d1db8051846b'
-'SKIP')
-validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

-
-build() {
-  cd "$pkgname-$pkgver"
-  meson --prefix=/usr \
---libdir=lib \
---libexecdir lib \
---sbindir bin \
---buildtype plain \
---auto-features enabled \
---wrap-mode nodownload \
--D b_lto=true \
--D b_pie=true \
-build
-  ninja -C build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  _plugin_names=('atom' 'audio' 'control' 'cv' 'midi')
-  for _plugin in ${_plugin_names[@]}; do
-lv2lint -Mpack -I "build/" 
"http://open-music-kontrollers.ch/lv2/vm#${_plugin};
-  done
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  DESTDIR="${pkgdir}" meson install -C build
-  # docs
-  install -vDm 644 {ChangeLog,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: vm.lv2/repos/community-x86_64/PKGBUILD (from rev 821157, 
vm.lv2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 16:34:59 UTC (rev 821158)
@@ -0,0 +1,51 @@
+# Maintainer: David Runge 
+
+pkgname=vm.lv2
+pkgver=0.12.0
+pkgrel=1
+pkgdesc="A virtual machine LV2 plugin bundle"
+arch=('x86_64')
+url="https://open-music-kontrollers.ch/lv2/vm/#;
+license=('Artistic2.0')
+groups=('lv2-plugins' 'pro-audio')
+depends=('glibc' 'libglvnd' 'libx11' 'lv2-host')
+makedepends=('glew' 'glu' 'lv2' 'meson')
+checkdepends=('lv2lint')
+source=("https://git.open-music-kontrollers.ch/lv2//$pkgname/snapshot/$pkgname-$pkgver.tar.xz"{,.asc})
+sha512sums=('21398ca6cdf266beb1eeccf70f401fed5c2b6472a5d64d962b3930e8b9d17b7c830e3a0a40a015adbd1b14a319f5bdd5a9ae966dd0ca36f37222ebd42c89bf6a'
+'SKIP')
+b2sums=('529516d02f21bdf9789dc5a8de1c979c3d6fe1b99163361afa875f43e085f303bd3f190ce7111c1536af3d71a654f33130952089a8b22250757ff57824a6b480'
+'SKIP')
+validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

+
+build() {
+  cd "$pkgname-$pkgver"
+  meson --prefix=/usr \
+--libdir=lib \
+--libexecdir lib \
+--sbindir bin \
+--buildtype plain \
+--auto-features enabled \
+--wrap-mode nodownload \
+-D b_lto=true \
+-D b_pie=true \
+build
+  ninja -C build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  _plugin_names=('atom' 'audio' 'control' 'cv' 'midi')
+  for _plugin in ${_plugin_names[@]}; do
+lv2lint -Mpack -I "build/" 
"http://open-music-kontrollers.ch/lv2/vm#${_plugin};
+  done
+}
+
+package() {
+  depends+=('libGLEW.so')
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  # docs
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in vm.lv2/trunk (PKGBUILD)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 16:34:47
  Author: dvzrv
Revision: 821157

upgpkg: vm.lv2 0.12.0-1: Upgrade to 0.12.0.

Add glew/libGLEW.so as new dependency.

Modified:
  vm.lv2/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 16:20:58 UTC (rev 821156)
+++ PKGBUILD2021-01-16 16:34:47 UTC (rev 821157)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=vm.lv2
-pkgver=0.10.0
+pkgver=0.12.0
 pkgrel=1
 pkgdesc="A virtual machine LV2 plugin bundle"
 arch=('x86_64')
@@ -8,13 +8,13 @@
 url="https://open-music-kontrollers.ch/lv2/vm/#;
 license=('Artistic2.0')
 groups=('lv2-plugins' 'pro-audio')
-depends=('glibc' 'libglvnd')
-makedepends=('glu' 'lv2' 'meson')
+depends=('glibc' 'libglvnd' 'libx11' 'lv2-host')
+makedepends=('glew' 'glu' 'lv2' 'meson')
 checkdepends=('lv2lint')
 
source=("https://git.open-music-kontrollers.ch/lv2//$pkgname/snapshot/$pkgname-$pkgver.tar.xz"{,.asc})
-sha512sums=('86e2bda3449904e731d491324f7bc3bd18bda75835c3f05cc29acb246b7c62581e0700f6397fc8c8427861ed50a3d490387a8524b679b620f117535fd9c76329'
+sha512sums=('21398ca6cdf266beb1eeccf70f401fed5c2b6472a5d64d962b3930e8b9d17b7c830e3a0a40a015adbd1b14a319f5bdd5a9ae966dd0ca36f37222ebd42c89bf6a'
 'SKIP')
-b2sums=('8864e3f2dcff756cbb7efe21df09fe2e0424c35cb62faf050675b36fe53631b1abe727fd353c9f9d956518bd2e85bf5ba8662e31aa6964de2cc2d1db8051846b'
+b2sums=('529516d02f21bdf9789dc5a8de1c979c3d6fe1b99163361afa875f43e085f303bd3f190ce7111c1536af3d71a654f33130952089a8b22250757ff57824a6b480'
 'SKIP')
 validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

 
@@ -42,6 +42,7 @@
 }
 
 package() {
+  depends+=('libGLEW.so')
   cd "$pkgname-$pkgver"
   DESTDIR="${pkgdir}" meson install -C build
   # docs


[arch-commits] Commit in moony.lv2/repos/community-x86_64 (PKGBUILD PKGBUILD)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 16:20:58
  Author: dvzrv
Revision: 821156

archrelease: copy trunk to community-x86_64

Added:
  moony.lv2/repos/community-x86_64/PKGBUILD
(from rev 821155, moony.lv2/trunk/PKGBUILD)
Deleted:
  moony.lv2/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  103 ++---
 1 file changed, 52 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-01-16 16:20:49 UTC (rev 821155)
+++ PKGBUILD2021-01-16 16:20:58 UTC (rev 821156)
@@ -1,51 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=moony.lv2
-pkgver=0.34.0
-pkgrel=1
-pkgdesc="Easily add realtime programmable logic glue in LV2 plugin graphs"
-arch=('x86_64')
-url="https://open-music-kontrollers.ch/lv2/moony/;
-license=('Artistic2.0')
-groups=('lv2-plugins' 'pro-audio')
-depends=('glibc' 'libglvnd' 'libx11')
-makedepends=('glu' 'lv2' 'meson' 'sord')
-checkdepends=('lv2lint')
-source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha512sums=('4a83aa90495124f641a7f1f4147c0ef3e4cb05b8c92f016cb03e186039fa749b56cb527664d14f3bfe7b66ff5640193cf2ddc954cf21e9c6670531f236c8c027'
-'SKIP')
-b2sums=('8d60c31216e5cd7a534a8387b968ec10b5d04a029099605e738ab5dc55438c0c6bb2e09de4e40df25b974cff747649771f4e054255095e34ed0ebb28208d'
-'SKIP')
-validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

-
-build() {
-  cd "$pkgname-$pkgver"
-  meson --prefix=/usr \
---libdir=lib \
---libexecdir lib \
---sbindir bin \
---buildtype plain \
---auto-features enabled \
---wrap-mode nodownload \
--D b_lto=true \
--D b_pie=true \
-build
-  ninja -C build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  _plugin_names=('a1xa1' 'a2xa2' 'a4xa4' 'c1a1xc1a1' 'c1xc1' 'c2a1xc2a1'
-  'c2xc2' 'c4a1xc4a1' 'c4xc4')
-  for _plugin in ${_plugin_names[@]}; do
-lv2lint -Mpack -I "build/" 
"http://open-music-kontrollers.ch/lv2/moony#${_plugin};
-  done
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  DESTDIR="${pkgdir}" meson install -C build
-  # docs
-  install -vDm 644 {ChangeLog,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: moony.lv2/repos/community-x86_64/PKGBUILD (from rev 821155, 
moony.lv2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-01-16 16:20:58 UTC (rev 821156)
@@ -0,0 +1,52 @@
+# Maintainer: David Runge 
+
+pkgname=moony.lv2
+pkgver=0.36.0
+pkgrel=1
+pkgdesc="Easily add realtime programmable logic glue in LV2 plugin graphs"
+arch=('x86_64')
+url="https://open-music-kontrollers.ch/lv2/moony/;
+license=('Artistic2.0')
+groups=('lv2-plugins' 'pro-audio')
+depends=('glibc' 'libglvnd' 'libx11' 'lv2-host')
+makedepends=('glew' 'glu' 'lv2' 'meson' 'sord')
+checkdepends=('lv2lint')
+source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz"{,.asc})
+sha512sums=('ed69b64b33be65d054ccd3628bc5bfc6769e12a233d75f91db72f6d33e273943cb5ae39553300189106b546e6177816144431fbd5305468af6f93d37a469be20'
+'SKIP')
+b2sums=('bee8fa535dbbe05e7f19766642155cc7495472348cc3d0b12701c2d8a628e2b1b84934c345c849bf1a46941ef5b20c25b891e0565ab220c194c9a0abeeb76a70'
+'SKIP')
+validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

+
+build() {
+  cd "$pkgname-$pkgver"
+  meson --prefix=/usr \
+--libdir=lib \
+--libexecdir lib \
+--sbindir bin \
+--buildtype plain \
+--auto-features enabled \
+--wrap-mode nodownload \
+-D b_lto=true \
+-D b_pie=true \
+build
+  ninja -C build
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  _plugin_names=('a1xa1' 'a2xa2' 'a4xa4' 'c1a1xc1a1' 'c1xc1' 'c2a1xc2a1'
+  'c2xc2' 'c4a1xc4a1' 'c4xc4')
+  for _plugin in ${_plugin_names[@]}; do
+lv2lint -Mpack -I "build/" 
"http://open-music-kontrollers.ch/lv2/moony#${_plugin};
+  done
+}
+
+package() {
+  depends+=('libGLEW.so')
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  # docs
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in moony.lv2/trunk (PKGBUILD)

2021-01-16 Thread David Runge via arch-commits
Date: Saturday, January 16, 2021 @ 16:20:49
  Author: dvzrv
Revision: 821155

upgpkg: moony.lv2 0.36.0-1: Upgrade to 0.36.0.

Add glew/libGLEW.so as new dependency.

Modified:
  moony.lv2/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 16:07:17 UTC (rev 821154)
+++ PKGBUILD2021-01-16 16:20:49 UTC (rev 821155)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=moony.lv2
-pkgver=0.34.0
+pkgver=0.36.0
 pkgrel=1
 pkgdesc="Easily add realtime programmable logic glue in LV2 plugin graphs"
 arch=('x86_64')
@@ -8,13 +8,13 @@
 url="https://open-music-kontrollers.ch/lv2/moony/;
 license=('Artistic2.0')
 groups=('lv2-plugins' 'pro-audio')
-depends=('glibc' 'libglvnd' 'libx11')
-makedepends=('glu' 'lv2' 'meson' 'sord')
+depends=('glibc' 'libglvnd' 'libx11' 'lv2-host')
+makedepends=('glew' 'glu' 'lv2' 'meson' 'sord')
 checkdepends=('lv2lint')
 
source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz"{,.asc})
-sha512sums=('4a83aa90495124f641a7f1f4147c0ef3e4cb05b8c92f016cb03e186039fa749b56cb527664d14f3bfe7b66ff5640193cf2ddc954cf21e9c6670531f236c8c027'
+sha512sums=('ed69b64b33be65d054ccd3628bc5bfc6769e12a233d75f91db72f6d33e273943cb5ae39553300189106b546e6177816144431fbd5305468af6f93d37a469be20'
 'SKIP')
-b2sums=('8d60c31216e5cd7a534a8387b968ec10b5d04a029099605e738ab5dc55438c0c6bb2e09de4e40df25b974cff747649771f4e054255095e34ed0ebb28208d'
+b2sums=('bee8fa535dbbe05e7f19766642155cc7495472348cc3d0b12701c2d8a628e2b1b84934c345c849bf1a46941ef5b20c25b891e0565ab220c194c9a0abeeb76a70'
 'SKIP')
 validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

 
@@ -43,6 +43,7 @@
 }
 
 package() {
+  depends+=('libGLEW.so')
   cd "$pkgname-$pkgver"
   DESTDIR="${pkgdir}" meson install -C build
   # docs


[arch-commits] Commit in xine-lib/repos (2 files)

2021-01-16 Thread Daniel Bermond via arch-commits
Date: Saturday, January 16, 2021 @ 16:07:17
  Author: dbermond
Revision: 821154

archrelease: copy trunk to community-staging-x86_64

Added:
  xine-lib/repos/community-staging-x86_64/
  xine-lib/repos/community-staging-x86_64/PKGBUILD
(from rev 821153, xine-lib/trunk/PKGBUILD)

--+
 PKGBUILD |   53 +
 1 file changed, 53 insertions(+)

Copied: xine-lib/repos/community-staging-x86_64/PKGBUILD (from rev 821153, 
xine-lib/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-01-16 16:07:17 UTC (rev 821154)
@@ -0,0 +1,53 @@
+# Maintainer : Daniel Bermond 
+# Contributor: Eric BĂ©langer 
+
+pkgname=xine-lib
+pkgver=1.2.11
+pkgrel=2
+pkgdesc='Multimedia playback engine'
+arch=('x86_64')
+url='https://www.xine-project.org'
+license=('GPL' 'LGPL')
+depends=('ffmpeg' 'libjpeg-turbo' 'libnsl' 'libpng' 'libx11' 'libxcb'
+ 'libxext' 'libxinerama' 'libxv' 'libxvmc' 'zlib')
+optdepends=('libdvdnav: for dvd plugin'
+'libdvdread: for spu and dxr3 plugins'
+'vcdimager: for vcd plugin'
+'glu: for opengl and vaapi plugins'
+'sdl: for sdl plugin'
+'wayland: for egl_wl plugin'
+'aalib: for aalib plugin'
+'a52dec: for a52 plugin'
+'faad2: for faad plugin'
+'flac: for flac plugin'
+'libdca: for dts (dca) plugin'
+'libmad: for mad (mp3) plugin'
+'libmpcdec: for mpc (musepack) plugin'
+'wavpack: for wavpack plugin'
+'gdk-pixbuf2: for gdk_pixbuf plugin'
+'imagemagick: for imagemagick plugin'
+'libcaca: for caca plugin'
+'libmng: for mng plugin'
+'libnfs: for nfs plugin'
+'smbclient: for samba plugin')
+makedepends=('mesa' 'libdvdnav' 'libdvdread' 'vcdimager' 'glu' 'sdl'
+ 'wayland' 'aalib' 'a52dec' 'faad2' 'flac' 'libdca' 'libmad'
+ 'libmpcdec' 'wavpack' 'gdk-pixbuf2' 'imagemagick' 'libcaca'
+ 'libmng' 'libnfs' 'smbclient')
+source=("https://downloads.sourceforge.net/project/xine/xine-lib/${pkgver}/xine-lib-${pkgver}.tar.xz;)
+sha256sums=('ef51b21d10dda1045fa7d711bd9171cfdaf0a5a2874233bcf16ffdf28ec07005')
+
+build() {
+cd "${pkgname}-${pkgver}"
+./configure \
+--prefix='/usr' \
+--enable-antialiasing \
+--with-external-dvdnav \
+--with-wavpack
+sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+make
+}
+
+package() {
+make -C "${pkgname}-${pkgver}" DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in xine-lib/trunk (PKGBUILD)

2021-01-16 Thread Daniel Bermond via arch-commits
Date: Saturday, January 16, 2021 @ 16:06:57
  Author: dbermond
Revision: 821153

upgpkg: xine-lib 1.2.11-2: rebuild for dav1d 0.8.1

Modified:
  xine-lib/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-01-16 15:56:32 UTC (rev 821152)
+++ PKGBUILD2021-01-16 16:06:57 UTC (rev 821153)
@@ -3,7 +3,7 @@
 
 pkgname=xine-lib
 pkgver=1.2.11
-pkgrel=1
+pkgrel=2
 pkgdesc='Multimedia playback engine'
 arch=('x86_64')
 url='https://www.xine-project.org'


  1   2   3   >