[arch-commits] Commit in llvm13/repos/extra-x86_64 (14 files)

2022-07-03 Thread Evangelos Foutras via arch-commits
Date: Monday, July 4, 2022 @ 05:56:02
  Author: foutrelis
Revision: 449853

archrelease: copy trunk to extra-x86_64

Added:
  llvm13/repos/extra-x86_64/PKGBUILD
(from rev 449852, llvm13/trunk/PKGBUILD)
  llvm13/repos/extra-x86_64/disable-A-B-A-B-and-BSWAP-in-InstCombine.patch
(from rev 449852, 
llvm13/trunk/disable-A-B-A-B-and-BSWAP-in-InstCombine.patch)
  llvm13/repos/extra-x86_64/disable-DIArgList-in-SPIR-V.patch
(from rev 449852, llvm13/trunk/disable-DIArgList-in-SPIR-V.patch)
  llvm13/repos/extra-x86_64/don-t-accept-nullptr-as-GEP-element-type.patch
(from rev 449852, 
llvm13/trunk/don-t-accept-nullptr-as-GEP-element-type.patch)
  llvm13/repos/extra-x86_64/don-t-move-DBG_VALUE-instructions.patch
(from rev 449852, llvm13/trunk/don-t-move-DBG_VALUE-instructions.patch)
  
llvm13/repos/extra-x86_64/don-t-override-__attribute__-no_stack_protector.patch
(from rev 449852, 
llvm13/trunk/don-t-override-__attribute__-no_stack_protector.patch)
  llvm13/repos/extra-x86_64/keys/
Deleted:
  llvm13/repos/extra-x86_64/PKGBUILD
  llvm13/repos/extra-x86_64/disable-A-B-A-B-and-BSWAP-in-InstCombine.patch
  llvm13/repos/extra-x86_64/disable-DIArgList-in-SPIR-V.patch
  llvm13/repos/extra-x86_64/don-t-accept-nullptr-as-GEP-element-type.patch
  llvm13/repos/extra-x86_64/don-t-move-DBG_VALUE-instructions.patch
  
llvm13/repos/extra-x86_64/don-t-override-__attribute__-no_stack_protector.patch
  llvm13/repos/extra-x86_64/keys/

---+
 PKGBUILD  |  211 +--
 disable-A-B-A-B-and-BSWAP-in-InstCombine.patch|  104 -
 disable-DIArgList-in-SPIR-V.patch |   46 
 don-t-accept-nullptr-as-GEP-element-type.patch|  126 -
 don-t-move-DBG_VALUE-instructions.patch   |  182 +-
 don-t-override-__attribute__-no_stack_protector.patch | 1080 
 6 files changed, 875 insertions(+), 874 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-04 05:55:52 UTC (rev 449852)
+++ PKGBUILD2022-07-04 05:56:02 UTC (rev 449853)
@@ -1,105 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Jan "heftig" Steffens 
-
-pkgname=('llvm13' 'llvm13-libs')
-pkgver=13.0.1
-pkgrel=2
-arch=('x86_64')
-url="https://llvm.org/;
-license=('custom:Apache 2.0 with LLVM Exception')
-makedepends=('cmake' 'ninja' 'libffi' 'libedit' 'ncurses' 'libxml2'
- 'python')
-options=('staticlibs' '!lto') # Getting thousands of test failures with LTO
-_source_base=https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver
-source=($_source_base/llvm-$pkgver.src.tar.xz{,.sig}
-don-t-accept-nullptr-as-GEP-element-type.patch
-don-t-override-__attribute__-no_stack_protector.patch
-don-t-move-DBG_VALUE-instructions.patch
-disable-A-B-A-B-and-BSWAP-in-InstCombine.patch
-disable-DIArgList-in-SPIR-V.patch)
-sha256sums=('ec6b80d82c384acad2dc192903a6cf2cdbaffb889b84bfb98da9d71e630fc834'
-'SKIP'
-'a7e902a7612d0fdabe436a917468b043cc296bc89d8954bfc3126f737beb9ac4'
-'9f0a4578b94eb8853b83af2f65e92705254b4b56d96f9a941714d174b932f465'
-'f7d69f84241416398fdb3df8bb44f9fae3c49d89889c7ffa3b37aa2e9d78f708'
-'34cc0d79a30599cb2287b47b4e9a1a5bf03d57a1f8bb35be3fe976ffc4a604f6'
-'8642da2d556092e4284873ba6ddc6c9a67841f42cc16f923bcd523e4b304a3ff')
-validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

-validpgpkeys+=('474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

-
-prepare() {
-  cd llvm-$pkgver.src
-  mkdir build
-
-  # https://github.com/intel/intel-graphics-compiler/issues/204
-  patch -Rp2 -i ../don-t-accept-nullptr-as-GEP-element-type.patch
-
-  # Fixes Chromium error "*** stack smashing detected ***: terminated"
-  # (which also goes away with "--change-stack-guard-on-fork=disabled")
-  # https://reviews.llvm.org/D116589
-  patch -Np2 -i ../don-t-override-__attribute__-no_stack_protector.patch
-
-  # https://github.com/llvm/llvm-project/issues/53243
-  # https://github.com/rust-lang/rust/issues/92869
-  patch -Np2 -i ../don-t-move-DBG_VALUE-instructions.patch
-
-  # Patches needed for ISPC for Xe only
-  patch -Np2 -i ../disable-A-B-A-B-and-BSWAP-in-InstCombine.patch
-  patch -Np2 -i ../disable-DIArgList-in-SPIR-V.patch
-}
-
-build() {
-  cd llvm-$pkgver.src/build
-
-  local cmake_args=(
--G Ninja
--DCMAKE_BUILD_TYPE=Release
--DCMAKE_INSTALL_PREFIX=/usr/lib/llvm13
--DCMAKE_SKIP_RPATH=ON
--DLLVM_BINUTILS_INCDIR=/usr/include
--DLLVM_BUILD_LLVM_DYLIB=ON
--DLLVM_BUILD_TESTS=ON
--DLLVM_ENABLE_BINDINGS=OFF
--DLLVM_ENABLE_FFI=ON
--DLLVM_ENABLE_RTTI=ON
--DLLVM_HOST_TRIPLE=$CHOST
--DLLVM_INSTALL_UTILS=ON
--DLLVM_LINK_LLVM_DYLIB=ON
-  )
-  cmake .. "${cmake_args[@]}"
-  ninja
-}
-
-check() {
-  cd llvm-$pkgver.src/build
-  LD_LIBRARY_PATH=$PWD/lib 

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

2022-07-03 Thread Evangelos Foutras via arch-commits
Date: Monday, July 4, 2022 @ 05:55:52
  Author: foutrelis
Revision: 449852

upgpkg: llvm13 13.0.1-3: move LLVMgold.so to *-libs

It is passed to ld as a plugin when building with -flto.

Modified:
  llvm13/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 20:13:45 UTC (rev 449851)
+++ PKGBUILD2022-07-04 05:55:52 UTC (rev 449852)
@@ -3,7 +3,7 @@
 
 pkgname=('llvm13' 'llvm13-libs')
 pkgver=13.0.1
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 url="https://llvm.org/;
 license=('custom:Apache 2.0 with LLVM Exception')
@@ -82,8 +82,9 @@
 
   DESTDIR="$pkgdir" ninja install
 
-  # The runtime library goes into llvm13-libs
+  # The runtime libraries go into llvm13-libs
   mv -f "$pkgdir"/usr/lib/llvm13/lib/libLLVM-{13,$pkgver}.so "$srcdir/"
+  mv -f "$pkgdir"/usr/lib/llvm13/lib/LLVMgold.so "$srcdir/"
 
   install -Dm644 ../LICENSE.TXT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }
@@ -96,6 +97,7 @@
   cp -P "$srcdir"/libLLVM-{13,$pkgver}.so "$pkgdir/usr/lib/"
   ln -s ../../libLLVM-13.so "$pkgdir/usr/lib/llvm13/lib/libLLVM-13.so"
   ln -s ../../libLLVM-13.so "$pkgdir/usr/lib/llvm13/lib/libLLVM-$pkgver.so"
+  cp -P "$srcdir"/LLVMgold.so "$pkgdir/usr/lib/llvm13/lib/"
 
   install -Dm644 "$srcdir/llvm-$pkgver.src/LICENSE.TXT" \
 "$pkgdir/usr/share/licenses/$pkgname/LICENSE"



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 01:46:19
  Author: felixonmars
Revision: 1243872

archrelease: copy trunk to community-x86_64

Added:
  libime/repos/community-x86_64/PKGBUILD
(from rev 1243871, libime/trunk/PKGBUILD)
  libime/repos/community-x86_64/keys/
Deleted:
  libime/repos/community-x86_64/PKGBUILD
  libime/repos/community-x86_64/keys/

--+
 PKGBUILD |   67 ++---
 1 file changed, 34 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-04 01:45:53 UTC (rev 1243871)
+++ PKGBUILD2022-07-04 01:46:19 UTC (rev 1243872)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=libime
-pkgver=1.0.13
-pkgrel=1
-pkgdesc="A library to support generic input method implementation"
-arch=('x86_64')
-url="https://github.com/fcitx/libime;
-license=('GPL')
-depends=('boost-libs' 'fcitx5')
-makedepends=('boost' 'extra-cmake-modules' 'ninja' 'python')
-source=("https://download.fcitx-im.org/fcitx5/libime/libime-${pkgver}_dict.tar.xz"{,.sig})
-sha512sums=('2ab4e08960c8c03d30c6d44b21030642337d0995c453dcb312db98e25aefa3631e8c899184f9344692f1720d7c1e036bab9cdcc34e12c9c98b377ddba9363fb5'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build(){
-  cd $pkgname-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  ninja
-}
-
-check() {
-  cd $pkgname-$pkgver
-  ninja test
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: libime/repos/community-x86_64/PKGBUILD (from rev 1243871, 
libime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-04 01:46:19 UTC (rev 1243872)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=libime
+pkgver=1.0.13
+pkgrel=2
+pkgdesc="A library to support generic input method implementation"
+arch=('x86_64')
+url="https://github.com/fcitx/libime;
+license=('GPL')
+depends=('boost-libs' 'fcitx5')
+makedepends=('boost' 'extra-cmake-modules' 'ninja' 'python')
+options=('debug')
+source=("https://download.fcitx-im.org/fcitx5/libime/libime-${pkgver}_dict.tar.xz"{,.sig})
+sha512sums=('2ab4e08960c8c03d30c6d44b21030642337d0995c453dcb312db98e25aefa3631e8c899184f9344692f1720d7c1e036bab9cdcc34e12c9c98b377ddba9363fb5'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build(){
+  cd $pkgname-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  ninja
+}
+
+check() {
+  cd $pkgname-$pkgver
+  ninja test
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 01:45:53
  Author: felixonmars
Revision: 1243871

upgpkg: libime 1.0.13-2: enable debug

Modified:
  libime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-04 01:41:09 UTC (rev 1243870)
+++ PKGBUILD2022-07-04 01:45:53 UTC (rev 1243871)
@@ -3,7 +3,7 @@
 
 pkgname=libime
 pkgver=1.0.13
-pkgrel=1
+pkgrel=2
 pkgdesc="A library to support generic input method implementation"
 arch=('x86_64')
 url="https://github.com/fcitx/libime;
@@ -10,6 +10,7 @@
 license=('GPL')
 depends=('boost-libs' 'fcitx5')
 makedepends=('boost' 'extra-cmake-modules' 'ninja' 'python')
+options=('debug')
 
source=("https://download.fcitx-im.org/fcitx5/libime/libime-${pkgver}_dict.tar.xz"{,.sig})
 
sha512sums=('2ab4e08960c8c03d30c6d44b21030642337d0995c453dcb312db98e25aefa3631e8c899184f9344692f1720d7c1e036bab9cdcc34e12c9c98b377ddba9363fb5'
 'SKIP')



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 01:41:09
  Author: felixonmars
Revision: 1243870

archrelease: copy trunk to community-x86_64

Added:
  fcitx5/repos/community-x86_64/PKGBUILD
(from rev 1243869, fcitx5/trunk/PKGBUILD)
  fcitx5/repos/community-x86_64/keys/
Deleted:
  fcitx5/repos/community-x86_64/PKGBUILD
  fcitx5/repos/community-x86_64/keys/

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-04 01:40:42 UTC (rev 1243869)
+++ PKGBUILD2022-07-04 01:41:09 UTC (rev 1243870)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5
-pkgver=5.0.18
-pkgrel=1
-pkgdesc="Next generation of fcitx"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5;
-license=('GPL')
-conflicts=('fcitx')
-groups=('fcitx5-im')
-depends=('cairo' 'enchant' 'iso-codes' 'libgl' 'libxkbcommon-x11' 'pango' 
'systemd' 'wayland'
- 'wayland-protocols' 'xcb-imdkit' 'xcb-util-wm' 'libxkbfile' 'fmt' 
'gdk-pixbuf2'
- 'unicode-cldr-annotations')
-makedepends=('extra-cmake-modules' 'ninja')
-source=("https://download.fcitx-im.org/fcitx5/fcitx5/fcitx5-${pkgver}_dict.tar.xz"{,.sig})
-sha512sums=('a03cd2b8c556fe26470869a624061cc33ac7c6f19be0ba7e01b17c3e7866dee07dc7fed95b2376d670193ed67258abfba8914279ad23507b55312fd48a486be0'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build() {
-  cd $pkgname-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LIBEXECDIR=/usr/lib .
-  ninja
-}
-
-check() {
-  cd $pkgname-$pkgver
-  ninja test
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fcitx5/repos/community-x86_64/PKGBUILD (from rev 1243869, 
fcitx5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-04 01:41:09 UTC (rev 1243870)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5
+pkgver=5.0.18
+pkgrel=2
+pkgdesc="Next generation of fcitx"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5;
+license=('GPL')
+conflicts=('fcitx')
+groups=('fcitx5-im')
+depends=('cairo' 'enchant' 'iso-codes' 'libgl' 'libxkbcommon-x11' 'pango' 
'systemd' 'wayland'
+ 'wayland-protocols' 'xcb-imdkit' 'xcb-util-wm' 'libxkbfile' 'fmt' 
'gdk-pixbuf2'
+ 'unicode-cldr-annotations')
+makedepends=('extra-cmake-modules' 'ninja')
+options=('debug')
+source=("https://download.fcitx-im.org/fcitx5/fcitx5/fcitx5-${pkgver}_dict.tar.xz"{,.sig})
+sha512sums=('a03cd2b8c556fe26470869a624061cc33ac7c6f19be0ba7e01b17c3e7866dee07dc7fed95b2376d670193ed67258abfba8914279ad23507b55312fd48a486be0'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build() {
+  cd $pkgname-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LIBEXECDIR=/usr/lib .
+  ninja
+}
+
+check() {
+  cd $pkgname-$pkgver
+  ninja test
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 01:40:42
  Author: felixonmars
Revision: 1243869

upgpkg: fcitx5 5.0.18-2: enable debug

Modified:
  fcitx5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-04 01:32:20 UTC (rev 1243868)
+++ PKGBUILD2022-07-04 01:40:42 UTC (rev 1243869)
@@ -3,7 +3,7 @@
 
 pkgname=fcitx5
 pkgver=5.0.18
-pkgrel=1
+pkgrel=2
 pkgdesc="Next generation of fcitx"
 arch=('x86_64')
 url="https://github.com/fcitx/fcitx5;
@@ -14,6 +14,7 @@
  'wayland-protocols' 'xcb-imdkit' 'xcb-util-wm' 'libxkbfile' 'fmt' 
'gdk-pixbuf2'
  'unicode-cldr-annotations')
 makedepends=('extra-cmake-modules' 'ninja')
+options=('debug')
 
source=("https://download.fcitx-im.org/fcitx5/fcitx5/fcitx5-${pkgver}_dict.tar.xz"{,.sig})
 
sha512sums=('a03cd2b8c556fe26470869a624061cc33ac7c6f19be0ba7e01b17c3e7866dee07dc7fed95b2376d670193ed67258abfba8914279ad23507b55312fd48a486be0'
 'SKIP')



[arch-commits] Commit in fcitx5-rime/repos/community-x86_64 (PKGBUILD PKGBUILD keys)

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 01:32:20
  Author: felixonmars
Revision: 1243868

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-rime/repos/community-x86_64/PKGBUILD
(from rev 1243867, fcitx5-rime/trunk/PKGBUILD)
  fcitx5-rime/repos/community-x86_64/keys/
Deleted:
  fcitx5-rime/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-04 01:31:55 UTC (rev 1243867)
+++ PKGBUILD2022-07-04 01:32:20 UTC (rev 1243868)
@@ -1,28 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-rime
-pkgver=5.0.13
-pkgrel=1
-pkgdesc="RIME support for Fcitx5"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-rime;
-license=('GPL')
-depends=('fcitx5' 'librime')
-makedepends=('extra-cmake-modules' 'ninja')
-source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('3685695ac139f5dd774d73716f67b193f1668879bedcb407f109a9c02a0829d0e06a277be7af079a94d8f6ab0880ac14c87f9055c8d03e7a3611caca0aea38ac'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build(){
-  cd $pkgname-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fcitx5-rime/repos/community-x86_64/PKGBUILD (from rev 1243867, 
fcitx5-rime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-04 01:32:20 UTC (rev 1243868)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-rime
+pkgver=5.0.14
+pkgrel=1
+pkgdesc="RIME support for Fcitx5"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-rime;
+license=('GPL')
+depends=('fcitx5' 'librime')
+makedepends=('extra-cmake-modules' 'ninja')
+source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha512sums=('abe43d67dff760ae7f47f6f53aca5c7bfcf1360b27a80b55895e87ec8edbf7dfe9e746d835b6eb59432dca4fc9d2098563152923f83db75a8f2996a03737c7ce'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build(){
+  cd $pkgname-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}



[arch-commits] Commit in fcitx5-rime/trunk (4 files)

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 01:31:55
  Author: felixonmars
Revision: 1243867

upgpkg: fcitx5-rime 5.0.14-1

Added:
  fcitx5-rime/trunk/keys/
  fcitx5-rime/trunk/keys/pgp/
  fcitx5-rime/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
Modified:
  fcitx5-rime/trunk/PKGBUILD

---+
 PKGBUILD  |4 ++--
 keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc |1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-07-04 00:36:30 UTC (rev 1243866)
+++ PKGBUILD2022-07-04 01:31:55 UTC (rev 1243867)
@@ -2,7 +2,7 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-rime
-pkgver=5.0.13
+pkgver=5.0.14
 pkgrel=1
 pkgdesc="RIME support for Fcitx5"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('fcitx5' 'librime')
 makedepends=('extra-cmake-modules' 'ninja')
 
source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('3685695ac139f5dd774d73716f67b193f1668879bedcb407f109a9c02a0829d0e06a277be7af079a94d8f6ab0880ac14c87f9055c8d03e7a3611caca0aea38ac'
+sha512sums=('abe43d67dff760ae7f47f6f53aca5c7bfcf1360b27a80b55895e87ec8edbf7dfe9e746d835b6eb59432dca4fc9d2098563152923f83db75a8f2996a03737c7ce'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

 

Added: keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
===
(Binary files differ)

Index: fcitx5-rime/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
===
--- keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc   2022-07-04 
00:36:30 UTC (rev 1243866)
+++ keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc   2022-07-04 
01:31:55 UTC (rev 1243867)

Property changes on: 
fcitx5-rime/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


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

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 00:36:30
  Author: felixonmars
Revision: 1243866

archrelease: copy trunk to community-x86_64

Added:
  libime/repos/community-x86_64/PKGBUILD
(from rev 1243865, libime/trunk/PKGBUILD)
  libime/repos/community-x86_64/keys/
Deleted:
  libime/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-04 00:36:01 UTC (rev 1243865)
+++ PKGBUILD2022-07-04 00:36:30 UTC (rev 1243866)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=libime
-pkgver=1.0.12
-pkgrel=2
-pkgdesc="A library to support generic input method implementation"
-arch=('x86_64')
-url="https://github.com/fcitx/libime;
-license=('GPL')
-depends=('boost-libs' 'fcitx5')
-makedepends=('boost' 'extra-cmake-modules' 'ninja' 'python')
-source=("https://download.fcitx-im.org/fcitx5/libime/libime-${pkgver}_dict.tar.xz"{,.sig})
-sha512sums=('223baeedea177f25ecadd37667cf6df0a537247957ba0cde6c594ce20402d27c1c1995e6ed677336f539fd908a30901f98da040238da33f849a8ce28bfab7762'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build(){
-  cd $pkgname-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  ninja
-}
-
-check() {
-  cd $pkgname-$pkgver
-  ninja test
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: libime/repos/community-x86_64/PKGBUILD (from rev 1243865, 
libime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-04 00:36:30 UTC (rev 1243866)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=libime
+pkgver=1.0.13
+pkgrel=1
+pkgdesc="A library to support generic input method implementation"
+arch=('x86_64')
+url="https://github.com/fcitx/libime;
+license=('GPL')
+depends=('boost-libs' 'fcitx5')
+makedepends=('boost' 'extra-cmake-modules' 'ninja' 'python')
+source=("https://download.fcitx-im.org/fcitx5/libime/libime-${pkgver}_dict.tar.xz"{,.sig})
+sha512sums=('2ab4e08960c8c03d30c6d44b21030642337d0995c453dcb312db98e25aefa3631e8c899184f9344692f1720d7c1e036bab9cdcc34e12c9c98b377ddba9363fb5'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build(){
+  cd $pkgname-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  ninja
+}
+
+check() {
+  cd $pkgname-$pkgver
+  ninja test
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}



[arch-commits] Commit in libime/trunk (4 files)

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 00:36:01
  Author: felixonmars
Revision: 1243865

upgpkg: libime 1.0.13-1

Added:
  libime/trunk/keys/
  libime/trunk/keys/pgp/
  libime/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
Modified:
  libime/trunk/PKGBUILD

---+
 PKGBUILD  |6 +++---
 keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc |1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-07-04 00:24:25 UTC (rev 1243864)
+++ PKGBUILD2022-07-04 00:36:01 UTC (rev 1243865)
@@ -2,8 +2,8 @@
 # Contributor: csslayer 
 
 pkgname=libime
-pkgver=1.0.12
-pkgrel=2
+pkgver=1.0.13
+pkgrel=1
 pkgdesc="A library to support generic input method implementation"
 arch=('x86_64')
 url="https://github.com/fcitx/libime;
@@ -11,7 +11,7 @@
 depends=('boost-libs' 'fcitx5')
 makedepends=('boost' 'extra-cmake-modules' 'ninja' 'python')
 
source=("https://download.fcitx-im.org/fcitx5/libime/libime-${pkgver}_dict.tar.xz"{,.sig})
-sha512sums=('223baeedea177f25ecadd37667cf6df0a537247957ba0cde6c594ce20402d27c1c1995e6ed677336f539fd908a30901f98da040238da33f849a8ce28bfab7762'
+sha512sums=('2ab4e08960c8c03d30c6d44b21030642337d0995c453dcb312db98e25aefa3631e8c899184f9344692f1720d7c1e036bab9cdcc34e12c9c98b377ddba9363fb5'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

 

Added: keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
===
(Binary files differ)

Index: libime/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
===
--- keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc   2022-07-04 
00:24:25 UTC (rev 1243864)
+++ keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc   2022-07-04 
00:36:01 UTC (rev 1243865)

Property changes on: 
libime/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


[arch-commits] Commit in fcitx5-anthy/repos/community-x86_64 (PKGBUILD PKGBUILD keys)

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 00:24:25
  Author: felixonmars
Revision: 1243864

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-anthy/repos/community-x86_64/PKGBUILD
(from rev 1243863, fcitx5-anthy/trunk/PKGBUILD)
  fcitx5-anthy/repos/community-x86_64/keys/
Deleted:
  fcitx5-anthy/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-04 00:24:01 UTC (rev 1243863)
+++ PKGBUILD2022-07-04 00:24:25 UTC (rev 1243864)
@@ -1,28 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-anthy
-pkgver=5.0.11
-pkgrel=1
-pkgdesc="Anthy Wrapper for Fcitx5"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-anthy;
-license=('GPL')
-depends=('fcitx5' 'anthy')
-makedepends=('extra-cmake-modules' 'ninja')
-source=("https://download.fcitx-im.org/fcitx5/fcitx5-anthy/fcitx5-anthy-$pkgver.tar.xz"{,.sig})
-sha512sums=('9a61788ff1f63d49b21c5d0a665e87d171025e43db163bb01c0a8de0ad6a02e1a5306b399b176fce1c0cfc1df426e6e4a6082978982e3b7c277cf55a00285385'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build(){
-  cd $pkgname-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fcitx5-anthy/repos/community-x86_64/PKGBUILD (from rev 1243863, 
fcitx5-anthy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-04 00:24:25 UTC (rev 1243864)
@@ -0,0 +1,28 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-anthy
+pkgver=5.0.12
+pkgrel=1
+pkgdesc="Anthy Wrapper for Fcitx5"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-anthy;
+license=('GPL')
+depends=('fcitx5' 'anthy')
+makedepends=('extra-cmake-modules' 'ninja')
+source=("https://download.fcitx-im.org/fcitx5/fcitx5-anthy/fcitx5-anthy-$pkgver.tar.xz"{,.sig})
+sha512sums=('9c842bc2b298b56c23d96015b32288ffea7b66413be6689de8f04a705a3dd83581718b0c66b0bad74e4799b554bf90eddb45852d7ad118c7fc82f17a7b35b8d7'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build(){
+  cd $pkgname-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}



[arch-commits] Commit in fcitx5-anthy/trunk (4 files)

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 00:24:01
  Author: felixonmars
Revision: 1243863

upgpkg: fcitx5-anthy 5.0.12-1

Added:
  fcitx5-anthy/trunk/keys/
  fcitx5-anthy/trunk/keys/pgp/
  fcitx5-anthy/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
Modified:
  fcitx5-anthy/trunk/PKGBUILD

---+
 PKGBUILD  |4 ++--
 keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc |1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-07-04 00:23:51 UTC (rev 1243862)
+++ PKGBUILD2022-07-04 00:24:01 UTC (rev 1243863)
@@ -2,7 +2,7 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-anthy
-pkgver=5.0.11
+pkgver=5.0.12
 pkgrel=1
 pkgdesc="Anthy Wrapper for Fcitx5"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('fcitx5' 'anthy')
 makedepends=('extra-cmake-modules' 'ninja')
 
source=("https://download.fcitx-im.org/fcitx5/fcitx5-anthy/fcitx5-anthy-$pkgver.tar.xz"{,.sig})
-sha512sums=('9a61788ff1f63d49b21c5d0a665e87d171025e43db163bb01c0a8de0ad6a02e1a5306b399b176fce1c0cfc1df426e6e4a6082978982e3b7c277cf55a00285385'
+sha512sums=('9c842bc2b298b56c23d96015b32288ffea7b66413be6689de8f04a705a3dd83581718b0c66b0bad74e4799b554bf90eddb45852d7ad118c7fc82f17a7b35b8d7'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

 

Added: keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
===
(Binary files differ)

Index: fcitx5-anthy/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
===
--- keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc   2022-07-04 
00:23:51 UTC (rev 1243862)
+++ keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc   2022-07-04 
00:24:01 UTC (rev 1243863)

Property changes on: 
fcitx5-anthy/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


[arch-commits] Commit in fcitx5-gtk/repos/community-x86_64 (PKGBUILD PKGBUILD keys)

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 00:23:51
  Author: felixonmars
Revision: 1243862

archrelease: copy trunk to community-x86_64

Added:
  fcitx5-gtk/repos/community-x86_64/PKGBUILD
(from rev 1243861, fcitx5-gtk/trunk/PKGBUILD)
  fcitx5-gtk/repos/community-x86_64/keys/
Deleted:
  fcitx5-gtk/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   58 +-
 1 file changed, 29 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-04 00:23:26 UTC (rev 1243861)
+++ PKGBUILD2022-07-04 00:23:51 UTC (rev 1243862)
@@ -1,29 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5-gtk
-pkgver=5.0.15
-pkgrel=1
-pkgdesc="Fcitx5 gtk im module and glib based dbus client library"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5-gtk;
-license=('GPL')
-groups=('fcitx5-im')
-depends=('glib2')
-makedepends=('extra-cmake-modules' 'gobject-introspection' 'gtk2' 'gtk3' 
'gtk4' 'ninja' 'vulkan-headers')
-source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('20a842e2d6057168e412b008ba502ddd6eeaad701e50418e5755b97b291958f00ba6eed2cc073ddea4840148f7661786f9e2d40e38e49a516afddd7f4a52bab2'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build(){
-  cd $pkgname-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fcitx5-gtk/repos/community-x86_64/PKGBUILD (from rev 1243861, 
fcitx5-gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-04 00:23:51 UTC (rev 1243862)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5-gtk
+pkgver=5.0.16
+pkgrel=1
+pkgdesc="Fcitx5 gtk im module and glib based dbus client library"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5-gtk;
+license=('GPL')
+groups=('fcitx5-im')
+depends=('glib2')
+makedepends=('extra-cmake-modules' 'gobject-introspection' 'gtk2' 'gtk3' 
'gtk4' 'ninja' 'vulkan-headers')
+source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha512sums=('6434864622f1bd082a512e40b2b6ddd58819f78113e35fb5e8071ad2612b44f88e9963c0c3998ceab9efce824c7813d3c3574c38475b86f0badd593380b64259'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build(){
+  cd $pkgname-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib .
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}



[arch-commits] Commit in fcitx5-gtk/trunk (4 files)

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 00:23:26
  Author: felixonmars
Revision: 1243861

upgpkg: fcitx5-gtk 5.0.16-1

Added:
  fcitx5-gtk/trunk/keys/
  fcitx5-gtk/trunk/keys/pgp/
  fcitx5-gtk/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
Modified:
  fcitx5-gtk/trunk/PKGBUILD

---+
 PKGBUILD  |4 ++--
 keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc |1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-07-04 00:01:39 UTC (rev 1243860)
+++ PKGBUILD2022-07-04 00:23:26 UTC (rev 1243861)
@@ -2,7 +2,7 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5-gtk
-pkgver=5.0.15
+pkgver=5.0.16
 pkgrel=1
 pkgdesc="Fcitx5 gtk im module and glib based dbus client library"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('glib2')
 makedepends=('extra-cmake-modules' 'gobject-introspection' 'gtk2' 'gtk3' 
'gtk4' 'ninja' 'vulkan-headers')
 
source=("https://download.fcitx-im.org/fcitx5/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha512sums=('20a842e2d6057168e412b008ba502ddd6eeaad701e50418e5755b97b291958f00ba6eed2cc073ddea4840148f7661786f9e2d40e38e49a516afddd7f4a52bab2'
+sha512sums=('6434864622f1bd082a512e40b2b6ddd58819f78113e35fb5e8071ad2612b44f88e9963c0c3998ceab9efce824c7813d3c3574c38475b86f0badd593380b64259'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

 

Added: keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
===
(Binary files differ)

Index: fcitx5-gtk/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
===
--- keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc   2022-07-04 
00:01:39 UTC (rev 1243860)
+++ keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc   2022-07-04 
00:23:26 UTC (rev 1243861)

Property changes on: 
fcitx5-gtk/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


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

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 00:01:39
  Author: felixonmars
Revision: 1243860

archrelease: copy trunk to community-x86_64

Added:
  fcitx5/repos/community-x86_64/PKGBUILD
(from rev 1243859, fcitx5/trunk/PKGBUILD)
  fcitx5/repos/community-x86_64/keys/
Deleted:
  fcitx5/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-04 00:01:16 UTC (rev 1243859)
+++ PKGBUILD2022-07-04 00:01:39 UTC (rev 1243860)
@@ -1,38 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: csslayer 
-
-pkgname=fcitx5
-pkgver=5.0.17
-pkgrel=2
-pkgdesc="Next generation of fcitx"
-arch=('x86_64')
-url="https://github.com/fcitx/fcitx5;
-license=('GPL')
-conflicts=('fcitx')
-groups=('fcitx5-im')
-depends=('cairo' 'enchant' 'iso-codes' 'libgl' 'libxkbcommon-x11' 'pango' 
'systemd' 'wayland'
- 'wayland-protocols' 'xcb-imdkit' 'xcb-util-wm' 'libxkbfile' 'fmt' 
'gdk-pixbuf2'
- 'unicode-cldr-annotations')
-makedepends=('extra-cmake-modules' 'ninja')
-source=("https://download.fcitx-im.org/fcitx5/fcitx5/fcitx5-${pkgver}_dict.tar.xz"{,.sig})
-sha512sums=('23c112e35c633cd60050f62a169bc51587c95911f28ae08a5446de8569393341020b470e3cadc692c62228bec2f047e0abd6461a30ddadd2ad5fdb0b9176b616'
-'SKIP')
-validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

-
-build() {
-  cd $pkgname-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib \
--DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LIBEXECDIR=/usr/lib .
-  ninja
-}
-
-check() {
-  cd $pkgname-$pkgver
-  ninja test
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fcitx5/repos/community-x86_64/PKGBUILD (from rev 1243859, 
fcitx5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-04 00:01:39 UTC (rev 1243860)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: csslayer 
+
+pkgname=fcitx5
+pkgver=5.0.18
+pkgrel=1
+pkgdesc="Next generation of fcitx"
+arch=('x86_64')
+url="https://github.com/fcitx/fcitx5;
+license=('GPL')
+conflicts=('fcitx')
+groups=('fcitx5-im')
+depends=('cairo' 'enchant' 'iso-codes' 'libgl' 'libxkbcommon-x11' 'pango' 
'systemd' 'wayland'
+ 'wayland-protocols' 'xcb-imdkit' 'xcb-util-wm' 'libxkbfile' 'fmt' 
'gdk-pixbuf2'
+ 'unicode-cldr-annotations')
+makedepends=('extra-cmake-modules' 'ninja')
+source=("https://download.fcitx-im.org/fcitx5/fcitx5/fcitx5-${pkgver}_dict.tar.xz"{,.sig})
+sha512sums=('a03cd2b8c556fe26470869a624061cc33ac7c6f19be0ba7e01b17c3e7866dee07dc7fed95b2376d670193ed67258abfba8914279ad23507b55312fd48a486be0'
+'SKIP')
+validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

+
+build() {
+  cd $pkgname-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LIBEXECDIR=/usr/lib .
+  ninja
+}
+
+check() {
+  cd $pkgname-$pkgver
+  ninja test
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}



[arch-commits] Commit in fcitx5/trunk (4 files)

2022-07-03 Thread Felix Yan via arch-commits
Date: Monday, July 4, 2022 @ 00:01:16
  Author: felixonmars
Revision: 1243859

upgpkg: fcitx5 5.0.18-1

Added:
  fcitx5/trunk/keys/
  fcitx5/trunk/keys/pgp/
  fcitx5/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
Modified:
  fcitx5/trunk/PKGBUILD

---+
 PKGBUILD  |6 +++---
 keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc |1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 23:23:03 UTC (rev 1243858)
+++ PKGBUILD2022-07-04 00:01:16 UTC (rev 1243859)
@@ -2,8 +2,8 @@
 # Contributor: csslayer 
 
 pkgname=fcitx5
-pkgver=5.0.17
-pkgrel=2
+pkgver=5.0.18
+pkgrel=1
 pkgdesc="Next generation of fcitx"
 arch=('x86_64')
 url="https://github.com/fcitx/fcitx5;
@@ -15,7 +15,7 @@
  'unicode-cldr-annotations')
 makedepends=('extra-cmake-modules' 'ninja')
 
source=("https://download.fcitx-im.org/fcitx5/fcitx5/fcitx5-${pkgver}_dict.tar.xz"{,.sig})
-sha512sums=('23c112e35c633cd60050f62a169bc51587c95911f28ae08a5446de8569393341020b470e3cadc692c62228bec2f047e0abd6461a30ddadd2ad5fdb0b9176b616'
+sha512sums=('a03cd2b8c556fe26470869a624061cc33ac7c6f19be0ba7e01b17c3e7866dee07dc7fed95b2376d670193ed67258abfba8914279ad23507b55312fd48a486be0'
 'SKIP')
 validpgpkeys=('2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9') # Weng Xuetian 

 

Added: keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
===
(Binary files differ)

Index: fcitx5/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
===
--- keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc   2022-07-03 
23:23:03 UTC (rev 1243858)
+++ keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc   2022-07-04 
00:01:16 UTC (rev 1243859)

Property changes on: 
fcitx5/trunk/keys/pgp/2CC8A0609AD2A479C65B6D5C8E8B898CBF2412F9.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


[arch-commits] Commit in bash-language-server/repos/community-x86_64 (2 files)

2022-07-03 Thread Daniel M. Capella via arch-commits
Date: Sunday, July 3, 2022 @ 23:23:03
  Author: polyzen
Revision: 1243858

archrelease: copy trunk to community-x86_64

Added:
  bash-language-server/repos/community-x86_64/PKGBUILD
(from rev 1243857, bash-language-server/trunk/PKGBUILD)
Deleted:
  bash-language-server/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 23:22:38 UTC (rev 1243857)
+++ PKGBUILD2022-07-03 23:23:03 UTC (rev 1243858)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Maintainer: Daniel M. Capella 
-
-pkgname=bash-language-server
-pkgver=3.0.3
-pkgrel=1
-pkgdesc="Bash language server implementation based on Tree Sitter and its 
grammar for Bash"
-arch=("x86_64")
-url="https://github.com/bash-lsp/$pkgname;
-license=("MIT")
-depends=("nodejs")
-makedepends=("yarn" "typescript" "git")
-optdepends=('bash-completion: for CLI args completion'
-'shellcheck: to enable linting')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/server-$pkgver.tar.gz")
-sha512sums=('edcf168f10e4a7add68fdcc3b859f13cd28a2be2a77fc27352a67e41bca4fdfd53055278b02bcd17d1a6a31f8bca7248c97455487cfb781f46dcd708fcbe6076')
-
-build() {
-cd "$pkgname-server-$pkgver"
-yarn
-yarn run compile
-}
-
-package() {
-install -d "$pkgdir/usr/lib/$pkgname"
-cd "$pkgdir/usr/lib/$pkgname"
-cp -a "$srcdir/$pkgname-server-$pkgver/server/"* .
-install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname/" 
"$srcdir/$pkgname-server-$pkgver/LICENSE"
-
-install -d "$pkgdir/usr/bin"
-ln -s "/usr/lib/$pkgname/bin/main.js" "$pkgdir/usr/bin/$pkgname"
-}

Copied: bash-language-server/repos/community-x86_64/PKGBUILD (from rev 1243857, 
bash-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 23:23:03 UTC (rev 1243858)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Maintainer: Daniel M. Capella 
+
+pkgname=bash-language-server
+pkgver=3.0.5
+pkgrel=1
+pkgdesc="Bash language server implementation based on Tree Sitter and its 
grammar for Bash"
+arch=("x86_64")
+url="https://github.com/bash-lsp/$pkgname;
+license=("MIT")
+depends=("nodejs")
+makedepends=("yarn" "typescript" "git")
+optdepends=('bash-completion: for CLI args completion'
+'shellcheck: to enable linting')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/server-$pkgver.tar.gz")
+sha512sums=('fc0a92b905efcec22f4a7c7ee2f1318d56b2392851b67451d084ac784363c16cbef19fd17ffd5f54fb11d254a99f7ca3e62ff73ae98cb15d37b6b17325ed')
+
+build() {
+cd "$pkgname-server-$pkgver"
+yarn
+yarn run compile
+}
+
+package() {
+install -d "$pkgdir/usr/lib/$pkgname"
+cd "$pkgdir/usr/lib/$pkgname"
+cp -a "$srcdir/$pkgname-server-$pkgver/server/"* .
+install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname/" 
"$srcdir/$pkgname-server-$pkgver/LICENSE"
+
+install -d "$pkgdir/usr/bin"
+ln -s "/usr/lib/$pkgname/bin/main.js" "$pkgdir/usr/bin/$pkgname"
+}



[arch-commits] Commit in bash-language-server/trunk (PKGBUILD)

2022-07-03 Thread Daniel M. Capella via arch-commits
Date: Sunday, July 3, 2022 @ 23:22:38
  Author: polyzen
Revision: 1243857

upgpkg: bash-language-server 3.0.5-1

Modified:
  bash-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 20:53:49 UTC (rev 1243856)
+++ PKGBUILD2022-07-03 23:22:38 UTC (rev 1243857)
@@ -3,7 +3,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=bash-language-server
-pkgver=3.0.3
+pkgver=3.0.5
 pkgrel=1
 pkgdesc="Bash language server implementation based on Tree Sitter and its 
grammar for Bash"
 arch=("x86_64")
@@ -14,7 +14,7 @@
 optdepends=('bash-completion: for CLI args completion'
 'shellcheck: to enable linting')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/server-$pkgver.tar.gz")
-sha512sums=('edcf168f10e4a7add68fdcc3b859f13cd28a2be2a77fc27352a67e41bca4fdfd53055278b02bcd17d1a6a31f8bca7248c97455487cfb781f46dcd708fcbe6076')
+sha512sums=('fc0a92b905efcec22f4a7c7ee2f1318d56b2392851b67451d084ac784363c16cbef19fd17ffd5f54fb11d254a99f7ca3e62ff73ae98cb15d37b6b17325ed')
 
 build() {
 cd "$pkgname-server-$pkgver"



[arch-commits] Commit in warpinator/repos/community-any (PKGBUILD PKGBUILD)

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:31:43
  Author: arojas
Revision: 1243855

archrelease: copy trunk to community-any

Added:
  warpinator/repos/community-any/PKGBUILD
(from rev 1243854, warpinator/trunk/PKGBUILD)
Deleted:
  warpinator/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 20:31:33 UTC (rev 1243854)
+++ PKGBUILD2022-07-03 20:31:43 UTC (rev 1243855)
@@ -1,37 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Sam Burgos 
-# Contributor: Kyle Laker 
-
-pkgname=warpinator
-pkgver=1.2.10
-pkgrel=1
-pkgdesc='LAN file sender, send and receive files across the network'
-arch=('any')
-url='https://github.com/linuxmint/warpinator'
-license=('GPL3')
-depends=('gtk3' 'libnm' 'python-cryptography' 'python-gobject' 'python-grpcio' 
'python-packaging'
- 'python-protobuf' 'python-pynacl' 'python-setproctitle' 
'python-setuptools' 'python-xapp' 'python-zeroconf'
- 'xapp')
-makedepends=('meson' 'polkit')
-optdepends=('ufw: Open a firewall port for Warpinator')
-source=("https://github.com/linuxmint/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('fcf63182af59e6cd12d117a0cdb01cea34a4b1b70be22f6430fd8e08a1ceb0e4')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Fix hardcoded libexec dir
-  sed -i 's|libexec/warpinator|lib/warpinator|' \
-bin/warpinator.in \
-data/org.x.warpinator.policy.in.in
-  sed -i 's/libexec/lib/' install-scripts/download_zeroconf.py
-}
-
-build() {
-  arch-meson $pkgname-$pkgver build -D bundle-zeroconf=false
-  meson compile -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: warpinator/repos/community-any/PKGBUILD (from rev 1243854, 
warpinator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 20:31:43 UTC (rev 1243855)
@@ -0,0 +1,37 @@
+# Maintainer: Balló György 
+# Contributor: Sam Burgos 
+# Contributor: Kyle Laker 
+
+pkgname=warpinator
+pkgver=1.2.11
+pkgrel=1
+pkgdesc='LAN file sender, send and receive files across the network'
+arch=('any')
+url='https://github.com/linuxmint/warpinator'
+license=('GPL3')
+depends=('gtk3' 'libnm' 'python-cryptography' 'python-gobject' 'python-grpcio' 
'python-packaging'
+ 'python-protobuf' 'python-pynacl' 'python-setproctitle' 
'python-setuptools' 'python-xapp' 'python-zeroconf'
+ 'xapp')
+makedepends=('meson' 'polkit')
+optdepends=('ufw: Open a firewall port for Warpinator')
+source=("https://github.com/linuxmint/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('7cdfdfd431b60c9a78dda08e269642ad4ac5ce9ec9e96b95230b37437fb15524')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix hardcoded libexec dir
+  sed -i 's|libexec/warpinator|lib/warpinator|' \
+bin/warpinator.in \
+data/org.x.warpinator.policy.in.in
+  sed -i 's/libexec/lib/' install-scripts/download_zeroconf.py
+}
+
+build() {
+  arch-meson $pkgname-$pkgver build -D bundle-zeroconf=false
+  meson compile -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}



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

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:31:33
  Author: arojas
Revision: 1243854

Update to 1.2.11

Modified:
  warpinator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 20:29:27 UTC (rev 1243853)
+++ PKGBUILD2022-07-03 20:31:33 UTC (rev 1243854)
@@ -3,7 +3,7 @@
 # Contributor: Kyle Laker 
 
 pkgname=warpinator
-pkgver=1.2.10
+pkgver=1.2.11
 pkgrel=1
 pkgdesc='LAN file sender, send and receive files across the network'
 arch=('any')
@@ -15,7 +15,7 @@
 makedepends=('meson' 'polkit')
 optdepends=('ufw: Open a firewall port for Warpinator')
 
source=("https://github.com/linuxmint/$pkgname/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('fcf63182af59e6cd12d117a0cdb01cea34a4b1b70be22f6430fd8e08a1ceb0e4')
+sha256sums=('7cdfdfd431b60c9a78dda08e269642ad4ac5ce9ec9e96b95230b37437fb15524')
 
 prepare() {
   cd $pkgname-$pkgver



[arch-commits] Commit in python-pyocr/repos/community-any (PKGBUILD PKGBUILD)

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:29:27
  Author: arojas
Revision: 1243853

archrelease: copy trunk to community-any

Added:
  python-pyocr/repos/community-any/PKGBUILD
(from rev 1243852, python-pyocr/trunk/PKGBUILD)
Deleted:
  python-pyocr/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 20:29:14 UTC (rev 1243852)
+++ PKGBUILD2022-07-03 20:29:27 UTC (rev 1243853)
@@ -1,36 +0,0 @@
-# Maintainer: Balló György 
-
-_pkgname=pyocr
-pkgname=python-pyocr
-pkgver=0.8
-pkgrel=3
-pkgdesc='Python wrapper for Tesseract and Cuneiform'
-arch=('any')
-url='https://gitlab.gnome.org/World/OpenPaperwork/pyocr'
-license=('GPL3')
-depends=('python-pillow' 'python-six')
-makedepends=('git' 'python-setuptools-scm')
-optdepends=('cuneiform: OCR backend'
-'tesseract: OCR backend')
-_commit=f9f93bbd83ab5814b1c56c3ffe41addc9ec622dc
-source=("git+https://gitlab.gnome.org/World/OpenPaperwork/pyocr.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $_pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  sed -e '/setuptools_scm_git_archive/d' -i $_pkgname/setup.py # Remove unused 
makedepends
-}
-
-build() {
-  cd $_pkgname
-  python setup.py build
-}
-
-package() {
-  cd $_pkgname
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-pyocr/repos/community-any/PKGBUILD (from rev 1243852, 
python-pyocr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 20:29:27 UTC (rev 1243853)
@@ -0,0 +1,38 @@
+# Maintainer: Balló György 
+
+_pkgname=pyocr
+pkgname=python-pyocr
+pkgver=0.8.3
+pkgrel=1
+pkgdesc='Python wrapper for Tesseract and Cuneiform'
+arch=('any')
+url='https://gitlab.gnome.org/World/OpenPaperwork/pyocr'
+license=('GPL3')
+depends=('python-pillow' 'python-six')
+makedepends=('git' 'python-setuptools-scm')
+optdepends=('cuneiform: OCR backend'
+'tesseract: OCR backend')
+_commit=920b07154e1240efbd16e5b0bfd5fe2b57ac8334
+source=("git+https://gitlab.gnome.org/World/OpenPaperwork/pyocr.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $_pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $_pkgname
+  git revert -n c11aa77bea433f0a6f75d077bd7871a7fc0c54c1 # Remove version 
constraint
+  sed -e '/setuptools_scm_git_archive/d' -i setup.py # Remove unused 
makedepends
+}
+
+build() {
+  cd $_pkgname
+  python setup.py build
+}
+
+package() {
+  cd $_pkgname
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



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

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:29:14
  Author: arojas
Revision: 1243852

Update to 0.8.3

Modified:
  python-pyocr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 20:24:24 UTC (rev 1243851)
+++ PKGBUILD2022-07-03 20:29:14 UTC (rev 1243852)
@@ -2,8 +2,8 @@
 
 _pkgname=pyocr
 pkgname=python-pyocr
-pkgver=0.8
-pkgrel=3
+pkgver=0.8.3
+pkgrel=1
 pkgdesc='Python wrapper for Tesseract and Cuneiform'
 arch=('any')
 url='https://gitlab.gnome.org/World/OpenPaperwork/pyocr'
@@ -12,7 +12,7 @@
 makedepends=('git' 'python-setuptools-scm')
 optdepends=('cuneiform: OCR backend'
 'tesseract: OCR backend')
-_commit=f9f93bbd83ab5814b1c56c3ffe41addc9ec622dc
+_commit=920b07154e1240efbd16e5b0bfd5fe2b57ac8334
 
source=("git+https://gitlab.gnome.org/World/OpenPaperwork/pyocr.git#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -22,7 +22,9 @@
 }
 
 prepare() {
-  sed -e '/setuptools_scm_git_archive/d' -i $_pkgname/setup.py # Remove unused 
makedepends
+  cd $_pkgname
+  git revert -n c11aa77bea433f0a6f75d077bd7871a7fc0c54c1 # Remove version 
constraint
+  sed -e '/setuptools_scm_git_archive/d' -i setup.py # Remove unused 
makedepends
 }
 
 build() {



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

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:24:24
  Author: arojas
Revision: 1243851

archrelease: copy trunk to community-x86_64

Added:
  pitivi/repos/community-x86_64/PKGBUILD
(from rev 1243850, pitivi/trunk/PKGBUILD)
Deleted:
  pitivi/repos/community-x86_64/PKGBUILD
  pitivi/repos/community-x86_64/python310.patch

-+
 PKGBUILD|   79 ++
 python310.patch |   44 --
 2 files changed, 33 insertions(+), 90 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 20:24:13 UTC (rev 1243850)
+++ PKGBUILD2022-07-03 20:24:24 UTC (rev 1243851)
@@ -1,46 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Sergej Pupykin 
-# Contributor: Abhishek Dasgupta 
-# Contributor: Gabor Nyekhelyi (n0gabor) 
-
-pkgname=pitivi
-pkgver=2021.05
-pkgrel=4
-pkgdesc='Editor for audio/video projects using the GStreamer framework'
-arch=('x86_64')
-url='http://pitivi.org/'
-license=('LGPL')
-depends=('gsound' 'gst-editing-services' 'gst-plugin-gtk' 'gst-plugins-bad' 
'gst-plugins-good' 'gst-python'
- 'gtk3' 'libnotify' 'libpeas' 'python-cairo' 'python-gobject' 
'python-matplotlib' 'python-numpy')
-makedepends=('appstream-glib' 'intltool' 'itstool' 'meson')
-optdepends=('frei0r-plugins: additional video effects, clip transformation 
feature'
-'gst-libav: additional multimedia codecs'
-'gst-plugins-ugly: additional multimedia codecs')
-source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;
-
$pkgname-meson-0.61.patch::https://gitlab.gnome.org/GNOME/pitivi/-/commit/ddf2369d1fc6.patch
-
$pkgname-add-icons-removed-from-adwaita.patch::https://gitlab.gnome.org/GNOME/pitivi/-/commit/ac64d971fd47.patch
-python310.patch)
-sha256sums=('cf5693c46c42ab0da14a2e59bfcf4bc880604b41e9cd3aa8d2ebdc60827b75c7'
-'bbf4d3c329572f8e4e2c735bd9514c5bd9c2ee2df3aadece3f1a85b4d214e8fd'
-'af822fccf021241fc68762acb8d90fb8298cca5c9af78185dfe9c6ccad49e477'
-'bebb9d3308a1ff5f1bd47cbab23b534e72b41b59f7366fa6333999aad0d2ab7f')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../$pkgname-meson-0.61.patch
-  patch -Np1 --no-backup-if-mismatch -i 
../$pkgname-add-icons-removed-from-adwaita.patch
-  patch -Np1 --no-backup-if-mismatch -i ../python310.patch
-}
-
-build() {
-  arch-meson $pkgname-$pkgver build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: pitivi/repos/community-x86_64/PKGBUILD (from rev 1243850, 
pitivi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 20:24:24 UTC (rev 1243851)
@@ -0,0 +1,33 @@
+# Maintainer: Balló György 
+# Contributor: Sergej Pupykin 
+# Contributor: Abhishek Dasgupta 
+# Contributor: Gabor Nyekhelyi (n0gabor) 
+
+pkgname=pitivi
+pkgver=2022.06
+pkgrel=1
+pkgdesc='Editor for audio/video projects using the GStreamer framework'
+arch=('x86_64')
+url='http://pitivi.org/'
+license=('LGPL')
+depends=('gsound' 'gst-editing-services' 'gst-plugin-gtk' 'gst-plugins-bad' 
'gst-plugins-good' 'gst-python'
+ 'gtk3' 'libnotify' 'libpeas' 'python-cairo' 'python-gobject' 
'python-matplotlib' 'python-numpy')
+makedepends=('appstream-glib' 'intltool' 'itstool' 'meson')
+optdepends=('frei0r-plugins: additional video effects, clip transformation 
feature'
+'gst-libav: additional multimedia codecs'
+'gst-plugins-ugly: additional multimedia codecs')
+source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
+sha256sums=('533d38e3c6d211c2bd0e95e2b96b0f0833bdf0d5d477ace07df611583506c838')
+
+build() {
+  arch-meson $pkgname-$pkgver build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}

Deleted: python310.patch
===
--- python310.patch 2022-07-03 20:24:13 UTC (rev 1243850)
+++ python310.patch 2022-07-03 20:24:24 UTC (rev 1243851)
@@ -1,44 +0,0 @@
-From 4391235c1c1705504dfacfa2585c90e130f9e98c Mon Sep 17 00:00:00 2001
-From: Gwyn Ciesla 
-Date: Mon, 6 Sep 2021 06:32:00 +
-Subject: [PATCH] utils: Update collections import
-
-Fixes #2571

- pitivi/utils/loggable.py | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/pitivi/utils/loggable.py b/pitivi/utils/loggable.py
-index b002665ea..20048d241 100644
 a/pitivi/utils/loggable.py
-+++ b/pitivi/utils/loggable.py
-@@ -14,7 +14,7 @@
- #
- # You should have received a copy of the GNU Lesser General Public
- # License along with this program; if not, see .
--import collections
-+import collections.abc
- 

[arch-commits] Commit in pitivi/trunk (PKGBUILD python310.patch)

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:24:13
  Author: arojas
Revision: 1243850

Update to 22.06

Modified:
  pitivi/trunk/PKGBUILD
Deleted:
  pitivi/trunk/python310.patch

-+
 PKGBUILD|   21 -
 python310.patch |   44 
 2 files changed, 4 insertions(+), 61 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 20:19:49 UTC (rev 1243849)
+++ PKGBUILD2022-07-03 20:24:13 UTC (rev 1243850)
@@ -4,8 +4,8 @@
 # Contributor: Gabor Nyekhelyi (n0gabor) 
 
 pkgname=pitivi
-pkgver=2021.05
-pkgrel=4
+pkgver=2022.06
+pkgrel=1
 pkgdesc='Editor for audio/video projects using the GStreamer framework'
 arch=('x86_64')
 url='http://pitivi.org/'
@@ -16,22 +16,9 @@
 optdepends=('frei0r-plugins: additional video effects, clip transformation 
feature'
 'gst-libav: additional multimedia codecs'
 'gst-plugins-ugly: additional multimedia codecs')
-source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;
-
$pkgname-meson-0.61.patch::https://gitlab.gnome.org/GNOME/pitivi/-/commit/ddf2369d1fc6.patch
-
$pkgname-add-icons-removed-from-adwaita.patch::https://gitlab.gnome.org/GNOME/pitivi/-/commit/ac64d971fd47.patch
-python310.patch)
-sha256sums=('cf5693c46c42ab0da14a2e59bfcf4bc880604b41e9cd3aa8d2ebdc60827b75c7'
-'bbf4d3c329572f8e4e2c735bd9514c5bd9c2ee2df3aadece3f1a85b4d214e8fd'
-'af822fccf021241fc68762acb8d90fb8298cca5c9af78185dfe9c6ccad49e477'
-'bebb9d3308a1ff5f1bd47cbab23b534e72b41b59f7366fa6333999aad0d2ab7f')
+source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
+sha256sums=('533d38e3c6d211c2bd0e95e2b96b0f0833bdf0d5d477ace07df611583506c838')
 
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../$pkgname-meson-0.61.patch
-  patch -Np1 --no-backup-if-mismatch -i 
../$pkgname-add-icons-removed-from-adwaita.patch
-  patch -Np1 --no-backup-if-mismatch -i ../python310.patch
-}
-
 build() {
   arch-meson $pkgname-$pkgver build
   meson compile -C build

Deleted: python310.patch
===
--- python310.patch 2022-07-03 20:19:49 UTC (rev 1243849)
+++ python310.patch 2022-07-03 20:24:13 UTC (rev 1243850)
@@ -1,44 +0,0 @@
-From 4391235c1c1705504dfacfa2585c90e130f9e98c Mon Sep 17 00:00:00 2001
-From: Gwyn Ciesla 
-Date: Mon, 6 Sep 2021 06:32:00 +
-Subject: [PATCH] utils: Update collections import
-
-Fixes #2571

- pitivi/utils/loggable.py | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/pitivi/utils/loggable.py b/pitivi/utils/loggable.py
-index b002665ea..20048d241 100644
 a/pitivi/utils/loggable.py
-+++ b/pitivi/utils/loggable.py
-@@ -14,7 +14,7 @@
- #
- # You should have received a copy of the GNU Lesser General Public
- # License along with this program; if not, see .
--import collections
-+import collections.abc
- import errno
- import fnmatch
- import os
-@@ -714,7 +714,7 @@ def add_log_handler(func):
- Raises:
- TypeError: When func is not a callable.
- """
--if not isinstance(func, collections.Callable):
-+if not isinstance(func, collections.abc.Callable):
- raise TypeError("func must be callable")
- 
- if func not in _log_handlers:
-@@ -736,7 +736,7 @@ def add_limited_log_handler(func):
- Raises:
- TypeError: When func is not a callable.
- """
--if not isinstance(func, collections.Callable):
-+if not isinstance(func, collections.abc.Callable):
- raise TypeError("func must be callable")
- 
- if func not in _log_handlers_limited:
--- 
-GitLab
-



[arch-commits] Commit in python-pykeepass/repos/community-any (PKGBUILD PKGBUILD)

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:19:49
  Author: arojas
Revision: 1243849

archrelease: copy trunk to community-any

Added:
  python-pykeepass/repos/community-any/PKGBUILD
(from rev 1243848, python-pykeepass/trunk/PKGBUILD)
Deleted:
  python-pykeepass/repos/community-any/PKGBUILD

--+
 PKGBUILD |   48 
 1 file changed, 24 insertions(+), 24 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 20:19:39 UTC (rev 1243848)
+++ PKGBUILD2022-07-03 20:19:49 UTC (rev 1243849)
@@ -1,24 +0,0 @@
-# Maintainer: Balló György 
-
-_pkgname=pykeepass
-pkgname=python-pykeepass
-pkgver=4.0.2
-pkgrel=1
-pkgdesc="Python library to interact with keepass databases"
-arch=('any')
-url="https://github.com/libkeepass/pykeepass;
-license=('GPL3')
-depends=(python-argon2_cffi python-construct python-dateutil python-future 
python-lxml python-pycryptodomex)
-makedepends=(python-setuptools)
-source=("https://github.com/libkeepass/$_pkgname/archive/v$pkgver/$_pkgname-$pkgver.tar.gz;)
-md5sums=('f4f261476d8d282b57c0a52d065db9a6')
-
-build() {
-  cd $_pkgname-$pkgver
-  python3 setup.py build
-}
-
-package() {
-  cd $_pkgname-$pkgver
-  python3 setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-pykeepass/repos/community-any/PKGBUILD (from rev 1243848, 
python-pykeepass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 20:19:49 UTC (rev 1243849)
@@ -0,0 +1,24 @@
+# Maintainer: Balló György 
+
+_pkgname=pykeepass
+pkgname=python-pykeepass
+pkgver=4.0.3
+pkgrel=1
+pkgdesc="Python library to interact with keepass databases"
+arch=('any')
+url="https://github.com/libkeepass/pykeepass;
+license=('GPL3')
+depends=(python-argon2_cffi python-construct python-dateutil python-future 
python-lxml python-pycryptodomex)
+makedepends=(python-setuptools)
+source=("https://github.com/libkeepass/$_pkgname/archive/v$pkgver/$_pkgname-$pkgver.tar.gz;)
+md5sums=('461acacc0b37be606aa7e916cf8fe16a')
+
+build() {
+  cd $_pkgname-$pkgver
+  python3 setup.py build
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  python3 setup.py install --root="$pkgdir" --optimize=1
+}



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

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:19:39
  Author: arojas
Revision: 1243848

Update to 4.0.3

Modified:
  python-pykeepass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 20:03:01 UTC (rev 1243847)
+++ PKGBUILD2022-07-03 20:19:39 UTC (rev 1243848)
@@ -2,7 +2,7 @@
 
 _pkgname=pykeepass
 pkgname=python-pykeepass
-pkgver=4.0.2
+pkgver=4.0.3
 pkgrel=1
 pkgdesc="Python library to interact with keepass databases"
 arch=('any')
@@ -11,7 +11,7 @@
 depends=(python-argon2_cffi python-construct python-dateutil python-future 
python-lxml python-pycryptodomex)
 makedepends=(python-setuptools)
 
source=("https://github.com/libkeepass/$_pkgname/archive/v$pkgver/$_pkgname-$pkgver.tar.gz;)
-md5sums=('f4f261476d8d282b57c0a52d065db9a6')
+md5sums=('461acacc0b37be606aa7e916cf8fe16a')
 
 build() {
   cd $_pkgname-$pkgver



[arch-commits] Commit in python-numpy/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:13:45
  Author: arojas
Revision: 449851

archrelease: copy trunk to testing-x86_64

Added:
  python-numpy/repos/testing-x86_64/
  python-numpy/repos/testing-x86_64/PKGBUILD
(from rev 449850, python-numpy/trunk/PKGBUILD)

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

Copied: python-numpy/repos/testing-x86_64/PKGBUILD (from rev 449850, 
python-numpy/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-07-03 20:13:45 UTC (rev 449851)
@@ -0,0 +1,38 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Felix Yan 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Angel 'angvp' Velasquez  
+
+pkgname=python-numpy
+pkgver=1.23.0
+pkgrel=1
+pkgdesc="Scientific tools for Python"
+arch=('x86_64')
+license=('custom')
+url="https://www.numpy.org/;
+depends=('cblas' 'lapack' 'python')
+optdepends=('openblas: faster linear algebra')
+makedepends=('python-setuptools' 'gcc-fortran' 'cython')
+checkdepends=('python-pytest' 'python-hypothesis')
+options=('staticlibs')
+source=("https://github.com/numpy/numpy/releases/download/v$pkgver/numpy-$pkgver.tar.gz;)
+sha512sums=('899d0ca062b676b64de0da204339694dcb7e52f257625e971f9a8ad7267206a6ad2924353e4dd1e153b4a64ae318380899c9e1ee7a6f53fdeba4c19b34917583')
+
+build() {
+  cd numpy-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd numpy-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  cd "$PWD/tmp_install"
+  PATH="$PWD/usr/bin:$PATH" 
PYTHONPATH="$PWD/usr/lib/python3.10/site-packages:$PYTHONPATH" python -c 
'import numpy; numpy.test()'
+}
+
+package() {
+  cd numpy-$pkgver
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  install -D -m644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/python-numpy/
+}



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

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:13:32
  Author: arojas
Revision: 449850

Update to 1.23.0

Modified:
  python-numpy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 20:04:54 UTC (rev 449849)
+++ PKGBUILD2022-07-03 20:13:32 UTC (rev 449850)
@@ -4,7 +4,7 @@
 # Contributor: Angel 'angvp' Velasquez  
 
 pkgname=python-numpy
-pkgver=1.22.4
+pkgver=1.23.0
 pkgrel=1
 pkgdesc="Scientific tools for Python"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 checkdepends=('python-pytest' 'python-hypothesis')
 options=('staticlibs')
 
source=("https://github.com/numpy/numpy/releases/download/v$pkgver/numpy-$pkgver.tar.gz;)
-sha512sums=('4415c6a96af625fcc7fe5395b1441c389fbe4a9b97b18e87ffa063609245f4b352e0b623f96bbacd3d0939fdc86fd79009bf09b1ee0004c13e3d05af298d8f10')
+sha512sums=('899d0ca062b676b64de0da204339694dcb7e52f257625e971f9a8ad7267206a6ad2924353e4dd1e153b4a64ae318380899c9e1ee7a6f53fdeba4c19b34917583')
 
 build() {
   cd numpy-$pkgver



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

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:04:54
  Author: arojas
Revision: 449849

archrelease: copy trunk to extra-x86_64

Added:
  libdmtx/repos/extra-x86_64/PKGBUILD
(from rev 449848, libdmtx/trunk/PKGBUILD)
Deleted:
  libdmtx/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 20:04:43 UTC (rev 449848)
+++ PKGBUILD2022-07-03 20:04:54 UTC (rev 449849)
@@ -1,26 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: jose 
-
-pkgname=libdmtx
-pkgver=0.7.5
-pkgrel=2
-pkgdesc="A software for reading and writing Data Matrix 2D barcodes"
-url="https://libdmtx.sourceforge.net/;
-arch=(x86_64)
-license=(GPL2)
-depends=(glibc)
-source=("https://github.com/dmtx/libdmtx/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('be0c5275695a732a5f434ded1fcc232aa63b1a6015c00044fe87f3a689b75f2e')
-
-build() {
-  cd $pkgname-$pkgver
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libdmtx/repos/extra-x86_64/PKGBUILD (from rev 449848, 
libdmtx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 20:04:54 UTC (rev 449849)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: jose 
+
+pkgname=libdmtx
+pkgver=0.7.7
+pkgrel=1
+pkgdesc="A software for reading and writing Data Matrix 2D barcodes"
+url="https://libdmtx.sourceforge.net/;
+arch=(x86_64)
+license=(GPL2)
+depends=(glibc)
+source=("https://github.com/dmtx/libdmtx/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('7aa62adcefdd6e24bdabeb82b3ce41a8d35f4a0c95ab0c4438206aecafd6e1a1')
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:04:43
  Author: arojas
Revision: 449848

Update to 0.7.7

Modified:
  libdmtx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 19:50:48 UTC (rev 449847)
+++ PKGBUILD2022-07-03 20:04:43 UTC (rev 449848)
@@ -3,8 +3,8 @@
 # Contributor: jose 
 
 pkgname=libdmtx
-pkgver=0.7.5
-pkgrel=2
+pkgver=0.7.7
+pkgrel=1
 pkgdesc="A software for reading and writing Data Matrix 2D barcodes"
 url="https://libdmtx.sourceforge.net/;
 arch=(x86_64)
@@ -11,7 +11,7 @@
 license=(GPL2)
 depends=(glibc)
 
source=("https://github.com/dmtx/libdmtx/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('be0c5275695a732a5f434ded1fcc232aa63b1a6015c00044fe87f3a689b75f2e')
+sha256sums=('7aa62adcefdd6e24bdabeb82b3ce41a8d35f4a0c95ab0c4438206aecafd6e1a1')
 
 build() {
   cd $pkgname-$pkgver



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

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:03:01
  Author: arojas
Revision: 1243847

archrelease: copy trunk to community-x86_64

Added:
  giac/repos/community-x86_64/PKGBUILD
(from rev 1243846, giac/trunk/PKGBUILD)
  giac/repos/community-x86_64/giac-test-pari-2.11.patch
(from rev 1243846, giac/trunk/giac-test-pari-2.11.patch)
Deleted:
  giac/repos/community-x86_64/PKGBUILD
  giac/repos/community-x86_64/giac-test-pari-2.11.patch

---+
 PKGBUILD  |   84 ++--
 giac-test-pari-2.11.patch |   34 -
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 20:02:48 UTC (rev 1243846)
+++ PKGBUILD2022-07-03 20:03:01 UTC (rev 1243847)
@@ -1,42 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=giac
-_pkgver=1.9.0-11
-pkgver=${_pkgver//-/.}
-pkgrel=1
-pkgdesc='A free computer algebra system'
-arch=(x86_64)
-url='http://www-fourier.ujf-grenoble.fr/~parisse/giac.html'
-license=(GPL3)
-depends=(fltk mpfi gsl pari ntl lapack curl glpk libao gmp-ecm libsamplerate)
-makedepends=(python libjpeg texlive-core texlive-science hevea nauty)
-optdepends=('perl: for pgiac')
-replaces=(libgiac xcas)
-provides=(libgiac xcas)
-source=(http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgname}_$_pkgver.tar.gz
-giac-test-pari-2.11.patch)
-sha256sums=('94d8b3255e1d53fc538e8b8deabe50ddad4d7819553908a8b54d9d0e04eca27f'
-'c5f091986f0a0807fc1ae5a3b7454132816e9bc3ed64411f0a7bdf90a8c8e624')
-
-prepare() {
-  cd $pkgname-${pkgver%.*}
-  patch -p1 < ../giac-test-pari-2.11.patch # Fix tests with pari 2.11
-}
-
-build() {
-  cd $pkgname-${pkgver%.*}
-  CXXFLAGS+=" -Wp,-U_GLIBCXX_ASSERTIONS" # Fix crashes
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-${pkgver%.*}
-
-  make check
-}
-
-package() {
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-}

Copied: giac/repos/community-x86_64/PKGBUILD (from rev 1243846, 
giac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 20:03:01 UTC (rev 1243847)
@@ -0,0 +1,42 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=giac
+_pkgver=1.9.0-13
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc='A free computer algebra system'
+arch=(x86_64)
+url='http://www-fourier.ujf-grenoble.fr/~parisse/giac.html'
+license=(GPL3)
+depends=(fltk mpfi gsl pari ntl lapack curl glpk libao gmp-ecm libsamplerate)
+makedepends=(python libjpeg texlive-core texlive-science hevea nauty)
+optdepends=('perl: for pgiac')
+replaces=(libgiac xcas)
+provides=(libgiac xcas)
+source=(http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgname}_$_pkgver.tar.gz
+giac-test-pari-2.11.patch)
+sha256sums=('50ad4b3566bcb2d4234e6733fe606c61887891358f6690e1875b39731ffad5ab'
+'c5f091986f0a0807fc1ae5a3b7454132816e9bc3ed64411f0a7bdf90a8c8e624')
+
+prepare() {
+  cd $pkgname-${pkgver%.*}
+  patch -p1 < ../giac-test-pari-2.11.patch # Fix tests with pari 2.11
+}
+
+build() {
+  cd $pkgname-${pkgver%.*}
+  CXXFLAGS+=" -Wp,-U_GLIBCXX_ASSERTIONS" # Fix crashes
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-${pkgver%.*}
+
+  make check
+}
+
+package() {
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+}

Deleted: giac-test-pari-2.11.patch
===
--- giac-test-pari-2.11.patch   2022-07-03 20:02:48 UTC (rev 1243846)
+++ giac-test-pari-2.11.patch   2022-07-03 20:03:01 UTC (rev 1243847)
@@ -1,17 +0,0 @@
-Change test output for PARI 2.11
-
-See https://trac.sagemath.org/ticket/25567
-and https://xcas.univ-grenoble-alpes.fr/forum/viewtopic.php?f=4=2102
-
-diff -ru a/check/TP11-sol.cas.out1 b/check/TP11-sol.cas.out1
 a/check/TP11-sol.cas.out1  2014-10-21 10:51:48.0 +0200
-+++ b/check/TP11-sol.cas.out1  2018-08-07 17:04:12.528052773 +0200
-@@ -10,7 +10,7 @@
- 107374182400061203284109008409,
- 2^3*3*389*733*156904374622257604823879982847602392900751802349981470895277241,
- "Done",
--matrix[[2,7,1],[3,2,1],[389,2,1],[733,2,1],[156904374622257604823879982847602392900751802349981470895277241,2,matrix[[2,13,1],[3,3,1],[5,2,1],[7,2,1],[56467,2,1],[6553084925887974620811527,2,matrix[[2,5,1],[19,2,1],[71,2,1],[126823,2,1]],
-+1,
- 0,
- [],
- 1,

Copied: giac/repos/community-x86_64/giac-test-pari-2.11.patch (from rev 
1243846, giac/trunk/giac-test-pari-2.11.patch)
===
--- giac-test-pari-2.11.patch   (rev 0)
+++ giac-test-pari-2.11.patch   2022-07-03 20:03:01 UTC (rev 1243847)
@@ -0,0 +1,17 @@
+Change test output for PARI 2.11
+
+See https://trac.sagemath.org/ticket/25567
+and 

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

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 20:02:48
  Author: arojas
Revision: 1243846

Update to 1.9.0.13

Modified:
  giac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 19:50:30 UTC (rev 1243845)
+++ PKGBUILD2022-07-03 20:02:48 UTC (rev 1243846)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=giac
-_pkgver=1.9.0-11
+_pkgver=1.9.0-13
 pkgver=${_pkgver//-/.}
 pkgrel=1
 pkgdesc='A free computer algebra system'
@@ -15,7 +15,7 @@
 provides=(libgiac xcas)
 
source=(http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgname}_$_pkgver.tar.gz
 giac-test-pari-2.11.patch)
-sha256sums=('94d8b3255e1d53fc538e8b8deabe50ddad4d7819553908a8b54d9d0e04eca27f'
+sha256sums=('50ad4b3566bcb2d4234e6733fe606c61887891358f6690e1875b39731ffad5ab'
 'c5f091986f0a0807fc1ae5a3b7454132816e9bc3ed64411f0a7bdf90a8c8e624')
 
 prepare() {



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

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:50:48
  Author: heftig
Revision: 449847

archrelease: copy trunk to extra-x86_64

Added:
  gnome-shell/repos/extra-x86_64/PKGBUILD
(from rev 449844, gnome-shell/trunk/PKGBUILD)
Deleted:
  gnome-shell/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  140 ++---
 1 file changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 19:50:47 UTC (rev 449846)
+++ PKGBUILD2022-07-03 19:50:48 UTC (rev 449847)
@@ -1,70 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Flamelab https://wiki.gnome.org/Projects/GnomeShell;
-arch=(x86_64)
-license=(GPL)
-depends=(accountsservice gcr gjs gnome-bluetooth-3.0 upower gnome-session gtk4
- gnome-settings-daemon gsettings-desktop-schemas libcanberra-pulse
- libgdm libsecret mutter libnma unzip libibus gnome-autoar
- gnome-disk-utility libsoup3 libgweather-4 gst-plugins-base-libs)
-makedepends=(gtk-doc gnome-control-center evolution-data-server
- gobject-introspection git meson sassc asciidoc bash-completion)
-checkdepends=(xorg-server-xvfb)
-optdepends=('gnome-control-center: System settings'
-'evolution-data-server: Evolution calendar integration'
-'gst-plugins-good: Screen recording'
-'gst-plugin-pipewire: Screen recording')
-groups=(gnome)
-options=(debug)
-_commit=c6a0f4ae7f05511db2a91174885041fb793f2422  # tags/42.2^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd gnome-shell
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd gnome-shell
-
-  git submodule init
-  git submodule set-url subprojects/gvc "$srcdir/libgnome-volume-control"
-  git submodule update
-}
-
-build() {
-  CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
-  LDFLAGS+=" -Wl,-Bsymbolic-functions"
-
-  arch-meson gnome-shell build -D gtk_doc=true
-  meson compile -C build
-}
-
-_check() (
-  mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
-  export XDG_RUNTIME_DIR
-
-  meson test -C build --print-errorlogs
-)
-
-check() {
-  dbus-run-session xvfb-run -s '-nolisten local +iglx -noreset' \
-bash -c "$(declare -f _check); _check"
-}
-
-package() {
-  depends+=(libmutter-10.so)
-  meson install -C build --destdir "$pkgdir"
-}
-
-# vim:set sw=2 et:

Copied: gnome-shell/repos/extra-x86_64/PKGBUILD (from rev 449844, 
gnome-shell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 19:50:48 UTC (rev 449847)
@@ -0,0 +1,70 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Flamelab https://wiki.gnome.org/Projects/GnomeShell;
+arch=(x86_64)
+license=(GPL)
+depends=(accountsservice gcr gjs gnome-bluetooth-3.0 upower gnome-session gtk4
+ gnome-settings-daemon gsettings-desktop-schemas libcanberra-pulse
+ libgdm libsecret mutter libnma unzip libibus gnome-autoar
+ gnome-disk-utility libsoup3 libgweather-4 gst-plugins-base-libs)
+makedepends=(gtk-doc gnome-control-center evolution-data-server
+ gobject-introspection git meson sassc asciidoc bash-completion)
+checkdepends=(xorg-server-xvfb)
+optdepends=('gnome-control-center: System settings'
+'evolution-data-server: Evolution calendar integration'
+'gst-plugins-good: Screen recording'
+'gst-plugin-pipewire: Screen recording')
+groups=(gnome)
+options=(debug)
+_commit=ad1970146066b10a0193fc151b991cc8b2bdfcf8  # tags/42.3^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd gnome-shell
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd gnome-shell
+
+  git submodule init
+  git submodule set-url subprojects/gvc "$srcdir/libgnome-volume-control"
+  git submodule update
+}
+
+build() {
+  CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
+  LDFLAGS+=" -Wl,-Bsymbolic-functions"
+
+  arch-meson gnome-shell build -D gtk_doc=true
+  meson compile -C build
+}
+
+_check() (
+  mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
+  export XDG_RUNTIME_DIR
+
+  meson test -C build --print-errorlogs
+)
+
+check() {
+  dbus-run-session xvfb-run -s '-nolisten local +iglx -noreset' \
+bash -c "$(declare -f _check); _check"
+}
+
+package() {
+  depends+=(libmutter-10.so)
+  meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set sw=2 et:



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

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:50:47
  Author: heftig
Revision: 449846

archrelease: copy trunk to extra-x86_64

Added:
  sof-bin/repos/extra-x86_64/PKGBUILD
(from rev 449844, sof-bin/trunk/PKGBUILD)
Deleted:
  sof-bin/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 19:50:47 UTC (rev 449845)
+++ PKGBUILD2022-07-03 19:50:47 UTC (rev 449846)
@@ -1,50 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=sof-bin
-pkgname=(sof-firmware sof-tools)
-pkgver=2.1.1.a
-pkgrel=1
-pkgdesc="Sound Open Firmware"
-url="https://www.sofproject.org/;
-arch=(x86_64)
-license=(custom:BSD custom:ISC)
-makedepends=(rsync)
-_binver=v${pkgver%.a}
-_tplgver=v${pkgver/%.a/a}
-source=(https://github.com/thesofproject/sof-bin/releases/download/$_binver/sof-bin-$_binver.tar.gz
 
-
https://github.com/thesofproject/sof-bin/releases/download/$_tplgver/sof-tplg-$_tplgver.tar.gz)
-sha256sums=('adcd22ba2f2aad911fdc53c478187bc6ddb9174fa52fa43ba07f6f0cc8d12a19'
-'58839acdde407062eb388140a8500d4cfb04384aa8c4a8f2bea5a985c7ad748f')
-
-prepare() {
-  cp -at sof-bin-$_binver/sof-tplg-$_binver sof-tplg-$_tplgver/*
-}
-
-package_sof-firmware() {
-  options=(!strip)
-
-  cd sof-bin-$_binver
-
-  (
-export FW_DEST="$pkgdir/usr/lib/firmware/intel"
-export TOOLS_DEST="$srcdir/tools/usr/bin"
-
-mkdir -p "$FW_DEST" "$TOOLS_DEST"
-./install.sh $_binver
-  )
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENCE* Notice*
-}
-
-package_sof-tools() {
-  pkgdesc+=" - tools"
-  depends=(alsa-lib)
-
-  cd sof-bin-$_binver
-
-  mv "$srcdir"/tools/* "$pkgdir"
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENCE* Notice*
-}
-
-# vim:set sw=2 et:

Copied: sof-bin/repos/extra-x86_64/PKGBUILD (from rev 449844, 
sof-bin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 19:50:47 UTC (rev 449846)
@@ -0,0 +1,43 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgbase=sof-bin
+pkgname=(sof-firmware sof-tools)
+pkgver=2.2
+pkgrel=1
+pkgdesc="Sound Open Firmware"
+url="https://www.sofproject.org/;
+arch=(x86_64)
+license=(custom:BSD custom:ISC)
+makedepends=(rsync)
+_binver=v$pkgver
+source=(https://github.com/thesofproject/sof-bin/releases/download/$_binver/sof-bin-$_binver.tar.gz)
+sha256sums=('f0a22018aa02266e3713f1551b698847ca303859be4be8c711dd3685de55ad15')
+
+package_sof-firmware() {
+  options=(!strip)
+
+  cd sof-bin-$_binver
+
+  (
+export FW_DEST="$pkgdir/usr/lib/firmware/intel"
+export TOOLS_DEST="$srcdir/tools/usr/bin"
+
+mkdir -p "$FW_DEST" "$TOOLS_DEST"
+./install.sh $_binver
+  )
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENCE* Notice*
+}
+
+package_sof-tools() {
+  pkgdesc+=" - tools"
+  depends=(alsa-lib)
+
+  cd sof-bin-$_binver
+
+  mv "$srcdir"/tools/* "$pkgdir"
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENCE* Notice*
+}
+
+# vim:set sw=2 et:



[arch-commits] Commit in gnome-shell-extensions/repos/extra-any (PKGBUILD PKGBUILD)

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:50:47
  Author: heftig
Revision: 449845

archrelease: copy trunk to extra-any

Added:
  gnome-shell-extensions/repos/extra-any/PKGBUILD
(from rev 449844, gnome-shell-extensions/trunk/PKGBUILD)
Deleted:
  gnome-shell-extensions/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 19:50:26 UTC (rev 449844)
+++ PKGBUILD2022-07-03 19:50:47 UTC (rev 449845)
@@ -1,44 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-shell-extensions
-pkgver=42.2
-pkgrel=1
-pkgdesc="Extensions for GNOME shell, including classic mode"
-url="https://wiki.gnome.org/Projects/GnomeShell/Extensions;
-arch=(any)
-license=(GPL)
-depends=(gnome-shell)
-makedepends=(meson git sassc)
-optdepends=('gnome-menus: applications menu extension')
-groups=(gnome)
-_commit=959782835d465a3a723a1e207e90d65ad3637274  # tags/42.2^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-shell-extensions.git#commit=$_commit;
-"git+https://gitlab.gnome.org/GNOME/gnome-shell-sass.git;)
-sha256sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  git submodule init
-  git submodule set-url data/gnome-shell-sass "$srcdir/gnome-shell-sass"
-  git submodule update
-}
-
-build() {
-  arch-meson $pkgname build -D extension_set=all -D classic_mode=true
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-}

Copied: gnome-shell-extensions/repos/extra-any/PKGBUILD (from rev 449844, 
gnome-shell-extensions/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 19:50:47 UTC (rev 449845)
@@ -0,0 +1,44 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-shell-extensions
+pkgver=42.3
+pkgrel=1
+pkgdesc="Extensions for GNOME shell, including classic mode"
+url="https://wiki.gnome.org/Projects/GnomeShell/Extensions;
+arch=(any)
+license=(GPL)
+depends=(gnome-shell)
+makedepends=(meson git sassc)
+optdepends=('gnome-menus: applications menu extension')
+groups=(gnome)
+_commit=8b62c38e2073a3bcb9f89cc29eae00d8831829c4  # tags/42.3^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-shell-extensions.git#commit=$_commit;
+"git+https://gitlab.gnome.org/GNOME/gnome-shell-sass.git;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git submodule set-url data/gnome-shell-sass "$srcdir/gnome-shell-sass"
+  git submodule update
+}
+
+build() {
+  arch-meson $pkgname build -D extension_set=all -D classic_mode=true
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}



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

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:50:26
  Author: heftig
Revision: 449843

42.3-1

Modified:
  gnome-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 19:50:25 UTC (rev 449842)
+++ PKGBUILD2022-07-03 19:50:26 UTC (rev 449843)
@@ -3,7 +3,7 @@
 # Contributor: Flamelab https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git;)
 sha256sums=('SKIP'



[arch-commits] Commit in gnome-shell-extensions/trunk (PKGBUILD)

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:49:28
  Author: heftig
Revision: 449839

42.3-1

Modified:
  gnome-shell-extensions/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 19:49:21 UTC (rev 449838)
+++ PKGBUILD2022-07-03 19:49:28 UTC (rev 449839)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-shell-extensions
-pkgver=42.2
+pkgver=42.3
 pkgrel=1
 pkgdesc="Extensions for GNOME shell, including classic mode"
 url="https://wiki.gnome.org/Projects/GnomeShell/Extensions;
@@ -11,7 +11,7 @@
 makedepends=(meson git sassc)
 optdepends=('gnome-menus: applications menu extension')
 groups=(gnome)
-_commit=959782835d465a3a723a1e207e90d65ad3637274  # tags/42.2^0
+_commit=8b62c38e2073a3bcb9f89cc29eae00d8831829c4  # tags/42.3^0
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-shell-extensions.git#commit=$_commit;
 "git+https://gitlab.gnome.org/GNOME/gnome-shell-sass.git;)
 sha256sums=('SKIP'



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

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:49:21
  Author: heftig
Revision: 449838

2.2-1

Modified:
  sof-bin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 19:48:04 UTC (rev 449837)
+++ PKGBUILD2022-07-03 19:49:21 UTC (rev 449838)
@@ -2,7 +2,7 @@
 
 pkgbase=sof-bin
 pkgname=(sof-firmware sof-tools)
-pkgver=2.1.1.a
+pkgver=2.2
 pkgrel=1
 pkgdesc="Sound Open Firmware"
 url="https://www.sofproject.org/;
@@ -9,17 +9,10 @@
 arch=(x86_64)
 license=(custom:BSD custom:ISC)
 makedepends=(rsync)
-_binver=v${pkgver%.a}
-_tplgver=v${pkgver/%.a/a}
-source=(https://github.com/thesofproject/sof-bin/releases/download/$_binver/sof-bin-$_binver.tar.gz
 
-
https://github.com/thesofproject/sof-bin/releases/download/$_tplgver/sof-tplg-$_tplgver.tar.gz)
-sha256sums=('adcd22ba2f2aad911fdc53c478187bc6ddb9174fa52fa43ba07f6f0cc8d12a19'
-'58839acdde407062eb388140a8500d4cfb04384aa8c4a8f2bea5a985c7ad748f')
+_binver=v$pkgver
+source=(https://github.com/thesofproject/sof-bin/releases/download/$_binver/sof-bin-$_binver.tar.gz)
+sha256sums=('f0a22018aa02266e3713f1551b698847ca303859be4be8c711dd3685de55ad15')
 
-prepare() {
-  cp -at sof-bin-$_binver/sof-tplg-$_binver sof-tplg-$_tplgver/*
-}
-
 package_sof-firmware() {
   options=(!strip)
 



[arch-commits] Commit in xdg-desktop-portal-gnome/repos/extra-x86_64 (2 files)

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:48:04
  Author: heftig
Revision: 449837

archrelease: copy trunk to extra-x86_64

Added:
  xdg-desktop-portal-gnome/repos/extra-x86_64/PKGBUILD
(from rev 449835, xdg-desktop-portal-gnome/trunk/PKGBUILD)
Deleted:
  xdg-desktop-portal-gnome/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 19:48:03 UTC (rev 449836)
+++ PKGBUILD2022-07-03 19:48:04 UTC (rev 449837)
@@ -1,42 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=xdg-desktop-portal-gnome
-pkgver=42.1
-pkgrel=1
-pkgdesc="A backend implementation for xdg-desktop-portal for the GNOME desktop 
environment"
-url="https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome;
-arch=(x86_64)
-license=(LGPL)
-depends=('xdg-desktop-portal-gtk>=1.10.0-2' libadwaita gnome-keyring
- gnome-desktop-4)
-makedepends=(xdg-desktop-portal meson git)
-optdepends=('evince: Print previews')
-provides=(xdg-desktop-portal-impl)
-conflicts=('xdg-desktop-portal-gtk<1.10.0-2')
-replaces=('xdg-desktop-portal-gtk<1.10.0-2')
-options=(debug)
-_commit=ae3fbacff87def4c5e22b05bb5df1715728cc6fa  # tags/42.1^0
-source=("git+https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-}

Copied: xdg-desktop-portal-gnome/repos/extra-x86_64/PKGBUILD (from rev 449835, 
xdg-desktop-portal-gnome/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 19:48:04 UTC (rev 449837)
@@ -0,0 +1,42 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=xdg-desktop-portal-gnome
+pkgver=42.3
+pkgrel=1
+pkgdesc="A backend implementation for xdg-desktop-portal for the GNOME desktop 
environment"
+url="https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome;
+arch=(x86_64)
+license=(LGPL)
+depends=('xdg-desktop-portal-gtk>=1.10.0-2' libadwaita gnome-keyring
+ gnome-desktop-4)
+makedepends=(xdg-desktop-portal meson git)
+optdepends=('evince: Print previews')
+provides=(xdg-desktop-portal-impl)
+conflicts=('xdg-desktop-portal-gtk<1.10.0-2')
+replaces=('xdg-desktop-portal-gtk<1.10.0-2')
+options=(debug)
+_commit=725aa7423dd8eed98bcd541967d5655620fdb9e7  # tags/42.3^0
+source=("git+https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}



[arch-commits] Commit in gnome-remote-desktop/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:48:03
  Author: heftig
Revision: 449836

archrelease: copy trunk to extra-x86_64

Added:
  gnome-remote-desktop/repos/extra-x86_64/PKGBUILD
(from rev 449835, gnome-remote-desktop/trunk/PKGBUILD)
Deleted:
  gnome-remote-desktop/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  120 ++---
 1 file changed, 60 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 19:47:48 UTC (rev 449835)
+++ PKGBUILD2022-07-03 19:48:03 UTC (rev 449836)
@@ -1,60 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-remote-desktop
-pkgver=42.2
-pkgrel=1
-pkgdesc="GNOME Remote Desktop server"
-url="https://wiki.gnome.org/Projects/Mutter/RemoteDesktop;
-arch=(x86_64)
-license=(GPL2)
-depends=(cairo freerdp glib2 pipewire systemd libvncserver libsecret libnotify
- dconf fuse3 libxkbcommon libepoxy)
-makedepends=(git meson ffnvcodec-headers)
-checkdepends=(xorg-server-xvfb python-dbus python-gobject mutter wireplumber)
-groups=(gnome)
-options=(debug)
-_commit=a5a962b923bf88d64793b43e0f3915e0eaa8acbe  # tags/42.2^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-remote-desktop.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build
-  meson compile -C build
-}
-
-_check() (
-  mkdir -p -m 700 "${XDG_CONFIG_HOME:=$PWD/config-dir}"
-  mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
-  glib-compile-schemas "${GSETTINGS_SCHEMA_DIR:=$PWD/build/src}"
-  export XDG_CONFIG_HOME XDG_RUNTIME_DIR GSETTINGS_SCHEMA_DIR
-
-  export GSETTINGS_BACKEND=keyfile
-  gsettings set org.gnome.desktop.remote-desktop.vnc enable true
-
-  pipewire &
-  _p1=$!
-
-  wireplumber &
-  _p2=$!
-
-  trap "kill $_p1 $_p2; wait" EXIT
-
-  meson test -C build --print-errorlogs -t 3
-)
-
-check() {
-  dbus-run-session bash -c "$(declare -f _check); _check"
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-}

Copied: gnome-remote-desktop/repos/extra-x86_64/PKGBUILD (from rev 449835, 
gnome-remote-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 19:48:03 UTC (rev 449836)
@@ -0,0 +1,60 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-remote-desktop
+pkgver=42.3
+pkgrel=1
+pkgdesc="GNOME Remote Desktop server"
+url="https://wiki.gnome.org/Projects/Mutter/RemoteDesktop;
+arch=(x86_64)
+license=(GPL2)
+depends=(cairo freerdp glib2 pipewire systemd libvncserver libsecret libnotify
+ dconf fuse3 libxkbcommon libepoxy)
+makedepends=(git meson ffnvcodec-headers)
+checkdepends=(xorg-server-xvfb python-dbus python-gobject mutter wireplumber)
+groups=(gnome)
+options=(debug)
+_commit=73b9f00b31bc462de42e94054121052a106df521  # tags/42.3^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-remote-desktop.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+_check() (
+  mkdir -p -m 700 "${XDG_CONFIG_HOME:=$PWD/config-dir}"
+  mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
+  glib-compile-schemas "${GSETTINGS_SCHEMA_DIR:=$PWD/build/src}"
+  export XDG_CONFIG_HOME XDG_RUNTIME_DIR GSETTINGS_SCHEMA_DIR
+
+  export GSETTINGS_BACKEND=keyfile
+  gsettings set org.gnome.desktop.remote-desktop.vnc enable true
+
+  pipewire &
+  _p1=$!
+
+  wireplumber &
+  _p2=$!
+
+  trap "kill $_p1 $_p2; wait" EXIT
+
+  meson test -C build --print-errorlogs -t 3
+)
+
+check() {
+  dbus-run-session bash -c "$(declare -f _check); _check"
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}



[arch-commits] Commit in gnome-remote-desktop/trunk (PKGBUILD)

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:47:47
  Author: heftig
Revision: 449834

42.3-1

Modified:
  gnome-remote-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 19:42:46 UTC (rev 449833)
+++ PKGBUILD2022-07-03 19:47:47 UTC (rev 449834)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-remote-desktop
-pkgver=42.2
+pkgver=42.3
 pkgrel=1
 pkgdesc="GNOME Remote Desktop server"
 url="https://wiki.gnome.org/Projects/Mutter/RemoteDesktop;
@@ -13,7 +13,7 @@
 checkdepends=(xorg-server-xvfb python-dbus python-gobject mutter wireplumber)
 groups=(gnome)
 options=(debug)
-_commit=a5a962b923bf88d64793b43e0f3915e0eaa8acbe  # tags/42.2^0
+_commit=73b9f00b31bc462de42e94054121052a106df521  # tags/42.3^0
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-remote-desktop.git#commit=$_commit;)
 sha256sums=('SKIP')
 



[arch-commits] Commit in xdg-desktop-portal-gnome/trunk (PKGBUILD)

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:47:48
  Author: heftig
Revision: 449835

42.3-1

Modified:
  xdg-desktop-portal-gnome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 19:47:47 UTC (rev 449834)
+++ PKGBUILD2022-07-03 19:47:48 UTC (rev 449835)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=xdg-desktop-portal-gnome
-pkgver=42.1
+pkgver=42.3
 pkgrel=1
 pkgdesc="A backend implementation for xdg-desktop-portal for the GNOME desktop 
environment"
 url="https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome;
@@ -15,7 +15,7 @@
 conflicts=('xdg-desktop-portal-gtk<1.10.0-2')
 replaces=('xdg-desktop-portal-gtk<1.10.0-2')
 options=(debug)
-_commit=ae3fbacff87def4c5e22b05bb5df1715728cc6fa  # tags/42.1^0
+_commit=725aa7423dd8eed98bcd541967d5655620fdb9e7  # tags/42.3^0
 
source=("git+https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome.git#commit=$_commit;)
 sha256sums=('SKIP')
 



[arch-commits] Commit in meson/repos/extra-any (7 files)

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:42:46
  Author: heftig
Revision: 449833

archrelease: copy trunk to extra-any

Added:
  meson/repos/extra-any/0001-Skip-broken-tests.patch
(from rev 449832, meson/trunk/0001-Skip-broken-tests.patch)
  meson/repos/extra-any/PKGBUILD
(from rev 449832, meson/trunk/PKGBUILD)
  meson/repos/extra-any/arch-meson
(from rev 449832, meson/trunk/arch-meson)
  meson/repos/extra-any/keys/
Deleted:
  meson/repos/extra-any/0001-Skip-broken-tests.patch
  meson/repos/extra-any/PKGBUILD
  meson/repos/extra-any/arch-meson

--+
 0001-Skip-broken-tests.patch |   86 +++---
 PKGBUILD |  116 -
 arch-meson   |   26 -
 3 files changed, 114 insertions(+), 114 deletions(-)

Deleted: 0001-Skip-broken-tests.patch
===
--- 0001-Skip-broken-tests.patch2022-07-03 19:42:30 UTC (rev 449832)
+++ 0001-Skip-broken-tests.patch2022-07-03 19:42:46 UTC (rev 449833)
@@ -1,43 +0,0 @@
-From  Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Thu, 14 Apr 2022 14:08:15 +
-Subject: [PATCH] Skip broken tests
-

- test cases/linuxlike/13 cmake dependency/meson.build | 2 ++
- unittests/linuxliketests.py  | 2 ++
- 2 files changed, 4 insertions(+)
-
-diff --git a/test cases/linuxlike/13 cmake dependency/meson.build b/test 
cases/linuxlike/13 cmake dependency/meson.build
-index 193ad184b637..e94ba68ac30f 100644
 a/test cases/linuxlike/13 cmake dependency/meson.build 
-+++ b/test cases/linuxlike/13 cmake dependency/meson.build 
-@@ -6,6 +6,8 @@ if not find_program('cmake', required: false).found()
-   error('MESON_SKIP_TEST cmake binary not available.')
- endif
- 
-+error('MESON_SKIP_TEST flaky, see 
https://github.com/mesonbuild/meson/issues/10104')
-+
- # Zlib is probably on all dev machines.
- 
- dep = dependency('ZLIB', version : '>=1.2', method : 'cmake')
-diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py
-index 9b84740bbada..a8265acdde98 100644
 a/unittests/linuxliketests.py
-+++ b/unittests/linuxliketests.py
-@@ -343,6 +343,7 @@ class LinuxlikeTests(BasePlatformTests):
- raise SkipTest('asan not available on Cygwin')
- if is_openbsd():
- raise SkipTest('-fsanitize=address is not supported on OpenBSD')
-+raise SkipTest('cannot run sanitizers in containers without ptrace')
- 
- testdir = os.path.join(self.framework_test_dir, '7 gnome')
- self.init(testdir, extra_args=['-Db_sanitize=address', 
'-Db_lundef=false'])
-@@ -998,6 +999,7 @@ class LinuxlikeTests(BasePlatformTests):
- raise SkipTest('asan not available on Cygwin')
- if is_openbsd():
- raise SkipTest('-fsanitize=address is not supported on OpenBSD')
-+raise SkipTest('cannot run sanitizers in containers without ptrace')
- 
- testdir = os.path.join(self.common_test_dir, '13 pch')
- self.init(testdir, extra_args=['-Db_sanitize=address', 
'-Db_lundef=false'])

Copied: meson/repos/extra-any/0001-Skip-broken-tests.patch (from rev 449832, 
meson/trunk/0001-Skip-broken-tests.patch)
===
--- 0001-Skip-broken-tests.patch(rev 0)
+++ 0001-Skip-broken-tests.patch2022-07-03 19:42:46 UTC (rev 449833)
@@ -0,0 +1,43 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Thu, 14 Apr 2022 14:08:15 +
+Subject: [PATCH] Skip broken tests
+
+---
+ test cases/linuxlike/13 cmake dependency/meson.build | 2 ++
+ unittests/linuxliketests.py  | 2 ++
+ 2 files changed, 4 insertions(+)
+
+diff --git a/test cases/linuxlike/13 cmake dependency/meson.build b/test 
cases/linuxlike/13 cmake dependency/meson.build
+index 193ad184b637..e94ba68ac30f 100644
+--- a/test cases/linuxlike/13 cmake dependency/meson.build 
 b/test cases/linuxlike/13 cmake dependency/meson.build 
+@@ -6,6 +6,8 @@ if not find_program('cmake', required: false).found()
+   error('MESON_SKIP_TEST cmake binary not available.')
+ endif
+ 
++error('MESON_SKIP_TEST flaky, see 
https://github.com/mesonbuild/meson/issues/10104')
++
+ # Zlib is probably on all dev machines.
+ 
+ dep = dependency('ZLIB', version : '>=1.2', method : 'cmake')
+diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py
+index 9b84740bbada..a8265acdde98 100644
+--- a/unittests/linuxliketests.py
 b/unittests/linuxliketests.py
+@@ -343,6 +343,7 @@ class LinuxlikeTests(BasePlatformTests):
+ raise SkipTest('asan not available on Cygwin')
+ if is_openbsd():
+ raise SkipTest('-fsanitize=address is not supported on OpenBSD')
++raise 

[arch-commits] Commit in meson/trunk (4 files)

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:42:30
  Author: heftig
Revision: 449832

0.63.0-1

Added:
  meson/trunk/keys/
  meson/trunk/keys/pgp/
  meson/trunk/keys/pgp/19E2D6D9B46D8DAA6288F877C24E631BABB1FE70.asc
Modified:
  meson/trunk/PKGBUILD

---+
 PKGBUILD  |4 -
 keys/pgp/19E2D6D9B46D8DAA6288F877C24E631BABB1FE70.asc |   52 
 2 files changed, 54 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 19:08:19 UTC (rev 449831)
+++ PKGBUILD2022-07-03 19:42:30 UTC (rev 449832)
@@ -3,7 +3,7 @@
 # Contributor: Anatol Pomozov 
 
 pkgname=meson
-pkgver=0.62.2
+pkgver=0.63.0
 pkgrel=1
 pkgdesc='High productivity build system'
 url='https://mesonbuild.com/'
@@ -19,7 +19,7 @@
 
source=(https://github.com/mesonbuild/meson/releases/download/${pkgver}/meson-${pkgver}.tar.gz{,.asc}
 0001-Skip-broken-tests.patch
 arch-meson)
-sha512sums=('4089588701f0f702eb3b794e0ede78b99f13ec7545d1a7470c7bfd6a857de59673684a543928dd578402578c53f38365a3a59e3e29022fd30a525353818a4195'
+sha512sums=('8d427261bb42d2bd1da7d4f7b5f53908044aa2cea6d020fb320b0ab9d9848e17cf28deb12ae6dc139807f9e377db0c8a546561e94301216b634bd77703f17cea'
 'SKIP'
 
'd94c5b102835704e38ae778f0d420b30b4acf64f4321304ad63472a3fb044fcdc2fcb18edf47e239678534e107b6b892ee5328f0840d6649e10201bcf072e8f8'
 
'f451f8a7ef9cf1dd724c2ce20bb85a3f1611b87b2e7a17ef0fdbe8ab82a67389f818ea30a5adfe8413143e4eac77ea2e0b8234b5b2466b41a892e2bd0435376c')

Added: keys/pgp/19E2D6D9B46D8DAA6288F877C24E631BABB1FE70.asc
===
--- keys/pgp/19E2D6D9B46D8DAA6288F877C24E631BABB1FE70.asc   
(rev 0)
+++ keys/pgp/19E2D6D9B46D8DAA6288F877C24E631BABB1FE70.asc   2022-07-03 
19:42:30 UTC (rev 449832)
@@ -0,0 +1,52 @@
+-BEGIN PGP PUBLIC KEY BLOCK-
+
+mQINBF/yD98BEACyaWuysOU1avujHBO7omnNq/+RrDl/OBx+jO/ftwbimXXWSItv
+ZDotNVWWvHuMfZuJVCd6lcu8AeyHjGf8F23FmLTjdeEhTAaW2wvS7RGscEWSW5Id
+WRkSIUmDCNN8iALJ3dodhcaT3RdboX+WeIzc8H/AuXs41w8mw62fWpN6H5uXxBhZ
+0FMmIMfcirp5FxXR6jz27UZEAMhLq9Ib+fvzEvv/loIhzPw3ztz37OBPavdRz4jJ
+0PhvSfvhY4S+BjM6E91vEzsqt+aFLV9oplSNd5J7GIlFUuJfM6rcb7w1fx03p0vS
+t7TNJHYyKQDWbev4KHVx1svjQyfr3usSmS7bgDd0pp67L6YTLZjecHvPUboEZBmb
+Lu4CS+kZ9AM1Oiyeb4vV3p0OfAqO0i8xSczrOOPSWYvWPVq5U4Ogp1q2WeRxjwmy
+0OJpx632H7YuKa33fi9NSt8nbZTejN61MjECm3tLkj2VAVrF6CI0PBy/1givqWYJ
+mPgjW3W52qc9stYig3FKPXyH2A+9lse6VJFgmMwX9JflRYquxVhb0wc1qFJMvSik
+GfPq4+mEJZhbTnbA56hd9d8swIZt+y/2sE7SeWcpGL5tv9bBFI+0Vgrs3bnJjW+0
+yvhUv/Z4blUQ+iEaDbzG5VNC4VYbILYaJDCkYvFQpqJtWvpffrbtdBbWHwARAQAB
+tCNKdXNzaSBQYWtrYW5lbiA8anBha2thbmVAZ21haWwuY29tPokCVAQTAQoAPhYh
+BBni1tm0bY2qYoj4d8JOYxursf5wBQJf8g/fAhsDBQkSzAMABQsJCAcCBhUKCQgL
+AgQWAgMBAh4BAheAAAoJEMJOYxursf5wKdMP/iZwdeh2fwfHP6IZA0+RMt/p0k3f
+jcIuzkFUFPZZA+scqQV8rWju2vlOiak/WLFMF8Vhuc47qsh08iLzPGFXMU3+jxEc
+WKRIe1SU5iIe3XP7Y7XjpjM9pqpBtFp5FgFeTqRyhA7hBW+Vt/GZ+RoOHgVPL0h8
+DiBDauRoOcY/AkvDcdVB6dvCYdfJdMb3ingla7XXSABUPcc0dAoUIlHSNNuOvTFE
+2JQ9USTraO81Vvs7YclxPl/6Q9Yt/rdper3zTt7nHu1oqvKUx/9aEfoyoqkGS/c2
+h6uLnt20enXYERvE445P5P8iIZ9cTCl8pPZirOTxgwiA/+sj7MQ2yZaAfJuzTl0N
+qoC+CXfDskN2zr0K6hAwxxZKNgsZRR6bVU+Kg1dzXcwO8P29oSvcxDrg75MommnY
+L1pDwCx2AfRKj71VLuzyT6CTqa6gvuC58kkDdhst/D7NGCYBS8Ngm2bJrWJjIBwc
+3JCHC1ZafPi0PJaj3DF+GhcZlNKM/nnbUMktkhztH84ePhPadHsyhqdIJtrtauKi
+mglWcRe2LPE6Hs5Dd39M81CYQOWSWE/ASQQDjEHyw9Ajkdpmj6ETt6rqhaq9f3QM
+6jGsjkvP0KQwpCAlxlpJ7h/SoNeT3BHLd1/Or0KdG247xDiag1BiiED4/K/yZZtf
+5g+t4m47SIRI0LpduQINBF/yD98BEADgYD+s7b3qYcbizuEnZu72r33oBH3H+Trf
+Thlho+oL3cUvunIcVX+PDdiM1M8NQ6kJCjTRY6NqKBA1QJ8tnfimkBJ+DpuK3zdF
+mQdHC1s1Ts8GaQryLm4A9rlmoEsFCLWH02SHqcWO7h3nLKKZxXS6ZMGz/wKavrav
+IZCO1Rb8sJRpdL92aWrDS04ZQWkw2ImTow1yaF7oOHvrdZncqTDcmh81/dMuiIrR
+JSMEgfgUZFGToQWSbJOdmw2ytJjiRF+pLO9ZW8qIJ6AGBV2zA74mUhygPoN3eqA8
+xxb+NiAwMHziMwYnWxFNWzKPHAKZvfgPXEPD3NdYXYQNl9GryDcx25Mu+icSW/Cx
+md6G/JinRXiRsJ5ZFZnYHkotvLg/AYsaAD5gCPNC66Ne+zmtAMmFpWZj64AfzM5v
+UzsfKc8e35y6uYfPGjFKxX9fL432plwNHJHjzVLcpBC9f3OC+xqMruWn3s3YuNTk
+rCFoD1wYUX3XGfc0kDopTw0Xj9Xf4n/O3SOjUQcXgg0s4DLrR+O9NfggIshspN/5
+arpsdBQgs2X/GOpSXw2Zvk/TRWIhXwI/zJZnFPt5pHLBsO8k/VUu7MfHMG0Od4vk
+97ywdaZCz/dDOGAg7811R2/xvN14pgJQEv3aBpI80a2sYqiImMvMlOWjqtBm0DOn
+7plP+7y5SwARAQABiQI8BBgBCgAmFiEEGeLW2bRtjapiiPh3wk5jG6ux/nAFAl/y
+D98CGwwFCRLMAwAACgkQwk5jG6ux/nCAmw//RxGMBZiX0EsATKPPe9pISDlnA/0L
+rzuGz7CoPvHYl/Ueh3bWAGSLYxB0UdJVN6ISHSoih0eaCeQOYqrfjz6LQ8a/2zeZ
+nNyTNmonnM5Eqs9E7CSReevUoUc7srkTV1r2HfbcRT70lcQbXgrxv9AE4o+yXO75
+EIgttY0hyeIpJwvFvh2zgCy2YtfYX1YYo18cRs+OD1vEa8mqNSCQ+NNL9Yh312w9
+dAUKvLwivvwr+gybvtJQFH4Xy0kq2hvuQ9N485Kvcn6UKqqcuspAXEM4kYN9sftB
+Nx+HP08TuzxJ9nYJx2v0ufzlukeupCtS0aAojweMMqIq7TNaQqnXOB/iX25fkenO
+s5AsGeSAD4wrEJ+1JrtTrF0F+pTLQs67J7QlAHuVWxUzvnbOMFhc30l/hzfW52YX
+RgNdAk9LHVj7HcMJcf0vtI4OIkdW3GYQG1gEAL8V2yqbvi9Y18zWHkgtqZF592p+
+oUXdYjeYRskWKly3RnVtvf4Xo/QT/bLxPrD6+Alxcdbj6rWlVMYgNoQ+C1xEzQ8D

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

2022-07-03 Thread George Rawlinson via arch-commits
Date: Sunday, July 3, 2022 @ 19:24:00
  Author: grawlinson
Revision: 1243836

archrelease: copy trunk to community-x86_64

Added:
  sslscan/repos/community-x86_64/PKGBUILD
(from rev 1243834, sslscan/trunk/PKGBUILD)
Deleted:
  sslscan/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   70 ++---
 1 file changed, 35 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 19:23:54 UTC (rev 1243835)
+++ PKGBUILD2022-07-03 19:24:00 UTC (rev 1243836)
@@ -1,35 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Remi Gacogne 
-# Contributor: George Rawlinson 
-
-pkgname=sslscan
-pkgver=2.0.14
-pkgrel=1
-pkgdesc="A fast tool to scan SSL services such as HTTPS to determine supported 
ciphers"
-url="https://github.com/rbsec/sslscan;
-arch=('x86_64')
-license=('GPL3')
-depends=('openssl')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('bb496fffbd4e130bae8b9272d1303bfa0a681ff88aa3471e4b3f56bece2072ad8f8f41c19c4325de3d5772e785c1ab7491d3520ac3a44a7a170636ae4e13ed0d')
-b2sums=('392a5f043172aa5800c40e1a86c198421de7fb4ddf92f8504e0b6270c70f4c58f0527cfaaff4892469d763d970b044168ab2a37fa4d836cddda88e5e9fd04586')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  sed -e 's/CFLAGS ?=/CFLAGS +=/' \
--e 's/LDFLAGS ?=/LDFLAGS +=/' \
--e "s/^GIT_VERSION =.*/GIT_VERSION = ${pkgver}/" \
--i Makefile
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: sslscan/repos/community-x86_64/PKGBUILD (from rev 1243834, 
sslscan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 19:24:00 UTC (rev 1243836)
@@ -0,0 +1,35 @@
+# Maintainer: Levente Polyak 
+# Contributor: Remi Gacogne 
+# Contributor: George Rawlinson 
+
+pkgname=sslscan
+pkgver=2.0.15
+pkgrel=1
+pkgdesc="A fast tool to scan SSL services such as HTTPS to determine supported 
ciphers"
+url="https://github.com/rbsec/sslscan;
+arch=('x86_64')
+license=('GPL3')
+depends=('openssl')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('1076914ea86d45fc70bbb60861793acd5e1d64714a5cadca0297a5ad1ab7948a838de7b2d101c199088ee315b802b4342508d37bda94e6b1da47c2bf2289b353')
+b2sums=('fc24c00ba3b6aab3c5a05e2ce7fc61c31df76682ef85ae29ad029358b1a51dd4a2c861546eb2eef38eb1d3f5dfad1d77c03fe02ccff8e9f74aa0e09b39a84b72')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  sed -e 's/CFLAGS ?=/CFLAGS +=/' \
+-e 's/LDFLAGS ?=/LDFLAGS +=/' \
+-e "s/^GIT_VERSION =.*/GIT_VERSION = ${pkgver}/" \
+-i Makefile
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in couchdb/repos/community-x86_64 (11 files)

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:23:54
  Author: heftig
Revision: 1243835

archrelease: copy trunk to community-x86_64

Added:
  couchdb/repos/community-x86_64/PKGBUILD
(from rev 1243834, couchdb/trunk/PKGBUILD)
  couchdb/repos/community-x86_64/couchdb.default
(from rev 1243834, couchdb/trunk/couchdb.default)
  couchdb/repos/community-x86_64/couchdb.service
(from rev 1243834, couchdb/trunk/couchdb.service)
  couchdb/repos/community-x86_64/couchdb.sysusers
(from rev 1243834, couchdb/trunk/couchdb.sysusers)
  couchdb/repos/community-x86_64/couchdb.tmpfiles
(from rev 1243834, couchdb/trunk/couchdb.tmpfiles)
  couchdb/repos/community-x86_64/keys/
Deleted:
  couchdb/repos/community-x86_64/PKGBUILD
  couchdb/repos/community-x86_64/couchdb.default
  couchdb/repos/community-x86_64/couchdb.service
  couchdb/repos/community-x86_64/couchdb.sysusers
  couchdb/repos/community-x86_64/couchdb.tmpfiles

--+
 PKGBUILD |  127 +++--
 couchdb.default  |6 +-
 couchdb.service  |   84 +--
 couchdb.sysusers |2 
 couchdb.tmpfiles |6 +-
 5 files changed, 114 insertions(+), 111 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 19:23:33 UTC (rev 1243834)
+++ PKGBUILD2022-07-03 19:23:54 UTC (rev 1243835)
@@ -1,62 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Sergej Pupykin 
-# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
-# Contributor: Michael Fellinger 
-
-pkgname=couchdb
-pkgver=3.2.2
-pkgrel=2
-pkgdesc="Document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON"
-arch=(x86_64)
-url="https://couchdb.apache.org;
-license=(Apache)
-depends=(icu js91 zlib)
-optdepends=('erlang-nox: for weatherreport')
-makedepends=(erlang-nox)
-backup=(etc/couchdb/local.ini
-etc/couchdb/vm.args
-etc/default/couchdb)
-source=("https://archive.apache.org/dist/${pkgname}/source/${pkgver}/apache-${pkgname}-${pkgver}.tar.gz"{,.asc}
-couchdb.default
-couchdb.service
-couchdb.sysusers
-couchdb.tmpfiles)
-sha256sums=(69c9fd6f80133557f68a02e92dda72a4fd646d646f429f45bb8329a30f82f20e 
SKIP
-0d21fdd7851b3a6fa099b030cab0e96705b1d5a3a83a4ff1c871814d8742cae9
-6ab3d362f3fcd9079036c883dc09dc597584cb627831460f2e0c68a31aa052ae
-3ed1ad2a37a068ce194b03fb72eb35285d60fa7faf2d2c2bb710703d229108a8
-7331b9675e3668c5f0d632bee5d154c061cc3e60d451bef3dc0d0ab2dadfa006)
-validpgpkeys=(2EC788AE3F239FA13E82D215CDE711289384AE37  # Joan Touzet (CODE 
SIGNING KEY) 
-  D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4  # Jan Lehnardt 

-  0BD7A98499C4AB41C910EE65FC04DFBC9657A78E) # Nick Vatamaniuc 

-
-prepare() {
-  cd apache-couchdb-${pkgver}
-  sed -i 's|./data|/var/lib/couchdb|' configure
-}
-
-build() {
-  cd apache-couchdb-${pkgver}
-  ./configure --spidermonkey-version 91
-  make release
-}
-
-package() {
-  cd apache-couchdb-${pkgver}
-  install -dm755 "${pkgdir}"/usr/lib
-  install -dm755 "${pkgdir}"/etc/couchdb
-
-  cp -r rel/couchdb "${pkgdir}"/usr/lib/couchdb
-  mv "${pkgdir}"/usr/lib/couchdb/etc/{default.ini,local.ini,vm.args} 
"${pkgdir}"/etc/couchdb/
-
-  cd "${srcdir}"
-  install -Dm644 ${pkgname}.default "${pkgdir}"/etc/default/${pkgname}
-  install -Dm644 ${pkgname}.service -t "${pkgdir}"/usr/lib/systemd/system/
-  install -Dm644 ${pkgname}.tmpfiles 
"${pkgdir}"/usr/lib/tmpfiles.d/${pkgname}.conf
-  install -Dm644 ${pkgname}.sysusers 
"${pkgdir}"/usr/lib/sysusers.d/${pkgname}.conf
-
-  # Remove some cruft
-  rm -r "${pkgdir}"/usr/lib/couchdb/erts-12.3/{doc,include,lib,man,src}
-  rm -rv "${pkgdir}"/usr/lib/couchdb/etc/
-  rm -rv 
"${pkgdir}"/usr/lib/couchdb/lib/couch-${pkgver}/priv/couch_{ejson_compare,js}
-}

Copied: couchdb/repos/community-x86_64/PKGBUILD (from rev 1243834, 
couchdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 19:23:54 UTC (rev 1243835)
@@ -0,0 +1,65 @@
+# Maintainer: Bruno Pagani 
+# Contributor: Sergej Pupykin 
+# Contributor: Vitaliy Berdinskikh ur6lad[at]i.ua
+# Contributor: Michael Fellinger 
+
+pkgname=couchdb
+pkgver=3.2.2
+pkgrel=3
+pkgdesc="Document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON"
+arch=(x86_64)
+url="https://couchdb.apache.org;
+license=(Apache)
+depends=(icu js91 zlib)
+optdepends=('erlang-nox: for weatherreport')
+makedepends=(erlang-nox)
+backup=(etc/couchdb/local.ini
+etc/couchdb/vm.args
+etc/default/couchdb)
+options=(debug)
+source=("https://archive.apache.org/dist/${pkgname}/source/${pkgver}/apache-${pkgname}-${pkgver}.tar.gz"{,.asc}
+couchdb.default
+couchdb.service
+couchdb.sysusers
+couchdb.tmpfiles)

[arch-commits] Commit in couchdb/trunk (6 files)

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:23:33
  Author: heftig
Revision: 1243834

3.2.2-3: rebuild for js91 91.11.0

Added:
  couchdb/trunk/keys/
  couchdb/trunk/keys/pgp/
  couchdb/trunk/keys/pgp/0BD7A98499C4AB41C910EE65FC04DFBC9657A78E.asc
  couchdb/trunk/keys/pgp/2EC788AE3F239FA13E82D215CDE711289384AE37.asc
  couchdb/trunk/keys/pgp/D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4.asc
Modified:
  couchdb/trunk/PKGBUILD

---+
 PKGBUILD  |5 -
 keys/pgp/0BD7A98499C4AB41C910EE65FC04DFBC9657A78E.asc |1 +
 keys/pgp/2EC788AE3F239FA13E82D215CDE711289384AE37.asc |1 +
 keys/pgp/D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4.asc |1 +
 4 files changed, 7 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 19:23:15 UTC (rev 1243833)
+++ PKGBUILD2022-07-03 19:23:33 UTC (rev 1243834)
@@ -5,7 +5,7 @@
 
 pkgname=couchdb
 pkgver=3.2.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Document-oriented database that can be queried and indexed in a 
MapReduce fashion using JSON"
 arch=(x86_64)
 url="https://couchdb.apache.org;
@@ -16,6 +16,7 @@
 backup=(etc/couchdb/local.ini
 etc/couchdb/vm.args
 etc/default/couchdb)
+options=(debug)
 
source=("https://archive.apache.org/dist/${pkgname}/source/${pkgver}/apache-${pkgname}-${pkgver}.tar.gz"{,.asc}
 couchdb.default
 couchdb.service
@@ -26,6 +27,8 @@
 6ab3d362f3fcd9079036c883dc09dc597584cb627831460f2e0c68a31aa052ae
 3ed1ad2a37a068ce194b03fb72eb35285d60fa7faf2d2c2bb710703d229108a8
 7331b9675e3668c5f0d632bee5d154c061cc3e60d451bef3dc0d0ab2dadfa006)
+
+# https://downloads.apache.org/couchdb/KEYS
 validpgpkeys=(2EC788AE3F239FA13E82D215CDE711289384AE37  # Joan Touzet (CODE 
SIGNING KEY) 
   D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4  # Jan Lehnardt 

   0BD7A98499C4AB41C910EE65FC04DFBC9657A78E) # Nick Vatamaniuc 


Added: keys/pgp/0BD7A98499C4AB41C910EE65FC04DFBC9657A78E.asc
===
(Binary files differ)

Index: couchdb/trunk/keys/pgp/0BD7A98499C4AB41C910EE65FC04DFBC9657A78E.asc
===
--- keys/pgp/0BD7A98499C4AB41C910EE65FC04DFBC9657A78E.asc   2022-07-03 
19:23:15 UTC (rev 1243833)
+++ keys/pgp/0BD7A98499C4AB41C910EE65FC04DFBC9657A78E.asc   2022-07-03 
19:23:33 UTC (rev 1243834)

Property changes on: 
couchdb/trunk/keys/pgp/0BD7A98499C4AB41C910EE65FC04DFBC9657A78E.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property
Added: keys/pgp/2EC788AE3F239FA13E82D215CDE711289384AE37.asc
===
(Binary files differ)

Index: couchdb/trunk/keys/pgp/2EC788AE3F239FA13E82D215CDE711289384AE37.asc
===
--- keys/pgp/2EC788AE3F239FA13E82D215CDE711289384AE37.asc   2022-07-03 
19:23:15 UTC (rev 1243833)
+++ keys/pgp/2EC788AE3F239FA13E82D215CDE711289384AE37.asc   2022-07-03 
19:23:33 UTC (rev 1243834)

Property changes on: 
couchdb/trunk/keys/pgp/2EC788AE3F239FA13E82D215CDE711289384AE37.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property
Added: keys/pgp/D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4.asc
===
(Binary files differ)

Index: couchdb/trunk/keys/pgp/D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4.asc
===
--- keys/pgp/D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4.asc   2022-07-03 
19:23:15 UTC (rev 1243833)
+++ keys/pgp/D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4.asc   2022-07-03 
19:23:33 UTC (rev 1243834)

Property changes on: 
couchdb/trunk/keys/pgp/D2B17F9DA23C0A10991AF2E3D9EE01E47852AEE4.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


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

2022-07-03 Thread George Rawlinson via arch-commits
Date: Sunday, July 3, 2022 @ 19:23:15
  Author: grawlinson
Revision: 1243833

upgpkg: sslscan 2.0.15-1; new upstream release

Modified:
  sslscan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 19:20:57 UTC (rev 1243832)
+++ PKGBUILD2022-07-03 19:23:15 UTC (rev 1243833)
@@ -3,7 +3,7 @@
 # Contributor: George Rawlinson 
 
 pkgname=sslscan
-pkgver=2.0.14
+pkgver=2.0.15
 pkgrel=1
 pkgdesc="A fast tool to scan SSL services such as HTTPS to determine supported 
ciphers"
 url="https://github.com/rbsec/sslscan;
@@ -11,8 +11,8 @@
 license=('GPL3')
 depends=('openssl')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha512sums=('bb496fffbd4e130bae8b9272d1303bfa0a681ff88aa3471e4b3f56bece2072ad8f8f41c19c4325de3d5772e785c1ab7491d3520ac3a44a7a170636ae4e13ed0d')
-b2sums=('392a5f043172aa5800c40e1a86c198421de7fb4ddf92f8504e0b6270c70f4c58f0527cfaaff4892469d763d970b044168ab2a37fa4d836cddda88e5e9fd04586')
+sha512sums=('1076914ea86d45fc70bbb60861793acd5e1d64714a5cadca0297a5ad1ab7948a838de7b2d101c199088ee315b802b4342508d37bda94e6b1da47c2bf2289b353')
+b2sums=('fc24c00ba3b6aab3c5a05e2ce7fc61c31df76682ef85ae29ad029358b1a51dd4a2c861546eb2eef38eb1d3f5dfad1d77c03fe02ccff8e9f74aa0e09b39a84b72')
 
 prepare() {
   cd "$pkgname-$pkgver"



[arch-commits] Commit in sqlfluff/repos/community-any (PKGBUILD PKGBUILD)

2022-07-03 Thread George Rawlinson via arch-commits
Date: Sunday, July 3, 2022 @ 19:20:57
  Author: grawlinson
Revision: 1243832

archrelease: copy trunk to community-any

Added:
  sqlfluff/repos/community-any/PKGBUILD
(from rev 1243831, sqlfluff/trunk/PKGBUILD)
Deleted:
  sqlfluff/repos/community-any/PKGBUILD

--+
 PKGBUILD |  158 ++---
 1 file changed, 79 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 19:19:50 UTC (rev 1243831)
+++ PKGBUILD2022-07-03 19:20:57 UTC (rev 1243832)
@@ -1,79 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Morteza NourelahiAlamdari 
-
-pkgname=sqlfluff
-pkgver=1.0.0
-pkgrel=1
-pkgdesc='A dialect-flexible and configurable SQL linter'
-arch=('any')
-url='https://www.sqlfluff.com'
-license=('MIT')
-depends=(
-  'python'
-  'python-appdirs'
-  'python-cached-property'
-  'python-chardet'
-  'python-click'
-  'python-colorama'
-  'python-diff-cover'
-  'python-jinja'
-  'python-oyaml'
-  'python-pathspec'
-  'python-pytest'
-  'python-regex'
-  'python-tblib'
-  'python-toml'
-  'python-tqdm'
-  'python-typing_extensions'
-)
-makedepends=(
-  'git'
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-hypothesis')
-_commit='9faf106d55ce34a8357a8f377aae98f1f6be7517'
-source=("$pkgname::git+https://github.com/sqlfluff/sqlfluff.git#commit=$_commit;)
-b2sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  git describe --tags | sed 's/^v//'
-}
-
-build() {
-  cd "$pkgname"
-
-  python \
--m build \
---wheel \
---no-isolation
-}
-
-check() {
-  cd "$pkgname"
-
-  # skip failing tests for now
-  PYTHONPATH="$PWD/src:$PYTHONPATH" pytest \
---ignore test/core/plugin_test.py \
---ignore plugins/sqlfluff-templater-dbt \
---ignore plugins/sqlfluff-plugin-example \
---deselect 
test/test_testing.py::test_rules__test_helper_has_variable_introspection
-}
-
-package() {
-  cd "$pkgname"
-
-  python \
--m installer \
---destdir "$pkgdir" \
-dist/*.whl
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-
-  # license
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE.md
-}

Copied: sqlfluff/repos/community-any/PKGBUILD (from rev 1243831, 
sqlfluff/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 19:20:57 UTC (rev 1243832)
@@ -0,0 +1,79 @@
+# Maintainer: George Rawlinson 
+# Contributor: Morteza NourelahiAlamdari 
+
+pkgname=sqlfluff
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='A dialect-flexible and configurable SQL linter'
+arch=('any')
+url='https://www.sqlfluff.com'
+license=('MIT')
+depends=(
+  'python'
+  'python-appdirs'
+  'python-cached-property'
+  'python-chardet'
+  'python-click'
+  'python-colorama'
+  'python-diff-cover'
+  'python-jinja'
+  'python-oyaml'
+  'python-pathspec'
+  'python-pytest'
+  'python-regex'
+  'python-tblib'
+  'python-toml'
+  'python-tqdm'
+  'python-typing_extensions'
+)
+makedepends=(
+  'git'
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-hypothesis')
+_commit='f6492fe8aac132a872781dd148622afc50750a3f'
+source=("$pkgname::git+https://github.com/sqlfluff/sqlfluff.git#commit=$_commit;)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd "$pkgname"
+
+  python \
+-m build \
+--wheel \
+--no-isolation
+}
+
+check() {
+  cd "$pkgname"
+
+  # skip failing tests for now
+  PYTHONPATH="$PWD/src:$PYTHONPATH" pytest \
+--ignore test/core/plugin_test.py \
+--ignore plugins/sqlfluff-templater-dbt \
+--ignore plugins/sqlfluff-plugin-example \
+--deselect 
test/test_testing.py::test_rules__test_helper_has_variable_introspection
+}
+
+package() {
+  cd "$pkgname"
+
+  python \
+-m installer \
+--destdir "$pkgdir" \
+dist/*.whl
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE.md
+}



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

2022-07-03 Thread George Rawlinson via arch-commits
Date: Sunday, July 3, 2022 @ 19:19:50
  Author: grawlinson
Revision: 1243831

upgpkg: sqlfluff 1.1.0-1; new upstream release

Modified:
  sqlfluff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 18:54:39 UTC (rev 1243830)
+++ PKGBUILD2022-07-03 19:19:50 UTC (rev 1243831)
@@ -2,7 +2,7 @@
 # Contributor: Morteza NourelahiAlamdari 
 
 pkgname=sqlfluff
-pkgver=1.0.0
+pkgver=1.1.0
 pkgrel=1
 pkgdesc='A dialect-flexible and configurable SQL linter'
 arch=('any')
@@ -33,7 +33,7 @@
   'python-installer'
 )
 checkdepends=('python-hypothesis')
-_commit='9faf106d55ce34a8357a8f377aae98f1f6be7517'
+_commit='f6492fe8aac132a872781dd148622afc50750a3f'
 
source=("$pkgname::git+https://github.com/sqlfluff/sqlfluff.git#commit=$_commit;)
 b2sums=('SKIP')
 



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

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:08:19
  Author: heftig
Revision: 449831

archrelease: copy trunk to extra-x86_64

Added:
  gjs/repos/extra-x86_64/PKGBUILD
(from rev 449830, gjs/trunk/PKGBUILD)
Deleted:
  gjs/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 19:08:12 UTC (rev 449830)
+++ PKGBUILD2022-07-03 19:08:19 UTC (rev 449831)
@@ -1,50 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=gjs
-pkgver=1.72.0
-pkgrel=1
-epoch=2
-pkgdesc="Javascript Bindings for GNOME"
-url="https://wiki.gnome.org/Projects/Gjs;
-arch=(x86_64)
-license=(GPL)
-depends=(cairo gobject-introspection-runtime js91 dconf readline
- libsysprof-capture)
-makedepends=(gobject-introspection git meson dbus)
-checkdepends=(xorg-server-xvfb gtk3 gtk4)
-provides=(libgjs.so)
-options=(debug)
-_commit=f0341aaa64318752272c4c6a3aef335401f1b3c9  # tags/1.72.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gjs.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd gjs
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd gjs
-}
-
-build() {
-  CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
-  CXXFLAGS="${CXXFLAGS/-O2/-O3} -fno-semantic-interposition"
-  LDFLAGS+=" -Wl,-Bsymbolic-functions"
-
-  arch-meson gjs build -D installed_tests=false
-  meson compile -C build
-}
-
-check() {
-  xvfb-run -s '-nolisten local' \
-meson test -C build --print-errorlogs
-}
-
-package() {
-  depends+=(libreadline.so)
-  meson install -C build --destdir "$pkgdir"
-}
-
-# vim:set sw=2 et:

Copied: gjs/repos/extra-x86_64/PKGBUILD (from rev 449830, gjs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 19:08:19 UTC (rev 449831)
@@ -0,0 +1,50 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=gjs
+pkgver=1.72.0
+pkgrel=2
+epoch=2
+pkgdesc="Javascript Bindings for GNOME"
+url="https://wiki.gnome.org/Projects/Gjs;
+arch=(x86_64)
+license=(GPL)
+depends=(cairo gobject-introspection-runtime js91 dconf readline
+ libsysprof-capture)
+makedepends=(gobject-introspection git meson dbus)
+checkdepends=(xorg-server-xvfb gtk3 gtk4)
+provides=(libgjs.so)
+options=(debug)
+_commit=f0341aaa64318752272c4c6a3aef335401f1b3c9  # tags/1.72.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gjs.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd gjs
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd gjs
+}
+
+build() {
+  CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
+  CXXFLAGS="${CXXFLAGS/-O2/-O3} -fno-semantic-interposition"
+  LDFLAGS+=" -Wl,-Bsymbolic-functions"
+
+  arch-meson gjs build -D installed_tests=false
+  meson compile -C build
+}
+
+check() {
+  xvfb-run -s '-nolisten local' \
+meson test -C build --print-errorlogs
+}
+
+package() {
+  depends+=(libreadline.so)
+  meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set sw=2 et:



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

2022-07-03 Thread Jan Steffens via arch-commits
Date: Sunday, July 3, 2022 @ 19:08:12
  Author: heftig
Revision: 449830

1.72.0-2: rebuild for js91 91.11.0

Modified:
  gjs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 18:35:21 UTC (rev 449829)
+++ PKGBUILD2022-07-03 19:08:12 UTC (rev 449830)
@@ -3,7 +3,7 @@
 
 pkgname=gjs
 pkgver=1.72.0
-pkgrel=1
+pkgrel=2
 epoch=2
 pkgdesc="Javascript Bindings for GNOME"
 url="https://wiki.gnome.org/Projects/Gjs;



[arch-commits] Commit in openapi-generator/repos/community-any (4 files)

2022-07-03 Thread David Runge via arch-commits
Date: Sunday, July 3, 2022 @ 18:54:39
  Author: dvzrv
Revision: 1243830

archrelease: copy trunk to community-any

Added:
  openapi-generator/repos/community-any/PKGBUILD
(from rev 1243829, openapi-generator/trunk/PKGBUILD)
  openapi-generator/repos/community-any/openapi-generator.sh
(from rev 1243829, openapi-generator/trunk/openapi-generator.sh)
Deleted:
  openapi-generator/repos/community-any/PKGBUILD
  openapi-generator/repos/community-any/openapi-generator.sh

--+
 PKGBUILD |   68 -
 openapi-generator.sh |8 ++---
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 18:54:28 UTC (rev 1243829)
+++ PKGBUILD2022-07-03 18:54:39 UTC (rev 1243830)
@@ -1,34 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=openapi-generator
-pkgver=6.0.0
-pkgrel=1
-pkgdesc="Generation of API client libraries, server stubs, documentation and 
configuration"
-arch=(any)
-url="https://github.com/openapitools/openapi-generator/;
-license=(Apache)
-depends=(bash java-runtime=8)
-makedepends=(maven 'java-environment=8' strip-nondeterminism)
-source=(
-  
$pkgname-$pkgver.tar.gz::https://github.com/OpenAPITools/$pkgname/archive/v$pkgver.tar.gz
-  $pkgname.sh
-)
-sha512sums=('747343847d04a29c28a9bd3ccab5aa66ebcfd8925998821b3c8f5d8fb5327aefd642ead49f47fe0925a193a92f89bf23f18b1eedbcc0c1a71c3756e4e3a42f2d'
-
'0b81955e2da12182b70366c4d8ff48d970a0edee6242a13dc657879b2e1c15205a2bfa01cbef51dd86d90e1176569a211b704d30d19b529e15ead825a89a4e9c')
-b2sums=('91af591ee3abf6914f11b0f9d1076b7520cfc5412ed0e85dc3053885065d2aefa0d94a701af98bed669a376845801b020f38bcea86ff069f114de92d295d8437'
-
'd2f38df8fd23a32e95e9e09624283ca4927dce8cf6dbdbfc11547396ae2bd9c6c1ff65082447f1e30caba3654fd6e50558272d524242ca6727df7024729a1123')
-
-build() {
-  cd $pkgname-$pkgver
-  mvn clean install
-  # Timestamps in JAR files generated by Maven do not honour SOURCE_DATE_EPOCH
-  # (https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=74682318)
-  find . -type f -iname "*.jar" -exec strip-nondeterminism --timestamp 
"$SOURCE_DATE_EPOCH" {} \;
-}
-
-package() {
-  install -vDm 644 
$pkgname-$pkgver/modules/openapi-generator-cli/target/openapi-generator-cli.jar 
-t "$pkgdir/usr/share/java/$pkgname/"
-  install -vDm 644 
$pkgname-$pkgver/scripts/openapi-generator-cli-completion.bash 
"$pkgdir/usr/share/bash/bash-completion/completions/openapi-generator"
-  install -vDm 755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
-  ln -svf "$pkgname" "$pkgdir/usr/bin/$pkgname-cli"
-}

Copied: openapi-generator/repos/community-any/PKGBUILD (from rev 1243829, 
openapi-generator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 18:54:39 UTC (rev 1243830)
@@ -0,0 +1,34 @@
+# Maintainer: David Runge 
+
+pkgname=openapi-generator
+pkgver=6.0.1
+pkgrel=1
+pkgdesc="Generation of API client libraries, server stubs, documentation and 
configuration"
+arch=(any)
+url="https://github.com/openapitools/openapi-generator/;
+license=(Apache)
+depends=(bash java-runtime=8)
+makedepends=(maven 'java-environment=8' strip-nondeterminism)
+source=(
+  
$pkgname-$pkgver.tar.gz::https://github.com/OpenAPITools/$pkgname/archive/v$pkgver.tar.gz
+  $pkgname.sh
+)
+sha512sums=('09f7d2da73b86ca0c2294bb7cf7c75f62556fc50cee71b3423394d9e857061110aae91839acd970c027574f32901e4055800890785cde19fa00a4e436cd3d47b'
+
'0b81955e2da12182b70366c4d8ff48d970a0edee6242a13dc657879b2e1c15205a2bfa01cbef51dd86d90e1176569a211b704d30d19b529e15ead825a89a4e9c')
+b2sums=('6b3b7b0da8eb0214e1caa5955c1dfd6aec980d9677a217728a0635f7cb5d76fb124b1cef788269c2e8d37ea274c069f920fed3b72d69fbba0935ce274737192a'
+
'd2f38df8fd23a32e95e9e09624283ca4927dce8cf6dbdbfc11547396ae2bd9c6c1ff65082447f1e30caba3654fd6e50558272d524242ca6727df7024729a1123')
+
+build() {
+  cd $pkgname-$pkgver
+  mvn clean install
+  # Timestamps in JAR files generated by Maven do not honour SOURCE_DATE_EPOCH
+  # (https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=74682318)
+  find . -type f -iname "*.jar" -exec strip-nondeterminism --timestamp 
"$SOURCE_DATE_EPOCH" {} \;
+}
+
+package() {
+  install -vDm 644 
$pkgname-$pkgver/modules/openapi-generator-cli/target/openapi-generator-cli.jar 
-t "$pkgdir/usr/share/java/$pkgname/"
+  install -vDm 644 
$pkgname-$pkgver/scripts/openapi-generator-cli-completion.bash 
"$pkgdir/usr/share/bash/bash-completion/completions/openapi-generator"
+  install -vDm 755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
+  ln -svf "$pkgname" "$pkgdir/usr/bin/$pkgname-cli"
+}

Deleted: openapi-generator.sh
===
--- openapi-generator.sh2022-07-03 18:54:28 UTC (rev 1243829)
+++ openapi-generator.sh2022-07-03 18:54:39 

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

2022-07-03 Thread David Runge via arch-commits
Date: Sunday, July 3, 2022 @ 18:54:28
  Author: dvzrv
Revision: 1243829

upgpkg: openapi-generator 6.0.1-1: Upgrade to 6.0.1.

Modified:
  openapi-generator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 18:54:19 UTC (rev 1243828)
+++ PKGBUILD2022-07-03 18:54:28 UTC (rev 1243829)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=openapi-generator
-pkgver=6.0.0
+pkgver=6.0.1
 pkgrel=1
 pkgdesc="Generation of API client libraries, server stubs, documentation and 
configuration"
 arch=(any)
@@ -13,9 +13,9 @@
   
$pkgname-$pkgver.tar.gz::https://github.com/OpenAPITools/$pkgname/archive/v$pkgver.tar.gz
   $pkgname.sh
 )
-sha512sums=('747343847d04a29c28a9bd3ccab5aa66ebcfd8925998821b3c8f5d8fb5327aefd642ead49f47fe0925a193a92f89bf23f18b1eedbcc0c1a71c3756e4e3a42f2d'
+sha512sums=('09f7d2da73b86ca0c2294bb7cf7c75f62556fc50cee71b3423394d9e857061110aae91839acd970c027574f32901e4055800890785cde19fa00a4e436cd3d47b'
 
'0b81955e2da12182b70366c4d8ff48d970a0edee6242a13dc657879b2e1c15205a2bfa01cbef51dd86d90e1176569a211b704d30d19b529e15ead825a89a4e9c')
-b2sums=('91af591ee3abf6914f11b0f9d1076b7520cfc5412ed0e85dc3053885065d2aefa0d94a701af98bed669a376845801b020f38bcea86ff069f114de92d295d8437'
+b2sums=('6b3b7b0da8eb0214e1caa5955c1dfd6aec980d9677a217728a0635f7cb5d76fb124b1cef788269c2e8d37ea274c069f920fed3b72d69fbba0935ce274737192a'
 
'd2f38df8fd23a32e95e9e09624283ca4927dce8cf6dbdbfc11547396ae2bd9c6c1ff65082447f1e30caba3654fd6e50558272d524242ca6727df7024729a1123')
 
 build() {



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

2022-07-03 Thread David Runge via arch-commits
Date: Sunday, July 3, 2022 @ 18:54:19
  Author: dvzrv
Revision: 1243828

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   78 ++---
 1 file changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 18:53:54 UTC (rev 1243827)
+++ PKGBUILD2022-07-03 18:54:19 UTC (rev 1243828)
@@ -1,39 +0,0 @@
-# Maintainer: David Runge 
-
-_name=orjson
-pkgname=python-orjson
-pkgver=3.7.5
-pkgrel=1
-pkgdesc="Fast, correct Python JSON library supporting dataclasses and 
datetimes"
-arch=(x86_64)
-url="https://github.com/ijl/orjson;
-license=(Apache MIT)
-depends=(python)
-makedepends=(maturin python-installer rust)
-checkdepends=(python-arrow python-pendulum python-psutil python-pytest
-python-pytz python-xxhash)
-options=(debug)
-source=($pkgname-$pkgver.tar.gz::https://github.com/ijl/$_name/archive/$pkgver.tar.gz)
-sha512sums=('a0eadbd5af038e3f3c121b1d0dc0972184379fb033e0b9953039b91e12a659d04e0245c4d45e46ba1d4658454cb3e3b56e424428aa23ece0bcda2c84cd551139')
-b2sums=('e31d0c5a7266de504fcd1c6843e1e4bb46cfbb4e8ba03e872992cbc9a3dd9883c99ee52e483d2972adbcc09a7d5e327eb51aa00da632b850c14571ba9e090da4')
-
-build() {
-  cd $_name-$pkgver
-  maturin build --no-sdist --release --strip
-}
-
-check() {
-  local _site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-
-  cd $_name-$pkgver
-  python -m installer --destdir=test_dir target/wheels/*.whl
-  export PYTHONPATH="test_dir/$_site_packages:$PYTHONPATH"
-  pytest -vv
-}
-
-package() {
-  cd $_name-$pkgver
-  python -m installer --destdir="$pkgdir" target/wheels/*.whl
-  install -vDm 644 {CHANGELOG,README}.md -t "$pkgdir/usr/share/doc/$pkgname/"
-  install -vDm 644 LICENSE-* -t "$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: python-orjson/repos/community-x86_64/PKGBUILD (from rev 1243827, 
python-orjson/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 18:54:19 UTC (rev 1243828)
@@ -0,0 +1,39 @@
+# Maintainer: David Runge 
+
+_name=orjson
+pkgname=python-orjson
+pkgver=3.7.6
+pkgrel=1
+pkgdesc="Fast, correct Python JSON library supporting dataclasses and 
datetimes"
+arch=(x86_64)
+url="https://github.com/ijl/orjson;
+license=(Apache MIT)
+depends=(python)
+makedepends=(maturin python-installer rust)
+checkdepends=(python-arrow python-pendulum python-psutil python-pytest
+python-pytz python-xxhash)
+options=(debug)
+source=($pkgname-$pkgver.tar.gz::https://github.com/ijl/$_name/archive/$pkgver.tar.gz)
+sha512sums=('cb8815376079ded652dc04373e838c32141ba43b657919c9eeabf4f596c7c18198ea96316b0277754409ca3689e9dfa3ab89644388ea1ab79ed0c1221089a0aa')
+b2sums=('25c9e8ec426e1274e9d6e9d1c9bfa0dca3f1f09bc00289a25e67b0a1ade744d1c78e2de8db3b56b65f3dbabb22ffd442f9687f03f99810253323ba9ce24175ed')
+
+build() {
+  cd $_name-$pkgver
+  maturin build --no-sdist --release --strip
+}
+
+check() {
+  local _site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+
+  cd $_name-$pkgver
+  python -m installer --destdir=test_dir target/wheels/*.whl
+  export PYTHONPATH="test_dir/$_site_packages:$PYTHONPATH"
+  pytest -vv
+}
+
+package() {
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" target/wheels/*.whl
+  install -vDm 644 {CHANGELOG,README}.md -t "$pkgdir/usr/share/doc/$pkgname/"
+  install -vDm 644 LICENSE-* -t "$pkgdir/usr/share/licenses/$pkgname/"
+}



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

2022-07-03 Thread David Runge via arch-commits
Date: Sunday, July 3, 2022 @ 18:53:54
  Author: dvzrv
Revision: 1243827

upgpkg: python-orjson 3.7.6-1: Upgrade to 3.7.6.

Modified:
  python-orjson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 18:52:58 UTC (rev 1243826)
+++ PKGBUILD2022-07-03 18:53:54 UTC (rev 1243827)
@@ -2,7 +2,7 @@
 
 _name=orjson
 pkgname=python-orjson
-pkgver=3.7.5
+pkgver=3.7.6
 pkgrel=1
 pkgdesc="Fast, correct Python JSON library supporting dataclasses and 
datetimes"
 arch=(x86_64)
@@ -14,8 +14,8 @@
 python-pytz python-xxhash)
 options=(debug)
 
source=($pkgname-$pkgver.tar.gz::https://github.com/ijl/$_name/archive/$pkgver.tar.gz)
-sha512sums=('a0eadbd5af038e3f3c121b1d0dc0972184379fb033e0b9953039b91e12a659d04e0245c4d45e46ba1d4658454cb3e3b56e424428aa23ece0bcda2c84cd551139')
-b2sums=('e31d0c5a7266de504fcd1c6843e1e4bb46cfbb4e8ba03e872992cbc9a3dd9883c99ee52e483d2972adbcc09a7d5e327eb51aa00da632b850c14571ba9e090da4')
+sha512sums=('cb8815376079ded652dc04373e838c32141ba43b657919c9eeabf4f596c7c18198ea96316b0277754409ca3689e9dfa3ab89644388ea1ab79ed0c1221089a0aa')
+b2sums=('25c9e8ec426e1274e9d6e9d1c9bfa0dca3f1f09bc00289a25e67b0a1ade744d1c78e2de8db3b56b65f3dbabb22ffd442f9687f03f99810253323ba9ce24175ed')
 
 build() {
   cd $_name-$pkgver



[arch-commits] Commit in fisher/repos/community-any (PKGBUILD PKGBUILD)

2022-07-03 Thread George Rawlinson via arch-commits
Date: Sunday, July 3, 2022 @ 18:52:58
  Author: grawlinson
Revision: 1243826

archrelease: copy trunk to community-any

Added:
  fisher/repos/community-any/PKGBUILD
(from rev 1243825, fisher/trunk/PKGBUILD)
Deleted:
  fisher/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 18:52:11 UTC (rev 1243825)
+++ PKGBUILD2022-07-03 18:52:58 UTC (rev 1243826)
@@ -1,37 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Sefa Eyeoglu 
-# Contributor: Daniel Maslowski 
-
-pkgname=fisher
-pkgver=4.3.5
-pkgrel=1
-pkgdesc='A package manager for the fish shell'
-arch=('any')
-url='https://github.com/jorgebucaran/fisher'
-license=('MIT')
-depends=('fish' 'curl')
-makedepends=('git')
-# TODO add fishtape for tests
-_commit='604f8ff1eafcaca48ce870d9c716ac25813f94e6'
-source=("$pkgname::git+$url#commit=$_commit")
-b2sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  git describe --tags | sed 's/^v//'
-}
-
-package() {
-  cd "$pkgname"
-
-  # install to global fish directory
-  install -vDm644 -t "$pkgdir/usr/share/fish/vendor_functions.d" 
functions/fisher.fish
-  install -vDm644 -t "$pkgdir/usr/share/fish/vendor_completions.d" 
completions/fisher.fish
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-
-  # license
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE.md
-}

Copied: fisher/repos/community-any/PKGBUILD (from rev 1243825, 
fisher/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 18:52:58 UTC (rev 1243826)
@@ -0,0 +1,37 @@
+# Maintainer: George Rawlinson 
+# Contributor: Sefa Eyeoglu 
+# Contributor: Daniel Maslowski 
+
+pkgname=fisher
+pkgver=4.4.2
+pkgrel=1
+pkgdesc='A package manager for the fish shell'
+arch=('any')
+url='https://github.com/jorgebucaran/fisher'
+license=('MIT')
+depends=('fish' 'curl')
+makedepends=('git')
+# TODO add fishtape for tests
+_commit='2ef758ec27b074ed521c0479d6cd26fb72192a23'
+source=("$pkgname::git+$url#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+package() {
+  cd "$pkgname"
+
+  # install to global fish directory
+  install -vDm644 -t "$pkgdir/usr/share/fish/vendor_functions.d" 
functions/fisher.fish
+  install -vDm644 -t "$pkgdir/usr/share/fish/vendor_completions.d" 
completions/fisher.fish
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE.md
+}



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

2022-07-03 Thread George Rawlinson via arch-commits
Date: Sunday, July 3, 2022 @ 18:52:11
  Author: grawlinson
Revision: 1243825

upgpkg: fisher 4.4.2-1; new upstream release

Modified:
  fisher/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 18:35:40 UTC (rev 1243824)
+++ PKGBUILD2022-07-03 18:52:11 UTC (rev 1243825)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Maslowski 
 
 pkgname=fisher
-pkgver=4.3.5
+pkgver=4.4.2
 pkgrel=1
 pkgdesc='A package manager for the fish shell'
 arch=('any')
@@ -12,7 +12,7 @@
 depends=('fish' 'curl')
 makedepends=('git')
 # TODO add fishtape for tests
-_commit='604f8ff1eafcaca48ce870d9c716ac25813f94e6'
+_commit='2ef758ec27b074ed521c0479d6cd26fb72192a23'
 source=("$pkgname::git+$url#commit=$_commit")
 b2sums=('SKIP')
 



[arch-commits] Commit in python-mechanize/repos/community-any (PKGBUILD PKGBUILD)

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 16:21:13
  Author: jelle
Revision: 1243823

archrelease: copy trunk to community-any

Added:
  python-mechanize/repos/community-any/PKGBUILD
(from rev 1243822, python-mechanize/trunk/PKGBUILD)
Deleted:
  python-mechanize/repos/community-any/PKGBUILD

--+
 PKGBUILD |   90 ++---
 1 file changed, 45 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 16:21:02 UTC (rev 1243822)
+++ PKGBUILD2022-07-03 16:21:13 UTC (rev 1243823)
@@ -1,45 +0,0 @@
-# Maintainer: Eli Schwartz 
-# Maintainer: Jelle van der Waa 
-# Contributor: Alexander F Rødseth 
-# Contributor: Chris Brannon 
-# Contributor: Douglas Soares de Andrade
-# Contributor: Roberto Alsina 
-
-_pkgname=mechanize
-pkgname=python-mechanize
-pkgver=0.4.6
-pkgrel=3
-epoch=1
-pkgdesc='Stateful programmatic web browsing in Python'
-arch=('any')
-url="https://github.com/python-mechanize/mechanize;
-license=('BSD')
-depends=('python-html5lib')
-makedepends=('python-setuptools')
-checkdepends=('python-zope-interface' 'python-twisted')
-optdepends=('python-html5-parser: faster parsing of HTML')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('d16cea241253b5eb6380bf8a46627cad91d1f2c3f93a33279a31ce276d6c5d44'
-'SKIP')
-b2sums=('0adc7e0bcbef93051412d0d22e9f426984e197791b43b007087d70d3b15d4fce2f4868e8ad520e8621d35890d6454bd9bfc0910dc5af3d640e2620de4f536e16'
-'SKIP')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
-
-build() {
-  cd "mechanize-$pkgver"
-
-  python setup.py build
-}
-
-check() {
-  cd "mechanize-$pkgver"
-
-  python setup.py test
-}
-
-package() {
-  cd "mechanize-$pkgver"
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-mechanize/repos/community-any/PKGBUILD (from rev 1243822, 
python-mechanize/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 16:21:13 UTC (rev 1243823)
@@ -0,0 +1,45 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Eli Schwartz 
+# Contributor: Alexander F Rødseth 
+# Contributor: Chris Brannon 
+# Contributor: Douglas Soares de Andrade
+# Contributor: Roberto Alsina 
+
+_pkgname=mechanize
+pkgname=python-mechanize
+pkgver=0.4.8
+pkgrel=1
+epoch=1
+pkgdesc='Stateful programmatic web browsing in Python'
+arch=('any')
+url="https://github.com/python-mechanize/mechanize;
+license=('BSD')
+depends=('python-html5lib')
+makedepends=('python-setuptools')
+checkdepends=('python-zope-interface' 'python-twisted')
+optdepends=('python-html5-parser: faster parsing of HTML')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('5e86ac0777357e006eb04cd28f7ed9f811d48dffa603d3891ac6d2b92280dc91'
+'SKIP')
+b2sums=('bd91738092ac473ee6e65ee5f175479515f735a0433b112241f17061adf7e60ef6fa410fa549f088390b6ef6c8b2ff95e00335a626322ad170c88923c96e8e44'
+'SKIP')
+validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
+
+build() {
+  cd "mechanize-$pkgver"
+
+  python setup.py build
+}
+
+check() {
+  cd "mechanize-$pkgver"
+
+  python run_tests.py
+}
+
+package() {
+  cd "mechanize-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 16:21:02
  Author: jelle
Revision: 1243822

upgpkg: python-mechanize 1:0.4.8-1

Modified:
  python-mechanize/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 16:02:06 UTC (rev 1243821)
+++ PKGBUILD2022-07-03 16:21:02 UTC (rev 1243822)
@@ -1,5 +1,5 @@
-# Maintainer: Eli Schwartz 
 # Maintainer: Jelle van der Waa 
+# Contributor: Eli Schwartz 
 # Contributor: Alexander F Rødseth 
 # Contributor: Chris Brannon 
 # Contributor: Douglas Soares de Andrade
@@ -7,8 +7,8 @@
 
 _pkgname=mechanize
 pkgname=python-mechanize
-pkgver=0.4.6
-pkgrel=3
+pkgver=0.4.8
+pkgrel=1
 epoch=1
 pkgdesc='Stateful programmatic web browsing in Python'
 arch=('any')
@@ -19,9 +19,9 @@
 checkdepends=('python-zope-interface' 'python-twisted')
 optdepends=('python-html5-parser: faster parsing of HTML')
 
source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('d16cea241253b5eb6380bf8a46627cad91d1f2c3f93a33279a31ce276d6c5d44'
+sha256sums=('5e86ac0777357e006eb04cd28f7ed9f811d48dffa603d3891ac6d2b92280dc91'
 'SKIP')
-b2sums=('0adc7e0bcbef93051412d0d22e9f426984e197791b43b007087d70d3b15d4fce2f4868e8ad520e8621d35890d6454bd9bfc0910dc5af3d640e2620de4f536e16'
+b2sums=('bd91738092ac473ee6e65ee5f175479515f735a0433b112241f17061adf7e60ef6fa410fa549f088390b6ef6c8b2ff95e00335a626322ad170c88923c96e8e44'
 'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
 
@@ -34,7 +34,7 @@
 check() {
   cd "mechanize-$pkgver"
 
-  python setup.py test
+  python run_tests.py
 }
 
 package() {



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

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 16:02:06
  Author: jelle
Revision: 1243821

archrelease: copy trunk to community-x86_64

Added:
  gnome-boxes/repos/community-x86_64/PKGBUILD
(from rev 1243820, gnome-boxes/trunk/PKGBUILD)
Deleted:
  gnome-boxes/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 16:02:00 UTC (rev 1243820)
+++ PKGBUILD2022-07-03 16:02:06 UTC (rev 1243821)
@@ -1,31 +0,0 @@
-# Maintainer: Balló György 
-# Contributor: Stefano Facchini 
-
-pkgname=gnome-boxes
-pkgver=42.1
-pkgrel=1
-pkgdesc='Simple GNOME application to access virtual systems'
-arch=('x86_64')
-url='https://wiki.gnome.org/Apps/Boxes'
-license=('LGPL')
-groups=('gnome')
-depends=('cdrtools' 'edk2-ovmf' 'gtksourceview4' 'gtk-vnc' 'libarchive' 
'libgudev' 'libhandy'
- 'libosinfo' 'libsecret' 'libvirt-glib' 'mtools' 'qemu-desktop' 
'spice-gtk' 'tracker3'
- 'webkit2gtk')
-makedepends=('appstream-glib' 'gobject-introspection' 'itstool' 'meson' 
'spice-protocol' 'vala')
-options=('debug')
-source=("https://download.gnome.org/sources/$pkgname/${pkgver%%.*}/$pkgname-$pkgver.tar.xz;)
-sha256sums=('96f5d011b7508db561bf0d166c0ea9e8b121805c40e5d9f36119245c15172080')
-
-build() {
-  arch-meson $pkgname-$pkgver build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-}

Copied: gnome-boxes/repos/community-x86_64/PKGBUILD (from rev 1243820, 
gnome-boxes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 16:02:06 UTC (rev 1243821)
@@ -0,0 +1,31 @@
+# Maintainer: Balló György 
+# Contributor: Stefano Facchini 
+
+pkgname=gnome-boxes
+pkgver=42.2
+pkgrel=1
+pkgdesc='Simple GNOME application to access virtual systems'
+arch=('x86_64')
+url='https://wiki.gnome.org/Apps/Boxes'
+license=('LGPL')
+groups=('gnome')
+depends=('cdrtools' 'edk2-ovmf' 'gtksourceview4' 'gtk-vnc' 'libarchive' 
'libgudev' 'libhandy'
+ 'libosinfo' 'libsecret' 'libvirt-glib' 'mtools' 'qemu-desktop' 
'spice-gtk' 'tracker3'
+ 'webkit2gtk')
+makedepends=('appstream-glib' 'gobject-introspection' 'itstool' 'meson' 
'spice-protocol' 'vala')
+options=('debug')
+source=("https://download.gnome.org/sources/$pkgname/${pkgver%%.*}/$pkgname-$pkgver.tar.xz;)
+sha256sums=('f7c2bca14dcae2838db11fa2c80e23408e3548178af861a0d4d0dcc6a9780015')
+
+build() {
+  arch-meson $pkgname-$pkgver build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}



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

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 16:02:00
  Author: jelle
Revision: 1243820

upgpkg: gnome-boxes 42.2-1

Modified:
  gnome-boxes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 15:55:28 UTC (rev 1243819)
+++ PKGBUILD2022-07-03 16:02:00 UTC (rev 1243820)
@@ -2,7 +2,7 @@
 # Contributor: Stefano Facchini 
 
 pkgname=gnome-boxes
-pkgver=42.1
+pkgver=42.2
 pkgrel=1
 pkgdesc='Simple GNOME application to access virtual systems'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 makedepends=('appstream-glib' 'gobject-introspection' 'itstool' 'meson' 
'spice-protocol' 'vala')
 options=('debug')
 
source=("https://download.gnome.org/sources/$pkgname/${pkgver%%.*}/$pkgname-$pkgver.tar.xz;)
-sha256sums=('96f5d011b7508db561bf0d166c0ea9e8b121805c40e5d9f36119245c15172080')
+sha256sums=('f7c2bca14dcae2838db11fa2c80e23408e3548178af861a0d4d0dcc6a9780015')
 
 build() {
   arch-meson $pkgname-$pkgver build



[arch-commits] Commit in (python-atom)

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:55:28
  Author: jelle
Revision: 1243819

dropped to the AUR

Deleted:
  python-atom/



[arch-commits] Commit in python-zeroconf/repos/community-any (PKGBUILD PKGBUILD)

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:50:48
  Author: jelle
Revision: 1243818

archrelease: copy trunk to community-any

Added:
  python-zeroconf/repos/community-any/PKGBUILD
(from rev 1243817, python-zeroconf/trunk/PKGBUILD)
Deleted:
  python-zeroconf/repos/community-any/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 15:50:40 UTC (rev 1243817)
+++ PKGBUILD2022-07-03 15:50:48 UTC (rev 1243818)
@@ -1,33 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Maxim Andersson 
-
-pkgname=python-zeroconf
-pkgver=0.38.4
-pkgrel=1
-pkgdesc="A pure python implementation of multicast DNS service discovery"
-arch=('any')
-url="https://github.com/jstasiak/python-zeroconf;
-license=('LGPL')
-depends=('python' 'python-netifaces' 'python-six' 'python-ifaddr')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest')
-source=($pkgname-$pkgver.tar.gz::https://github.com/jstasiak/${pkgname}/archive/${pkgver}.tar.gz)
-sha256sums=('74ead61490a7573d1cab1e9e9ea6fe846be0843c4ddd55633788d4670837c0eb')
-
-build() {
-  cd "${pkgbase}-${pkgver}"
-  python3 setup.py build
-}
-
-package() {
-  cd "${pkgbase}-${pkgver}"
-
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-}
-
-check() {
-  cd "${pkgbase}-${pkgver}"
-  pytest -k 'not test_integration_with_listener_ipv6' tests
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-zeroconf/repos/community-any/PKGBUILD (from rev 1243817, 
python-zeroconf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 15:50:48 UTC (rev 1243818)
@@ -0,0 +1,33 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Maxim Andersson 
+
+pkgname=python-zeroconf
+pkgver=0.38.5
+pkgrel=1
+pkgdesc="A pure python implementation of multicast DNS service discovery"
+arch=('any')
+url="https://github.com/jstasiak/python-zeroconf;
+license=('LGPL')
+depends=('python' 'python-netifaces' 'python-six' 'python-ifaddr')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest')
+source=($pkgname-$pkgver.tar.gz::https://github.com/jstasiak/${pkgname}/archive/${pkgver}.tar.gz)
+sha256sums=('54fa609011b5d2b2ff3a689471a2af16a4bc20edcc4077360e94e93ec4fbea98')
+
+build() {
+  cd "${pkgbase}-${pkgver}"
+  python3 setup.py build
+}
+
+package() {
+  cd "${pkgbase}-${pkgver}"
+
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+}
+
+check() {
+  cd "${pkgbase}-${pkgver}"
+  pytest -k 'not test_integration_with_listener_ipv6' tests
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:50:40
  Author: jelle
Revision: 1243817

upgpkg: python-zeroconf 0.38.5-1

Modified:
  python-zeroconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 15:50:05 UTC (rev 1243816)
+++ PKGBUILD2022-07-03 15:50:40 UTC (rev 1243817)
@@ -2,7 +2,7 @@
 # Contributor: Maxim Andersson 
 
 pkgname=python-zeroconf
-pkgver=0.38.4
+pkgver=0.38.5
 pkgrel=1
 pkgdesc="A pure python implementation of multicast DNS service discovery"
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/jstasiak/${pkgname}/archive/${pkgver}.tar.gz)
-sha256sums=('74ead61490a7573d1cab1e9e9ea6fe846be0843c4ddd55633788d4670837c0eb')
+sha256sums=('54fa609011b5d2b2ff3a689471a2af16a4bc20edcc4077360e94e93ec4fbea98')
 
 build() {
   cd "${pkgbase}-${pkgver}"



[arch-commits] Commit in python-ifaddr/repos/community-any (PKGBUILD PKGBUILD)

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:50:05
  Author: jelle
Revision: 1243816

archrelease: copy trunk to community-any

Added:
  python-ifaddr/repos/community-any/PKGBUILD
(from rev 1243815, python-ifaddr/trunk/PKGBUILD)
Deleted:
  python-ifaddr/repos/community-any/PKGBUILD

--+
 PKGBUILD |   70 ++---
 1 file changed, 35 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 15:49:57 UTC (rev 1243815)
+++ PKGBUILD2022-07-03 15:50:05 UTC (rev 1243816)
@@ -1,35 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-_name=ifaddr
-pkgname=python-ifaddr
-pkgver=0.1.7
-pkgrel=5
-pkgdesc="Enumerates all IP addresses on all network adapters of the system"
-arch=('any')
-url="https://github.com/pydron/ifaddr;
-license=('MIT')
-depends=('python')
-makedepends=('python-setuptools')
-checkdepends=('python-nose')
-source=(https://github.com/pydron/ifaddr/archive/${pkgver}.tar.gz)
-sha512sums=('648d05c1aa91b81bfbda81c9753c3f35c7f451e9842eef9b46545db7817e4fdbe9b8f8f30f552cdef9522998960d7b07a4465dd49733fd784702f48aa875238d')
-
-build() {
-  cd "${_name}-${pkgver}"
-  python3 setup.py build
-}
-
-package() {
-  cd "${_name}-${pkgver}"
-
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
-  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-}
-
-check() {
-  cd "${_name}-${pkgver}"
-  nosetests ${_name}/test_ifaddr.py
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-ifaddr/repos/community-any/PKGBUILD (from rev 1243815, 
python-ifaddr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 15:50:05 UTC (rev 1243816)
@@ -0,0 +1,35 @@
+# Maintainer: Jelle van der Waa 
+
+_name=ifaddr
+pkgname=python-ifaddr
+pkgver=0.2.0
+pkgrel=1
+pkgdesc="Enumerates all IP addresses on all network adapters of the system"
+arch=('any')
+url="https://github.com/pydron/ifaddr;
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-nose' 'python-pytest' 'python-netifaces')
+source=(https://github.com/pydron/ifaddr/archive/${pkgver}.tar.gz)
+sha512sums=('47d26932ecf1aabbbecc738ac0d9a6d276f3e3131650b76896553db3f17392916357d31991d7098ff3efa1cb6bec20a41848be03221d179c2f454f94a39cb587')
+
+build() {
+  cd "${_name}-${pkgver}"
+  python3 setup.py build
+}
+
+package() {
+  cd "${_name}-${pkgver}"
+
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+
+}
+
+check() {
+  cd "${_name}-${pkgver}"
+  nosetests ${_name}/test_ifaddr.py
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:49:57
  Author: jelle
Revision: 1243815

upgpkg: python-ifaddr 0.2.0-1

Modified:
  python-ifaddr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 15:47:53 UTC (rev 1243814)
+++ PKGBUILD2022-07-03 15:49:57 UTC (rev 1243815)
@@ -2,8 +2,8 @@
 
 _name=ifaddr
 pkgname=python-ifaddr
-pkgver=0.1.7
-pkgrel=5
+pkgver=0.2.0
+pkgrel=1
 pkgdesc="Enumerates all IP addresses on all network adapters of the system"
 arch=('any')
 url="https://github.com/pydron/ifaddr;
@@ -10,9 +10,9 @@
 license=('MIT')
 depends=('python')
 makedepends=('python-setuptools')
-checkdepends=('python-nose')
+checkdepends=('python-nose' 'python-pytest' 'python-netifaces')
 source=(https://github.com/pydron/ifaddr/archive/${pkgver}.tar.gz)
-sha512sums=('648d05c1aa91b81bfbda81c9753c3f35c7f451e9842eef9b46545db7817e4fdbe9b8f8f30f552cdef9522998960d7b07a4465dd49733fd784702f48aa875238d')
+sha512sums=('47d26932ecf1aabbbecc738ac0d9a6d276f3e3131650b76896553db3f17392916357d31991d7098ff3efa1cb6bec20a41848be03221d179c2f454f94a39cb587')
 
 build() {
   cd "${_name}-${pkgver}"



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

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 15:47:53
  Author: arojas
Revision: 1243814

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   94 ++---
 1 file changed, 47 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 15:47:41 UTC (rev 1243813)
+++ PKGBUILD2022-07-03 15:47:53 UTC (rev 1243814)
@@ -1,47 +0,0 @@
-# Maintainer: Kyle Keen 
-# Contributor: minder
-
-pkgname=python-pillow
-pkgver=9.1.1
-pkgrel=1
-_appname=Pillow
-_py3basever=3.10
-pkgdesc="Python Imaging Library (PIL) fork."
-arch=('x86_64')
-url="https://python-pillow.github.io/;
-license=('BSD')
-depends=('python' 'freetype2' 'lcms2' 'libraqm' 'libtiff' 'openjpeg2' 
'libimagequant' 'libxcb')
-optdepends=('libwebp: for webp images'
-'tk: for the ImageTK module'
-'python-olefile: OLE2 file support'
-'python-pyqt5: for the ImageQt module')
-makedepends=('python-setuptools' 'libwebp' 'tk')
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/P/$_appname/$_appname-$pkgver.tar.gz;)
-md5sums=('f0d347298e72b403fbc3198677f394bb')
-
-prepare() {
-  cd "$srcdir/$_appname-$pkgver"
-}
-
-build() {
-  cd "$srcdir/$_appname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir/$_appname-$pkgver"
-
-  export PYTHONPATH="$PWD/build/lib.linux-$CARCH-${_py3basever%m}"
-  python selftest.py
-  pytest
-}
-
-package() {
-  cd "$srcdir/$_appname-$pkgver"
-  python3 setup.py install --root="$pkgdir/" --optimize=1
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  install -dm755 "$pkgdir/usr/include/python$_py3basever/"
-  install -m644 -t "$pkgdir/usr/include/python$_py3basever/" src/libImaging/*.h
-}

Copied: python-pillow/repos/community-x86_64/PKGBUILD (from rev 1243813, 
python-pillow/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 15:47:53 UTC (rev 1243814)
@@ -0,0 +1,47 @@
+# Maintainer: Kyle Keen 
+# Contributor: minder
+
+pkgname=python-pillow
+pkgver=9.2.0
+pkgrel=1
+_appname=Pillow
+_py3basever=3.10
+pkgdesc="Python Imaging Library (PIL) fork."
+arch=('x86_64')
+url="https://python-pillow.github.io/;
+license=('BSD')
+depends=('python' 'freetype2' 'lcms2' 'libraqm' 'libtiff' 'openjpeg2' 
'libimagequant' 'libxcb')
+optdepends=('libwebp: for webp images'
+'tk: for the ImageTK module'
+'python-olefile: OLE2 file support'
+'python-pyqt5: for the ImageQt module')
+makedepends=('python-setuptools' 'libwebp' 'tk')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/P/$_appname/$_appname-$pkgver.tar.gz;)
+md5sums=('218bdb951f3e59e8b782e329ece3416d')
+
+prepare() {
+  cd "$srcdir/$_appname-$pkgver"
+}
+
+build() {
+  cd "$srcdir/$_appname-$pkgver"
+  python setup.py build
+}
+
+check() {
+  cd "$srcdir/$_appname-$pkgver"
+
+  export PYTHONPATH="$PWD/build/lib.linux-$CARCH-${_py3basever%m}"
+  python selftest.py
+  pytest
+}
+
+package() {
+  cd "$srcdir/$_appname-$pkgver"
+  python3 setup.py install --root="$pkgdir/" --optimize=1
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  install -dm755 "$pkgdir/usr/include/python$_py3basever/"
+  install -m644 -t "$pkgdir/usr/include/python$_py3basever/" src/libImaging/*.h
+}



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

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 15:47:41
  Author: arojas
Revision: 1243813

Update to 9.2.0

Modified:
  python-pillow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 15:42:34 UTC (rev 1243812)
+++ PKGBUILD2022-07-03 15:47:41 UTC (rev 1243813)
@@ -2,7 +2,7 @@
 # Contributor: minder
 
 pkgname=python-pillow
-pkgver=9.1.1
+pkgver=9.2.0
 pkgrel=1
 _appname=Pillow
 _py3basever=3.10
@@ -18,7 +18,7 @@
 makedepends=('python-setuptools' 'libwebp' 'tk')
 checkdepends=('python-pytest')
 
source=("https://files.pythonhosted.org/packages/source/P/$_appname/$_appname-$pkgver.tar.gz;)
-md5sums=('f0d347298e72b403fbc3198677f394bb')
+md5sums=('218bdb951f3e59e8b782e329ece3416d')
 
 prepare() {
   cd "$srcdir/$_appname-$pkgver"



[arch-commits] Commit in python-meilisearch/repos/community-any (PKGBUILD PKGBUILD)

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:42:34
  Author: jelle
Revision: 1243812

archrelease: copy trunk to community-any

Added:
  python-meilisearch/repos/community-any/PKGBUILD
(from rev 1243811, python-meilisearch/trunk/PKGBUILD)
Deleted:
  python-meilisearch/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 15:42:28 UTC (rev 1243811)
+++ PKGBUILD2022-07-03 15:42:34 UTC (rev 1243812)
@@ -1,32 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=python-meilisearch
-pkgver=0.16.2
-pkgrel=2
-pkgdesc='Python client for MeiliSearch API'
-arch=(any)
-license=('MIT')
-url='https://pypi.org/project/meilisearch/'
-depends=(python)
-makedepends=(python-requests python-setuptools)
-checkdepends=('python-pytest' 'python-pytest-ordering')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/meilisearch/meilisearch-python/archive/v${pkgver}.tar.gz)
-sha512sums=('2455b147b67ab5334ee66fdee3e45b07aaf85a273fa003852530e18a8ba616e5167c475df732a3149c2e975e453aaf198f574cfaad31b85601dbf140f271891d')
-
-build() {
-  cd "meilisearch-python-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  # requires running meilisearch 
https://github.com/meilisearch/meilisearch-python/blob/master/.github/workflows/test.yml#L20
-  cd "meilisearch-python-${pkgver}"
-  #pytest .
-}
-
-package() {
-  cd "meilisearch-python-${pkgver}"
-  python setup.py install -O1 --root="${pkgdir}"
-
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: python-meilisearch/repos/community-any/PKGBUILD (from rev 1243811, 
python-meilisearch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 15:42:34 UTC (rev 1243812)
@@ -0,0 +1,32 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=python-meilisearch
+pkgver=0.18.3
+pkgrel=1
+pkgdesc='Python client for MeiliSearch API'
+arch=(any)
+license=('MIT')
+url='https://pypi.org/project/meilisearch/'
+depends=(python)
+makedepends=(python-requests python-setuptools)
+checkdepends=('python-pytest' 'python-pytest-ordering')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/meilisearch/meilisearch-python/archive/v${pkgver}.tar.gz)
+sha512sums=('4e18d964ffa1ebd77e13cb32b486f34e03a8f120ff9cbd9a981e8e604457722c9223b5017d8a15cfa130fa89212937d5c3a08e3d1580d37703aed2d44d5ffaa5')
+
+build() {
+  cd "meilisearch-python-${pkgver}"
+  python setup.py build
+}
+
+check() {
+  # requires running meilisearch 
https://github.com/meilisearch/meilisearch-python/blob/master/.github/workflows/test.yml#L20
+  cd "meilisearch-python-${pkgver}"
+  #pytest .
+}
+
+package() {
+  cd "meilisearch-python-${pkgver}"
+  python setup.py install -O1 --root="${pkgdir}"
+
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:42:28
  Author: jelle
Revision: 1243811

upgpkg: python-meilisearch 0.18.3-1

Modified:
  python-meilisearch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 15:34:32 UTC (rev 1243810)
+++ PKGBUILD2022-07-03 15:42:28 UTC (rev 1243811)
@@ -1,8 +1,8 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=python-meilisearch
-pkgver=0.16.2
-pkgrel=2
+pkgver=0.18.3
+pkgrel=1
 pkgdesc='Python client for MeiliSearch API'
 arch=(any)
 license=('MIT')
@@ -11,7 +11,7 @@
 makedepends=(python-requests python-setuptools)
 checkdepends=('python-pytest' 'python-pytest-ordering')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/meilisearch/meilisearch-python/archive/v${pkgver}.tar.gz)
-sha512sums=('2455b147b67ab5334ee66fdee3e45b07aaf85a273fa003852530e18a8ba616e5167c475df732a3149c2e975e453aaf198f574cfaad31b85601dbf140f271891d')
+sha512sums=('4e18d964ffa1ebd77e13cb32b486f34e03a8f120ff9cbd9a981e8e604457722c9223b5017d8a15cfa130fa89212937d5c3a08e3d1580d37703aed2d44d5ffaa5')
 
 build() {
   cd "meilisearch-python-${pkgver}"



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

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:40:07
  Author: jelle
Revision: 449828

archrelease: copy trunk to extra-x86_64

Added:
  dmidecode/repos/extra-x86_64/PKGBUILD
(from rev 449827, dmidecode/trunk/PKGBUILD)
Deleted:
  dmidecode/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 15:40:01 UTC (rev 449827)
+++ PKGBUILD2022-07-03 15:40:07 UTC (rev 449828)
@@ -1,28 +0,0 @@
-# Maintainer: Giovanni Scafora 
-# Contributor: Jan de Groot 
-
-pkgname=dmidecode
-pkgver=3.3
-pkgrel=1
-pkgdesc="Desktop Management Interface table related utilities"
-arch=('x86_64')
-url="https://www.nongnu.org/dmidecode;
-license=('GPL')
-depends=('glibc')
-source=("https://download.savannah.nongnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig})
-sha256sums=('82c737a780614c38a783e8055340d295e332fb12c7f418b5d21a0797d3fb1455'
-'SKIP')
-validpgpkeys=('90DFD6523C57373D81F63D19865688D038F02FC8') # Jean Delvare 

-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  sed -i "s:sbin:bin:g" Makefile
-  make prefix=/usr CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make prefix=/usr DESTDIR="${pkgdir}" install
-}

Copied: dmidecode/repos/extra-x86_64/PKGBUILD (from rev 449827, 
dmidecode/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 15:40:07 UTC (rev 449828)
@@ -0,0 +1,28 @@
+# Maintainer: Giovanni Scafora 
+# Contributor: Jan de Groot 
+
+pkgname=dmidecode
+pkgver=3.4
+pkgrel=1
+pkgdesc="Desktop Management Interface table related utilities"
+arch=('x86_64')
+url="https://www.nongnu.org/dmidecode;
+license=('GPL')
+depends=('glibc')
+source=("https://download.savannah.nongnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+sha256sums=('43cba851d8467c9979ccdbeab192eb6638c7d3a697eba5ddb779da8837542212'
+'SKIP')
+validpgpkeys=('7CA69F4460F1BDC41FD2C858A5526B9BB3CD4E6A') # Jean Delvare 
(kernel.org) 
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  sed -i "s:sbin:bin:g" Makefile
+  make prefix=/usr CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make prefix=/usr DESTDIR="${pkgdir}" install
+}



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

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:40:01
  Author: jelle
Revision: 449827

upgpkg: dmidecode 3.4-1

Modified:
  dmidecode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 15:30:13 UTC (rev 449826)
+++ PKGBUILD2022-07-03 15:40:01 UTC (rev 449827)
@@ -2,7 +2,7 @@
 # Contributor: Jan de Groot 
 
 pkgname=dmidecode
-pkgver=3.3
+pkgver=3.4
 pkgrel=1
 pkgdesc="Desktop Management Interface table related utilities"
 arch=('x86_64')
@@ -10,9 +10,9 @@
 license=('GPL')
 depends=('glibc')
 
source=("https://download.savannah.nongnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig})
-sha256sums=('82c737a780614c38a783e8055340d295e332fb12c7f418b5d21a0797d3fb1455'
+sha256sums=('43cba851d8467c9979ccdbeab192eb6638c7d3a697eba5ddb779da8837542212'
 'SKIP')
-validpgpkeys=('90DFD6523C57373D81F63D19865688D038F02FC8') # Jean Delvare 

+validpgpkeys=('7CA69F4460F1BDC41FD2C858A5526B9BB3CD4E6A') # Jean Delvare 
(kernel.org) 
 
 build() {
   cd ${pkgname}-${pkgver}



[arch-commits] Commit in bandit/repos/community-any (PKGBUILD PKGBUILD)

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:34:32
  Author: jelle
Revision: 1243810

archrelease: copy trunk to community-any

Added:
  bandit/repos/community-any/PKGBUILD
(from rev 1243809, bandit/trunk/PKGBUILD)
Deleted:
  bandit/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 15:34:21 UTC (rev 1243809)
+++ PKGBUILD2022-07-03 15:34:32 UTC (rev 1243810)
@@ -1,23 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=bandit
-pkgver=1.7.2
-pkgrel=1
-pkgdesc='Python security linter from OpenStack Security'
-arch=('any')
-url='https://github.com/PyCQA/bandit'
-license=('Apache')
-depends=('python-yaml' 'python-stevedore' 'python-appdirs' 'python-six' 
'python-pbr' 'python-gitpython')
-makedepends=('python-setuptools' 'git')
-source=(https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('fde27d409dcb867285f3c7a9ee88a079dae58211e17c2157601bbff9e9144e604def3c0179a7c9016266bdf70ed9da9ca519641f4aca4e76a30859c8e01177b9')
-
-build() {
-cd bandit-$pkgver
-python setup.py build
-}
-
-package() {
-cd bandit-$pkgver
-python setup.py install --root="$pkgdir" --skip-build --optimize=1
-}

Copied: bandit/repos/community-any/PKGBUILD (from rev 1243809, 
bandit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 15:34:32 UTC (rev 1243810)
@@ -0,0 +1,23 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=bandit
+pkgver=1.7.4
+pkgrel=1
+pkgdesc='Python security linter from OpenStack Security'
+arch=('any')
+url='https://github.com/PyCQA/bandit'
+license=('Apache')
+depends=('python-yaml' 'python-stevedore' 'python-appdirs' 'python-six' 
'python-pbr' 'python-gitpython')
+makedepends=('python-setuptools' 'git')
+source=(https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('93e1a25fd41e9409971f4cbac2ff73971ba270936a6b2aeecb3e0a2aa2015bcefd5eaab3cc94b2d9d96e4604d1a39c5ca1150c9eadd073357a90c5265c592407')
+
+build() {
+cd bandit-$pkgver
+python setup.py build
+}
+
+package() {
+cd bandit-$pkgver
+python setup.py install --root="$pkgdir" --skip-build --optimize=1
+}



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

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:34:21
  Author: jelle
Revision: 1243809

upgpkg: bandit 1.7.4-1

Modified:
  bandit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 15:20:46 UTC (rev 1243808)
+++ PKGBUILD2022-07-03 15:34:21 UTC (rev 1243809)
@@ -1,7 +1,7 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=bandit
-pkgver=1.7.2
+pkgver=1.7.4
 pkgrel=1
 pkgdesc='Python security linter from OpenStack Security'
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('python-yaml' 'python-stevedore' 'python-appdirs' 'python-six' 
'python-pbr' 'python-gitpython')
 makedepends=('python-setuptools' 'git')
 
source=(https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('fde27d409dcb867285f3c7a9ee88a079dae58211e17c2157601bbff9e9144e604def3c0179a7c9016266bdf70ed9da9ca519641f4aca4e76a30859c8e01177b9')
+sha512sums=('93e1a25fd41e9409971f4cbac2ff73971ba270936a6b2aeecb3e0a2aa2015bcefd5eaab3cc94b2d9d96e4604d1a39c5ca1150c9eadd073357a90c5265c592407')
 
 build() {
 cd bandit-$pkgver



[arch-commits] Commit in thunderbird/repos/extra-x86_64 (15 files)

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 15:30:13
  Author: arojas
Revision: 449826

archrelease: copy trunk to extra-x86_64

Added:
  thunderbird/repos/extra-x86_64/PKGBUILD
(from rev 449825, thunderbird/trunk/PKGBUILD)
  thunderbird/repos/extra-x86_64/cbindgen-0.24.patch
(from rev 449825, thunderbird/trunk/cbindgen-0.24.patch)
  thunderbird/repos/extra-x86_64/distribution.ini
(from rev 449825, thunderbird/trunk/distribution.ini)
  thunderbird/repos/extra-x86_64/keys/
  thunderbird/repos/extra-x86_64/metainfo.patch
(from rev 449825, thunderbird/trunk/metainfo.patch)
  thunderbird/repos/extra-x86_64/mozconfig.cfg
(from rev 449825, thunderbird/trunk/mozconfig.cfg)
  thunderbird/repos/extra-x86_64/thunderbird.desktop
(from rev 449825, thunderbird/trunk/thunderbird.desktop)
  thunderbird/repos/extra-x86_64/vendor-prefs.js
(from rev 449825, thunderbird/trunk/vendor-prefs.js)
Deleted:
  thunderbird/repos/extra-x86_64/PKGBUILD
  thunderbird/repos/extra-x86_64/cbindgen-0.24.patch
  thunderbird/repos/extra-x86_64/distribution.ini
  thunderbird/repos/extra-x86_64/metainfo.patch
  thunderbird/repos/extra-x86_64/mozconfig.cfg
  thunderbird/repos/extra-x86_64/thunderbird.desktop
  thunderbird/repos/extra-x86_64/vendor-prefs.js

-+
 PKGBUILD|  578 +-
 cbindgen-0.24.patch |   34 +-
 distribution.ini|   16 -
 metainfo.patch  |   22 -
 mozconfig.cfg   |   94 
 thunderbird.desktop |  346 ++---
 vendor-prefs.js |   34 +-
 7 files changed, 562 insertions(+), 562 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 15:29:44 UTC (rev 449825)
+++ PKGBUILD2022-07-03 15:30:13 UTC (rev 449826)
@@ -1,289 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Alexander Baldeck 
-# Contributor: Dale Blount 
-# Contributor: Anders Bostrom 
-
-pkgbase=thunderbird
-pkgname=(thunderbird)
-pkgver=91.10.0
-pkgrel=1
-pkgdesc='Standalone mail and news reader from mozilla.org'
-url='https://www.mozilla.org/thunderbird/'
-arch=(x86_64)
-license=(MPL GPL LGPL)
-depends=(
-  glibc gtk3 libgdk-3.so libgtk-3.so mime-types dbus libdbus-1.so dbus-glib
-  alsa-lib nss hunspell sqlite ttf-font libvpx libvpx.so zlib bzip2 libbz2.so
-  botan libwebp libwebp.so libwebpdemux.so libevent libjpeg-turbo libffi
-  libffi.so nspr gcc-libs libx11 libxrender libxfixes libxext libxcomposite
-  libxdamage pango libpango-1.0.so cairo gdk-pixbuf2 icu libicui18n.so
-  libicuuc.so freetype2 libfreetype.so fontconfig libfontconfig.so glib2
-  libglib-2.0.so pixman libpixman-1.so gnupg
-)
-makedepends=(
-  unzip zip diffutils python python-setuptools yasm nasm mesa imake libpulse
-  xorg-server-xvfb autoconf2.13 rust clang llvm cbindgen nodejs
-  gawk perl findutils libotr
-)
-options=(!emptydirs !makeflags !lto)
-source=(https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.xz{,.asc}
-thunderbird.desktop
-vendor-prefs.js
-distribution.ini
-mozconfig.cfg
-metainfo.patch
-cbindgen-0.24.patch)
-validpgpkeys=(
-  14F26682D0916CDD81E37B6D61B7B526D98F0353 # Mozilla Software Releases 

-  4360FE2109C49763186F8E21EBE41E90F6F12F6D # Mozilla Software Releases 

-)
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact foutre...@archlinux.org for
-# more information.
-_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
-
-# Mozilla API keys (see https://location.services.mozilla.com/api)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact hef...@archlinux.org for
-# more information.
-_mozilla_api_key=16674381-f021-49de-8622-3021c5942aff
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  echo "${noextract[@]}"
-
-  local src
-  for src in "${source[@]}"; do
-src="${src%%::*}"
-src="${src##*/}"
-[[ $src = *.patch ]] || continue
-echo "Applying patch $src..."
-patch -Np1 < "../$src"
-  done
-
-  printf "%s" "$_google_api_key" >google-api-key
-  printf "%s" "$_mozilla_api_key" >mozilla-api-key
-  cp ../mozconfig.cfg .mozconfig
-  sed "s|@PWD@|${PWD@Q}|g" -i .mozconfig
-}
-
-build() {
-  cd $pkgname-$pkgver
-  if [[ -n "${SOURCE_DATE_EPOCH}" ]]; then
-export MOZ_BUILD_DATE=$(date --date "@${SOURCE_DATE_EPOCH}" 
"+%Y%m%d%H%M%S")
-  fi
-  export MACH_USE_SYSTEM_PYTHON=1
-  ./mach configure
-  ./mach build
-  ./mach buildsymbols
-}
-
-package_thunderbird() {
-  optdepends=(
-'libotr: OTR support for active one-to-one chats'
-'libnotify: Notification integration'
-  )
-
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ./mach install
-
-  

[arch-commits] Commit in thunderbird/trunk (4 files)

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 15:29:44
  Author: arojas
Revision: 449825

upgpkg: thunderbird 91.11.0-1

Added:
  thunderbird/trunk/keys/
  thunderbird/trunk/keys/pgp/
  thunderbird/trunk/keys/pgp/14F26682D0916CDD81E37B6D61B7B526D98F0353.asc
  thunderbird/trunk/keys/pgp/4360FE2109C49763186F8E21EBE41E90F6F12F6D.asc

--+
 14F26682D0916CDD81E37B6D61B7B526D98F0353.asc |1 +
 4360FE2109C49763186F8E21EBE41E90F6F12F6D.asc |1 +
 2 files changed, 2 insertions(+)

Added: keys/pgp/14F26682D0916CDD81E37B6D61B7B526D98F0353.asc
===
(Binary files differ)

Index: thunderbird/trunk/keys/pgp/14F26682D0916CDD81E37B6D61B7B526D98F0353.asc
===
--- keys/pgp/14F26682D0916CDD81E37B6D61B7B526D98F0353.asc   2022-07-03 
15:29:32 UTC (rev 449824)
+++ keys/pgp/14F26682D0916CDD81E37B6D61B7B526D98F0353.asc   2022-07-03 
15:29:44 UTC (rev 449825)

Property changes on: 
thunderbird/trunk/keys/pgp/14F26682D0916CDD81E37B6D61B7B526D98F0353.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property
Added: keys/pgp/4360FE2109C49763186F8E21EBE41E90F6F12F6D.asc
===
(Binary files differ)

Index: thunderbird/trunk/keys/pgp/4360FE2109C49763186F8E21EBE41E90F6F12F6D.asc
===
--- keys/pgp/4360FE2109C49763186F8E21EBE41E90F6F12F6D.asc   2022-07-03 
15:29:32 UTC (rev 449824)
+++ keys/pgp/4360FE2109C49763186F8E21EBE41E90F6F12F6D.asc   2022-07-03 
15:29:44 UTC (rev 449825)

Property changes on: 
thunderbird/trunk/keys/pgp/4360FE2109C49763186F8E21EBE41E90F6F12F6D.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


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

2022-07-03 Thread Antonio Rojas via arch-commits
Date: Sunday, July 3, 2022 @ 15:29:32
  Author: arojas
Revision: 449824

Update to 91.11.0

Modified:
  thunderbird/trunk/PKGBUILD

--+
 PKGBUILD |  130 ++---
 1 file changed, 65 insertions(+), 65 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 12:13:19 UTC (rev 449823)
+++ PKGBUILD2022-07-03 15:29:32 UTC (rev 449824)
@@ -7,7 +7,7 @@
 
 pkgbase=thunderbird
 pkgname=(thunderbird)
-pkgver=91.10.0
+pkgver=91.11.0
 pkgrel=1
 pkgdesc='Standalone mail and news reader from mozilla.org'
 url='https://www.mozilla.org/thunderbird/'
@@ -214,7 +214,7 @@
 esac
 done
 
-sha512sums=('335d47e93d5fce4ff6e1ec0305cdaa86031f28289cc06f30ab3782bae484ad10ac4b9aa70911787627744277715edffd8ec8c3a2008f00b8b90ea02b0d79fcc8'
+sha512sums=('26b9242259b71eb14ddadffb34a59d07d515bbbc0cb806eed965a73b001ee81b3b1128d06cfdf3e50d5da4ef97be21d11193be34a582d3c9f27f27d2f97d90d2'
 'SKIP'
 
'a0061fcb2a7f66061e336a8d95948592f56f4752e56467f14ba63846720ebf845cce7511d1a2637e3b80d5a1ffdaa2fb783fa37195103425ef65222d45372012'
 
'6918c0de63deeddc6f53b9ba331390556c12e0d649cf54587dfaabb98b32d6a597b63cf02809c7c58b15501720455a724d527375a8fb9d757ccca57460320734'
@@ -222,68 +222,68 @@
 
'328422adac0cfe6af4ecdcd864004b7ada8f8171aa954fecc23a7e883e90a9bb0848372faa1100440dc754922f965e1e7b98c185aa88df190bff1051d2146c85'
 
'7e43b1f25827ddae615ad43fc1e11c6ba439d6c2049477dfe60e00188a70c0a76160c59a97cc01d1fd99c476f261c7cecb57628b5be48874be7cf991c22db290'
 
'3526402ccae1f0428f2e45bae8d0b2cb909ac2698bc3508b692b827839ccb21203ce414206039776f6ce946fc53e636290b7870e9886284d5e9d1e8ad050aac9'
-
'465c30a199e6d9f85f3c2b2306d91cc07822dc57752e750c527aefbc5e8da13c91e1df03dbe37d72c377fa99c6472c682a9b7b94550b3b8088d7b49e9e82585c'
-
'f039df005d4bf66ba38491ac9986d6543cc6c8c5d7d1d2eb30f286b8652e0948406b7a1fa85422ed1dc059e3ba99dcf7dca0f8d54a92a0e7b6fe00d2964b8414'
-
'e92b2ea2ed9e4617cb1915f7baf32abc930fd571b8039c657f01b3cb4139bdb147f2e7718eadb8a7601cc1968c2daff4471624476b0b95ebca403ca75c846a39'
-
'70d5029d8c0f6cd9b12db02f8000320c17c3d70c331d329e254e4007b004c8791941fdfd2825b4b2e3a36a3e0715e22bd883ebf332f6aa23efc62d0306ee94bb'
-
'1b7074e9e79182162e889c6fb9585328f9667d89764463bd95e821c38d62a02440702115d389cefde71bcdeff1016dd066b59b1f217950873d81ae5cfb42bb53'
-
'119b0b62e9e26cd3f7483150052771b4227f202bf5ed6ebb28bd66c95755521b0cfb3330a2cba679ee1af48f28974875394ff40d24ad60f102f7d3ccb7ccd8d0'
-
'd1494f59dadc03da9300e4731f4eb3631a3bda1b6bd3783a2393d6cf376482c759e4d6ec89f5cffaed00481887157c2a5be353eb753dbb351d1bb3d69600a157'
-
'436ab9176e424fd44d8bbb9f55330b1f63e32820e263e7c11c8aa97682675c3b28c8c1ed72a374ec981b50ebf94739ac47815eacbf1691aadf4c6b8f5d4e1d8b'
-
'0c167b073f86201ac090befacd518e3d01a578056b6ed5799b0d94d8c211ee016d7c7c782372b0cc752eced6363fdbe21acac4f7b31c72332968e14d5750b94f'
-
'3490393b5567f73d92e07b1cdac67ac87140b55626988970805297445d00288bd87f5d8e6af4ce1b0706dbeb94ac00af42af30c80db8bd76f724149661163714'
-
'582dcdc386a186b38d1e17bba3ee6c440aea552484a4414c9b8d01acc6d79f74bd5597482860e188de004556382516b3b08d41f22cff6fa338333416e17285ed'
-
'5d4052ed64e8f2c76c040cff29f7a49fa9bebde758ad842463f5b83b7d8bf16ea5c6aa0da4872408f8ef36e9532118f801055450077a45f914302129fc669b20'
-
'f59c58904a68def999e044bd7e2f87baa25eae785d6ec41f225af09cada49e38930f4c0e59ac11a0462088ba7162825f638f93fe4bd1c29c018046495bf0be23'
-
'19a663f63fff7cd4b8e02df4187050b953b2d430ab1e84834ff176dc224c4d727ca0d853da59091de54663ceb960ecc78e4c2352d1d4337b996dadd77a78d5b4'
-
'76a681875978abe62e9f7a9fb622dbd893320936c83d9b9954ccaa5fc83e40cc168cc6477ed7e134deceaff7abd454c0cc02e0bec1292659b4a019b867d3'
-
'83de7d42264899f418702054c12b16c3cbd4b9baedbd8090cc452c4a46c5016867b169f2e4adaaf8c061126e7548cfcf2d0ce4c08efb57ba90e31205206c0f25'
-
'839387e2ff2292811670f2fbfa7b9ad2cf3a99be2f79783110d42edc1cae4923394b2bc48240083e3b35996e75842c9f8cc101fa70faaf3de79008968a1d2da0'
-
'ca72d6a347c5348bd62ab9731b09bf9b5f887df866419c7ac61106272ffa42746fc4c447c2a699e31b06b54e3df6d2786140b6750884782d971936b4a2ce888a'
-
'1ddff301c1bcbc83e34616d47fcb6b3b07e2b2471d9f816cdfc7a016f9d2479f9c6d806d8996929963ba7ae7ce45d42b9652e47263ace539087c020b9dbb23ef'
-
'b599dfcd7768e398b0c7a40557336c34c55c890a41cdac0030bd1719fd5f48b57a45012be5fb7d2510298ba99dc7c5ab8f7944b6107934a1950b80c2d8562dc3'
-
'ab029aba6acc6de4f12ede9cb4e2af7a3ebaf536bba2e8f3ada5dd63cb3d0e078f1e84338bfb8fde98d2b02fa1d8802d217356607844de56fe38169c4f53f362'
-
'1b7f292afcafaa13a906c7d475460905a202a87048b75c47f248f930920ec5fda3d8cd24b6fad4c3bd5b2b4989bd6df6a63279cce6a8509aaceeb40d11447dc9'
-

[arch-commits] Commit in zigbee2mqtt/repos (5 files)

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:20:46
  Author: jelle
Revision: 1243808

archrelease: copy trunk to community-testing-x86_64

Added:
  zigbee2mqtt/repos/community-testing-x86_64/
  zigbee2mqtt/repos/community-testing-x86_64/PKGBUILD
(from rev 1243807, zigbee2mqtt/trunk/PKGBUILD)
  zigbee2mqtt/repos/community-testing-x86_64/zigbee2mqtt.service
(from rev 1243807, zigbee2mqtt/trunk/zigbee2mqtt.service)
  zigbee2mqtt/repos/community-testing-x86_64/zigbee2mqtt.sysusers
(from rev 1243807, zigbee2mqtt/trunk/zigbee2mqtt.sysusers)
  zigbee2mqtt/repos/community-testing-x86_64/zigbee2mqtt.tmpfiles
(from rev 1243807, zigbee2mqtt/trunk/zigbee2mqtt.tmpfiles)

--+
 PKGBUILD |   48 
 zigbee2mqtt.service  |   40 
 zigbee2mqtt.sysusers |2 ++
 zigbee2mqtt.tmpfiles |3 +++
 4 files changed, 93 insertions(+)

Copied: zigbee2mqtt/repos/community-testing-x86_64/PKGBUILD (from rev 1243807, 
zigbee2mqtt/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-07-03 15:20:46 UTC (rev 1243808)
@@ -0,0 +1,48 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Sebastian Zwierzchowski 
+
+pkgname=zigbee2mqtt
+pkgver=1.25.2
+pkgrel=2
+pkgdesc='A Zigbee to MQTT bridge'
+arch=('x86_64')
+url='https://www.zigbee2mqtt.io'
+license=('GPL3')
+depends=('nodejs')
+makedepends=('typescript' 'npm')
+backup=('etc/zigbee2mqtt/configuration.yaml')
+optdepends=('mosquitto: MQTT broker')
+options=(!emptydirs)
+source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/Koenkk/${pkgname}/archive/${pkgver}.tar.gz;
 'zigbee2mqtt.service'
+   'zigbee2mqtt.sysusers' 'zigbee2mqtt.tmpfiles')
+sha256sums=('96896ac656a1a60d2ec4b814b7e054b13360ce2415be4f3d61fda5b40f87328b'
+'5dea603b80d918039371f626e688b7152b390c5a5b413aa0af55c6a83d51af60'
+'3a86716e9036e97d885e9b5f37c7f87d9c2872435e4acf9fc4c9157264cf387b'
+'b8cb53b06176abb09e74e68daee702263f3d471b249c51b1b32d693fc7354fd8')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  npm install
+  NODE_ENV=production npm run build
+  npm prune --production
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -m0755 -d "${pkgdir}/usr/share/webapps/${pkgname}"
+  cp -a node_modules dist "${pkgdir}/usr/share/webapps/${pkgname}"
+
+  install -m0644 cli.js -t "${pkgdir}/usr/share/webapps/${pkgname}"
+  install -m0644 index.js -t "${pkgdir}/usr/share/webapps/${pkgname}"
+  install -m0644 package.json -t "${pkgdir}/usr/share/webapps/${pkgname}"
+
+  # sanitize permissions
+  find "${pkgdir}/usr" -type d -exec chmod 755 {} +
+  chown -R root:root "${pkgdir}"
+
+  install -Dm644 data/configuration.yaml 
"${pkgdir}/etc/${pkgname}/configuration.yaml"
+
+  install -Dm644 "${srcdir}/${pkgname}.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
+  install -Dm644 "${srcdir}/${pkgname}.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+  install -Dm644 "${srcdir}/${pkgname}.tmpfiles" 
"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+}

Copied: zigbee2mqtt/repos/community-testing-x86_64/zigbee2mqtt.service (from 
rev 1243807, zigbee2mqtt/trunk/zigbee2mqtt.service)
===
--- community-testing-x86_64/zigbee2mqtt.service
(rev 0)
+++ community-testing-x86_64/zigbee2mqtt.service2022-07-03 15:20:46 UTC 
(rev 1243808)
@@ -0,0 +1,40 @@
+[Unit]
+Description=zigbee2mqtt
+After=network.target
+
+[Service]
+ExecStart=node cli.js
+WorkingDirectory=/usr/share/webapps/zigbee2mqtt
+Environment=ZIGBEE2MQTT_DATA=/var/lib/zigbee2mqtt
+StandardOutput=inherit
+StandardError=inherit
+Restart=always
+User=zigbee2mqtt
+
+CapabilityBoundingSet=
+NoNewPrivileges=true
+RemoveIPC=true
+LockPersonality=true
+
+ProtectControlGroups=true
+ProtectKernelTunables=true
+ProtectKernelModules=true
+ProtectKernelLogs=true
+ProtectHostname=true
+ProtectProc=noaccess
+
+RestrictRealtime=true
+RestrictSUIDSGID=true
+RestrictNamespaces=true
+RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6
+
+ProtectSystem=strict
+ProtectHome=true
+PrivateTmp=true
+ReadWritePaths=/var/lib/zigbee2mqtt
+
+SystemCallArchitectures=native
+SystemCallFilter=@system-service @pkey
+
+[Install]
+WantedBy=multi-user.target

Copied: zigbee2mqtt/repos/community-testing-x86_64/zigbee2mqtt.sysusers (from 
rev 1243807, zigbee2mqtt/trunk/zigbee2mqtt.sysusers)
===
--- community-testing-x86_64/zigbee2mqtt.sysusers   
(rev 0)
+++ community-testing-x86_64/zigbee2mqtt.sysusers   2022-07-03 15:20:46 UTC 
(rev 1243808)
@@ -0,0 +1,2 @@
+u zigbee2mqtt - "zigbee2mqtt service user"
+m zigbee2mqtt uucp

Copied: zigbee2mqtt/repos/community-testing-x86_64/zigbee2mqtt.tmpfiles (from 
rev 

[arch-commits] Commit in hedgedoc/repos/community-any (8 files)

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:17:25
  Author: jelle
Revision: 1243807

archrelease: copy trunk to community-any

Added:
  hedgedoc/repos/community-any/PKGBUILD
(from rev 1243806, hedgedoc/trunk/PKGBUILD)
  hedgedoc/repos/community-any/hedgedoc.service
(from rev 1243806, hedgedoc/trunk/hedgedoc.service)
  hedgedoc/repos/community-any/sysusers.conf
(from rev 1243806, hedgedoc/trunk/sysusers.conf)
  hedgedoc/repos/community-any/tmpfiles.conf
(from rev 1243806, hedgedoc/trunk/tmpfiles.conf)
Deleted:
  hedgedoc/repos/community-any/PKGBUILD
  hedgedoc/repos/community-any/hedgedoc.service
  hedgedoc/repos/community-any/sysusers.conf
  hedgedoc/repos/community-any/tmpfiles.conf

--+
 PKGBUILD |  270 ++---
 hedgedoc.service |   94 +-
 sysusers.conf|2 
 tmpfiles.conf|6 -
 4 files changed, 186 insertions(+), 186 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 15:17:11 UTC (rev 1243806)
+++ PKGBUILD2022-07-03 15:17:25 UTC (rev 1243807)
@@ -1,135 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=hedgedoc
-pkgver=1.9.3
-pkgrel=2
-pkgdesc="Platform to write and share markdown"
-arch=('any')
-url='https://github.com/hedgedoc/hedgedoc'
-license=('AGPL3')
-depends=('nodejs' 'npm')
-makedepends=('nodejs' 'sqlite' 'python' 'node-gyp' 'git' 'yarn')
-optdepends=('postgresql: postgresql database support'
-'mariadb: mariadb database support'
-'sqlite: sqlite database support')
-backup=("etc/webapps/${pkgname}"/config.json)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/hedgedoc/${pkgname}/archive/${pkgver}.tar.gz;
-"sysusers.conf"
-"tmpfiles.conf"
-"hedgedoc.service")
-options=(!emptydirs)
-sha1sums=('3a954307746a247b8983a2462eda1efcfd00f758'
-  'dc4220c9d7e21d2b5b5c54462bb681375d1cce62'
-  '090b12e0214386e34e4390dd647cb07fd75f8ec0'
-  '90657365e5356ea660f2c2910442120a6e6b35db')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  sed -i 's/16.x/18.x/g' package.json
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  # Build steps from Dockerfile
-  yarn install --production=false
-  yarn run build
-  rm -rf node_modules
-  # Production modules
-  yarn install --production=true
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-
-  # removing unneeded files and directories
-  find node_modules -type f \
-  \( \
- -iname '*Makefile*' -o \
- -iname '*armv*' -o \
- -iname '*.cache' -o \
- -iname '*Makefile*' -o \
- -iname '*appveyor.yml' -o \
- -iname '*.babelrc' -o \
- -iname '*.bak' -o \
- -iname '*bower.json' -o \
- -iname '*.c' -o \
- -iname '*.cc' -o \
- -iname '*.cpp' -o \
- -iname '*.md' -o \
- -iname '*.markdown' -o \
- -iname '*.rst' -o \
- -iname '*.nycrc' -o \
- -iname '*.npmignore' -o \
- -iname '*.editorconfig' -o \
- -iname '*.el' -o \
- -iname '*.eslintignore' -o \
- -iname '*.eslintrc*' -o \
- -iname '*.fimbullinter.yaml' -o \
- -iname '*.gitattributes' -o \
- -iname '*.gitmodules' -o \
- -iname '*.h' -o \
- -iname '*.html' -o \
- -iname '*.jshintrc' -o \
- -iname '*.jscs.json' -o \
- -iname '*.log' -o \
- -iname '*logo.svg' -o \
- -iname '*.nvmrc' -o \
- -iname '*.o' -o \
- -iname '*package-lock.json' -o \
- -iname '*.travis.yml' -o \
- -iname '*.prettierrc' -o \
- -iname '*.sh' -o \
- -iname '*.tags*' -o \
- -iname '*.Dockerfile*' -o \
- -iname '*.tm_properties' -o \
- -iname '*.wotanrc.yaml' -o \
- -iname '*tsconfig.json' -o \
- -iname '*yarn.lock' \
- \) \
- -delete
-
-  find node_modules -type d \
-  \( \
- -iwholename '*.github' -o \
- -iwholename '*.tscache' -o \
- -iwholename '*/man' -o \
- -iwholename '*/test' -o \
- -iwholename '*/scripts' -o \
- -iwholename '*/git-hooks' -o \
- -iwholename '*/linux-arm64' -o \
- -iwholename '*/linux-armvy' -o \
- -iwholename '*/linux-armv7' -o \
- -iwholename '*/win32-ia32' -o \
- -iwholename '*/win32-x64' -o \
- -iwholename '*/darwin-x64' \
- \) \
- -exec rm -rvf {} +
-
-  install -m0755 -d "${pkgdir}/usr/share/webapps/${pkgname}"
-
-  # install application parts
-  cp -a bin public lib locales node_modules 
"${pkgdir}/usr/share/webapps/${pkgname}"  
-  install -m0644 app.js -t "${pkgdir}/usr/share/webapps/${pkgname}"
-  install -m0644 package.json -t "${pkgdir}/usr/share/webapps/${pkgname}"
-
-  # Make public/uploads a symlink to the hedgedoc  writable directory.
-  # An alternative would be to configure the uploadsPath in 

[arch-commits] Commit in hedgedoc/trunk (PKGBUILD hedgedoc.service)

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:17:11
  Author: jelle
Revision: 1243806

Drop npm dependency

Modified:
  hedgedoc/trunk/PKGBUILD
  hedgedoc/trunk/hedgedoc.service

--+
 PKGBUILD |6 +++---
 hedgedoc.service |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 15:16:46 UTC (rev 1243805)
+++ PKGBUILD2022-07-03 15:17:11 UTC (rev 1243806)
@@ -2,12 +2,12 @@
 
 pkgname=hedgedoc
 pkgver=1.9.3
-pkgrel=2
+pkgrel=3
 pkgdesc="Platform to write and share markdown"
 arch=('any')
 url='https://github.com/hedgedoc/hedgedoc'
 license=('AGPL3')
-depends=('nodejs' 'npm')
+depends=('nodejs')
 makedepends=('nodejs' 'sqlite' 'python' 'node-gyp' 'git' 'yarn')
 optdepends=('postgresql: postgresql database support'
 'mariadb: mariadb database support'
@@ -21,7 +21,7 @@
 sha1sums=('3a954307746a247b8983a2462eda1efcfd00f758'
   'dc4220c9d7e21d2b5b5c54462bb681375d1cce62'
   '090b12e0214386e34e4390dd647cb07fd75f8ec0'
-  '90657365e5356ea660f2c2910442120a6e6b35db')
+  '30278af880fb51f31af86d4fcc5032ac6067fadf')
 
 prepare() {
   cd "${pkgname}-${pkgver}"

Modified: hedgedoc.service
===
--- hedgedoc.service2022-07-03 15:16:46 UTC (rev 1243805)
+++ hedgedoc.service2022-07-03 15:17:11 UTC (rev 1243806)
@@ -14,7 +14,7 @@
 Group=hedgedoc
 
 WorkingDirectory=/usr/share/webapps/hedgedoc
-ExecStart=/usr/bin/npm start --production
+ExecStart=/usr/bin/node app.js
 
 CapabilityBoundingSet=
 NoNewPrivileges=true



[arch-commits] Commit in zigbee2mqtt/trunk (4 files)

2022-07-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 3, 2022 @ 15:16:46
  Author: jelle
Revision: 1243805

Final PKGBUILD

Added:
  zigbee2mqtt/trunk/zigbee2mqtt.service
  zigbee2mqtt/trunk/zigbee2mqtt.sysusers
  zigbee2mqtt/trunk/zigbee2mqtt.tmpfiles
Modified:
  zigbee2mqtt/trunk/PKGBUILD

--+
 PKGBUILD |   41 +
 zigbee2mqtt.service  |   40 
 zigbee2mqtt.sysusers |2 ++
 zigbee2mqtt.tmpfiles |3 +++
 4 files changed, 66 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 14:36:58 UTC (rev 1243804)
+++ PKGBUILD2022-07-03 15:16:46 UTC (rev 1243805)
@@ -1,4 +1,5 @@
-# Maintainer: Sebastian Zwierzchowski 
+# Maintainer: Jelle van der Waa 
+# Contributor: Sebastian Zwierzchowski 
 
 pkgname=zigbee2mqtt
 pkgver=1.25.2
@@ -10,35 +11,35 @@
 depends=('nodejs')
 makedepends=('typescript' 'npm')
 backup=('etc/zigbee2mqtt/configuration.yaml')
-install=zigbee2mqtt.install
-options=('!strip')
 optdepends=('mosquitto: MQTT broker')
-source=("https://github.com/Koenkk/${pkgname}/archive/${pkgver}.tar.gz; 
'zigbee2mqtt.service'
+options=(!emptydirs)
+source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/Koenkk/${pkgname}/archive/${pkgver}.tar.gz;
 'zigbee2mqtt.service'
'zigbee2mqtt.sysusers' 'zigbee2mqtt.tmpfiles')
 sha256sums=('96896ac656a1a60d2ec4b814b7e054b13360ce2415be4f3d61fda5b40f87328b'
-'3e065dd87c9ae7573165721a60d56756952bd8199b411a508dd343f64c755c7a'
+'5dea603b80d918039371f626e688b7152b390c5a5b413aa0af55c6a83d51af60'
 '3a86716e9036e97d885e9b5f37c7f87d9c2872435e4acf9fc4c9157264cf387b'
-'8f0fbe06c8d6e8fdf37feb31f244930025d76785451f9049fd90fe6e23c259f6')
+'b8cb53b06176abb09e74e68daee702263f3d471b249c51b1b32d693fc7354fd8')
 
-package() {
-  npm install -g --prefix "${pkgdir}/usr" --cache "${srcdir}/npm-cache" 
"${srcdir}/${pkgver}.tar.gz"
-  cd "${pkgdir}/usr/lib/node_modules/zigbee2mqtt"
-  npm install --save-dev
-  tsc -b .
+build() {
+  cd "${pkgname}-${pkgver}"
+  npm install
+  NODE_ENV=production npm run build
   npm prune --production
-  node index.js writehash
-  cp lib/util/settings.schema.json dist/util
-  cd -
-  find ${pkgdir} -name "*.d.ts" -delete
-  find ${pkgdir} -name "*.d.ts.map" -delete
-  find ${pkgdir} -name "*.js.map" -delete
+}
 
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -m0755 -d "${pkgdir}/usr/share/webapps/${pkgname}"
+  cp -a node_modules dist "${pkgdir}/usr/share/webapps/${pkgname}"
+
+  install -m0644 cli.js -t "${pkgdir}/usr/share/webapps/${pkgname}"
+  install -m0644 index.js -t "${pkgdir}/usr/share/webapps/${pkgname}"
+  install -m0644 package.json -t "${pkgdir}/usr/share/webapps/${pkgname}"
+
+  # sanitize permissions
   find "${pkgdir}/usr" -type d -exec chmod 755 {} +
   chown -R root:root "${pkgdir}"
 
-  find "${pkgdir}" -name package.json -print0 | xargs -r -0 sed -i '/_where/d'
-
-  cd "${pkgname}-${pkgver}"
   install -Dm644 data/configuration.yaml 
"${pkgdir}/etc/${pkgname}/configuration.yaml"
 
   install -Dm644 "${srcdir}/${pkgname}.service" 
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"

Added: zigbee2mqtt.service
===
--- zigbee2mqtt.service (rev 0)
+++ zigbee2mqtt.service 2022-07-03 15:16:46 UTC (rev 1243805)
@@ -0,0 +1,40 @@
+[Unit]
+Description=zigbee2mqtt
+After=network.target
+
+[Service]
+ExecStart=node cli.js
+WorkingDirectory=/usr/share/webapps/zigbee2mqtt
+Environment=ZIGBEE2MQTT_DATA=/var/lib/zigbee2mqtt
+StandardOutput=inherit
+StandardError=inherit
+Restart=always
+User=zigbee2mqtt
+
+CapabilityBoundingSet=
+NoNewPrivileges=true
+RemoveIPC=true
+LockPersonality=true
+
+ProtectControlGroups=true
+ProtectKernelTunables=true
+ProtectKernelModules=true
+ProtectKernelLogs=true
+ProtectHostname=true
+ProtectProc=noaccess
+
+RestrictRealtime=true
+RestrictSUIDSGID=true
+RestrictNamespaces=true
+RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6
+
+ProtectSystem=strict
+ProtectHome=true
+PrivateTmp=true
+ReadWritePaths=/var/lib/zigbee2mqtt
+
+SystemCallArchitectures=native
+SystemCallFilter=@system-service @pkey
+
+[Install]
+WantedBy=multi-user.target

Added: zigbee2mqtt.sysusers
===
--- zigbee2mqtt.sysusers(rev 0)
+++ zigbee2mqtt.sysusers2022-07-03 15:16:46 UTC (rev 1243805)
@@ -0,0 +1,2 @@
+u zigbee2mqtt - "zigbee2mqtt service user"
+m zigbee2mqtt uucp

Added: zigbee2mqtt.tmpfiles
===
--- zigbee2mqtt.tmpfiles(rev 0)
+++ zigbee2mqtt.tmpfiles2022-07-03 15:16:46 UTC (rev 1243805)
@@ -0,0 +1,3 @@
+d /var/lib/zigbee2mqtt 0750 zigbee2mqtt zigbee2mqtt
+z /etc/zigbee2mqtt/configuration.yaml 0640 zigbee2mqtt 

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

2022-07-03 Thread Justin Kromlinger via arch-commits
Date: Sunday, July 3, 2022 @ 14:36:58
  Author: hashworks
Revision: 1243804

archrelease: copy trunk to community-x86_64

Added:
  easyeffects/repos/community-x86_64/PKGBUILD
(from rev 1243803, easyeffects/trunk/PKGBUILD)
Deleted:
  easyeffects/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   68 ++---
 1 file changed, 34 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 14:36:55 UTC (rev 1243803)
+++ PKGBUILD2022-07-03 14:36:58 UTC (rev 1243804)
@@ -1,34 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Maintainer: Frederik Schwan 
-# Maintainer: Justin Kromlinger 
-# Contributor: Wellington 
-# Contributor: robertfoster
-
-pkgname=easyeffects
-pkgver=6.2.6
-pkgrel=1
-pkgdesc='Audio Effects for Pipewire applications'
-arch=('x86_64')
-url='https://github.com/wwmm/easyeffects'
-license=('GPL3')
-depends=('calf' 'gtk4' 'libebur128' 'libbs2b.so'
- 'librubberband.so' 'libsamplerate.so' 'libsigc-3.0.so' 'libsndfile.so'
- 'liblilv-0.so' 'lsp-plugins' 'libpipewire-0.3.so' 'rnnoise' 
'rubberband'
- 'tbb' 'zita-convolver' 'libadwaita-1.so' 'libfmt.so')
-makedepends=('appstream-glib' 'itstool' 'lv2' 'meson' 'nlohmann-json' 
'zam-plugins')
-optdepends=(
-  'zam-plugins: maximizer'
-  'mda.lv2: bass loudness plugin'
-)
-replaces=('pulseeffects')
-source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
-sha512sums=('0c93c6afdc337bd5fe60beab00475087eece250ac7014a8b5ac0e6cad9154b3ac22cfa61a44bbbaa99aff79d4706772e903a056c3719a58d9507772684d6f767')
-
-build() {
-  arch-meson ${pkgname}-${pkgver} build
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" ninja install -C build
-}

Copied: easyeffects/repos/community-x86_64/PKGBUILD (from rev 1243803, 
easyeffects/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 14:36:58 UTC (rev 1243804)
@@ -0,0 +1,34 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Maintainer: Frederik Schwan 
+# Maintainer: Justin Kromlinger 
+# Contributor: Wellington 
+# Contributor: robertfoster
+
+pkgname=easyeffects
+pkgver=6.2.6
+pkgrel=2
+pkgdesc='Audio Effects for Pipewire applications'
+arch=('x86_64')
+url='https://github.com/wwmm/easyeffects'
+license=('GPL3')
+depends=('calf' 'gtk4' 'libebur128' 'libbs2b.so'
+ 'librubberband.so' 'libsamplerate.so' 'libsigc-3.0.so' 'libsndfile.so'
+ 'liblilv-0.so' 'lsp-plugins' 'pipewire-pulse' 'rnnoise' 'rubberband'
+ 'tbb' 'zita-convolver' 'libadwaita-1.so' 'libfmt.so')
+makedepends=('appstream-glib' 'itstool' 'lv2' 'meson' 'nlohmann-json' 
'zam-plugins')
+optdepends=(
+  'zam-plugins: maximizer'
+  'mda.lv2: bass loudness plugin'
+)
+replaces=('pulseeffects')
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
+sha512sums=('0c93c6afdc337bd5fe60beab00475087eece250ac7014a8b5ac0e6cad9154b3ac22cfa61a44bbbaa99aff79d4706772e903a056c3719a58d9507772684d6f767')
+
+build() {
+  arch-meson ${pkgname}-${pkgver} build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja install -C build
+}



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

2022-07-03 Thread Justin Kromlinger via arch-commits
Date: Sunday, July 3, 2022 @ 14:36:55
  Author: hashworks
Revision: 1243803

Depend on pipewire-pulse instead of libpipewire-0.3.so, fixes #75216

See https://github.com/wwmm/easyeffects/issues/1614

Modified:
  easyeffects/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 14:25:36 UTC (rev 1243802)
+++ PKGBUILD2022-07-03 14:36:55 UTC (rev 1243803)
@@ -6,7 +6,7 @@
 
 pkgname=easyeffects
 pkgver=6.2.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Audio Effects for Pipewire applications'
 arch=('x86_64')
 url='https://github.com/wwmm/easyeffects'
@@ -13,7 +13,7 @@
 license=('GPL3')
 depends=('calf' 'gtk4' 'libebur128' 'libbs2b.so'
  'librubberband.so' 'libsamplerate.so' 'libsigc-3.0.so' 'libsndfile.so'
- 'liblilv-0.so' 'lsp-plugins' 'libpipewire-0.3.so' 'rnnoise' 
'rubberband'
+ 'liblilv-0.so' 'lsp-plugins' 'pipewire-pulse' 'rnnoise' 'rubberband'
  'tbb' 'zita-convolver' 'libadwaita-1.so' 'libfmt.so')
 makedepends=('appstream-glib' 'itstool' 'lv2' 'meson' 'nlohmann-json' 
'zam-plugins')
 optdepends=(



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:55:03
  Author: felixonmars
Revision: 1243795

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-ci/repos/community-staging-x86_64/PKGBUILD (from rev 1243794, 
haskell-ci/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-07-03 13:55:03 UTC (rev 1243795)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+# Maintainer: Caleb Maclennan 
+
+_hkgname=haskell-ci
+pkgname=haskell-ci
+pkgver=0.12.1
+pkgrel=252
+pkgdesc="Cabal package script generator for Travis-CI"
+url="https://haskell-ci.rtfd.org/;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-base-compat'
+ 'haskell-base16-bytestring' 'haskell-cabal-install-parsers' 
'haskell-cryptohash-sha256'
+ 'haskell-generic-lens-lite' 'haskell-hsyaml' 
'haskell-indexed-traversable'
+ 'haskell-indexed-traversable-instances' 'haskell-ini' 
'haskell-lattices'
+ 'haskell-network-uri' 'haskell-optparse-applicative' 'shellcheck' 
'haskell-temporary'
+ 'haskell-unordered-containers' 'haskell-zinza')
+makedepends=('ghc' 'uusi' 'haskell-diff' 'haskell-ansi-terminal' 
'haskell-tasty' 'haskell-tasty-golden')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('d93a6b8e880255469b34b568320659802252379f0c5486ed315b366fd07dae935a480047468912bc5a397b9e55b00ea964451790f963d05b8df1d426d871da1c')
+
+prepare(){
+  uusi -u attoparsec -u base-compat -u ShellCheck 
$_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  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-ci/trunk (PKGBUILD)

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:54:31
  Author: felixonmars
Revision: 1243794

upgpkg: haskell-ci 0.12.1-252: rebuild with skylighting 0.12.3.1, 
skylighting-core 0.12.3.1

Modified:
  haskell-ci/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 13:51:55 UTC (rev 1243793)
+++ PKGBUILD2022-07-03 13:54:31 UTC (rev 1243794)
@@ -4,7 +4,7 @@
 _hkgname=haskell-ci
 pkgname=haskell-ci
 pkgver=0.12.1
-pkgrel=251
+pkgrel=252
 pkgdesc="Cabal package script generator for Travis-CI"
 url="https://haskell-ci.rtfd.org/;
 license=("GPL")



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:51:55
  Author: felixonmars
Revision: 1243793

archrelease: copy trunk to community-staging-x86_64

Added:
  shellcheck/repos/community-staging-x86_64/
  shellcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 1243792, shellcheck/trunk/PKGBUILD)

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 1243792, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-07-03 13:51:55 UTC (rev 1243793)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Maintainer: Caleb Maclennan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.8.0
+pkgrel=131
+pkgdesc="Shell script analysis tool"
+url="https://www.shellcheck.net;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-diff' 'haskell-quickcheck' 
'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc' 'uusi')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz;)
+sha512sums=('71f4c6745c6094ab1832a0f19f3e65621af93dd57c2cd780b8702886481e5568d708a9d1884e82525b92b6d109bf94d843dd10ac991ead27ca6cd4c6c553e92d')
+
+prepare() {
+cd $pkgname-$pkgver
+gen-setup
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option='-pie'
+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
+
+./manpage
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+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}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:51:24
  Author: felixonmars
Revision: 1243792

upgpkg: shellcheck 0.8.0-131: rebuild with skylighting 0.12.3.1, 
skylighting-core 0.12.3.1

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 13:50:57 UTC (rev 1243791)
+++ PKGBUILD2022-07-03 13:51:24 UTC (rev 1243792)
@@ -5,7 +5,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.8.0
-pkgrel=130
+pkgrel=131
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net;
 license=("GPL")



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:50:57
  Author: felixonmars
Revision: 1243791

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
1243790, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-07-03 13:50:57 UTC (rev 1243791)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+# Maintainer: Caleb Maclennan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.15.1.1
+pkgrel=71
+pkgdesc="A static website compiler library"
+url="https://jaspervdj.be/hakyll;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-blaze-html' 'haskell-blaze-markup'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-hashable'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-lifted-async' 
'haskell-lrucache'
+ 'haskell-network-uri' 'haskell-optparse-applicative' 'pandoc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-wai'
+ 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('c0fee6bedfe19677484e41d2d0a098bf351c35a8b3adc7fe5de407a0686dd1d1108584b05525f70ce7cac94919b50c09be91706226bbc3f3e3d155cc9bc1eb34')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+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
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test --show-details=direct
+}
+
+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-hakyll/trunk (PKGBUILD)

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:50:24
  Author: felixonmars
Revision: 1243790

upgpkg: haskell-hakyll 4.15.1.1-71: rebuild with skylighting 0.12.3.1, 
skylighting-core 0.12.3.1

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 13:50:07 UTC (rev 1243789)
+++ PKGBUILD2022-07-03 13:50:24 UTC (rev 1243790)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.15.1.1
-pkgrel=70
+pkgrel=71
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll;
 license=("BSD")



[arch-commits] Commit in pandoc-crossref/repos (2 files)

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:50:07
  Author: felixonmars
Revision: 1243789

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 1243788, pandoc-crossref/trunk/PKGBUILD)

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
1243788, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-07-03 13:50:07 UTC (rev 1243789)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Maintainer: Caleb Maclennan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.12.2
+pkgrel=124
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname};
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-gitrev' 'haskell-microlens'
+ 'haskell-microlens-mtl' 'haskell-microlens-th' 'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz;)
+sha512sums=('44223954ee459a3215ab162e6098a1bd6bce0c02d09aee72cebbe26d977f3cce90e1cd90c01628df68c4d1f0452694eb5b19ebee6ca30e4f8e8e34d0040b4670')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests --datasubdir=$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-f-enable_flaky_tests
+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 $pkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $pkgname-$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}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:49:37
  Author: felixonmars
Revision: 1243788

upgpkg: pandoc-crossref 0.3.12.2-124: rebuild with skylighting 0.12.3.1, 
skylighting-core 0.12.3.1

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 13:46:49 UTC (rev 1243787)
+++ PKGBUILD2022-07-03 13:49:37 UTC (rev 1243788)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.12.2
-pkgrel=123
+pkgrel=124
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:46:49
  Author: felixonmars
Revision: 1243787

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 1243786, pandoc/trunk/PKGBUILD)

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 1243786, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-07-03 13:46:49 UTC (rev 1243787)
@@ -0,0 +1,69 @@
+# Maintainer: Felix Yan 
+# Maintainer: Caleb Maclennan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.17.1.1
+pkgrel=53
+pkgdesc='Conversion between markup formats'
+url='https://pandoc.org'
+license=('GPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-glob' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-case-insensitive' 'haskell-citeproc'
+ 'haskell-commonmark' 'haskell-commonmark-extensions' 
'haskell-commonmark-pandoc'
+ 'haskell-connection' 'haskell-data-default' 'haskell-doclayout' 
'haskell-doctemplates'
+ 'haskell-emojis' 'haskell-file-embed' 'haskell-haddock-library' 
'haskell-hslua'
+ 'haskell-hslua-aeson' 'haskell-hslua-marshalling' 
'haskell-hslua-module-path'
+ 'haskell-hslua-module-system' 'haskell-hslua-module-text' 
'haskell-hslua-module-version'
+ 'haskell-http-client' 'haskell-http-client-tls' 'haskell-http-types' 
'haskell-ipynb'
+ 'haskell-jira-wiki-markup' 'haskell-lpeg' 'haskell-network' 
'haskell-network-uri'
+ 'haskell-pandoc-lua-marshal' 'haskell-pandoc-types' 
'haskell-pretty-show' 'haskell-random'
+ 'haskell-safe' 'haskell-scientific' 'haskell-skylighting' 
'haskell-skylighting-core'
+ 'haskell-split' 'haskell-syb' 'haskell-tagsoup' 'haskell-temporary' 
'haskell-texmath'
+ 'haskell-text-conversions' 'haskell-unicode-collation' 
'haskell-unicode-transforms'
+ 'haskell-xml' 'haskell-xml-conduit' 'haskell-yaml' 
'haskell-zip-archive' 'haskell-zlib')
+optdepends=('pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'uusi' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-lua' 
'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('1402240d094d62e071349d87d0a2ffe3e82269a80c82a39cefc7c2938ac86594011459068c1dd526127d72dd8c20816896d5c38761e9691370fa11190ec51b06')
+
+prepare() {
+cd $pkgname-$pkgver
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+uusi -u texmath $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-f-trypandoc -f-embed_data_files -f-static
+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 $pkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || echo "Tests failed"
+}
+
+package() {
+cd $pkgname-$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}"
+rm "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+install -Dm644 man/pandoc.1 -t "${pkgdir}"/usr/share/man/man1/
+}



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:46:25
  Author: felixonmars
Revision: 1243786

upgpkg: pandoc 2.17.1.1-53: rebuild with skylighting 0.12.3.1, skylighting-core 
0.12.3.1

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 13:33:10 UTC (rev 1243785)
+++ PKGBUILD2022-07-03 13:46:25 UTC (rev 1243786)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc
 pkgver=2.17.1.1
-pkgrel=52
+pkgrel=53
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:33:10
  Author: felixonmars
Revision: 1243785

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-skylighting/repos/community-staging-x86_64/PKGBUILD (from rev 
1243784, haskell-skylighting/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-07-03 13:33:10 UTC (rev 1243785)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting
+pkgname=haskell-skylighting
+pkgver=0.12.3.1
+pkgrel=1
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('GPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-skylighting-core')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('3eb93400612992d5aed828ebe0c1b76dbfbd7ec9cd0d0d667b524df51968997ffd429bfdbecbaa32a6108903872e119614b16f8aedf00eaf6d9a7b79ccb06c58')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-f-executable
+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"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:32:40
  Author: felixonmars
Revision: 1243784

upgpkg: haskell-skylighting 0.12.3.1-1: rebuild with skylighting 0.12.3.1, 
skylighting-core 0.12.3.1

Modified:
  haskell-skylighting/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 13:30:44 UTC (rev 1243783)
+++ PKGBUILD2022-07-03 13:32:40 UTC (rev 1243784)
@@ -2,8 +2,8 @@
 
 _hkgname=skylighting
 pkgname=haskell-skylighting
-pkgver=0.12.3
-pkgrel=27
+pkgver=0.12.3.1
+pkgrel=1
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('GPL2')
@@ -11,7 +11,7 @@
 depends=('ghc-libs' 'haskell-skylighting-core')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('ad944f1ac73890421cf1b818a35d45fc872cb0d6c780a88f3af45754f6e42332c6b3b55c8898ab96843d243b43368fd876d4069b30900c2eea4801dd329c867b')
+sha512sums=('3eb93400612992d5aed828ebe0c1b76dbfbd7ec9cd0d0d667b524df51968997ffd429bfdbecbaa32a6108903872e119614b16f8aedf00eaf6d9a7b79ccb06c58')
 
 build() {
 cd $_hkgname-$pkgver



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

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:30:44
  Author: felixonmars
Revision: 1243783

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-skylighting-core/repos/community-staging-x86_64/
  haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD
(from rev 1243782, haskell-skylighting-core/trunk/PKGBUILD)

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

Copied: haskell-skylighting-core/repos/community-staging-x86_64/PKGBUILD (from 
rev 1243782, haskell-skylighting-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-07-03 13:30:44 UTC (rev 1243783)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+_hkgname=skylighting-core
+pkgname=haskell-skylighting-core
+pkgver=0.12.3.1
+pkgrel=1
+pkgdesc="Syntax highlighting library"
+url="https://github.com/jgm/skylighting;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 
'haskell-attoparsec'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-case-insensitive'
+ 'haskell-colour' 'haskell-safe' 'haskell-utf8-string' 
'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-diff' 'haskell-pretty-show' 'haskell-quickcheck' 
'haskell-tasty'
+ 'haskell-tasty-golden' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('85d005dc4fa6bf968f29a1721d669a310261052c68dbe889dc053400de751a8cda3a99a9aa7d19b3921fb81ea482637fd650140776d90207b876e639a736ef19')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-fexecutable
+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 --show-details=direct
+}
+
+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-skylighting-core/trunk (PKGBUILD)

2022-07-03 Thread Felix Yan via arch-commits
Date: Sunday, July 3, 2022 @ 13:30:12
  Author: felixonmars
Revision: 1243782

upgpkg: haskell-skylighting-core 0.12.3.1-1: rebuild with skylighting 0.12.3.1, 
skylighting-core 0.12.3.1

Modified:
  haskell-skylighting-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 12:49:42 UTC (rev 1243781)
+++ PKGBUILD2022-07-03 13:30:12 UTC (rev 1243782)
@@ -2,8 +2,8 @@
 
 _hkgname=skylighting-core
 pkgname=haskell-skylighting-core
-pkgver=0.12.3
-pkgrel=27
+pkgver=0.12.3.1
+pkgrel=1
 pkgdesc="Syntax highlighting library"
 url="https://github.com/jgm/skylighting;
 license=('BSD')
@@ -14,7 +14,7 @@
 makedepends=('ghc' 'haskell-diff' 'haskell-pretty-show' 'haskell-quickcheck' 
'haskell-tasty'
  'haskell-tasty-golden' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('e9eaa549af5ea7ef4a2700a1dbceb0f81e1105c1d668fcccef5284f87a3f5e3238beef02509694e03514a0893ed7c472f5210d3bbae7299d53960b120fb26a2e')
+sha512sums=('85d005dc4fa6bf968f29a1721d669a310261052c68dbe889dc053400de751a8cda3a99a9aa7d19b3921fb81ea482637fd650140776d90207b876e639a736ef19')
 
 build() {
 cd $_hkgname-$pkgver



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

2022-07-03 Thread David Runge via arch-commits
Date: Sunday, July 3, 2022 @ 12:49:42
  Author: dvzrv
Revision: 1243781

archrelease: copy trunk to community-x86_64

Added:
  snd/repos/community-x86_64/PKGBUILD
(from rev 1243780, snd/trunk/PKGBUILD)
Deleted:
  snd/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  199 ++---
 1 file changed, 99 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-07-03 12:49:30 UTC (rev 1243780)
+++ PKGBUILD2022-07-03 12:49:42 UTC (rev 1243781)
@@ -1,100 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Ray Rashif 
-# Contributor: Juergen Hoetzel 
-
-pkgname=snd
-pkgver=22.4
-pkgrel=1
-pkgdesc="An advanced sound editor"
-arch=(x86_64)
-url="https://ccrma.stanford.edu/software/snd/;
-license=(custom:free)
-groups=(pro-audio)
-depends=(glibc glu gmp gsl libglvnd libmpc libx11 libxext
-libxpm libxt mpfr openmotif)
-# TODO: maybe replace mpg123 with mpg321
-makedepends=(alsa-lib fftw flac gendesk jack ladspa libsamplerate mpg123 ruby
-speex timidity++ vorbis-tools wavpack)
-optdepends=(
-  'flac: For flac support'
-  'mpg123: For MPEG support'
-  'ruby: for snd-ruby'
-  'speex: For speex support'
-  'timidity++: For MIDI to WAVE support'
-  'vorbis-tools: For OGG support'
-  'wavpack: For wav support'
-)
-options=(debug)
-source=(https://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
-sha512sums=('b6be7af7545fc53de0c3fe6496cc78f44f36842571b82dc04494cc598ad734ea3f18cde370efa26fb38e9866e34c5085c6176ff8bee53c5e90fea6ace399fdf3')
-b2sums=('f5e004e7122db40fa74d4c2abeace180c7b3f37143278fe8212d0e414fb967961ecb39e3abb461ca9fb286393253b2e413f6cbc717d93dfe50660aa96d2521fc')
-
-prepare() {
-  gendesk -f -n \
-  --pkgname "edu.stanford.ccrma.$pkgname-s7" \
-  --name "$pkgname (s7)" \
-  --exec "$pkgname-s7" \
-  --genericname "Sound Editor" \
-  --categories "AudioVideo;Audio"
-  gendesk -f -n \
-  --pkgname "edu.stanford.ccrma.$pkgname-ruby" \
-  --name "$pkgname (ruby)" \
-  --exec "$pkgname-ruby" \
-  --genericname "Sound Editor" \
-  --categories "AudioVideo;Audio"
-  gendesk -f -n \
-  --pkgname "edu.stanford.ccrma.$pkgname" \
-  --name $pkgname \
-  --exec $pkgname \
-  --genericname "Sound Editor" \
-  --categories "AudioVideo;Audio"
-  rm -v $pkgname-$pkgver/*.desktop
-  cp -av $pkgname-$pkgver $pkgname-ruby-$pkgver
-}
-
-build() {
-  local options=(
---prefix=/usr
---with-alsa
---with-gl
---with-gmp
---with-jack
---with-ladspa
---with-motif
-  )
-  (
-  cd $pkgname-$pkgver
-  ./configure "${options[@]}" --with-s7
-  make
-  )
-  (
-  cd $pkgname-ruby-$pkgver
-  ./configure "${options[@]}" --with-ruby
-  make
-  )
-}
-
-package() {
-  depends+=(libasound.so libfftw3.so libjack.so libsamplerate.so)
-
-  make DESTDIR="$pkgdir" install -C $pkgname-$pkgver
-  mv -v "$pkgdir/usr/bin/snd"{,-s7}
-
-  make DESTDIR="$pkgdir" install -C $pkgname-ruby-$pkgver
-  mv -v "$pkgdir/usr/bin/snd"{,-ruby}
-
-  # set s7 version as default
-  ln -sv snd-s7 "$pkgdir/usr/bin/snd"
-
-  # XDG desktop integration
-  install -vDm 644 *.desktop -t "$pkgdir/usr/share/applications/"
-  # license
-  install -vDm 644 $pkgname-$pkgver/COPYING -t 
"$pkgdir/usr/share/licenses/$pkgname"
-  # docs
-  install -vDm 644 $pkgname-$pkgver/{{HISTORY,README}.Snd,NEWS} -t 
"$pkgdir/usr/share/doc/$pkgname/"
-  install -vDm 644 $pkgname-$pkgver/*.html -t 
"$pkgdir/usr/share/doc/$pkgname/html"
-  install -vDm 644 $pkgname-$pkgver/pix/*.png -t 
"$pkgdir/usr/share/doc/$pkgname/html/pix"
-
-  # remove examples of unsupported extension language forth (not in the repos)
-  rm -v "$pkgdir/usr/share/$pkgname/"*.fs
-}

Copied: snd/repos/community-x86_64/PKGBUILD (from rev 1243780, 
snd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-07-03 12:49:42 UTC (rev 1243781)
@@ -0,0 +1,99 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: Juergen Hoetzel 
+
+pkgname=snd
+pkgver=22.5
+pkgrel=1
+pkgdesc="An advanced sound editor"
+arch=(x86_64)
+url="https://ccrma.stanford.edu/software/snd/;
+license=(custom:free)
+groups=(pro-audio)
+depends=(glibc glu gmp gsl libglvnd libmpc libx11 libxext
+libxpm libxt mpfr openmotif)
+# TODO: maybe replace mpg123 with mpg321
+makedepends=(alsa-lib fftw flac gendesk jack ladspa libsamplerate mpg123 ruby
+speex timidity++ vorbis-tools wavpack)
+optdepends=(
+  'flac: For flac support'
+  'mpg123: For MPEG support'
+  'ruby: for snd-ruby'
+  'speex: For speex support'
+  'timidity++: For MIDI to WAVE support'
+  'vorbis-tools: For OGG support'
+  'wavpack: For wav support'
+)
+options=(debug)
+source=(https://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)

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

2022-07-03 Thread David Runge via arch-commits
Date: Sunday, July 3, 2022 @ 12:49:30
  Author: dvzrv
Revision: 1243780

upgpkg: snd 22.5-1: Upgarde to 22.5.

Modified:
  snd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-07-03 11:52:59 UTC (rev 1243779)
+++ PKGBUILD2022-07-03 12:49:30 UTC (rev 1243780)
@@ -3,7 +3,7 @@
 # Contributor: Juergen Hoetzel 
 
 pkgname=snd
-pkgver=22.4
+pkgver=22.5
 pkgrel=1
 pkgdesc="An advanced sound editor"
 arch=(x86_64)
@@ -26,8 +26,8 @@
 )
 options=(debug)
 
source=(https://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
-sha512sums=('b6be7af7545fc53de0c3fe6496cc78f44f36842571b82dc04494cc598ad734ea3f18cde370efa26fb38e9866e34c5085c6176ff8bee53c5e90fea6ace399fdf3')
-b2sums=('f5e004e7122db40fa74d4c2abeace180c7b3f37143278fe8212d0e414fb967961ecb39e3abb461ca9fb286393253b2e413f6cbc717d93dfe50660aa96d2521fc')
+sha512sums=('489bbbac47152f51c0e0c2c1f2d46811dc1a893c4637045efc0451df82e095c1ab213197983d0afec01c3f4c75fc40ec258b08f4f54dc080d0c1798ad7f0ae40')
+b2sums=('aea5f7d80cdcbc3d75f3a10f9db2f6379b5b355c95897b8b4f2a3f6e43f58ec5c47201ce726a365b24742ee8a373f249ef4ed8267273bdbd7a6a5bc7261b0962')
 
 prepare() {
   gendesk -f -n \
@@ -48,7 +48,6 @@
   --exec $pkgname \
   --genericname "Sound Editor" \
   --categories "AudioVideo;Audio"
-  rm -v $pkgname-$pkgver/*.desktop
   cp -av $pkgname-$pkgver $pkgname-ruby-$pkgver
 }
 



  1   2   >