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

2022-04-11 Thread Laurent Carlier via arch-commits
  else
+-$verbose "WARNING: pruning unneeded symlink $f"
+-rm -f "$f"
++$verbose "WARNING: pruning unneeded symlink $f$cmpxtn"
++rm -f "$f$cmpxtn"
+ fi
+ fi
+ else
+-$verbose "WARNING: missing target for symlink $f"
++$verbose "WARNING: missing target for symlink $f$cmpxtn"
+ fi
+ else
+-$verbose "creating link $f -> $d"
+-mkdir -p $destdir/$(dirname "$f")
+-ln -sf "$d" "$destdir/$f"
++$verbose "creating link $f$cmpxtn -> $d$cmpxtn"
++mkdir -p $destdir/$(dirname "$f$cmpxtn")
++ln -sf "$d$cmpxtn" "$destdir/$f$cmpxtn"
+ fi
+ done
+ 
+-- 
+2.29.2
+

Copied: linux-firmware/repos/testing-any/PKGBUILD (from rev 442309, 
linux-firmware/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2022-04-12 06:20:47 UTC (rev 442310)
@@ -0,0 +1,170 @@
+# Maintainer: Thomas Bächler 
+
+pkgbase=linux-firmware
+pkgname=(linux-firmware-whence linux-firmware amd-ucode
+ linux-firmware-{nfp,mellanox,marvell,qcom,liquidio,qlogic,bnx2x}
+)
+_tag=20220411
+pkgver=20220411.705f19a
+pkgrel=1
+pkgdesc="Firmware files for Linux"
+url="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary";
+license=('GPL2' 'GPL3' 'custom')
+arch=('any')
+makedepends=('git')
+options=(!strip)
+source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#tag=${_tag}?signed";
+ 0001-Add-support-for-compressing-firmware-in-copy-firmware.patch)
+sha256sums=('SKIP'
+'41c73f88ac68a3aef01fd406ce6cdb87555c65e4816dab12df10740875551aa7')
+validpgpkeys=('4CDE8575E547BF835FE15807A31B6BD72486CFD6') # Josh Boyer 

+
+_backports=(
+)
+
+prepare() {
+  cd ${pkgbase}
+
+  local _c
+  for _c in "${_backports[@]}"; do
+git log --oneline -1 "${_c}"
+git cherry-pick -n "${_c}"
+  done
+
+  # add firmware compression support - patch taken from Fedora
+  patch -Np1 -i 
../0001-Add-support-for-compressing-firmware-in-copy-firmware.patch
+}
+
+pkgver() {
+  cd ${pkgbase}
+
+  # Commit date + short rev
+  echo $(TZ=UTC git show -s --pretty=%cd --date=format-local:%Y%m%d 
HEAD).$(git rev-parse --short HEAD)
+}
+
+build() {
+  mkdir -p kernel/x86/microcode
+  cat ${pkgbase}/amd-ucode/microcode_amd*.bin > 
kernel/x86/microcode/AuthenticAMD.bin
+
+  # Reproducibility: set the timestamp on the bin file
+  if [[ -n ${SOURCE_DATE_EPOCH} ]]; then
+touch -d @${SOURCE_DATE_EPOCH} kernel/x86/microcode/AuthenticAMD.bin
+  fi
+
+  # Reproducibility: strip the inode and device numbers from the cpio archive
+  echo kernel/x86/microcode/AuthenticAMD.bin |
+bsdtar --uid 0 --gid 0 -cnf - -T - |
+bsdtar --null -cf - --format=newc @- > amd-ucode.img
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+package_linux-firmware-whence() {
+  pkgdesc+=" - contains the WHENCE license file which documents the vendor 
license details"
+
+  install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 ${pkgbase}/WHENCE
+}
+
+package_linux-firmware() {
+  depends=('linux-firmware-whence')
+
+  cd ${pkgbase}
+
+  make DESTDIR="${pkgdir}" FIRMWAREDIR=/usr/lib/firmware installcompress
+
+  # Trigger a microcode reload for configurations not using early updates
+  echo 'w /sys/devices/system/cpu/microcode/reload - - - - 1' |
+install -Dm644 /dev/stdin "${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+
+  install -Dt "${pkgdir}/usr/share/licenses/${pkgname}" -m644 LICEN*
+
+  # split
+  cd "${pkgdir}"
+
+  _pick linux-firmware-nfp usr/lib/firmware/netronome
+  _pick linux-firmware-nfp usr/share/licenses/${pkgname}/LICENCE.Netronome
+
+  _pick linux-firmware-mellanox usr/lib/firmware/mellanox
+
+  _pick linux-firmware-marvell usr/lib/firmware/{libertas,mwl8k,mwlwifi,mrvl}
+  _pick linux-firmware-marvell 
usr/share/licenses/${pkgname}/LICENCE.{Marvell,NXP}
+
+  _pick linux-firmware-qcom usr/lib/firmware/{qcom,a300_*}
+  _pick linux-firmware-qcom usr/share/licenses/${pkgname}/LICENSE.qcom
+
+  _pick linux-firmware-liquidio usr/lib/firmware/liquidio
+  _pick linux-firmware-liquidio 
usr/share/licenses/${pkgname}/LICENCE.cavium_liquidio
+
+  _pick linux-firmware-qlogic 
usr/lib/firmware/{qlog

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

2022-04-11 Thread Laurent Carlier via arch-commits
Date: Tuesday, April 12, 2022 @ 06:20:42
  Author: lcarlier
Revision: 442309

upgpkg: linux-firmware 20220411.705f19a-1: sync with tag 20220411

Modified:
  linux-firmware/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-12 03:51:15 UTC (rev 442308)
+++ PKGBUILD2022-04-12 06:20:42 UTC (rev 442309)
@@ -4,8 +4,8 @@
 pkgname=(linux-firmware-whence linux-firmware amd-ucode
  linux-firmware-{nfp,mellanox,marvell,qcom,liquidio,qlogic,bnx2x}
 )
-_tag=20220310
-pkgver=20220309.cd01f85
+_tag=20220411
+pkgver=20220411.705f19a
 pkgrel=1
 pkgdesc="Firmware files for Linux"
 
url="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary";



[arch-commits] Commit in electron15/repos/community-x86_64 (34 files)

2022-04-11 Thread Nicola Squartini via arch-commits
Date: Tuesday, April 12, 2022 @ 05:59:59
  Author: tensor5
Revision: 1185938

archrelease: copy trunk to community-x86_64

Added:
  electron15/repos/community-x86_64/PKGBUILD
(from rev 1185937, electron15/trunk/PKGBUILD)
  electron15/repos/community-x86_64/add-a-TODO-about-a-missing-pnacl-flag.patch
(from rev 1185937, 
electron15/trunk/add-a-TODO-about-a-missing-pnacl-flag.patch)
  electron15/repos/community-x86_64/breakpad-fix-for-non-constant-SIGSTKSZ.patch
(from rev 1185937, 
electron15/trunk/breakpad-fix-for-non-constant-SIGSTKSZ.patch)
  electron15/repos/community-x86_64/default_app-icon.patch
(from rev 1185937, electron15/trunk/default_app-icon.patch)
  electron15/repos/community-x86_64/electron-launcher.sh
(from rev 1185937, electron15/trunk/electron-launcher.sh)
  electron15/repos/community-x86_64/electron.desktop
(from rev 1185937, electron15/trunk/electron.desktop)
  electron15/repos/community-x86_64/gn-visibility-gmock.patch
(from rev 1185937, electron15/trunk/gn-visibility-gmock.patch)
  electron15/repos/community-x86_64/gn-visibility-mojo.patch
(from rev 1185937, electron15/trunk/gn-visibility-mojo.patch)
  electron15/repos/community-x86_64/gn-visibility-webrtc.patch
(from rev 1185937, electron15/trunk/gn-visibility-webrtc.patch)
  electron15/repos/community-x86_64/jinja-python-3.10.patch
(from rev 1185937, electron15/trunk/jinja-python-3.10.patch)
  electron15/repos/community-x86_64/replace-blacklist-with-ignorelist.patch
(from rev 1185937, electron15/trunk/replace-blacklist-with-ignorelist.patch)
  
electron15/repos/community-x86_64/sandbox-build-if-glibc-2.34-dynamic-stack-size-is-en.patch
(from rev 1185937, 
electron15/trunk/sandbox-build-if-glibc-2.34-dynamic-stack-size-is-en.patch)
  
electron15/repos/community-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
(from rev 1185937, 
electron15/trunk/sql-make-VirtualCursor-standard-layout-type.patch)
  
electron15/repos/community-x86_64/unbundle-fix-visibility-of-build-config-freetype.patch
(from rev 1185937, 
electron15/trunk/unbundle-fix-visibility-of-build-config-freetype.patch)
  electron15/repos/community-x86_64/unexpire-accelerated-video-decode-flag.patch
(from rev 1185937, 
electron15/trunk/unexpire-accelerated-video-decode-flag.patch)
  electron15/repos/community-x86_64/use-ffile-compilation-dir.patch
(from rev 1185937, electron15/trunk/use-ffile-compilation-dir.patch)
  electron15/repos/community-x86_64/use-system-libraries-in-node.patch
(from rev 1185937, electron15/trunk/use-system-libraries-in-node.patch)
Deleted:
  electron15/repos/community-x86_64/PKGBUILD
  electron15/repos/community-x86_64/add-a-TODO-about-a-missing-pnacl-flag.patch
  electron15/repos/community-x86_64/breakpad-fix-for-non-constant-SIGSTKSZ.patch
  electron15/repos/community-x86_64/default_app-icon.patch
  electron15/repos/community-x86_64/electron-launcher.sh
  electron15/repos/community-x86_64/electron.desktop
  electron15/repos/community-x86_64/gn-visibility-gmock.patch
  electron15/repos/community-x86_64/gn-visibility-mojo.patch
  electron15/repos/community-x86_64/gn-visibility-webrtc.patch
  electron15/repos/community-x86_64/jinja-python-3.10.patch
  electron15/repos/community-x86_64/replace-blacklist-with-ignorelist.patch
  
electron15/repos/community-x86_64/sandbox-build-if-glibc-2.34-dynamic-stack-size-is-en.patch
  
electron15/repos/community-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
  
electron15/repos/community-x86_64/unbundle-fix-visibility-of-build-config-freetype.patch
  electron15/repos/community-x86_64/unexpire-accelerated-video-decode-flag.patch
  electron15/repos/community-x86_64/use-ffile-compilation-dir.patch
  electron15/repos/community-x86_64/use-system-libraries-in-node.patch

+
 PKGBUILD   |  574 +--
 add-a-TODO-about-a-missing-pnacl-flag.patch|   56 -
 breakpad-fix-for-non-constant-SIGSTKSZ.patch   |   70 -
 default_app-icon.patch |   42 
 electron-launcher.sh   |   40 
 electron.desktop   |   14 
 gn-visibility-gmock.patch  |   86 -
 gn-visibility-mojo.patch   |   72 -
 gn-visibility-webrtc.patch |   90 -
 jinja-python-3.10.patch|   66 -
 replace-blacklist-with-ignorelist.patch|  392 +++
 sandbox-build-if-glibc-2.34-dynamic-stack-size-is-en.patch |   78 -
 sql-make-VirtualCursor-standard-layout-type.patch  |  476 -
 unbundle-fix-visibility-of-build-config-freetype.patch |   62 -
 unexpire-accelerated-video-decode-flag.patch   |   22 
 use-ffile-compilation-dir.patch|  130 +-
 use

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

2022-04-11 Thread Nicola Squartini via arch-commits
Date: Tuesday, April 12, 2022 @ 05:58:03
  Author: tensor5
Revision: 1185937

upgpkg: electron15 15.5.2-1

Modified:
  electron15/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-12 04:54:18 UTC (rev 1185936)
+++ PKGBUILD2022-04-12 05:58:03 UTC (rev 1185937)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 _use_suffix=1
-pkgver=15.5.1
-_commit=79b45ac5f67647f0bb4f7b35b29123ca09f4c112
+pkgver=15.5.2
+_commit=0d94bdda5070d8b28f7cf8a5f64e675f8c8f6ec0
 _chromiumver=94.0.4606.81
 _gcc_patchset=3
 # shellcheck disable=SC2034



[arch-commits] Commit in electron16/repos/community-x86_64 (26 files)

2022-04-11 Thread Nicola Squartini via arch-commits
Date: Tuesday, April 12, 2022 @ 04:54:18
  Author: tensor5
Revision: 1185936

archrelease: copy trunk to community-x86_64

Added:
  electron16/repos/community-x86_64/PKGBUILD
(from rev 1185935, electron16/trunk/PKGBUILD)
  electron16/repos/community-x86_64/breakpad-fix-for-non-constant-SIGSTKSZ.patch
(from rev 1185935, 
electron16/trunk/breakpad-fix-for-non-constant-SIGSTKSZ.patch)
  electron16/repos/community-x86_64/default_app-icon.patch
(from rev 1185935, electron16/trunk/default_app-icon.patch)
  electron16/repos/community-x86_64/electron-launcher.sh
(from rev 1185935, electron16/trunk/electron-launcher.sh)
  electron16/repos/community-x86_64/electron.desktop
(from rev 1185935, electron16/trunk/electron.desktop)
  electron16/repos/community-x86_64/jinja-python-3.10.patch
(from rev 1185935, electron16/trunk/jinja-python-3.10.patch)
  
electron16/repos/community-x86_64/sandbox-build-if-glibc-2.34-dynamic-stack-size-is-en.patch
(from rev 1185935, 
electron16/trunk/sandbox-build-if-glibc-2.34-dynamic-stack-size-is-en.patch)
  
electron16/repos/community-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
(from rev 1185935, 
electron16/trunk/sql-make-VirtualCursor-standard-layout-type.patch)
  electron16/repos/community-x86_64/std-vector-non-const.patch
(from rev 1185935, electron16/trunk/std-vector-non-const.patch)
  
electron16/repos/community-x86_64/unbundle-fix-visibility-of-build-config-freetype.patch
(from rev 1185935, 
electron16/trunk/unbundle-fix-visibility-of-build-config-freetype.patch)
  electron16/repos/community-x86_64/unexpire-accelerated-video-decode-flag.patch
(from rev 1185935, 
electron16/trunk/unexpire-accelerated-video-decode-flag.patch)
  electron16/repos/community-x86_64/use-system-libraries-in-node.patch
(from rev 1185935, electron16/trunk/use-system-libraries-in-node.patch)
  electron16/repos/community-x86_64/wayland-fix-binding-to-wrong-version.patch
(from rev 1185935, 
electron16/trunk/wayland-fix-binding-to-wrong-version.patch)
Deleted:
  electron16/repos/community-x86_64/PKGBUILD
  electron16/repos/community-x86_64/breakpad-fix-for-non-constant-SIGSTKSZ.patch
  electron16/repos/community-x86_64/default_app-icon.patch
  electron16/repos/community-x86_64/electron-launcher.sh
  electron16/repos/community-x86_64/electron.desktop
  electron16/repos/community-x86_64/jinja-python-3.10.patch
  
electron16/repos/community-x86_64/sandbox-build-if-glibc-2.34-dynamic-stack-size-is-en.patch
  
electron16/repos/community-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
  electron16/repos/community-x86_64/std-vector-non-const.patch
  
electron16/repos/community-x86_64/unbundle-fix-visibility-of-build-config-freetype.patch
  electron16/repos/community-x86_64/unexpire-accelerated-video-decode-flag.patch
  electron16/repos/community-x86_64/use-system-libraries-in-node.patch
  electron16/repos/community-x86_64/wayland-fix-binding-to-wrong-version.patch

+
 PKGBUILD   |  560 ++--
 breakpad-fix-for-non-constant-SIGSTKSZ.patch   |   70 
 default_app-icon.patch |   42 
 electron-launcher.sh   |   40 
 electron.desktop   |   14 
 jinja-python-3.10.patch|   66 
 sandbox-build-if-glibc-2.34-dynamic-stack-size-is-en.patch |   78 
 sql-make-VirtualCursor-standard-layout-type.patch  |  476 ++--
 std-vector-non-const.patch |  230 -
 unbundle-fix-visibility-of-build-config-freetype.patch |   62 
 unexpire-accelerated-video-decode-flag.patch   |   22 
 use-system-libraries-in-node.patch |  106 
 wayland-fix-binding-to-wrong-version.patch | 1302 +--
 13 files changed, 1534 insertions(+), 1534 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-12 04:52:43 UTC (rev 1185935)
+++ PKGBUILD2022-04-12 04:54:18 UTC (rev 1185936)
@@ -1,280 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-_use_suffix=1
-pkgver=16.2.1
-_commit=53450220c25546e66bdc3e129391a942287b3703
-_chromiumver=96.0.4664.174
-_gcc_patchset=4
-# shellcheck disable=SC2034
-pkgrel=1
-
-_major_ver=${pkgver%%.*}
-if [[ ${_use_suffix} != 0 ]]; then
-  pkgname="electron${_major_ver}"
-else
-  pkgname=electron
-fi
-# shellcheck disable=SC2034
-pkgdesc='Build cross platform desktop apps with web technologies'
-# shellcheck disable=SC2034
-arch=('x86_64')
-# shellcheck disable=SC2034
-url='https://electronjs.org/'
-# shellcheck disable=SC2034
-license=('MIT' 'custom')
-# shellcheck disable=SC2034
-depends=('c-ares' 'ffmpeg' 'gtk3' 'libevent' 'libxslt' 'minizip' 'nss' 're2'
- 'snappy')
-# shellcheck disable=SC2034
-makedepends=('clang' 'git' 'gn' 'gper

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

2022-04-11 Thread Nicola Squartini via arch-commits
Date: Tuesday, April 12, 2022 @ 04:52:43
  Author: tensor5
Revision: 1185935

upgpkg: electron16 16.2.2-1

Modified:
  electron16/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-12 03:45:09 UTC (rev 1185934)
+++ PKGBUILD2022-04-12 04:52:43 UTC (rev 1185935)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 _use_suffix=1
-pkgver=16.2.1
-_commit=53450220c25546e66bdc3e129391a942287b3703
+pkgver=16.2.2
+_commit=f1d7143310bfdf1dc1dc8f8512789bff94cd0804
 _chromiumver=96.0.4664.174
 _gcc_patchset=4
 # shellcheck disable=SC2034



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

2022-04-11 Thread Evangelos Foutras via arch-commits
Date: Tuesday, April 12, 2022 @ 03:51:15
  Author: foutrelis
Revision: 442308

Update url

Modified:
  xfburn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-12 03:45:45 UTC (rev 442307)
+++ PKGBUILD2022-04-12 03:51:15 UTC (rev 442308)
@@ -7,7 +7,7 @@
 pkgrel=1
 pkgdesc="A simple CD/DVD burning tool based on libburnia libraries"
 arch=('x86_64')
-url="https://docs.xfce.org/apps/xfburn";
+url="https://docs.xfce.org/apps/xfburn/start";
 license=('GPL')
 groups=('xfce4-goodies')
 depends=('libburn' 'libisofs' 'gtk3' 'libxfce4ui' 'exo' 'gst-plugins-base-libs'



[arch-commits] Commit in chromium/repos/extra-x86_64 (12 files)

2022-04-11 Thread Evangelos Foutras via arch-commits
Date: Tuesday, April 12, 2022 @ 03:45:45
  Author: foutrelis
Revision: 442307

archrelease: copy trunk to extra-x86_64

Added:
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 442306, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/enable-GlobalMediaControlsCastStartStop.patch
(from rev 442306, 
chromium/trunk/enable-GlobalMediaControlsCastStartStop.patch)
  chromium/repos/extra-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
(from rev 442306, 
chromium/trunk/sql-make-VirtualCursor-standard-layout-type.patch)
  chromium/repos/extra-x86_64/use-oauth2-client-switches-as-default.patch
(from rev 442306, 
chromium/trunk/use-oauth2-client-switches-as-default.patch)
  chromium/repos/extra-x86_64/webcodecs-stop-using-AudioOpusEncoder.patch
(from rev 442306, 
chromium/trunk/webcodecs-stop-using-AudioOpusEncoder.patch)
  chromium/repos/extra-x86_64/webrtc-check-existence-of-cursor-metadata.patch
(from rev 442306, 
chromium/trunk/webrtc-check-existence-of-cursor-metadata.patch)
Deleted:
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/enable-GlobalMediaControlsCastStartStop.patch
  chromium/repos/extra-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
  chromium/repos/extra-x86_64/use-oauth2-client-switches-as-default.patch
  chromium/repos/extra-x86_64/webcodecs-stop-using-AudioOpusEncoder.patch
  chromium/repos/extra-x86_64/webrtc-check-existence-of-cursor-metadata.patch

---+
 PKGBUILD  |  534 ++--
 enable-GlobalMediaControlsCastStartStop.patch |   64 +-
 sql-make-VirtualCursor-standard-layout-type.patch |  476 -
 use-oauth2-client-switches-as-default.patch   |   34 -
 webcodecs-stop-using-AudioOpusEncoder.patch   |   98 +--
 webrtc-check-existence-of-cursor-metadata.patch   |   62 +-
 6 files changed, 634 insertions(+), 634 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-12 03:45:36 UTC (rev 442306)
+++ PKGBUILD2022-04-12 03:45:45 UTC (rev 442307)
@@ -1,267 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Pierre Schmitz 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Daniel J Griffiths 
-
-pkgname=chromium
-pkgver=100.0.4896.75
-pkgrel=2
-_launcher_ver=8
-_gcc_patchset=4
-pkgdesc="A web browser built for speed, simplicity, and security"
-arch=('x86_64')
-url="https://www.chromium.org/Home";
-license=('BSD')
-depends=('gtk3' 'nss' 'alsa-lib' 'xdg-utils' 'libxss' 'libcups' 'libgcrypt'
- 'ttf-liberation' 'systemd' 'dbus' 'libpulse' 'pciutils' 'libva'
- 'desktop-file-utils' 'hicolor-icon-theme')
-makedepends=('python' 'gn' 'ninja' 'clang' 'lld' 'gperf' 'nodejs' 'pipewire'
- 'java-runtime-headless')
-optdepends=('pipewire: WebRTC desktop sharing under Wayland'
-'kdialog: support for native dialogs in Plasma'
-'org.freedesktop.secrets: password storage backend on GNOME / Xfce'
-'kwallet: support for storing passwords in KWallet on Plasma')
-options=('debug' '!lto') # Chromium adds its own flags for ThinLTO
-source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
-
https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver/chromium-launcher-$_launcher_ver.tar.gz
-
https://github.com/stha09/chromium-patches/releases/download/chromium-${pkgver%%.*}-patchset-$_gcc_patchset/chromium-${pkgver%%.*}-patchset-$_gcc_patchset.tar.xz
-webcodecs-stop-using-AudioOpusEncoder.patch
-webrtc-check-existence-of-cursor-metadata.patch
-enable-GlobalMediaControlsCastStartStop.patch
-sql-make-VirtualCursor-standard-layout-type.patch
-use-oauth2-client-switches-as-default.patch)
-sha256sums=('244ed352dfaa1ab6b1f0877c4884fd17aa7d7133fa52f129a9fb01325ea0c0c0'
-'213e50f48b67feb4441078d50b0fd431df34323be15be97c55302d3fdac4483a'
-'a6120e7d4eb5e131b87b6ab3b922e0c6cd78e15501e54cfb2019875173688d80'
-'064daaa2b9d95b96ec04d8ddebf4af441f92263d123365b58fe73966866080af'
-'88b2c8d9c6c1917f6632453f18aad7a3fd94d605eecb6c77ae2394ac5856ba95'
-'779fb13f2494209d3a7f1f23a823e59b9dded601866d3ab095937a1a04e19ac6'
-'b94b2e88f63cfb7087486508b8139599c89f96d7a4181c61fec4b4e250ca327a'
-'e393174d7695d0bafed69e868c5fbfecf07aa6969f3b64596d0bae8b067e1711')
-
-# Possible replacements are listed in build/linux/unbundle/replace_gn_files.py
-# Keys are the names in the above script; values are the dependencies in Arch
-declare -gA _system_libs=(
-  [ffmpeg]=ffmpeg
-  [flac]=flac
-  [fontconfig]=fontconfig
-  [freetype]=freetype2
-  [harfbuzz-ng]=harfbuzz
-  [icu]=icu
-  [libdrm]=
-  [libjpeg]=libjpeg
-  [libpng]=libpng
-  #[libvpx]=libvpx
-  [libwebp]=libwebp
-  [libxml]=libxml2
-  [libxslt]=libxslt
-  [opus]=opus
-  [re2]=re2
- 

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

2022-04-11 Thread Evangelos Foutras via arch-commits
Date: Tuesday, April 12, 2022 @ 03:45:36
  Author: foutrelis
Revision: 442306

upgpkg: chromium 100.0.4896.88-1: new upstream release

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 19:30:18 UTC (rev 442305)
+++ PKGBUILD2022-04-12 03:45:36 UTC (rev 442306)
@@ -4,8 +4,8 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=chromium
-pkgver=100.0.4896.75
-pkgrel=2
+pkgver=100.0.4896.88
+pkgrel=1
 _launcher_ver=8
 _gcc_patchset=4
 pkgdesc="A web browser built for speed, simplicity, and security"
@@ -30,7 +30,7 @@
 enable-GlobalMediaControlsCastStartStop.patch
 sql-make-VirtualCursor-standard-layout-type.patch
 use-oauth2-client-switches-as-default.patch)
-sha256sums=('244ed352dfaa1ab6b1f0877c4884fd17aa7d7133fa52f129a9fb01325ea0c0c0'
+sha256sums=('c5a5708678f30679a1181f89401c966cb335799926a5e4dc7f52e7194847c250'
 '213e50f48b67feb4441078d50b0fd431df34323be15be97c55302d3fdac4483a'
 'a6120e7d4eb5e131b87b6ab3b922e0c6cd78e15501e54cfb2019875173688d80'
 '064daaa2b9d95b96ec04d8ddebf4af441f92263d123365b58fe73966866080af'



[arch-commits] Commit in (shorewall)

2022-04-11 Thread Evangelos Foutras via arch-commits
Date: Tuesday, April 12, 2022 @ 03:45:09
  Author: foutrelis
Revision: 1185934

Remove shorewall as unmaintained

Deleted:
  shorewall/



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

2022-04-11 Thread George Rawlinson via arch-commits
Date: Tuesday, April 12, 2022 @ 03:38:34
  Author: grawlinson
Revision: 1185932

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-12 03:37:50 UTC (rev 1185931)
+++ PKGBUILD2022-04-12 03:38:34 UTC (rev 1185932)
@@ -1,45 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: liara 
-
-pkgname=python-shodan
-pkgver=1.27.0
-pkgrel=1
-pkgdesc='The official Python library and CLI for Shodan'
-url='https://developer.shodan.io/'
-license=('MIT')
-arch=('any')
-depends=(
-  'python'
-  'python-click'
-  'python-click-plugins'
-  'python-colorama'
-  'python-xlsxwriter'
-  'python-requests'
-)
-makedepends=(
-  'git'
-  'python-setuptools'
-)
-_commit='b32a7bc3f45f62c7ce962cea5954dd8b82fa6824'
-source=("$pkgname::git+https://github.com/achillean/shodan-python.git#commit=$_commit";)
-b2sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  git describe --tags | sed 's/^v//'
-}
-
-build() {
-  cd "$pkgname"
-
-  python setup.py build
-}
-
-package() {
-  cd "$pkgname"
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-}

Copied: python-shodan/repos/community-any/PKGBUILD (from rev 1185931, 
python-shodan/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-12 03:38:34 UTC (rev 1185932)
@@ -0,0 +1,43 @@
+# Maintainer: George Rawlinson 
+# Contributor: liara 
+
+pkgname=python-shodan
+pkgver=1.27.0
+pkgrel=2
+pkgdesc='The official Python library and CLI for Shodan'
+url='https://shodan.readthedocs.io/'
+license=('MIT')
+arch=('any')
+depends=(
+  'python'
+  'python-click'
+  'python-click-plugins'
+  'python-colorama'
+  'python-xlsxwriter'
+  'python-requests'
+  'python-setuptools'
+)
+makedepends=('git')
+_commit='b32a7bc3f45f62c7ce962cea5954dd8b82fa6824'
+source=("$pkgname::git+https://github.com/achillean/shodan-python.git#commit=$_commit";)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd "$pkgname"
+
+  python setup.py build
+}
+
+package() {
+  cd "$pkgname"
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}



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

2022-04-11 Thread George Rawlinson via arch-commits
Date: Tuesday, April 12, 2022 @ 03:37:50
  Author: grawlinson
Revision: 1185931

upgpkg: python-shodan 1.27.0-2

* Add missing dependency: python-setuptools (package imports pkg_resources).
* Change URL to upstream documentation.

Modified:
  python-shodan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-12 03:35:04 UTC (rev 1185930)
+++ PKGBUILD2022-04-12 03:37:50 UTC (rev 1185931)
@@ -3,9 +3,9 @@
 
 pkgname=python-shodan
 pkgver=1.27.0
-pkgrel=1
+pkgrel=2
 pkgdesc='The official Python library and CLI for Shodan'
-url='https://developer.shodan.io/'
+url='https://shodan.readthedocs.io/'
 license=('MIT')
 arch=('any')
 depends=(
@@ -15,11 +15,9 @@
   'python-colorama'
   'python-xlsxwriter'
   'python-requests'
-)
-makedepends=(
-  'git'
   'python-setuptools'
 )
+makedepends=('git')
 _commit='b32a7bc3f45f62c7ce962cea5954dd8b82fa6824'
 
source=("$pkgname::git+https://github.com/achillean/shodan-python.git#commit=$_commit";)
 b2sums=('SKIP')



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

2022-04-11 Thread George Rawlinson via arch-commits
Date: Tuesday, April 12, 2022 @ 03:35:04
  Author: grawlinson
Revision: 1185930

archrelease: copy trunk to community-any

Added:
  python-shodan/repos/community-any/
  python-shodan/repos/community-any/PKGBUILD
(from rev 1185929, python-shodan/trunk/PKGBUILD)

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

Copied: python-shodan/repos/community-any/PKGBUILD (from rev 1185929, 
python-shodan/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-04-12 03:35:04 UTC (rev 1185930)
@@ -0,0 +1,45 @@
+# Maintainer: George Rawlinson 
+# Contributor: liara 
+
+pkgname=python-shodan
+pkgver=1.27.0
+pkgrel=1
+pkgdesc='The official Python library and CLI for Shodan'
+url='https://developer.shodan.io/'
+license=('MIT')
+arch=('any')
+depends=(
+  'python'
+  'python-click'
+  'python-click-plugins'
+  'python-colorama'
+  'python-xlsxwriter'
+  'python-requests'
+)
+makedepends=(
+  'git'
+  'python-setuptools'
+)
+_commit='b32a7bc3f45f62c7ce962cea5954dd8b82fa6824'
+source=("$pkgname::git+https://github.com/achillean/shodan-python.git#commit=$_commit";)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd "$pkgname"
+
+  python setup.py build
+}
+
+package() {
+  cd "$pkgname"
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}



[arch-commits] Commit in (4 files)

2022-04-11 Thread George Rawlinson via arch-commits
Date: Tuesday, April 12, 2022 @ 03:34:13
  Author: grawlinson
Revision: 1185929

addpkg: python-shodan 1.27.0-1

Added:
  python-shodan/
  python-shodan/repos/
  python-shodan/trunk/
  python-shodan/trunk/PKGBUILD

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

Added: python-shodan/trunk/PKGBUILD
===
--- python-shodan/trunk/PKGBUILD(rev 0)
+++ python-shodan/trunk/PKGBUILD2022-04-12 03:34:13 UTC (rev 1185929)
@@ -0,0 +1,45 @@
+# Maintainer: George Rawlinson 
+# Contributor: liara 
+
+pkgname=python-shodan
+pkgver=1.27.0
+pkgrel=1
+pkgdesc='The official Python library and CLI for Shodan'
+url='https://developer.shodan.io/'
+license=('MIT')
+arch=('any')
+depends=(
+  'python'
+  'python-click'
+  'python-click-plugins'
+  'python-colorama'
+  'python-xlsxwriter'
+  'python-requests'
+)
+makedepends=(
+  'git'
+  'python-setuptools'
+)
+_commit='b32a7bc3f45f62c7ce962cea5954dd8b82fa6824'
+source=("$pkgname::git+https://github.com/achillean/shodan-python.git#commit=$_commit";)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd "$pkgname"
+
+  python setup.py build
+}
+
+package() {
+  cd "$pkgname"
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}



[arch-commits] Commit in electron/repos/community-x86_64 (20 files)

2022-04-11 Thread Nicola Squartini via arch-commits
Date: Tuesday, April 12, 2022 @ 03:26:38
  Author: tensor5
Revision: 1185928

archrelease: copy trunk to community-x86_64

Added:
  electron/repos/community-x86_64/PKGBUILD
(from rev 1185927, electron/trunk/PKGBUILD)
  electron/repos/community-x86_64/default_app-icon.patch
(from rev 1185927, electron/trunk/default_app-icon.patch)
  electron/repos/community-x86_64/electron-launcher.sh
(from rev 1185927, electron/trunk/electron-launcher.sh)
  electron/repos/community-x86_64/electron.desktop
(from rev 1185927, electron/trunk/electron.desktop)
  electron/repos/community-x86_64/enable-GlobalMediaControlsCastStartStop.patch
(from rev 1185927, 
electron/trunk/enable-GlobalMediaControlsCastStartStop.patch)
  electron/repos/community-x86_64/jinja-python-3.10.patch
(from rev 1185927, electron/trunk/jinja-python-3.10.patch)
  
electron/repos/community-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
(from rev 1185927, 
electron/trunk/sql-make-VirtualCursor-standard-layout-type.patch)
  electron/repos/community-x86_64/std-vector-non-const.patch
(from rev 1185927, electron/trunk/std-vector-non-const.patch)
  electron/repos/community-x86_64/use-system-libraries-in-node.patch
(from rev 1185927, electron/trunk/use-system-libraries-in-node.patch)
  electron/repos/community-x86_64/webcodecs-stop-using-AudioOpusEncoder.patch
(from rev 1185927, 
electron/trunk/webcodecs-stop-using-AudioOpusEncoder.patch)
  
electron/repos/community-x86_64/webrtc-check-existence-of-cursor-metadata.patch
(from rev 1185927, 
electron/trunk/webrtc-check-existence-of-cursor-metadata.patch)
Deleted:
  electron/repos/community-x86_64/PKGBUILD
  electron/repos/community-x86_64/default_app-icon.patch
  electron/repos/community-x86_64/electron-launcher.sh
  electron/repos/community-x86_64/electron.desktop
  electron/repos/community-x86_64/jinja-python-3.10.patch
  
electron/repos/community-x86_64/sql-make-VirtualCursor-standard-layout-type.patch
  electron/repos/community-x86_64/std-vector-non-const.patch
  electron/repos/community-x86_64/use-system-libraries-in-node.patch
  electron/repos/community-x86_64/webcodecs-stop-using-AudioOpusEncoder.patch

---+
 PKGBUILD  |  549 ++--
 default_app-icon.patch|   42 -
 electron-launcher.sh  |   40 -
 electron.desktop  |   14 
 enable-GlobalMediaControlsCastStartStop.patch |   32 +
 jinja-python-3.10.patch   |   44 -
 sql-make-VirtualCursor-standard-layout-type.patch |  476 -
 std-vector-non-const.patch|  258 -
 use-system-libraries-in-node.patch|  106 +--
 webcodecs-stop-using-AudioOpusEncoder.patch   |   98 +--
 webrtc-check-existence-of-cursor-metadata.patch   |   31 +
 11 files changed, 881 insertions(+), 809 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-12 03:25:16 UTC (rev 1185927)
+++ PKGBUILD2022-04-12 03:26:38 UTC (rev 1185928)
@@ -1,270 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-_use_suffix=0
-pkgver=18.0.1
-_commit=72c48aa400ce39897dbce8a7bc5fae775dc01608
-_chromiumver=100.0.4896.60
-_gcc_patchset=4
-# shellcheck disable=SC2034
-pkgrel=1
-
-_major_ver=${pkgver%%.*}
-if [[ ${_use_suffix} != 0 ]]; then
-  pkgname="electron${_major_ver}"
-else
-  pkgname=electron
-fi
-# shellcheck disable=SC2034
-pkgdesc='Build cross platform desktop apps with web technologies'
-# shellcheck disable=SC2034
-arch=('x86_64')
-# shellcheck disable=SC2034
-url='https://electronjs.org/'
-# shellcheck disable=SC2034
-license=('MIT' 'custom')
-# shellcheck disable=SC2034
-depends=('c-ares' 'ffmpeg' 'gtk3' 'libevent' 'libxslt' 'minizip' 'nss' 're2'
- 'snappy')
-# shellcheck disable=SC2034
-makedepends=('clang' 'git' 'gn' 'gperf' 'harfbuzz-icu' 'http-parser'
- 'java-runtime-headless' 'jsoncpp' 'libnotify' 'lld' 'llvm' 'ninja'
- 'npm' 'pciutils' 'pipewire' 'python' 'python-httplib2'
- 'python-pyparsing' 'python-six' 'wget' 'yarn')
-# shellcheck disable=SC2034
-optdepends=('kde-cli-tools: file deletion support (kioclient5)'
-'libappindicator-gtk3: StatusNotifierItem support'
-'pipewire: WebRTC desktop sharing under Wayland'
-'trash-cli: file deletion support (trash-put)'
-"xdg-utils: open URLs with desktop's default (xdg-email, 
xdg-open)")
-if [[ ${_use_suffix} == 0 ]]; then
-  # shellcheck disable=SC2034
-  conflicts=("electron${_major_ver}")
-  # shellcheck disable=SC2034
-  provides=("electron${_major_ver}")
-fi
-# shellcheck disable=SC2034
-options=('!lto') # Electron adds its own flags for ThinLTO
-# shellcheck disable=SC2034
-source=('git+https://github.com/electron/electron.git'
-
'git+https://chromium.goog

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

2022-04-11 Thread Nicola Squartini via arch-commits
Date: Tuesday, April 12, 2022 @ 03:25:16
  Author: tensor5
Revision: 1185927

upgpkg: electron 18.0.3-1

Added:
  electron/trunk/enable-GlobalMediaControlsCastStartStop.patch
  electron/trunk/webrtc-check-existence-of-cursor-metadata.patch
Modified:
  electron/trunk/PKGBUILD

-+
 PKGBUILD|   15 --
 enable-GlobalMediaControlsCastStartStop.patch   |   32 ++
 webrtc-check-existence-of-cursor-metadata.patch |   31 +
 3 files changed, 75 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-04-12 03:20:11 UTC (rev 1185926)
+++ PKGBUILD2022-04-12 03:25:16 UTC (rev 1185927)
@@ -1,9 +1,9 @@
 # Maintainer: Nicola Squartini 
 
 _use_suffix=0
-pkgver=18.0.1
-_commit=72c48aa400ce39897dbce8a7bc5fae775dc01608
-_chromiumver=100.0.4896.60
+pkgver=18.0.3
+_commit=0a80eb4a9cf420624c50f3f2df60ebfeba1eb5b2
+_chromiumver=100.0.4896.75
 _gcc_patchset=4
 # shellcheck disable=SC2034
 pkgrel=1
@@ -55,6 +55,8 @@
 'std-vector-non-const.patch'
 'use-system-libraries-in-node.patch'
 'webcodecs-stop-using-AudioOpusEncoder.patch'
+'webrtc-check-existence-of-cursor-metadata.patch'
+'enable-GlobalMediaControlsCastStartStop.patch'
 'sql-make-VirtualCursor-standard-layout-type.patch'
)
 # shellcheck disable=SC2034
@@ -68,6 +70,8 @@
 '880abb38ea94058ad553eaec9989cb33aa3b10c54b44afcfddacef3e975152de'
 'c70652a8b24c237bcfd27469de32797a2cb46d9f0d63d897bb6418314a25644c'
 '064daaa2b9d95b96ec04d8ddebf4af441f92263d123365b58fe73966866080af'
+'88b2c8d9c6c1917f6632453f18aad7a3fd94d605eecb6c77ae2394ac5856ba95'
+'779fb13f2494209d3a7f1f23a823e59b9dded601866d3ab095937a1a04e19ac6'
 'b94b2e88f63cfb7087486508b8139599c89f96d7a4181c61fec4b4e250ca327a'
)
 
@@ -164,7 +168,12 @@
   echo "Applying local patches..."
   # Upstream fixes
   patch -Np1 -i ../webcodecs-stop-using-AudioOpusEncoder.patch
+  patch -Np1 -d third_party/webrtc 
<../webrtc-check-existence-of-cursor-metadata.patch
 
+  # Revert kGlobalMediaControlsCastStartStop enabled by default
+  # https://crbug.com/1314342
+  patch -Rp1 -F3 -i ../enable-GlobalMediaControlsCastStartStop.patch
+
   # https://chromium-review.googlesource.com/c/chromium/src/+/2862724
   patch -Np1 -i ../sql-make-VirtualCursor-standard-layout-type.patch
 

Added: enable-GlobalMediaControlsCastStartStop.patch
===
--- enable-GlobalMediaControlsCastStartStop.patch   
(rev 0)
+++ enable-GlobalMediaControlsCastStartStop.patch   2022-04-12 03:25:16 UTC 
(rev 1185927)
@@ -0,0 +1,32 @@
+From b58f0f2725a8c1a8a131f9984b5fd53b54119dba Mon Sep 17 00:00:00 2001
+From: Muyao Xu 
+Date: Thu, 20 Jan 2022 23:46:21 +
+Subject: [PATCH] [Zenith] Enable GlobalMediaControlsCastStartStop flag by
+ default
+
+The feature is rolled out to 100% stable through finch for M96+.
+This CL enables it by default and fixes some unit tests failures.
+
+Bug: 1287242, 1287305
+Change-Id: I7e5c9625b77379fef253c41ef292a0dd6fc366fb
+Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3388416
+Reviewed-by: Takumi Fujimoto 
+Commit-Queue: Muyao Xu 
+Cr-Commit-Position: refs/heads/main@{#961658}
+---
+ chrome/browser/media/router/media_router_feature.cc | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/chrome/browser/media/router/media_router_feature.cc 
b/chrome/browser/media/router/media_router_feature.cc
+index f28f9b0b802..a8d544f7d6d 100644
+--- a/chrome/browser/media/router/media_router_feature.cc
 b/chrome/browser/media/router/media_router_feature.cc
+@@ -33,7 +33,7 @@ const base::Feature kMediaRouter{"MediaRouter",
+ const base::Feature kCastAllowAllIPsFeature{"CastAllowAllIPs",
+ 
base::FEATURE_DISABLED_BY_DEFAULT};
+ const base::Feature kGlobalMediaControlsCastStartStop{
+-"GlobalMediaControlsCastStartStop", base::FEATURE_DISABLED_BY_DEFAULT};
++"GlobalMediaControlsCastStartStop", base::FEATURE_ENABLED_BY_DEFAULT};
+ const base::Feature kAllowAllSitesToInitiateMirroring{
+ "AllowAllSitesToInitiateMirroring", base::FEATURE_DISABLED_BY_DEFAULT};
+ const base::Feature kDialMediaRouteProvider{"DialMediaRouteProvider",

Added: webrtc-check-existence-of-cursor-metadata.patch
===
--- webrtc-check-existence-of-cursor-metadata.patch 
(rev 0)
+++ webrtc-check-existence-of-cursor-metadata.patch 2022-04-12 03:25:16 UTC 
(rev 1185927)
@@ -0,0 +1,31 @@
+From c2cd814cdd8cbf8dda6ccec2266327a5321fbde8 Mon Sep 17 00:00:00 2001
+From: Jan Grulich 
+Date: Tue, 15 Mar 2022 14:31:55 +0100
+Subject: [PATCH] PipeWire capturer: chec

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

2022-04-11 Thread George Rawlinson via arch-commits
Date: Tuesday, April 12, 2022 @ 03:20:11
  Author: grawlinson
Revision: 1185926

archrelease: copy trunk to community-any

Added:
  python-pgpy/repos/community-any/
  python-pgpy/repos/community-any/PKGBUILD
(from rev 1185925, python-pgpy/trunk/PKGBUILD)

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

Copied: python-pgpy/repos/community-any/PKGBUILD (from rev 1185925, 
python-pgpy/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-04-12 03:20:11 UTC (rev 1185926)
@@ -0,0 +1,63 @@
+# Maintainer: George Rawlinson 
+# Contributor: James Morris 
+
+pkgname=python-pgpy
+pkgver=0.5.4
+pkgrel=2
+pkgdesc="Pretty Good Privacy for Python"
+arch=('any')
+license=('BSD')
+url="https://github.com/SecurityInnovation/PGPy";
+depends=(
+  'python'
+  'python-cryptography'
+  'python-six'
+  'python-pyasn1'
+)
+makedepends=(
+  'git'
+  'python-setuptools'
+)
+checkdepends=(
+  'python-pytest'
+  'python-pytest-order'
+)
+_commit='345f4b8d74f4123b97198e10a383f485f80946d8'
+source=("$pkgname::git+$url.git#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # https://github.com/SecurityInnovation/PGPy/pull/378
+  sed -i '/wheel/d' setup.cfg
+
+  # https://github.com/SecurityInnovation/PGPy/pull/373
+  git cherry-pick --no-commit e2f427ea5c0347fb5995ed2a9bc00f780c212c70
+}
+
+build() {
+  cd "$pkgname"
+
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname"
+
+  pytest
+}
+
+package() {
+  cd "$pkgname"
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}



[arch-commits] Commit in (4 files)

2022-04-11 Thread George Rawlinson via arch-commits
Date: Tuesday, April 12, 2022 @ 03:19:17
  Author: grawlinson
Revision: 1185925

addpkg: python-pgpy 0.5.4-2

Added:
  python-pgpy/
  python-pgpy/repos/
  python-pgpy/trunk/
  python-pgpy/trunk/PKGBUILD

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

Added: python-pgpy/trunk/PKGBUILD
===
--- python-pgpy/trunk/PKGBUILD  (rev 0)
+++ python-pgpy/trunk/PKGBUILD  2022-04-12 03:19:17 UTC (rev 1185925)
@@ -0,0 +1,63 @@
+# Maintainer: George Rawlinson 
+# Contributor: James Morris 
+
+pkgname=python-pgpy
+pkgver=0.5.4
+pkgrel=2
+pkgdesc="Pretty Good Privacy for Python"
+arch=('any')
+license=('BSD')
+url="https://github.com/SecurityInnovation/PGPy";
+depends=(
+  'python'
+  'python-cryptography'
+  'python-six'
+  'python-pyasn1'
+)
+makedepends=(
+  'git'
+  'python-setuptools'
+)
+checkdepends=(
+  'python-pytest'
+  'python-pytest-order'
+)
+_commit='345f4b8d74f4123b97198e10a383f485f80946d8'
+source=("$pkgname::git+$url.git#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # https://github.com/SecurityInnovation/PGPy/pull/378
+  sed -i '/wheel/d' setup.cfg
+
+  # https://github.com/SecurityInnovation/PGPy/pull/373
+  git cherry-pick --no-commit e2f427ea5c0347fb5995ed2a9bc00f780c212c70
+}
+
+build() {
+  cd "$pkgname"
+
+  python setup.py build
+}
+
+check() {
+  cd "$pkgname"
+
+  pytest
+}
+
+package() {
+  cd "$pkgname"
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}



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

2022-04-11 Thread George Rawlinson via arch-commits
Date: Tuesday, April 12, 2022 @ 01:58:04
  Author: grawlinson
Revision: 1185924

archrelease: copy trunk to community-any

Added:
  python-weasyprint/repos/community-any/
  python-weasyprint/repos/community-any/PKGBUILD
(from rev 1185923, python-weasyprint/trunk/PKGBUILD)

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

Copied: python-weasyprint/repos/community-any/PKGBUILD (from rev 1185923, 
python-weasyprint/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-04-12 01:58:04 UTC (rev 1185924)
@@ -0,0 +1,80 @@
+# Maintainer: Caleb Maclennan 
+# Maintainer: George Rawlinson 
+# Contributor: Florijan Hamzic 
+
+pkgname=python-weasyprint
+pkgver=54.3
+pkgrel=1
+pkgdesc='Utility to render HTML and CSS to PDF'
+arch=('any')
+url='https://weasyprint.org/'
+license=('BSD')
+depends=(
+  'pango'
+  'python-brotli'
+  'python-cffi'
+  'python-cssselect2'
+  'python-fonttools'
+  'python-html5lib'
+  'python-pillow'
+  'python-pydyf'
+  'python-pyphen'
+  'python-tinycss2'
+  'python-zopfli'
+)
+makedepends=(
+  'git'
+  'python-build'
+  'python-installer'
+  'python-flit'
+)
+checkdepends=(
+  'python-pytest'
+  'ghostscript'
+  'ttf-dejavu'
+)
+_commit='2adfe066bd56fe1247f7cd537b6c377755a7e47b'
+source=("$pkgname::git+https://github.com/Kozea/WeasyPrint.git#commit=$_commit";)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # thou shalt not lint coding style in integration tests
+  sed -i 's/--isort --flake8 --cov --no-cov-on-fail//' pyproject.toml
+}
+
+build(){
+  cd "$pkgname"
+
+  python \
+-m build \
+--wheel \
+--no-isolation
+}
+
+check() {
+  cd "$pkgname"
+
+  # skip failing tests
+  python -m pytest \
+--deselect tests/draw/test_gradient.py::test_linear_gradients_5 \
+--deselect tests/draw/test_gradient.py::test_linear_gradients_12
+}
+
+package() {
+  cd "$pkgname"
+
+  python \
+-m installer \
+--destdir="$pkgdir" \
+dist/*.whl
+
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}



[arch-commits] Commit in (4 files)

2022-04-11 Thread George Rawlinson via arch-commits
Date: Tuesday, April 12, 2022 @ 01:57:30
  Author: grawlinson
Revision: 1185923

addpkg: python-weasyprint 54.3-1

Added:
  python-weasyprint/
  python-weasyprint/repos/
  python-weasyprint/trunk/
  python-weasyprint/trunk/PKGBUILD

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

Added: python-weasyprint/trunk/PKGBUILD
===
--- python-weasyprint/trunk/PKGBUILD(rev 0)
+++ python-weasyprint/trunk/PKGBUILD2022-04-12 01:57:30 UTC (rev 1185923)
@@ -0,0 +1,80 @@
+# Maintainer: Caleb Maclennan 
+# Maintainer: George Rawlinson 
+# Contributor: Florijan Hamzic 
+
+pkgname=python-weasyprint
+pkgver=54.3
+pkgrel=1
+pkgdesc='Utility to render HTML and CSS to PDF'
+arch=('any')
+url='https://weasyprint.org/'
+license=('BSD')
+depends=(
+  'pango'
+  'python-brotli'
+  'python-cffi'
+  'python-cssselect2'
+  'python-fonttools'
+  'python-html5lib'
+  'python-pillow'
+  'python-pydyf'
+  'python-pyphen'
+  'python-tinycss2'
+  'python-zopfli'
+)
+makedepends=(
+  'git'
+  'python-build'
+  'python-installer'
+  'python-flit'
+)
+checkdepends=(
+  'python-pytest'
+  'ghostscript'
+  'ttf-dejavu'
+)
+_commit='2adfe066bd56fe1247f7cd537b6c377755a7e47b'
+source=("$pkgname::git+https://github.com/Kozea/WeasyPrint.git#commit=$_commit";)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # thou shalt not lint coding style in integration tests
+  sed -i 's/--isort --flake8 --cov --no-cov-on-fail//' pyproject.toml
+}
+
+build(){
+  cd "$pkgname"
+
+  python \
+-m build \
+--wheel \
+--no-isolation
+}
+
+check() {
+  cd "$pkgname"
+
+  # skip failing tests
+  python -m pytest \
+--deselect tests/draw/test_gradient.py::test_linear_gradients_5 \
+--deselect tests/draw/test_gradient.py::test_linear_gradients_12
+}
+
+package() {
+  cd "$pkgname"
+
+  python \
+-m installer \
+--destdir="$pkgdir" \
+dist/*.whl
+
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}



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

2022-04-11 Thread George Rawlinson via arch-commits
Date: Tuesday, April 12, 2022 @ 01:54:49
  Author: grawlinson
Revision: 1185922

archrelease: copy trunk to community-any

Added:
  python-pydyf/repos/community-any/
  python-pydyf/repos/community-any/PKGBUILD
(from rev 1185921, python-pydyf/trunk/PKGBUILD)

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

Copied: python-pydyf/repos/community-any/PKGBUILD (from rev 1185921, 
python-pydyf/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-04-12 01:54:49 UTC (rev 1185922)
@@ -0,0 +1,61 @@
+# Maintainer: Caleb Maclennan 
+# Maintainer: George Rawlinson 
+
+pkgname=python-pydyf
+pkgver=0.1.2
+pkgrel=3
+pkgdesc='A low-level PDF generator'
+arch=('any')
+url='https://www.courtbouillon.org/pydyf'
+license=('BSD')
+depends=('python')
+makedepends=(
+  'git'
+  'python-build'
+  'python-flit-core'
+  'python-installer'
+)
+checkdepends=(
+  'python-pytest'
+  'python-pillow'
+  'ghostscript'
+)
+_commit='9dd8e99b0093dad2b34fbc1a348c7e144cba4e4a'
+source=("$pkgname::git+https://github.com/CourtBouillon/pydyf.git#commit=$_commit";)
+md5sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # thou shalt not lint coding style in integration tests
+  sed -i 's/--isort --flake8 --cov --no-cov-on-fail//' pyproject.toml
+}
+
+build() {
+  cd "$pkgname"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname"
+
+  # skip failing tests
+  pytest \
+--deselect tests/test_pydyf.py::test_transform \
+--deselect tests/test_pydyf.py::test_text
+}
+
+package() {
+  cd "$pkgname"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}



[arch-commits] Commit in (4 files)

2022-04-11 Thread George Rawlinson via arch-commits
Date: Tuesday, April 12, 2022 @ 01:54:03
  Author: grawlinson
Revision: 1185921

addpkg: python-pydyf 0.1.2-3

Added:
  python-pydyf/
  python-pydyf/repos/
  python-pydyf/trunk/
  python-pydyf/trunk/PKGBUILD

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

Added: python-pydyf/trunk/PKGBUILD
===
--- python-pydyf/trunk/PKGBUILD (rev 0)
+++ python-pydyf/trunk/PKGBUILD 2022-04-12 01:54:03 UTC (rev 1185921)
@@ -0,0 +1,61 @@
+# Maintainer: Caleb Maclennan 
+# Maintainer: George Rawlinson 
+
+pkgname=python-pydyf
+pkgver=0.1.2
+pkgrel=3
+pkgdesc='A low-level PDF generator'
+arch=('any')
+url='https://www.courtbouillon.org/pydyf'
+license=('BSD')
+depends=('python')
+makedepends=(
+  'git'
+  'python-build'
+  'python-flit-core'
+  'python-installer'
+)
+checkdepends=(
+  'python-pytest'
+  'python-pillow'
+  'ghostscript'
+)
+_commit='9dd8e99b0093dad2b34fbc1a348c7e144cba4e4a'
+source=("$pkgname::git+https://github.com/CourtBouillon/pydyf.git#commit=$_commit";)
+md5sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # thou shalt not lint coding style in integration tests
+  sed -i 's/--isort --flake8 --cov --no-cov-on-fail//' pyproject.toml
+}
+
+build() {
+  cd "$pkgname"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname"
+
+  # skip failing tests
+  pytest \
+--deselect tests/test_pydyf.py::test_transform \
+--deselect tests/test_pydyf.py::test_text
+}
+
+package() {
+  cd "$pkgname"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}



[arch-commits] Commit in openethereum/repos/community-x86_64 (8 files)

2022-04-11 Thread Nicola Squartini via arch-commits
Date: Tuesday, April 12, 2022 @ 01:38:04
  Author: tensor5
Revision: 1185920

archrelease: copy trunk to community-x86_64

Added:
  openethereum/repos/community-x86_64/PKGBUILD
(from rev 1185919, openethereum/trunk/PKGBUILD)
  openethereum/repos/community-x86_64/config.toml
(from rev 1185919, openethereum/trunk/config.toml)
  openethereum/repos/community-x86_64/openethereum-system.service
(from rev 1185919, openethereum/trunk/openethereum-system.service)
  openethereum/repos/community-x86_64/openethereum-user.service
(from rev 1185919, openethereum/trunk/openethereum-user.service)
Deleted:
  openethereum/repos/community-x86_64/PKGBUILD
  openethereum/repos/community-x86_64/config.toml
  openethereum/repos/community-x86_64/openethereum-system.service
  openethereum/repos/community-x86_64/openethereum-user.service

-+
 PKGBUILD|   94 +-
 config.toml |6 +-
 openethereum-system.service |   38 
 openethereum-user.service   |   28 ++--
 4 files changed, 83 insertions(+), 83 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-12 01:37:17 UTC (rev 1185919)
+++ PKGBUILD2022-04-12 01:38:04 UTC (rev 1185920)
@@ -1,47 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=openethereum
-pkgver=3.3.4
-_commit=9f87e6dc89b461a23e2082ec5e324568a54d97ce
-pkgrel=2
-pkgdesc='Fast and feature-rich multi-network Ethereum client'
-arch=('x86_64')
-url='https://parity.io/ethereum'
-license=('GPL3')
-depends=('gcc-libs')
-makedepends=('clang' 'cmake' 'git' 'rust')
-provides=('parity' 'parity-ethereum')
-conflicts=('parity' 'parity-ethereum')
-replaces=('parity' 'parity-ethereum')
-backup=('etc/openethereum/config.toml')
-options=('!lto')
-source=("git+https://github.com/openethereum/openethereum.git#commit=${_commit}";
-'config.toml'
-'openethereum-system.service'
-'openethereum-user.service')
-sha256sums=('SKIP'
-'03f0e3a001927cdd25cf12956e8e3a13bd55bad937a9f2509ccbc1fc58f10899'
-'dca7c5e537d29c27f83ddbe4483cbadaff7835afc14ce0d11872fbfb03f23298'
-'4bbad4dc416759013e91edcb3acdc9a1c656f0b47e2c6c8fa9a0e3a354846a0b')
-
-build() {
-cd ${pkgname}
-
-cargo build --release --features final
-cargo build --release -p evmbin
-cargo build --release -p ethstore-cli
-cargo build --release -p ethkey-cli
-}
-
-package() {
-cd ${pkgname}
-
-install -Dm755 -t "${pkgdir}"/usr/bin \
-target/release/{ethstore,openethereum,openethereum-evm}
-install -Dm755 target/release/ethkey 
"${pkgdir}"/usr/bin/openethereum-ethkey
-for type in system user; do
-install -Dm644 ../openethereum-${type}.service \
-"${pkgdir}/usr/lib/systemd/${type}/openethereum.service"
-done
-install -Dm644 -t "${pkgdir}/etc/openethereum" ../config.toml
-}

Copied: openethereum/repos/community-x86_64/PKGBUILD (from rev 1185919, 
openethereum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-12 01:38:04 UTC (rev 1185920)
@@ -0,0 +1,47 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=openethereum
+pkgver=3.3.5
+_commit=6c2d392d867b058ff867c4373e40850ca3f96969
+pkgrel=1
+pkgdesc='Fast and feature-rich multi-network Ethereum client'
+arch=('x86_64')
+url='https://parity.io/ethereum'
+license=('GPL3')
+depends=('gcc-libs')
+makedepends=('clang' 'cmake' 'git' 'rust')
+provides=('parity' 'parity-ethereum')
+conflicts=('parity' 'parity-ethereum')
+replaces=('parity' 'parity-ethereum')
+backup=('etc/openethereum/config.toml')
+options=('!lto')
+source=("git+https://github.com/openethereum/openethereum.git#commit=${_commit}";
+'config.toml'
+'openethereum-system.service'
+'openethereum-user.service')
+sha256sums=('SKIP'
+'03f0e3a001927cdd25cf12956e8e3a13bd55bad937a9f2509ccbc1fc58f10899'
+'dca7c5e537d29c27f83ddbe4483cbadaff7835afc14ce0d11872fbfb03f23298'
+'4bbad4dc416759013e91edcb3acdc9a1c656f0b47e2c6c8fa9a0e3a354846a0b')
+
+build() {
+cd ${pkgname}
+
+cargo build --release --features final
+cargo build --release -p evmbin
+cargo build --release -p ethstore-cli
+cargo build --release -p ethkey-cli
+}
+
+package() {
+cd ${pkgname}
+
+install -Dm755 -t "${pkgdir}"/usr/bin \
+target/release/{ethstore,openethereum,openethereum-evm}
+install -Dm755 target/release/ethkey 
"${pkgdir}"/usr/bin/openethereum-ethkey
+for type in system user; do
+install -Dm644 ../openethereum-${type}.service \
+"${pkgdir}/usr/lib/systemd/${type}/openethereum.service"
+done
+install -Dm644 -t "${pkgdir}/etc/openethereum" ../config.toml
+}

Deleted: config.toml
===
--- config.toml

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

2022-04-11 Thread Nicola Squartini via arch-commits
Date: Tuesday, April 12, 2022 @ 01:37:17
  Author: tensor5
Revision: 1185919

upgpkg: openethereum 3.3.5-1

Modified:
  openethereum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-12 01:06:33 UTC (rev 1185918)
+++ PKGBUILD2022-04-12 01:37:17 UTC (rev 1185919)
@@ -1,9 +1,9 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=openethereum
-pkgver=3.3.4
-_commit=9f87e6dc89b461a23e2082ec5e324568a54d97ce
-pkgrel=2
+pkgver=3.3.5
+_commit=6c2d392d867b058ff867c4373e40850ca3f96969
+pkgrel=1
 pkgdesc='Fast and feature-rich multi-network Ethereum client'
 arch=('x86_64')
 url='https://parity.io/ethereum'



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

2022-04-11 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 12, 2022 @ 01:06:33
  Author: polyzen
Revision: 1185918

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-12 01:06:14 UTC (rev 1185917)
+++ PKGBUILD2022-04-12 01:06:33 UTC (rev 1185918)
@@ -1,46 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Daniel M. Capella 
-
-pkgname=('python-jsbeautifier' 'python-cssbeautifier')
-pkgbase=python-jsbeautifier
-pkgver=1.14.2
-pkgrel=1
-arch=('any')
-license=('MIT')
-url='https://github.com/beautify-web/js-beautify'
-depends=('python-editorconfig' 'python-six')
-makedepends=('python-setuptools')
-source=("https://github.com/beautify-web/js-beautify/archive/v$pkgver/js-beautify-v$pkgver.tar.gz";)
-b2sums=('07fd18c4c75a19ce554aff5ce1fe661eec848ecb70bf3d0c2c230209778295ec5e73e9a920a8f3aa742e8a35db57964acf04b4185036608b4c64eb2f119495a7')
-
-prepare() {
-  cd js-beautify-$pkgver
-  cp -a python python-css
-}
-
-build() {
-  cd js-beautify-$pkgver/python
-  python setup-js.py build
-  cd ../python-css
-  python setup-css.py build
-}
-
-check() {
-  cd js-beautify-$pkgver
-  python python/js-beautify-test.py
-}
-
-package_python-jsbeautifier() {
-  pkgdesc='JavaScript unobfuscator and beautifier'
-  cd js-beautify-$pkgver/python
-  python setup-js.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -D -m644 -t "$pkgdir"/usr/share/licenses/"${pkgname[0]}" ../LICENSE
-}
-
-package_python-cssbeautifier() {
-  pkgdesc='CSS unobfuscator and beautifier'
-  depends+=('python-jsbeautifier')
-  cd js-beautify-$pkgver/python-css
-  python setup-css.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -D -m644 -t "$pkgdir"/usr/share/licenses/"${pkgname[1]}" ../LICENSE
-}

Copied: python-jsbeautifier/repos/community-any/PKGBUILD (from rev 1185917, 
python-jsbeautifier/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-12 01:06:33 UTC (rev 1185918)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Maintainer: Daniel M. Capella 
+
+pkgname=('python-jsbeautifier' 'python-cssbeautifier')
+pkgbase=python-jsbeautifier
+pkgver=1.14.3
+pkgrel=1
+arch=('any')
+license=('MIT')
+url='https://github.com/beautify-web/js-beautify'
+depends=('python-editorconfig' 'python-six')
+makedepends=('python-setuptools')
+source=("https://github.com/beautify-web/js-beautify/archive/v$pkgver/js-beautify-v$pkgver.tar.gz";)
+b2sums=('927cfbf2b5993017ea03bf220e07b62888f52dce6370a2f5dfdce6e1a3060f4ab206989ecf0dcae7310a52a2d47bca9dd6bd4524808ce0c95b2638dab2020217')
+
+prepare() {
+  cd js-beautify-$pkgver
+  cp -a python python-css
+}
+
+build() {
+  cd js-beautify-$pkgver/python
+  python setup-js.py build
+  cd ../python-css
+  python setup-css.py build
+}
+
+check() {
+  cd js-beautify-$pkgver
+  python python/js-beautify-test.py
+}
+
+package_python-jsbeautifier() {
+  pkgdesc='JavaScript unobfuscator and beautifier'
+  cd js-beautify-$pkgver/python
+  python setup-js.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -D -m644 -t "$pkgdir"/usr/share/licenses/"${pkgname[0]}" ../LICENSE
+}
+
+package_python-cssbeautifier() {
+  pkgdesc='CSS unobfuscator and beautifier'
+  depends+=('python-jsbeautifier')
+  cd js-beautify-$pkgver/python-css
+  python setup-css.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -D -m644 -t "$pkgdir"/usr/share/licenses/"${pkgname[1]}" ../LICENSE
+}



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

2022-04-11 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 12, 2022 @ 01:06:14
  Author: polyzen
Revision: 1185917

upgpkg: python-jsbeautifier 1.14.3-1

Modified:
  python-jsbeautifier/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-12 01:03:32 UTC (rev 1185916)
+++ PKGBUILD2022-04-12 01:06:14 UTC (rev 1185917)
@@ -3,7 +3,7 @@
 
 pkgname=('python-jsbeautifier' 'python-cssbeautifier')
 pkgbase=python-jsbeautifier
-pkgver=1.14.2
+pkgver=1.14.3
 pkgrel=1
 arch=('any')
 license=('MIT')
@@ -11,7 +11,7 @@
 depends=('python-editorconfig' 'python-six')
 makedepends=('python-setuptools')
 
source=("https://github.com/beautify-web/js-beautify/archive/v$pkgver/js-beautify-v$pkgver.tar.gz";)
-b2sums=('07fd18c4c75a19ce554aff5ce1fe661eec848ecb70bf3d0c2c230209778295ec5e73e9a920a8f3aa742e8a35db57964acf04b4185036608b4c64eb2f119495a7')
+b2sums=('927cfbf2b5993017ea03bf220e07b62888f52dce6370a2f5dfdce6e1a3060f4ab206989ecf0dcae7310a52a2d47bca9dd6bd4524808ce0c95b2638dab2020217')
 
 prepare() {
   cd js-beautify-$pkgver



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

2022-04-11 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 12, 2022 @ 01:03:32
  Author: polyzen
Revision: 1185916

archrelease: copy trunk to community-x86_64

Added:
  go-yq/repos/community-x86_64/PKGBUILD
(from rev 1185915, go-yq/trunk/PKGBUILD)
Deleted:
  go-yq/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-12 01:03:10 UTC (rev 1185915)
+++ PKGBUILD2022-04-12 01:03:32 UTC (rev 1185916)
@@ -1,52 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Maintainer: Caleb Maclennan 
-# Contributor: Mario Finelli 
-
-pkgname=go-yq
-pkgver=4.24.2
-pkgrel=1
-pkgdesc='Portable command-line YAML processor'
-arch=('x86_64')
-url=https://github.com/mikefarah/yq
-license=('MIT')
-depends=('glibc')
-makedepends=('go')
-conflicts=('yq')
-source=("$url/archive/v$pkgver/yq-$pkgver.tar.gz")
-b2sums=('bd975844d64f553c6343174d7c839f562cfc94d5681cbf7f7cb059134a76aee9787ca286d8fa78f16019c1fe4812cc5dd5e03e47321bbc46d9772d9fb1f464a6')
-
-prepare() {
-  cd yq-$pkgver
-  go mod vendor
-}
-
-build() {
-  cd yq-$pkgver
-  export CGO_CPPFLAGS="$CPPFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_CXXFLAGS="$CXXFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-modcacherw"
-  go build .
-}
-
-check() {
-  cd yq-$pkgver
-  go test ./...
-}
-
-package() {
-  cd yq-$pkgver
-  install -Dt "$pkgdir"/usr/bin yq
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-  install -Dm644 -t "$pkgdir"/usr/share/doc/$pkgname README.md
-
-  ./yq shell-completion bash | install -Dm644 /dev/stdin \
-"$pkgdir"/usr/share/bash-completion/completions/yq
-  ./yq shell-completion zsh | install -Dm644 /dev/stdin \
-"$pkgdir"/usr/share/zsh/site-functions/_yq
-  ./yq shell-completion fish | install -Dm644 /dev/stdin \
-"$pkgdir"/usr/share/fish/vendor_completions.d/yq.fish
-}
-
-# vim:set ts=2 sw=2 et:

Copied: go-yq/repos/community-x86_64/PKGBUILD (from rev 1185915, 
go-yq/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-12 01:03:32 UTC (rev 1185916)
@@ -0,0 +1,52 @@
+# Maintainer: Daniel M. Capella 
+# Maintainer: Caleb Maclennan 
+# Contributor: Mario Finelli 
+
+pkgname=go-yq
+pkgver=4.24.3
+pkgrel=1
+pkgdesc='Portable command-line YAML processor'
+arch=('x86_64')
+url=https://github.com/mikefarah/yq
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+conflicts=('yq')
+source=("$url/archive/v$pkgver/yq-$pkgver.tar.gz")
+b2sums=('e915a994ae0249c522e98d2effab4b72bbe4e83c0fdb4d14239d4f3f726379f9521a00be1ec54354a1abefbf8c13fbd961e2e2fa60c6429c5e127a127945f7f0')
+
+prepare() {
+  cd yq-$pkgver
+  go mod vendor
+}
+
+build() {
+  cd yq-$pkgver
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-modcacherw"
+  go build .
+}
+
+check() {
+  cd yq-$pkgver
+  go test ./...
+}
+
+package() {
+  cd yq-$pkgver
+  install -Dt "$pkgdir"/usr/bin yq
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+  install -Dm644 -t "$pkgdir"/usr/share/doc/$pkgname README.md
+
+  ./yq shell-completion bash | install -Dm644 /dev/stdin \
+"$pkgdir"/usr/share/bash-completion/completions/yq
+  ./yq shell-completion zsh | install -Dm644 /dev/stdin \
+"$pkgdir"/usr/share/zsh/site-functions/_yq
+  ./yq shell-completion fish | install -Dm644 /dev/stdin \
+"$pkgdir"/usr/share/fish/vendor_completions.d/yq.fish
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-04-11 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 12, 2022 @ 01:03:10
  Author: polyzen
Revision: 1185915

upgpkg: go-yq 4.24.3-1

Modified:
  go-yq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-12 00:51:00 UTC (rev 1185914)
+++ PKGBUILD2022-04-12 01:03:10 UTC (rev 1185915)
@@ -3,7 +3,7 @@
 # Contributor: Mario Finelli 
 
 pkgname=go-yq
-pkgver=4.24.2
+pkgver=4.24.3
 pkgrel=1
 pkgdesc='Portable command-line YAML processor'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('go')
 conflicts=('yq')
 source=("$url/archive/v$pkgver/yq-$pkgver.tar.gz")
-b2sums=('bd975844d64f553c6343174d7c839f562cfc94d5681cbf7f7cb059134a76aee9787ca286d8fa78f16019c1fe4812cc5dd5e03e47321bbc46d9772d9fb1f464a6')
+b2sums=('e915a994ae0249c522e98d2effab4b72bbe4e83c0fdb4d14239d4f3f726379f9521a00be1ec54354a1abefbf8c13fbd961e2e2fa60c6429c5e127a127945f7f0')
 
 prepare() {
   cd yq-$pkgver



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

2022-04-11 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 12, 2022 @ 00:51:00
  Author: polyzen
Revision: 1185914

archrelease: copy trunk to community-x86_64

Added:
  selene-linter/repos/community-x86_64/PKGBUILD
(from rev 1185913, selene-linter/trunk/PKGBUILD)
Deleted:
  selene-linter/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-12 00:50:34 UTC (rev 1185913)
+++ PKGBUILD2022-04-12 00:51:00 UTC (rev 1185914)
@@ -1,36 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-_name=selene
-pkgname=selene-linter
-pkgver=0.16.0
-pkgrel=2
-pkgdesc='Blazing-fast modern Lua linter written in Rust'
-arch=('x86_64')
-url=https://github.com/Kampfkarren/selene
-license=('MPL2')
-depends=('gcc-libs' 'openssl')
-makedepends=('rust')
-source=("$url/archive/$pkgver/$_name-$pkgver.tar.gz")
-b2sums=('d322c76ee4fe81d33641741d2f012b048b7bcb60c7722d6e1914004a4528a9ba9b248760e345e86f2a6365d177c622e0bc244020044eb86c7762791a419f79c2')
-
-prepare() {
-  cd $_name-$pkgver
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd $_name-$pkgver
-  cargo build --release --locked --offline
-}
-
-check() {
-  cd $_name-$pkgver
-  cargo test --locked --offline
-}
-
-package() {
-  cd $_name-$pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/$_name
-}
-
-# vim:set ts=2 sw=2 et:

Copied: selene-linter/repos/community-x86_64/PKGBUILD (from rev 1185913, 
selene-linter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-12 00:51:00 UTC (rev 1185914)
@@ -0,0 +1,36 @@
+# Maintainer: Daniel M. Capella 
+
+_name=selene
+pkgname=selene-linter
+pkgver=0.17.0
+pkgrel=1
+pkgdesc='Blazing-fast modern Lua linter written in Rust'
+arch=('x86_64')
+url=https://github.com/Kampfkarren/selene
+license=('MPL2')
+depends=('gcc-libs' 'openssl')
+makedepends=('rust')
+source=("$url/archive/$pkgver/$_name-$pkgver.tar.gz")
+b2sums=('60f2f5cb6d7becaa0137ad90e1b03ebd9f2e23dfed2c248fa59c87e1565c049c7298a8e2ffd6355571f7e696379d5c943193e5ab438b9c3f1a74b1b3a399cf6a')
+
+prepare() {
+  cd $_name-$pkgver
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd $_name-$pkgver
+  cargo build --release --locked --offline
+}
+
+check() {
+  cd $_name-$pkgver
+  cargo test --locked --offline
+}
+
+package() {
+  cd $_name-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/$_name
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-04-11 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 12, 2022 @ 00:50:34
  Author: polyzen
Revision: 1185913

upgpkg: selene-linter 0.17.0-1

Modified:
  selene-linter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-12 00:34:54 UTC (rev 1185912)
+++ PKGBUILD2022-04-12 00:50:34 UTC (rev 1185913)
@@ -2,8 +2,8 @@
 
 _name=selene
 pkgname=selene-linter
-pkgver=0.16.0
-pkgrel=2
+pkgver=0.17.0
+pkgrel=1
 pkgdesc='Blazing-fast modern Lua linter written in Rust'
 arch=('x86_64')
 url=https://github.com/Kampfkarren/selene
@@ -11,7 +11,7 @@
 depends=('gcc-libs' 'openssl')
 makedepends=('rust')
 source=("$url/archive/$pkgver/$_name-$pkgver.tar.gz")
-b2sums=('d322c76ee4fe81d33641741d2f012b048b7bcb60c7722d6e1914004a4528a9ba9b248760e345e86f2a6365d177c622e0bc244020044eb86c7762791a419f79c2')
+b2sums=('60f2f5cb6d7becaa0137ad90e1b03ebd9f2e23dfed2c248fa59c87e1565c049c7298a8e2ffd6355571f7e696379d5c943193e5ab438b9c3f1a74b1b3a399cf6a')
 
 prepare() {
   cd $_name-$pkgver



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

2022-04-11 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, April 12, 2022 @ 00:34:54
  Author: svenstaro
Revision: 1185912

archrelease: copy trunk to community-x86_64

Added:
  watchexec/repos/community-x86_64/PKGBUILD
(from rev 1185911, watchexec/trunk/PKGBUILD)
Deleted:
  watchexec/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-12 00:34:39 UTC (rev 1185911)
+++ PKGBUILD2022-04-12 00:34:54 UTC (rev 1185912)
@@ -1,32 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Vlad M. 
-
-pkgname=watchexec
-pkgver=1.18.11
-pkgrel=1
-pkgdesc="Executes commands in response to file modifications"
-url='https://github.com/watchexec/watchexec'
-depends=('gcc-libs' 'zlib')
-makedepends=('cargo')
-arch=('x86_64')
-license=('Apache')
-source=("https://github.com/watchexec/watchexec/archive/refs/tags/cli-v${pkgver}.tar.gz";)
-options=('!lto')
-sha256sums=('bdd5af45ab7e5981eed25ac09767388aa1fbf711a9d286bcb99884464980af5b')
-
-build() {
-  cd "watchexec-cli-v$pkgver"
-  cargo build --release --locked
-}
-
-check() {
-  cd "watchexec-cli-v$pkgver"
-  cargo test --locked
-}
-
-package() {
-  cd "watchexec-cli-v$pkgver"
-  install -Dm644 "completions/zsh" 
"$pkgdir/usr/share/zsh/site-functions/_watchexec"
-  install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: watchexec/repos/community-x86_64/PKGBUILD (from rev 1185911, 
watchexec/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-12 00:34:54 UTC (rev 1185912)
@@ -0,0 +1,34 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Vlad M. 
+
+pkgname=watchexec
+pkgver=1.18.11
+pkgrel=2
+pkgdesc="Executes commands in response to file modifications"
+url='https://github.com/watchexec/watchexec'
+depends=('gcc-libs' 'zlib')
+makedepends=('cargo')
+arch=('x86_64')
+license=('Apache')
+source=("https://github.com/watchexec/watchexec/archive/refs/tags/cli-v${pkgver}.tar.gz";)
+options=('!lto')
+sha256sums=('bdd5af45ab7e5981eed25ac09767388aa1fbf711a9d286bcb99884464980af5b')
+
+build() {
+  cd "watchexec-cli-v$pkgver"
+  cargo build --release --locked
+}
+
+check() {
+  cd "watchexec-cli-v$pkgver"
+  cargo test --locked
+}
+
+package() {
+  cd "watchexec-cli-v$pkgver"
+  install -Dm644 "doc/watchexec.1" "$pkgdir/usr/share/man/man1/watchexec.1"
+  gzip -9 "$pkgdir/usr/share/man/man1/watchexec.1"
+  install -Dm644 "completions/zsh" 
"$pkgdir/usr/share/zsh/site-functions/_watchexec"
+  install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-04-11 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, April 12, 2022 @ 00:34:39
  Author: svenstaro
Revision: 1185911

upgpkg: watchexec 1.18.11-2: Add man page

Modified:
  watchexec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-12 00:11:18 UTC (rev 1185910)
+++ PKGBUILD2022-04-12 00:34:39 UTC (rev 1185911)
@@ -3,7 +3,7 @@
 
 pkgname=watchexec
 pkgver=1.18.11
-pkgrel=1
+pkgrel=2
 pkgdesc="Executes commands in response to file modifications"
 url='https://github.com/watchexec/watchexec'
 depends=('gcc-libs' 'zlib')
@@ -26,6 +26,8 @@
 
 package() {
   cd "watchexec-cli-v$pkgver"
+  install -Dm644 "doc/watchexec.1" "$pkgdir/usr/share/man/man1/watchexec.1"
+  gzip -9 "$pkgdir/usr/share/man/man1/watchexec.1"
   install -Dm644 "completions/zsh" 
"$pkgdir/usr/share/zsh/site-functions/_watchexec"
   install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"



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

2022-04-11 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 12, 2022 @ 00:11:18
  Author: polyzen
Revision: 1185910

archrelease: copy trunk to community-any

Added:
  htmlhint/repos/community-any/PKGBUILD
(from rev 1185909, htmlhint/trunk/PKGBUILD)
Deleted:
  htmlhint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-12 00:10:59 UTC (rev 1185909)
+++ PKGBUILD2022-04-12 00:11:18 UTC (rev 1185910)
@@ -1,46 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-_name=HTMLHint
-pkgname=htmlhint
-pkgver=1.1.3
-pkgrel=1
-pkgdesc='Static Code Analysis Tool for your HTML'
-arch=('any')
-url=https://htmlhint.com/
-license=('MIT')
-depends=('nodejs')
-makedepends=('git' 'npm')
-options=('!emptydirs')
-source=("git+https://github.com/htmlhint/HTMLHint.git#tag=v$pkgver";)
-b2sums=('SKIP')
-
-prepare() {
-  cd $_name
-  npm ci
-}
-
-build() {
-  cd $_name
-  npm run build
-}
-
-check() {
-  cd $_name
-  npm test
-}
-
-package() {
-  cd $_name
-
-  npm prune --production
-
-  install -d "$pkgdir"/usr/bin
-  ln -s ../lib/node_modules/$pkgname/bin/$pkgname "$pkgdir"/usr/bin/$pkgname
-  install -Dt "$pkgdir"/usr/lib/node_modules/$pkgname/bin bin/$pkgname
-  cp -r dist node_modules package.json "$pkgdir"/usr/lib/node_modules/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/doc/$pkgname \
-{CHANGELOG,CONTRIBUTING,README}.md
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: htmlhint/repos/community-any/PKGBUILD (from rev 1185909, 
htmlhint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-12 00:11:18 UTC (rev 1185910)
@@ -0,0 +1,46 @@
+# Maintainer: Daniel M. Capella 
+
+_name=HTMLHint
+pkgname=htmlhint
+pkgver=1.1.4
+pkgrel=1
+pkgdesc='Static Code Analysis Tool for your HTML'
+arch=('any')
+url=https://htmlhint.com/
+license=('MIT')
+depends=('nodejs')
+makedepends=('git' 'npm')
+options=('!emptydirs')
+source=("git+https://github.com/htmlhint/HTMLHint.git#tag=v$pkgver";)
+b2sums=('SKIP')
+
+prepare() {
+  cd $_name
+  npm ci
+}
+
+build() {
+  cd $_name
+  npm run build
+}
+
+check() {
+  cd $_name
+  npm test
+}
+
+package() {
+  cd $_name
+
+  npm prune --production
+
+  install -d "$pkgdir"/usr/bin
+  ln -s ../lib/node_modules/$pkgname/bin/$pkgname "$pkgdir"/usr/bin/$pkgname
+  install -Dt "$pkgdir"/usr/lib/node_modules/$pkgname/bin bin/$pkgname
+  cp -r dist node_modules package.json "$pkgdir"/usr/lib/node_modules/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/doc/$pkgname \
+{CHANGELOG,CONTRIBUTING,README}.md
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-04-11 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 12, 2022 @ 00:10:59
  Author: polyzen
Revision: 1185909

upgpkg: htmlhint 1.1.4-1

Modified:
  htmlhint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-12 00:09:15 UTC (rev 1185908)
+++ PKGBUILD2022-04-12 00:10:59 UTC (rev 1185909)
@@ -2,7 +2,7 @@
 
 _name=HTMLHint
 pkgname=htmlhint
-pkgver=1.1.3
+pkgver=1.1.4
 pkgrel=1
 pkgdesc='Static Code Analysis Tool for your HTML'
 arch=('any')



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

2022-04-11 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 12, 2022 @ 00:09:15
  Author: polyzen
Revision: 1185908

archrelease: copy trunk to community-x86_64

Added:
  rust-analyzer/repos/community-x86_64/PKGBUILD
(from rev 1185907, rust-analyzer/trunk/PKGBUILD)
Deleted:
  rust-analyzer/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-12 00:08:50 UTC (rev 1185907)
+++ PKGBUILD2022-04-12 00:09:15 UTC (rev 1185908)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Sergey A. 
-
-pkgname=rust-analyzer
-_pkgver=2022-04-04
-pkgver=${_pkgver//-}
-pkgrel=1
-pkgdesc='Rust compiler front-end for IDEs'
-arch=('x86_64')
-url=https://rust-analyzer.github.io/
-license=('Apache' 'MIT')
-depends=('gcc-libs' 'rust-src')
-makedepends=('git')
-source=("git+https://github.com/$pkgname/$pkgname.git#tag=$_pkgver";)
-b2sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd $pkgname
-  RUST_ANALYZER_REV=$_pkgver cargo build --release --locked --offline
-}
-
-package() {
-  cd $pkgname
-  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust-analyzer/repos/community-x86_64/PKGBUILD (from rev 1185907, 
rust-analyzer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-12 00:09:15 UTC (rev 1185908)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Sergey A. 
+
+pkgname=rust-analyzer
+_pkgver=2022-04-11
+pkgver=${_pkgver//-}
+pkgrel=1
+pkgdesc='Rust compiler front-end for IDEs'
+arch=('x86_64')
+url=https://rust-analyzer.github.io/
+license=('Apache' 'MIT')
+depends=('gcc-libs' 'rust-src')
+makedepends=('git')
+source=("git+https://github.com/$pkgname/$pkgname.git#tag=$_pkgver";)
+b2sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd $pkgname
+  RUST_ANALYZER_REV=$_pkgver cargo build --release --locked --offline
+}
+
+package() {
+  cd $pkgname
+  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-04-11 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 12, 2022 @ 00:08:50
  Author: polyzen
Revision: 1185907

upgpkg: rust-analyzer 20220411-1

Modified:
  rust-analyzer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 23:57:53 UTC (rev 1185906)
+++ PKGBUILD2022-04-12 00:08:50 UTC (rev 1185907)
@@ -2,7 +2,7 @@
 # Contributor: Sergey A. 
 
 pkgname=rust-analyzer
-_pkgver=2022-04-04
+_pkgver=2022-04-11
 pkgver=${_pkgver//-}
 pkgrel=1
 pkgdesc='Rust compiler front-end for IDEs'



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

2022-04-11 Thread Maxim Baz via arch-commits
Date: Monday, April 11, 2022 @ 22:59:39
  Author: maximbaz
Revision: 1185904

archrelease: copy trunk to community-x86_64

Added:
  curlie/repos/community-x86_64/PKGBUILD
(from rev 1185903, curlie/trunk/PKGBUILD)
Deleted:
  curlie/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 22:59:36 UTC (rev 1185903)
+++ PKGBUILD2022-04-11 22:59:39 UTC (rev 1185904)
@@ -1,33 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Jianfeng Zhang 
-
-pkgname=curlie
-pkgver=1.6.7
-pkgrel=2
-pkgdesc='The power of curl, the ease of use of httpie.'
-arch=('x86_64')
-url="https://curlie.io";
-license=('MIT')
-depends=('glibc' 'curl')
-makedepends=('go')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rs/${pkgname}/archive/v${pkgver}.tar.gz";)
-sha256sums=('25a0ea35be6ff9dd88551c992a0f7ea565ce2fae8213c674bd28a7cc512493d9')
-options=(!lto)
-
-build() {
-cd "${pkgname}-${pkgver}"
-
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-
-go build -ldflags "-X main.version=$pkgver -X main.date=$(date -u -I -d 
@$SOURCE_DATE_EPOCH) -linkmode=external -extldflags=$LDFLAGS"
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}

Copied: curlie/repos/community-x86_64/PKGBUILD (from rev 1185903, 
curlie/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 22:59:39 UTC (rev 1185904)
@@ -0,0 +1,33 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Jianfeng Zhang 
+
+pkgname=curlie
+pkgver=1.6.9
+pkgrel=1
+pkgdesc='The power of curl, the ease of use of httpie.'
+arch=('x86_64')
+url="https://curlie.io";
+license=('MIT')
+depends=('glibc' 'curl')
+makedepends=('go')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rs/${pkgname}/archive/v${pkgver}.tar.gz";)
+sha256sums=('95b7061861aa8d608f9df0d63a11206f8cd532295ca13dd39ed37e0136bdcc5f')
+options=(!lto)
+
+build() {
+cd "${pkgname}-${pkgver}"
+
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
+go build -ldflags "-X main.version=$pkgver -X main.date=$(date -u -I -d 
@$SOURCE_DATE_EPOCH) -linkmode=external -extldflags=$LDFLAGS"
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}



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

2022-04-11 Thread Maxim Baz via arch-commits
Date: Monday, April 11, 2022 @ 22:59:36
  Author: maximbaz
Revision: 1185903

upgpkg: curlie 1.6.9-1

Modified:
  curlie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 21:36:56 UTC (rev 1185902)
+++ PKGBUILD2022-04-11 22:59:36 UTC (rev 1185903)
@@ -2,8 +2,8 @@
 # Contributor: Jianfeng Zhang 
 
 pkgname=curlie
-pkgver=1.6.7
-pkgrel=2
+pkgver=1.6.9
+pkgrel=1
 pkgdesc='The power of curl, the ease of use of httpie.'
 arch=('x86_64')
 url="https://curlie.io";
@@ -11,7 +11,7 @@
 depends=('glibc' 'curl')
 makedepends=('go')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rs/${pkgname}/archive/v${pkgver}.tar.gz";)
-sha256sums=('25a0ea35be6ff9dd88551c992a0f7ea565ce2fae8213c674bd28a7cc512493d9')
+sha256sums=('95b7061861aa8d608f9df0d63a11206f8cd532295ca13dd39ed37e0136bdcc5f')
 options=(!lto)
 
 build() {



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

2022-04-11 Thread George Rawlinson via arch-commits
Date: Monday, April 11, 2022 @ 21:36:56
  Author: grawlinson
Revision: 1185902

archrelease: copy trunk to community-x86_64

Added:
  timescaledb/repos/community-x86_64/PKGBUILD
(from rev 1185901, timescaledb/trunk/PKGBUILD)
  timescaledb/repos/community-x86_64/timescaledb.install
(from rev 1185901, timescaledb/trunk/timescaledb.install)
Deleted:
  timescaledb/repos/community-x86_64/PKGBUILD
  timescaledb/repos/community-x86_64/timescaledb.install

-+
 PKGBUILD|  158 +-
 timescaledb.install |   30 -
 2 files changed, 94 insertions(+), 94 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 21:35:51 UTC (rev 1185901)
+++ PKGBUILD2022-04-11 21:36:56 UTC (rev 1185902)
@@ -1,79 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: George Rawlinson 
-# Contributor: Felix Fung 
-
-pkgname=timescaledb
-_commit=23962c8
-# limit to last 5 releases
-_versions=(
-  2.4.2
-  2.5.0
-  2.5.1
-  2.5.2
-  2.6.0 # current ts version
-)
-pkgver="${_versions[-1]}"
-pkgrel=1
-pkgdesc="An open-source time-series database optimized for fast ingest and 
complex queries"
-arch=('x86_64')
-url="https://www.timescale.com/";
-license=('Apache' 'custom:Timescale')
-depends=('postgresql' 'postgresql-libs' 'openssl')
-makedepends=('gcc' 'cmake' 'git')
-optdepends=('timescaledb-tune: tune postgresql.conf for better performance')
-install=timescaledb.install
-source=("$pkgname::git+https://github.com/timescale/timescaledb#commit=$_commit";)
-sha512sums=('SKIP')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  for version in "${_versions[@]}"; do
-cd "$srcdir/$pkgname"
-git checkout "$version"
-BUILD_DIR="$srcdir/build/$version" ./bootstrap \
-  -DWARNINGS_AS_ERRORS=OFF \
-  -DREGRESS_CHECKS=OFF \
-  -DTAP_CHECKS=OFF \
-  -DGENERATE_DOWNGRADE_SCRIPT=ON
-
-# build package or past shared library
-cd "$srcdir/build/$version"
-
-# temporarily ensure reproducible builds (value from `lsb_release -r`)
-# TODO: resolve https://github.com/timescale/timescaledb/issues/3480
-sed \
-  -e "s:BUILD_OS_VERSION \".*\"$:BUILD_OS_VERSION \"rolling\":" \
-  -i src/config.h
-
-if [ "$version" == "${_versions[-1]}" ]; then
-  make
-else
-  make timescaledb timescaledb-tsl sqlfile
-fi
-  done
-}
-
-package() {
-  cd "$pkgname"
-  # install licenses from latest version
-  git checkout "${_versions[-1]}"
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" \
-LICENSE LICENSE-APACHE tsl/LICENSE-TIMESCALE
-
-  # install package or past shared library
-  for version in "${_versions[@]}"; do
-cd "$srcdir/build/$version"
-if [ "$version" == "${_versions[-1]}" ]; then
-  make DESTDIR="$pkgdir/" install
-else
-  install -vDm644 -t "$pkgdir/usr/lib/postgresql" \
-"src/$pkgname-$version.so" \
-"tsl/src/$pkgname-tsl-$version.so"
-  install -Dm644 -t "$pkgdir/usr/share/postgresql/extension" \
-"sql/timescaledb--$version.sql"
-fi
-  done
-}

Copied: timescaledb/repos/community-x86_64/PKGBUILD (from rev 1185901, 
timescaledb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 21:36:56 UTC (rev 1185902)
@@ -0,0 +1,79 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: George Rawlinson 
+# Contributor: Felix Fung 
+
+pkgname=timescaledb
+_commit=9ae47c6802b6ad4a6e13d243e4d5cc2e4119affb
+# limit to last 5 releases
+_versions=(
+  2.5.0
+  2.5.1
+  2.5.2
+  2.6.0
+  2.6.1 # current ts version
+)
+pkgver="${_versions[-1]}"
+pkgrel=1
+pkgdesc="An open-source time-series database optimized for fast ingest and 
complex queries"
+arch=('x86_64')
+url="https://www.timescale.com/";
+license=('Apache' 'custom:Timescale')
+depends=('postgresql' 'postgresql-libs' 'openssl')
+makedepends=('gcc' 'cmake' 'git')
+optdepends=('timescaledb-tune: tune postgresql.conf for better performance')
+install=timescaledb.install
+source=("$pkgname::git+https://github.com/timescale/timescaledb#commit=$_commit";)
+sha512sums=('SKIP')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  for version in "${_versions[@]}"; do
+cd "$srcdir/$pkgname"
+git checkout "$version"
+BUILD_DIR="$srcdir/build/$version" ./bootstrap \
+  -DWARNINGS_AS_ERRORS=OFF \
+  -DREGRESS_CHECKS=OFF \
+  -DTAP_CHECKS=OFF \
+  -DGENERATE_DOWNGRADE_SCRIPT=ON
+
+# build package or past shared library
+cd "$srcdir/build/$version"
+
+# temporarily ensure reproducible builds (value from `lsb_release -r`)
+# TODO: resolve https://github.com/timescale/timescaledb/issues/3480
+sed \
+  -e "s:BUILD_OS_VERSION \".*\"$:BUILD_OS_VERSION \"rolling\":" \
+  -i src/config.h
+
+if [ "$version" == "${_versions[-1]}" ]; then
+  make
+else
+  make timescaledb timesca

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

2022-04-11 Thread George Rawlinson via arch-commits
Date: Monday, April 11, 2022 @ 21:35:51
  Author: grawlinson
Revision: 1185901

upgpkg: timescaledb 2.6.1-1

New upstream release.

Modified:
  timescaledb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 21:33:49 UTC (rev 1185900)
+++ PKGBUILD2022-04-11 21:35:51 UTC (rev 1185901)
@@ -3,14 +3,14 @@
 # Contributor: Felix Fung 
 
 pkgname=timescaledb
-_commit=23962c8
+_commit=9ae47c6802b6ad4a6e13d243e4d5cc2e4119affb
 # limit to last 5 releases
 _versions=(
-  2.4.2
   2.5.0
   2.5.1
   2.5.2
-  2.6.0 # current ts version
+  2.6.0
+  2.6.1 # current ts version
 )
 pkgver="${_versions[-1]}"
 pkgrel=1



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

2022-04-11 Thread David Runge via arch-commits
Date: Monday, April 11, 2022 @ 21:33:49
  Author: dvzrv
Revision: 1185900

archrelease: copy trunk to community-x86_64

Added:
  lsp-plugins/repos/community-x86_64/PKGBUILD
(from rev 1185899, lsp-plugins/trunk/PKGBUILD)
  lsp-plugins/repos/community-x86_64/lsp-plugins-1.2.0-icon_install.patch
(from rev 1185899, lsp-plugins/trunk/lsp-plugins-1.2.0-icon_install.patch)
  lsp-plugins/repos/community-x86_64/lsp-plugins-1.2.0-xdg_data_install.patch
(from rev 1185899, 
lsp-plugins/trunk/lsp-plugins-1.2.0-xdg_data_install.patch)
Deleted:
  lsp-plugins/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  216 ++---
 lsp-plugins-1.2.0-icon_install.patch |   23 +++
 lsp-plugins-1.2.0-xdg_data_install.patch |   13 +
 3 files changed, 145 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 21:33:22 UTC (rev 1185899)
+++ PKGBUILD2022-04-11 21:33:49 UTC (rev 1185900)
@@ -1,107 +0,0 @@
-# Maintainer: David Runge 
-
-pkgbase=lsp-plugins
-pkgname=(lsp-plugins lsp-plugins-docs)
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="Collection of free plugins compatible with LADSPA, LV2 and LinuxVST"
-arch=(x86_64)
-url="https://lsp-plug.in";
-license=(LGPL3)
-makedepends=(cairo gcc-libs glibc hicolor-icon-theme libglvnd libx11 jack 
ladspa libsndfile lv2 php)
-checkdepends=(lv2lint)
-options=(debug)
-source=($pkgname-$pkgver.tar.gz::https://github.com/sadko4u/$pkgname/archive/$pkgver/$pkgver.tar.gz)
-source=(https://github.com/sadko4u/$pkgname/releases/download/$pkgver/$pkgname-src-$pkgver.tar.gz)
-sha512sums=('b4aa8ca6512bb01248d39393fb6ac76f4b97a60f36d2f7e18a5dce6600cc77d57c667c96f51940ce7b8ad09b72638e417c9e3802dc7e49f652979d8fe7e40957')
-b2sums=('ffa65105fa05ff8ae845333138c2ccedc5295a524ed45c6633912b342b112f05aecbc3dfa935dbfb7dc6d7efc106cf1b20ed86ddc649729461e7a32a200e473d')
-
-build() {
-  make config TEST=1 FEATURES='doc lv2 vst2 jack ladspa xdg' PREFIX=/usr -C 
$pkgbase
-  make -C $pkgbase
-}
-
-check() {
-  local _plugin
-  local _lv2_uri="http://lsp-plug.in/plugins/lv2/";
-  local _lv2_plugins=(art_delay_mono art_delay_stereo comp_delay_mono
-  comp_delay_stereo comp_delay_x2_stereo compressor_lr compressor_mono
-  compressor_ms compressor_stereo crossover_lr crossover_mono crossover_ms
-  crossover_stereo dyna_processor_lr dyna_processor_mono dyna_processor_ms
-  dyna_processor_stereo expander_lr expander_mono expander_ms expander_stereo
-  gate_lr gate_mono gate_ms gate_stereo graph_equalizer_x16_lr
-  graph_equalizer_x16_mono graph_equalizer_x16_ms graph_equalizer_x16_stereo
-  graph_equalizer_x32_lr graph_equalizer_x32_mono graph_equalizer_x32_ms
-  graph_equalizer_x32_stereo impulse_responses_mono impulse_responses_stereo
-  impulse_reverb_mono impulse_reverb_stereo latency_meter limiter_mono
-  limiter_stereo loud_comp_mono loud_comp_stereo mb_compressor_lr
-  mb_compressor_mono mb_compressor_ms mb_compressor_stereo mb_expander_lr
-  mb_expander_mono mb_expander_ms mb_expander_stereo mb_gate_lr mb_gate_mono
-  mb_gate_ms mb_gate_stereo multisampler_x12 multisampler_x12_do
-  multisampler_x24 multisampler_x24_do multisampler_x48 multisampler_x48_do
-  oscillator_mono oscilloscope_x1 oscilloscope_x2 oscilloscope_x4
-  para_equalizer_x16_lr para_equalizer_x16_mono para_equalizer_x16_ms
-  para_equalizer_x16_stereo para_equalizer_x32_lr para_equalizer_x32_mono
-  para_equalizer_x32_ms para_equalizer_x32_stereo phase_detector profiler_mono
-  profiler_stereo room_builder_mono room_builder_stereo sampler_mono
-  sampler_stereo sc_compressor_lr sc_compressor_mono sc_compressor_ms
-  sc_compressor_stereo sc_dyna_processor_lr sc_dyna_processor_mono
-  sc_dyna_processor_ms sc_dyna_processor_stereo sc_expander_lr sc_expander_mono
-  sc_expander_ms sc_expander_stereo sc_gate_lr sc_gate_mono sc_gate_ms
-  sc_gate_stereo sc_limiter_mono sc_limiter_stereo sc_mb_compressor_lr
-  sc_mb_compressor_mono sc_mb_compressor_ms sc_mb_compressor_stereo
-  sc_mb_expander_lr sc_mb_expander_mono sc_mb_expander_ms sc_mb_expander_stereo
-  sc_mb_gate_lr sc_mb_gate_mono sc_mb_gate_ms sc_mb_gate_stereo slap_delay_mono
-  slap_delay_stereo spectrum_analyzer_x1 spectrum_analyzer_x12
-  spectrum_analyzer_x16 spectrum_analyzer_x2 spectrum_analyzer_x4
-  spectrum_analyzer_x8 surge_filter_mono surge_filter_stereo trigger_midi_mono
-  trigger_midi_stereo trigger_mono trigger_stereo)
-
-  (
-cd $pkgbase
-# NOTE: there are currently no unit tests :(
-.build/host/lsp-plugin-fw/lsp-plugins-test utest --nofork --debug --verbose
-  )
-
-  make FEATURES=lv2 DESTDIR="$PWD/test" install -C $pkgbase
-  for _plugin in "${_lv2_plugins[@]}"; do
-# NOTE: disable errors due to globally visbile Plugin and UI Symbols: 
https://github.com/sadko4u/lsp-plugins/issues/237
-lv2lint -Mpack -t "Plugin Symbols" -t "UI Symbols" -I 
"$PWD/test/usr/lib/lv2/$pkgname.lv2/" 

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

2022-04-11 Thread David Runge via arch-commits
Date: Monday, April 11, 2022 @ 21:33:22
  Author: dvzrv
Revision: 1185899

upgpkg: lsp-plugins 1.2.0-2: Rebuild to build plugins in release mode.

Do not use test settings when building the plugins: 
https://github.com/sadko4u/lsp-plugins/issues/237
Use (adapted) upstream patches for installing XDG data and icons correctly:
https://github.com/sadko4u/lsp-plugins/issues/229

Added:
  lsp-plugins/trunk/lsp-plugins-1.2.0-icon_install.patch
  lsp-plugins/trunk/lsp-plugins-1.2.0-xdg_data_install.patch
Modified:
  lsp-plugins/trunk/PKGBUILD

--+
 PKGBUILD |   38 +++--
 lsp-plugins-1.2.0-icon_install.patch |   23 +
 lsp-plugins-1.2.0-xdg_data_install.patch |   13 +
 3 files changed, 56 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 21:31:57 UTC (rev 1185898)
+++ PKGBUILD2022-04-11 21:33:22 UTC (rev 1185899)
@@ -3,7 +3,7 @@
 pkgbase=lsp-plugins
 pkgname=(lsp-plugins lsp-plugins-docs)
 pkgver=1.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Collection of free plugins compatible with LADSPA, LV2 and LinuxVST"
 arch=(x86_64)
 url="https://lsp-plug.in";
@@ -11,13 +11,26 @@
 makedepends=(cairo gcc-libs glibc hicolor-icon-theme libglvnd libx11 jack 
ladspa libsndfile lv2 php)
 checkdepends=(lv2lint)
 options=(debug)
-source=($pkgname-$pkgver.tar.gz::https://github.com/sadko4u/$pkgname/archive/$pkgver/$pkgver.tar.gz)
-source=(https://github.com/sadko4u/$pkgname/releases/download/$pkgver/$pkgname-src-$pkgver.tar.gz)
-sha512sums=('b4aa8ca6512bb01248d39393fb6ac76f4b97a60f36d2f7e18a5dce6600cc77d57c667c96f51940ce7b8ad09b72638e417c9e3802dc7e49f652979d8fe7e40957')
-b2sums=('ffa65105fa05ff8ae845333138c2ccedc5295a524ed45c6633912b342b112f05aecbc3dfa935dbfb7dc6d7efc106cf1b20ed86ddc649729461e7a32a200e473d')
+source=(
+  
https://github.com/sadko4u/$pkgname/releases/download/$pkgver/$pkgname-src-$pkgver.tar.gz
+  $pkgbase-1.2.0-xdg_data_install.patch
+  $pkgbase-1.2.0-icon_install.patch
+)
+sha512sums=('b4aa8ca6512bb01248d39393fb6ac76f4b97a60f36d2f7e18a5dce6600cc77d57c667c96f51940ce7b8ad09b72638e417c9e3802dc7e49f652979d8fe7e40957'
+
'ff2f848e117c21dc0cbc1a4c9d7df9de911e66f2cb555192bf567e5414735cd47f8ebf81396344831a665adef1e4616e78560e85b4960bcaa3a45811648d1938'
+
'7eab97335c7e1b80ccb0e6363686c1eb38e5a169c282ee4f090c594477a65f2147cb206e703e0ec3ed6eeeb591ba975a27d3ab8befcf503f9a42280d314c6c8e')
+b2sums=('ffa65105fa05ff8ae845333138c2ccedc5295a524ed45c6633912b342b112f05aecbc3dfa935dbfb7dc6d7efc106cf1b20ed86ddc649729461e7a32a200e473d'
+
'9cb89cc8881f1c274c4ea15174a258059060f0e12928744c264c53e318c04c972e5dcb05ce20a81fe69656b87e7bb39489dc5c8ef29b44630584f2cfeaa69fd5'
+
'722e07a0cce45bc49a7a276e470970ea7fd5764c5f049ec40273f9fff945af147e9fdcdec03a69860b0528e108d15e439489477904ed6024736a73fc74b3abab')
 
+prepare() {
+  # fix installation location of XDG data and icons: 
https://github.com/sadko4u/lsp-plugins/issues/229
+  patch -Np1 -d $pkgbase/modules/lsp-plugin-fw -i 
../../../$pkgbase-1.2.0-xdg_data_install.patch
+  patch -Np1 -d $pkgbase/modules/lsp-plugins-shared -i 
../../../$pkgbase-1.2.0-icon_install.patch
+}
+
 build() {
-  make config TEST=1 FEATURES='doc lv2 vst2 jack ladspa xdg' PREFIX=/usr -C 
$pkgbase
+  make config FEATURES='doc lv2 vst2 jack ladspa xdg' PREFIX=/usr -C $pkgbase
   make -C $pkgbase
 }
 
@@ -57,16 +70,9 @@
   spectrum_analyzer_x8 surge_filter_mono surge_filter_stereo trigger_midi_mono
   trigger_midi_stereo trigger_mono trigger_stereo)
 
-  (
-cd $pkgbase
-# NOTE: there are currently no unit tests :(
-.build/host/lsp-plugin-fw/lsp-plugins-test utest --nofork --debug --verbose
-  )
-
   make FEATURES=lv2 DESTDIR="$PWD/test" install -C $pkgbase
   for _plugin in "${_lv2_plugins[@]}"; do
-# NOTE: disable errors due to globally visbile Plugin and UI Symbols: 
https://github.com/sadko4u/lsp-plugins/issues/237
-lv2lint -Mpack -t "Plugin Symbols" -t "UI Symbols" -I 
"$PWD/test/usr/lib/lv2/$pkgname.lv2/" $_lv2_uri$_plugin
+lv2lint -Mpack -I "$PWD/test/usr/lib/lv2/$pkgname.lv2/" $_lv2_uri$_plugin
   done
 }
 
@@ -93,10 +99,6 @@
 
   make PREFIX=/usr DESTDIR="$pkgdir" install -C $pkgbase
 
-  # move XDG integration and icons to correct location: 
https://github.com/sadko4u/lsp-plugins/issues/235
-  mv -v "$pkgdir/usr/local/share/"* "$pkgdir/usr/share/"
-  rm -rfv "$pkgdir/usr/local"
-
   _pick docs "$pkgdir/usr/share/doc"
 }
 

Added: lsp-plugins-1.2.0-icon_install.patch
===
--- lsp-plugins-1.2.0-icon_install.patch(rev 0)
+++ lsp-plugins-1.2.0-icon_install.patch2022-04-11 21:33:22 UTC (rev 
1185899)
@@ -0,0 +1,23 @@
+diff --git a/res/main/xdg/Makefile b/res/main/xdg/Makefile
+index dbaa21c..59c160d 100644
+--- a/res/main/xdg/Makefile
 b/res/

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

2022-04-11 Thread Daniel M. Capella via arch-commits
Date: Monday, April 11, 2022 @ 21:31:57
  Author: polyzen
Revision: 1185898

archrelease: copy trunk to community-x86_64

Added:
  stylua/repos/community-x86_64/PKGBUILD
(from rev 1185897, stylua/trunk/PKGBUILD)
Deleted:
  stylua/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 21:31:38 UTC (rev 1185897)
+++ PKGBUILD2022-04-11 21:31:57 UTC (rev 1185898)
@@ -1,38 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-_name=StyLua
-pkgname=stylua
-pkgver=0.13.0
-pkgrel=1
-pkgdesc='Code formatter for Lua'
-arch=('x86_64')
-url=https://github.com/JohnnyMorganz/StyLua
-license=('MPL2')
-depends=('gcc-libs')
-makedepends=('rust')
-source=("$url/archive/v$pkgver/$_name-$pkgver.tar.gz")
-b2sums=('eb5168c089017ccfdc3113b95c1f783ceca41a927dc97c5f44a2ef7ac25eb5d37e1f91ca2ba135cc88f0bec4f4a43026368b5e96fa2193d092bbabe6fcae8473')
-
-prepare() {
-  cd $_name-$pkgver
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd $_name-$pkgver
-  cargo build --release --locked --offline --all-features
-}
-
-check() {
-  cd $_name-$pkgver
-  cargo test --locked --offline
-  cargo test --locked --offline --features luau
-  cargo test --locked --offline --features lua52
-}
-
-package() {
-  cd $_name-$pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
-}
-
-# vim:set ts=2 sw=2 et:

Copied: stylua/repos/community-x86_64/PKGBUILD (from rev 1185897, 
stylua/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 21:31:57 UTC (rev 1185898)
@@ -0,0 +1,38 @@
+# Maintainer: Daniel M. Capella 
+
+_name=StyLua
+pkgname=stylua
+pkgver=0.13.1
+pkgrel=1
+pkgdesc='Code formatter for Lua'
+arch=('x86_64')
+url=https://github.com/JohnnyMorganz/StyLua
+license=('MPL2')
+depends=('gcc-libs')
+makedepends=('rust')
+source=("$url/archive/v$pkgver/$_name-$pkgver.tar.gz")
+b2sums=('dc009099818c30f05a7e33c3ff3a68d215e78c1534c1a542bbb26a1f4ea2fd361382a67a5abe3c26ea7b32d39914535349aca76df8b2e6a169aa3824b69a1c27')
+
+prepare() {
+  cd $_name-$pkgver
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd $_name-$pkgver
+  cargo build --release --locked --offline --all-features
+}
+
+check() {
+  cd $_name-$pkgver
+  cargo test --locked --offline
+  cargo test --locked --offline --features luau
+  cargo test --locked --offline --features lua52
+}
+
+package() {
+  cd $_name-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-04-11 Thread Daniel M. Capella via arch-commits
Date: Monday, April 11, 2022 @ 21:31:38
  Author: polyzen
Revision: 1185897

upgpkg: stylua 0.13.1-1

Modified:
  stylua/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 21:27:18 UTC (rev 1185896)
+++ PKGBUILD2022-04-11 21:31:38 UTC (rev 1185897)
@@ -2,7 +2,7 @@
 
 _name=StyLua
 pkgname=stylua
-pkgver=0.13.0
+pkgver=0.13.1
 pkgrel=1
 pkgdesc='Code formatter for Lua'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('gcc-libs')
 makedepends=('rust')
 source=("$url/archive/v$pkgver/$_name-$pkgver.tar.gz")
-b2sums=('eb5168c089017ccfdc3113b95c1f783ceca41a927dc97c5f44a2ef7ac25eb5d37e1f91ca2ba135cc88f0bec4f4a43026368b5e96fa2193d092bbabe6fcae8473')
+b2sums=('dc009099818c30f05a7e33c3ff3a68d215e78c1534c1a542bbb26a1f4ea2fd361382a67a5abe3c26ea7b32d39914535349aca76df8b2e6a169aa3824b69a1c27')
 
 prepare() {
   cd $_name-$pkgver



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

2022-04-11 Thread George Rawlinson via arch-commits
Date: Monday, April 11, 2022 @ 21:27:18
  Author: grawlinson
Revision: 1185896

archrelease: copy trunk to community-x86_64

Added:
  soft-serve/repos/community-x86_64/PKGBUILD
(from rev 1185895, soft-serve/trunk/PKGBUILD)
  soft-serve/repos/community-x86_64/soft-serve.conf
(from rev 1185895, soft-serve/trunk/soft-serve.conf)
  soft-serve/repos/community-x86_64/systemd.service
(from rev 1185895, soft-serve/trunk/systemd.service)
  soft-serve/repos/community-x86_64/sysusers.conf
(from rev 1185895, soft-serve/trunk/sysusers.conf)
  soft-serve/repos/community-x86_64/tmpfiles.conf
(from rev 1185895, soft-serve/trunk/tmpfiles.conf)
Deleted:
  soft-serve/repos/community-x86_64/PKGBUILD
  soft-serve/repos/community-x86_64/soft-serve.conf
  soft-serve/repos/community-x86_64/systemd.service
  soft-serve/repos/community-x86_64/sysusers.conf
  soft-serve/repos/community-x86_64/tmpfiles.conf

-+
 PKGBUILD|  188 +++---
 soft-serve.conf |   10 +-
 systemd.service |   94 +--
 sysusers.conf   |2 
 tmpfiles.conf   |2 
 5 files changed, 148 insertions(+), 148 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 21:26:10 UTC (rev 1185895)
+++ PKGBUILD2022-04-11 21:27:18 UTC (rev 1185896)
@@ -1,94 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Christian Muehlhaeuser 
-
-pkgname=soft-serve
-pkgver=0.2.3
-pkgrel=1
-pkgdesc="A self-hosted Git server for the command line"
-arch=('x86_64')
-url="https://github.com/charmbracelet/soft-serve";
-license=('MIT')
-depends=('glibc')
-makedepends=('git' 'go')
-backup=('etc/soft-serve.conf')
-options=('!lto')
-_commit='192c4d92f8b8c9963fe62819dce2f88c21db261b' # v0.2.3
-source=(
-  "git+$url.git#commit=$_commit"
-  'soft-serve.conf'
-  'systemd.service'
-  'sysusers.conf'
-  'tmpfiles.conf'
-)
-sha512sums=('SKIP'
-
'aabe56fe8a242724e25e5c30412802fddcd377b54093c00a2581a87031d8b04b797561d612412caf56aa413f29495ff548af7cac83ff2c8bdbab946b208fab58'
-
'1748823790423d23b0d4abaee3078d4908c197142145f4d703c13ce66c83a982ef38e351d4bca513734e74e2b76191ed007c64d3b658b1208b156ba81b0a893c'
-
'81fd8d61cdadb194a224eb3d3f293968fd9d78e0488399eff933f2b376eb927e29d8d083c4d76b92eb7ef313a513023866dc80f651ff5d1f5d2a1573fd4f02e9'
-
'ece4b43029ac22bbac3b2afebab134df5781d92deed5ef24a96d720da3a0f1a033f0cf3a4a5f6ab40d379f5fb4d10730e8873b1ef94943876cdca8f209b89a59')
-b2sums=('SKIP'
-
'193864256a1330347f1f9c015cad82a38fa2b3fcc43bfd37c6926d0444f8c5a25463c357a13c7842db54cc8ebaf503845511a9b05f5e4f7526511b6caddf323c'
-
'85ed30ee809aaffe05d6784adc6478d564be51a6115c4ecbbf176ca9022008bce34269af75e151e1b8cf3ebd67f879749d4f3e2eee992ac43026736fdc0ccec9'
-
'7e8593e368507d96bdfd7cf8a4b73bb02f473deba3d99017101487fb0843161e14e929f5641f66c1bec015aa4f4505708d26453a7d0bcc1f23a4daa47e009393'
-
'9866f155a948357582b464e4a5ea79464ed06c4067add77c444378f4bfc7aab57e7afc455e23a51725e1c0d2ceecda087d811dae3f49178e07ae60afc7361b8b')
-
-pkgver() {
-  cd "$pkgname"
-
-  git describe --tags | sed 's/^v//'
-}
-
-prepare() {
-  cd "$pkgname"
-
-  # create directory for build output
-  mkdir build
-
-  # download dependencies
-  go mod download
-}
-
-build() {
-  cd "$pkgname"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-
-  go build -v \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-linkmode external -extldflags $LDFLAGS \
--X main.Version=$pkgver \
--X main.CommitSHA=$_commit" \
--o build \
-./cmd/...
-}
-
-check() {
-  cd "$pkgname"
-
-  go test -v ./...
-}
-
-package() {
-  # systemd integration
-  install -vDm644 systemd.service 
"$pkgdir/usr/lib/systemd/system/$pkgname.service"
-  install -vDm644 sysusers.conf "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
-  install -vDm644 tmpfiles.conf "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
-  install -vDm644 soft-serve.conf -t "$pkgdir/etc"
-
-  cd "$pkgname"
-
-  # binary
-  install -vDm755 -t "$pkgdir/usr/bin" build/soft
-
-  # man page
-  install -vDm644 -t "$pkgdir/usr/share/man/man1" cmd/soft/soft.1
-
-  # license
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: soft-serve/repos/community-x86_64/PKGBUILD (from rev 1185895, 
soft-serve/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 21:27:18 UTC (rev 1185896)
@@ -0,0 +1,94 @@
+# Maintainer: George Rawlinson 
+# Contributor: Christian Muehlhaeuser 
+
+pkgname=soft-serve
+pkgver=0.3.0
+pkgrel=1
+pkgdesc="A self-hosted Git server for the command line"
+arch=('x86_64')
+url="https://github.com/charmbracelet/soft-serve";
+license=('MIT')
+depends=('glibc')
+makedepends=('git' 'g

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

2022-04-11 Thread George Rawlinson via arch-commits
Date: Monday, April 11, 2022 @ 21:26:10
  Author: grawlinson
Revision: 1185895

upgpkg: soft-serve 0.3.0-1

New upstream release.

Modified:
  soft-serve/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 21:22:35 UTC (rev 1185894)
+++ PKGBUILD2022-04-11 21:26:10 UTC (rev 1185895)
@@ -2,7 +2,7 @@
 # Contributor: Christian Muehlhaeuser 
 
 pkgname=soft-serve
-pkgver=0.2.3
+pkgver=0.3.0
 pkgrel=1
 pkgdesc="A self-hosted Git server for the command line"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('git' 'go')
 backup=('etc/soft-serve.conf')
 options=('!lto')
-_commit='192c4d92f8b8c9963fe62819dce2f88c21db261b' # v0.2.3
+_commit='d3669af2fb497c638db3885af61afba048156a69'
 source=(
   "git+$url.git#commit=$_commit"
   'soft-serve.conf'



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

2022-04-11 Thread Frederik Schwan via arch-commits
Date: Monday, April 11, 2022 @ 21:22:35
  Author: freswa
Revision: 1185894

archrelease: copy trunk to community-x86_64

Added:
  wasmtime/repos/community-x86_64/PKGBUILD
(from rev 1185893, wasmtime/trunk/PKGBUILD)
Deleted:
  wasmtime/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 21:22:33 UTC (rev 1185893)
+++ PKGBUILD2022-04-11 21:22:35 UTC (rev 1185894)
@@ -1,51 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Dario Ostuni 
-
-pkgname=wasmtime
-pkgver=0.35.2
-pkgrel=1
-pkgdesc='Standalone JIT-style runtime for WebAssembly, using Cranelift'
-arch=('x86_64')
-url='https://github.com/bytecodealliance/wasmtime'
-license=('Apache')
-depends=('gcc-libs')
-makedepends=('cargo' 'git')
-options=('!lto')
-source=("git+https://github.com/bytecodealliance/wasmtime.git#commit=v${pkgver}";
-git+https://github.com/WebAssembly/testsuite.git
-git+https://github.com/WebAssembly/wasm-c-api.git
-git+https://github.com/WebAssembly/WASI.git
-git+https://github.com/WebAssembly/wasi-nn.git
-git+https://github.com/WebAssembly/wasi-crypto.git)
-b2sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  cd ${pkgname}
-  git submodule init
-  git config submodule.spec_testsuite.src "${srcdir}"/testsuite
-  git config submodule.crates/c-api/examples/wasm-c-api.src 
"${srcdir}"/wasm-c-api
-  git config submodule.WASI.src "${srcdir}"/WASI
-  git config submodule.crates/wasi-nn/spec.src "${srcdir}"/wasi-nn
-  git config submodule.crates/wasi-crypto/spec.src "${srcdir}"/wasi-crypto
-  git submodule update
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd ${pkgname}
-  export RUSTUP_TOOLCHAIN=stable
-  export CARGO_TARGET_DIR=target
-  cargo build --locked --release
-  cargo build --locked --release --manifest-path crates/c-api/Cargo.toml
-}
-
-package() {
-  cd ${pkgname}
-  install -Dm755 target/release/${pkgname} "${pkgdir}"/usr/bin/$pkgname
-  install -Dm755 target/release/lib${pkgname}.so 
"${pkgdir}"/usr/lib/lib${pkgname}.so
-}

Copied: wasmtime/repos/community-x86_64/PKGBUILD (from rev 1185893, 
wasmtime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 21:22:35 UTC (rev 1185894)
@@ -0,0 +1,51 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Dario Ostuni 
+
+pkgname=wasmtime
+pkgver=0.35.3
+pkgrel=1
+pkgdesc='Standalone JIT-style runtime for WebAssembly, using Cranelift'
+arch=('x86_64')
+url='https://github.com/bytecodealliance/wasmtime'
+license=('Apache')
+depends=('gcc-libs')
+makedepends=('cargo' 'git')
+options=('!lto')
+source=("git+https://github.com/bytecodealliance/wasmtime.git#commit=v${pkgver}";
+git+https://github.com/WebAssembly/testsuite.git
+git+https://github.com/WebAssembly/wasm-c-api.git
+git+https://github.com/WebAssembly/WASI.git
+git+https://github.com/WebAssembly/wasi-nn.git
+git+https://github.com/WebAssembly/wasi-crypto.git)
+b2sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd ${pkgname}
+  git submodule init
+  git config submodule.spec_testsuite.src "${srcdir}"/testsuite
+  git config submodule.crates/c-api/examples/wasm-c-api.src 
"${srcdir}"/wasm-c-api
+  git config submodule.WASI.src "${srcdir}"/WASI
+  git config submodule.crates/wasi-nn/spec.src "${srcdir}"/wasi-nn
+  git config submodule.crates/wasi-crypto/spec.src "${srcdir}"/wasi-crypto
+  git submodule update
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd ${pkgname}
+  export RUSTUP_TOOLCHAIN=stable
+  export CARGO_TARGET_DIR=target
+  cargo build --locked --release
+  cargo build --locked --release --manifest-path crates/c-api/Cargo.toml
+}
+
+package() {
+  cd ${pkgname}
+  install -Dm755 target/release/${pkgname} "${pkgdir}"/usr/bin/$pkgname
+  install -Dm755 target/release/lib${pkgname}.so 
"${pkgdir}"/usr/lib/lib${pkgname}.so
+}



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

2022-04-11 Thread Frederik Schwan via arch-commits
Date: Monday, April 11, 2022 @ 21:22:33
  Author: freswa
Revision: 1185893

upgpkg: wasmtime 0.35.3-1

Modified:
  wasmtime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 20:40:33 UTC (rev 1185892)
+++ PKGBUILD2022-04-11 21:22:33 UTC (rev 1185893)
@@ -2,7 +2,7 @@
 # Contributor: Dario Ostuni 
 
 pkgname=wasmtime
-pkgver=0.35.2
+pkgver=0.35.3
 pkgrel=1
 pkgdesc='Standalone JIT-style runtime for WebAssembly, using Cranelift'
 arch=('x86_64')



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

2022-04-11 Thread Evangelos Foutras via arch-commits
Date: Monday, April 11, 2022 @ 20:40:33
  Author: foutrelis
Revision: 1185892

Prepare Loki 2.5.0 release; update Go 1.18 patch

Added:
  loki/trunk/bump-inet.af-netaddr-for-Go-1.18-compatibility.patch
Modified:
  loki/trunk/PKGBUILD
Deleted:
  loki/trunk/go1.18.patch

--+
 PKGBUILD |   13 +--
 bump-inet.af-netaddr-for-Go-1.18-compatibility.patch |   68 +
 go1.18.patch |   53 -
 3 files changed, 75 insertions(+), 59 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 18:49:14 UTC (rev 1185891)
+++ PKGBUILD2022-04-11 20:40:33 UTC (rev 1185892)
@@ -2,8 +2,8 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=('loki' 'loki-canary' 'promtail' 'logcli')
-pkgver=2.4.2
-pkgrel=2
+pkgver=2.5.0
+pkgrel=1
 pkgdesc='like Prometheus, but for logs'
 url='https://github.com/grafana/loki'
 arch=('x86_64')
@@ -14,8 +14,8 @@
 
source=($pkgname-$pkgver.tar.gz::https://github.com/grafana/loki/archive/v$pkgver.tar.gz
 promtail.sysusers promtail.service promtail.tmpfiles
 loki.sysusers loki.service loki.tmpfiles
-go1.18.patch)
-sha512sums=('56e39c17540be1d167ac63cc136fddc54d8d5a0f6c244e6c1013f0452eb887878d99351b3986f3b4495b650c2ca08ec21432bab21400ac293c8844e3f17df79f'
+bump-inet.af-netaddr-for-Go-1.18-compatibility.patch)
+sha512sums=('1a37cc3f5685d822e4ddc9d733505905ee4ef8f664e78954a69d34b5cab90b2dd82133bd309da2d98e7235ead1d952815f76dbd6ec655ebd26027506238fa7a3'
 
'2b6c44b18ea3c9f955a7450222180d0b20b5fc551d0b7e5d0d8949e40adc847c4166829146260f87a75732cc5473eab0347dd56fc2125517698bac0652738c74'
 
'18011b135c7817f2542f7a93b607ee46e5d61625921c7dc6e46e1b29e31c67147653b215d8677fde21cdce3b577c479cebd2d85f47e4b8cbe4c30f8be5f910cd'
 
'598042c40673a7914c5a1eeccfb78f832379a61f4360212c5d86f667343cf2fc78e98d9025f9717ea64f3e16e0a28f08cd7709706d811656722019f6167dd788'
@@ -22,12 +22,13 @@
 
'f00b3cb64b71d3ca5a422a2bdff1f81a3e2707c4f73bcb27e24338eabff039b96125c847aaae43c9b22ccc47f89585118c1d0e0b29c4eb7b6f9260c68f8a8324'
 
'03904b67617e4064a1eb39b6edfaec5d55bc85f142e867d115d3d0e12494a052fddf13bb6f5c541aaca29a18582df2332bb0cc6b8f29928cf6a0d5d2710ead74'
 
'de40d1e6752edbf8c21317ce1ee10f98dfc869e569c07092c613f7144e261e9438683a145a2e0e37e2a9fc758c5c2f02e1d0ac1c60347e98b147e4a550ec6040'
-
'e84e3f610b565deed1de02a3707ba8dbeab1309f65bf43f9834061a724c23d0e160c3bc5046c970d87e3df1460b1397fc2617a2fd37122235a0756d4daef031c')
+
'c71ac26f34ab3f4fe17335b827129cbace961e29ba0642b165af5697d30aaf6b9d8c02530e59391c410189afafbb959a6a82131415d4566495390e46fd3ba8f6')
 
 prepare() {
   cd "$pkgname-$pkgver"
 
-  patch -Np1 -i ../go1.18.patch
+  # https://github.com/grafana/loki/pull/5872
+  patch -Np1 -i ../bump-inet.af-netaddr-for-Go-1.18-compatibility.patch
   go mod vendor
 
   go mod download

Added: bump-inet.af-netaddr-for-Go-1.18-compatibility.patch
===
--- bump-inet.af-netaddr-for-Go-1.18-compatibility.patch
(rev 0)
+++ bump-inet.af-netaddr-for-Go-1.18-compatibility.patch2022-04-11 
20:40:33 UTC (rev 1185892)
@@ -0,0 +1,68 @@
+From 6961a2dbb2f6c3229073f7c288f3fdc87b010175 Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Mon, 11 Apr 2022 23:24:12 +0300
+Subject: [PATCH] Bump inet.af/netaddr for Go 1.18 compatibility
+
+Fixes panic caused by outdated go4.org/unsafe/assume-no-moving-gc. [1]
+
+[1] assume-no-moving-gc commit 538ce61f45ea5c2c48d7133d44b3e52c3db5c31e
+---
+ go.mod |  6 +++---
+ go.sum | 13 ++---
+ 2 files changed, 9 insertions(+), 10 deletions(-)
+
+diff --git a/go.mod b/go.mod
+index 6844ad480..8c1366006 100644
+--- a/go.mod
 b/go.mod
+@@ -106,7 +106,7 @@ require (
+   gopkg.in/fsnotify.v1 v1.4.7
+   gopkg.in/yaml.v2 v2.4.0
+   gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
+-  inet.af/netaddr v0.0.0-20210707202901-70468d781e6c
++  inet.af/netaddr v0.0.0-20211027220019-c74959edd3b6
+   k8s.io/klog v1.0.0
+ )
+ 
+@@ -256,8 +256,8 @@ require (
+   go.opentelemetry.io/otel/trace v1.4.1 // indirect
+   go.uber.org/multierr v1.7.0 // indirect
+   go.uber.org/zap v1.19.1 // indirect
+-  go4.org/intern v0.0.0-20210108033219-3eb7198706b2 // indirect
+-  go4.org/unsafe/assume-no-moving-gc v0.0.0-20201222180813-1025295fd063 
// indirect
++  go4.org/intern v0.0.0-20211027215823-ae77deb06f29 // indirect
++  go4.org/unsafe/assume-no-moving-gc v0.0.0-20211027215541-db492cf91b37 
// indirect
+   golang.org/x/mod v0.5.1 // indirect
+   golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
+   golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
+diff --git a/go.sum b/go.sum
+index 8b

[arch-commits] Commit in archboot-arm/repos/extra-any (4 files)

2022-04-11 Thread Tobias Powalowski via arch-commits
Date: Monday, April 11, 2022 @ 19:30:18
  Author: tpowa
Revision: 442305

archrelease: copy trunk to extra-any

Added:
  archboot-arm/repos/extra-any/PKGBUILD
(from rev 442304, archboot-arm/trunk/PKGBUILD)
  archboot-arm/repos/extra-any/archboot.install
(from rev 442304, archboot-arm/trunk/archboot.install)
Deleted:
  archboot-arm/repos/extra-any/PKGBUILD
  archboot-arm/repos/extra-any/archboot.install

--+
 PKGBUILD |  108 ++---
 archboot.install |   38 +-
 2 files changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 19:30:12 UTC (rev 442304)
+++ PKGBUILD2022-04-11 19:30:18 UTC (rev 442305)
@@ -1,54 +0,0 @@
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot-arm
-pkgver=2022.04
-pkgrel=20
-pkgdesc="Advanced, modular arch boot/install image creation utility with 
aarch64 depends"
-arch=(any)
-license=('GPL')
-url="https://wiki.archlinux.org/title/Archboot";
-depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
- 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'sed' 'snarf'
- 'tar' 'util-linux' 'bind' 'which' 'kbd' 'wireless_tools' 'xfsprogs' 
'hdparm' 'inetutils'
- 'openssh' 'hwdetect' 'shadow' 'bridge-utils' 'dosfstools' 'glibc' 
'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
- 'pciutils' 'usbutils' 'vpnc' 'openvpn' 'b43-fwcutter' 
'wpa_supplicant' 'rsync' 'gzip' 'libarchive'
-'device-mapper' 'screen' 'elfutils' 'pam' 'cracklib' 'nfs-utils' 
'nfsidmap' 'readline' 'acl' 'attr' 'pcre' 'cpio'
-'fuse' 'libusb' 'vim' 'vi' 'lzo' 'lzop' 'libsasl' 'libldap' 'gpm' 
'libevent' 'gcc-libs' 'sdparm' 'licenses' 'pptpclient'
-'dhcpcd' 'openssl' 'dmraid' 'linux-atm' 'netctl' 'parted' 'tzdata' 
'ntp' 'libgcrypt' 'iw' 
-'libnl' 'iproute2' 'wireless-regdb' 'dhclient' 'mtools' 'fsarchiver' 
'xz' 'libtirpc' 'rpcbind' 'testdisk'
-'wipe' 'ddrescue' 'ifplugd' 'libgssglue' 'mkinitcpio-nfs-utils' 
'gptfdisk' 'nilfs-utils' 'btrfs-progs'
-'iana-etc' 'keyutils' 'libisoburn' 'file' 'curl'  'smartmontools' 
'dnsmasq' 'cifs-utils'
-'openconnect' 'libxml2' 'libproxy' 'tcpdump' 'nmap' 'lua' 'gnutls' 
'nettle' 'libtasn1' 'expat'
-'glib2' 'freetype2' 'libssh2' 'libedit' 'talloc' 'libjpeg-turbo' 
'dmidecode' 'gnupg' 'libksba' 'libassuan' 'pinentry'
-'gpgme' 'ldns' 'dnssec-anchors' 'hwdata' 'systemd' 'haveged' 'pambase' 
'traceroute' 'grub' 
-'systemd-sysvcompat' 'arch-install-scripts' 'zsh' 'gdbm' 
'grml-zsh-config' 'cpupower' 'wvdial' 'xl2tpd' 
-'usb_modeswitch' 'efibootmgr' 'f2fs-tools' 'efitools' 'efivar' 
'ethtool' 'exfatprogs' 
-'fuse3' 'flex' 'amd-ucode' 'cdrtools' 'nvme-cli' 'fatresize' 'iwd' 
'elinks' 'weechat' 'lshw' 'tmux'
-'sbsigntools' 'openresolv' 'mokutil' 'archboot-bootloader' 
'archinstall' 'sbctl')
-makedepends=('git')
-optdepends=('linux-firmware: for firmware inclusion on image file'
-'linux-firmware-marvell: for marvell firmware support'
-'sudo: for running the archboot build server')
-source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel}?signed";)
-backup=('etc/archboot/defaults'
-   'etc/archboot/x86_64.conf'
-'etc/archboot/aarch64.conf'
-'etc/archboot/x86_64-latest.conf'
-'etc/archboot/aarch64-latest.conf'
-   'etc/archboot/x86_64-local.conf'
-'etc/archboot/aarch64-local.conf'
-'etc/archboot/presets/x86_64'
-'etc/archboot/presets/aarch64'
-'etc/archboot/presets/x86_64-latest'
-'etc/archboot/presets/aarch64-latest'
-   'etc/archboot/presets/x86_64-local'
-'etc/archboot/presets/aarch64-local')
-install=archboot.install
-sha256sums=('SKIP')
-validgpgkeys=('5B7E3FB71B7F10329A1C03AB771DF6627EDF681F' # Tobias Powalowski 

- )
-package()
-{
-  cd "$srcdir/archboot"
-  mv etc/ usr/ "$pkgdir/"
-}

Copied: archboot-arm/repos/extra-any/PKGBUILD (from rev 442304, 
archboot-arm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 19:30:18 UTC (rev 442305)
@@ -0,0 +1,54 @@
+# Maintainer : Tobias Powalowski 
+
+pkgname=archboot-arm
+pkgver=2022.04
+pkgrel=21
+pkgdesc="Advanced, modular arch boot/install image creation utility with 
aarch64 depends"
+arch=(any)
+license=('GPL')
+url="https://wiki.archlinux.org/title/Archboot";
+depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
+ 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'sed' 'snarf'
+ 'tar' 'util-linux' 'bind' 'which'

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

2022-04-11 Thread Tobias Powalowski via arch-commits
Date: Monday, April 11, 2022 @ 19:30:12
  Author: tpowa
Revision: 442304

upgpkg: archboot-arm 2022.04-21: bump to latest version

Modified:
  archboot-arm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 19:29:19 UTC (rev 442303)
+++ PKGBUILD2022-04-11 19:30:12 UTC (rev 442304)
@@ -2,7 +2,7 @@
 
 pkgname=archboot-arm
 pkgver=2022.04
-pkgrel=20
+pkgrel=21
 pkgdesc="Advanced, modular arch boot/install image creation utility with 
aarch64 depends"
 arch=(any)
 license=('GPL')



[arch-commits] Commit in archboot/repos/extra-any (4 files)

2022-04-11 Thread Tobias Powalowski via arch-commits
Date: Monday, April 11, 2022 @ 19:29:19
  Author: tpowa
Revision: 442303

archrelease: copy trunk to extra-any

Added:
  archboot/repos/extra-any/PKGBUILD
(from rev 442302, archboot/trunk/PKGBUILD)
  archboot/repos/extra-any/archboot.install
(from rev 442302, archboot/trunk/archboot.install)
Deleted:
  archboot/repos/extra-any/PKGBUILD
  archboot/repos/extra-any/archboot.install

--+
 PKGBUILD |  110 ++---
 archboot.install |   38 +-
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 19:29:13 UTC (rev 442302)
+++ PKGBUILD2022-04-11 19:29:19 UTC (rev 442303)
@@ -1,55 +0,0 @@
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot
-pkgver=2022.04
-pkgrel=20
-pkgdesc="Advanced, modular arch boot/install image creation utility"
-arch=(any)
-license=('GPL')
-url="https://wiki.archlinux.org/title/Archboot";
-depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
- 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'sed' 'snarf'
- 'tar' 'util-linux' 'bind' 'which' 'kbd' 'wireless_tools' 'xfsprogs' 
'hdparm' 'inetutils'
- 'openssh' 'hwdetect' 'shadow' 'bridge-utils'  'dosfstools' 'glibc' 
'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
- 'pciutils' 'usbutils' 'vpnc' 'openvpn' 'b43-fwcutter' 
'wpa_supplicant' 'rsync' 'gzip' 'libarchive'
-'device-mapper' 'screen' 'elfutils' 'pam' 'cracklib' 'nfs-utils' 
'nfsidmap' 'readline' 'acl' 'attr' 'pcre' 'cpio'
-'fuse' 'libusb' 'vi' 'vim' 'lzo' 'lzop' 'libsasl' 'libldap' 'gpm' 
'libevent' 'gcc-libs' 'sdparm' 'licenses' 'pptpclient' 'ipw2100-fw'
-'ipw2200-fw' 'dhcpcd' 'openssl' 'dmraid' 'linux-atm' 'netctl' 'parted' 
'tzdata' 'ntp' 'libgcrypt' 'iw' 
-'libnl' 'iproute2' 'wireless-regdb' 'dhclient' 'mtools' 'fsarchiver' 
'xz' 'libtirpc' 'rpcbind' 'testdisk'
-'wipe' 'ddrescue' 'ifplugd' 'libgssglue' 'mkinitcpio-nfs-utils' 
'gptfdisk' 'nilfs-utils' 'btrfs-progs'
-'iana-etc' 'keyutils' 'libisoburn' 'file' 'curl'  'smartmontools' 
'dnsmasq' 'cifs-utils'
-'openconnect' 'libxml2' 'libproxy' 'tcpdump' 'nmap' 'lua' 'gnutls' 
'nettle' 'libtasn1' 'expat'
-'glib2' 'freetype2' 'libssh2' 'libedit' 'talloc' 'libjpeg-turbo' 
'dmidecode' 'gnupg' 'libksba' 'libassuan' 'pinentry'
-'gpgme' 'ldns' 'dnssec-anchors' 'hwdata' 'systemd' 'archlinux-keyring' 
'haveged' 'pambase' 'chntpw' 'traceroute' 'grub' 
-'systemd-sysvcompat' 'intel-ucode' 'arch-install-scripts' 'zsh' 'gdbm' 
'grml-zsh-config' 'cpupower' 'wvdial' 'xl2tpd' 
-'usb_modeswitch' 'refind' 'efibootmgr' 'f2fs-tools' 'efitools' 
'efivar' 'ethtool' 'exfatprogs' 'broadcom-wl'
-'fuse3' 'flex' 'amd-ucode' 'edk2-shell' 'cdrtools' 'nvme-cli' 
'fatresize' 'iwd' 'elinks' 'weechat' 'lshw' 'tmux'
-'sbsigntools' 'openresolv' 'mokutil' 'archboot-bootloader' 
'archinstall' 'sbctl')
-makedepends=('git')
-optdepends=('linux-firmware: for firmware inclusion on image file'
-'linux-firmware-marvell: for marvell firmware support'
-'archboot-qemu-aarch64: for aarch64 image building on x86_64'
-'sudo: for running the archboot build server')
-source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel}?signed";)
-backup=('etc/archboot/defaults'
-   'etc/archboot/x86_64.conf'
-'etc/archboot/aarch64.conf'
-'etc/archboot/x86_64-latest.conf'
-'etc/archboot/aarch64-latest.conf'
-'etc/archboot/x86_64-local.conf'
-   'etc/archboot/aarch64-local.conf'
-   'etc/archboot/presets/x86_64'
-'etc/archboot/presets/aarch64'
-'etc/archboot/presets/x86_64-latest'
-'etc/archboot/presets/aarch64-latest'
-   'etc/archboot/presets/x86_64-local'
-   'etc/archboot/presets/aarch64-local')
-install=archboot.install
-sha256sums=('SKIP')
-validgpgkeys=('5B7E3FB71B7F10329A1C03AB771DF6627EDF681F' # Tobias Powalowski 

- )
-package()
-{
-  cd "$srcdir/archboot"
-  mv etc/ usr/ "$pkgdir/"
-}

Copied: archboot/repos/extra-any/PKGBUILD (from rev 442302, 
archboot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 19:29:19 UTC (rev 442303)
@@ -0,0 +1,55 @@
+# Maintainer : Tobias Powalowski 
+
+pkgname=archboot
+pkgver=2022.04
+pkgrel=21
+pkgdesc="Advanced, modular arch boot/install image creation utility"
+arch=(any)
+license=('GPL')
+url="https://wiki.archlinux.org/title/Archboot";
+depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
+ 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools

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

2022-04-11 Thread Tobias Powalowski via arch-commits
Date: Monday, April 11, 2022 @ 19:29:13
  Author: tpowa
Revision: 442302

upgpkg: archboot 2022.04-21: bump to latest version

Modified:
  archboot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 18:37:30 UTC (rev 442301)
+++ PKGBUILD2022-04-11 19:29:13 UTC (rev 442302)
@@ -2,7 +2,7 @@
 
 pkgname=archboot
 pkgver=2022.04
-pkgrel=20
+pkgrel=21
 pkgdesc="Advanced, modular arch boot/install image creation utility"
 arch=(any)
 license=('GPL')



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

2022-04-11 Thread Bruno Pagani via arch-commits
Date: Monday, April 11, 2022 @ 18:49:14
  Author: archange
Revision: 1185891

archrelease: copy trunk to community-any

Added:
  img2pdf/repos/community-any/PKGBUILD
(from rev 1185890, img2pdf/trunk/PKGBUILD)
Deleted:
  img2pdf/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 18:48:44 UTC (rev 1185890)
+++ PKGBUILD2022-04-11 18:49:14 UTC (rev 1185891)
@@ -1,38 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=img2pdf
-pkgver=0.4.3
-pkgrel=2
-pkgdesc="Losslessly convert raster images to PDF"
-arch=(any)
-url="https://gitlab.mister-muffin.de/josch/img2pdf";
-license=(LGPL3)
-depends=(python-pillow python-pikepdf python-setuptools)
-checkdepends=(python-pytest python-numpy python-scipy python-lxml
-  colord ghostscript imagemagick mupdf-tools openjpeg2 poppler 
perl-image-exiftool netpbm)
-source=(https://files.pythonhosted.org/packages/source/i/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('8e51c5043efa95d751481b516071a006f87c2a4059961a9ac43ec238915de09f')
-
-build() {
-cd ${pkgname}-${pkgver}
-python setup.py build
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-# Different output on Arch?
-sed -e 's|Joint Photographic Experts Group JFIF format|JPEG|g' \
--e 's|JPEG-2000 File Format Syntax|JP2|g' \
--e 's|Portable Network Graphics|PNG|g' \
--e 's|Tagged Image File Format|TIFF|g' \
--e 's|CompuServe graphics interchange format|GIF|g' \
--i src/img2pdf_test.py
-sed 's|usr/share/color/icc/sRGB.icc|usr/share/color/icc/colord/sRGB.icc|g' 
-i src/img2pdf_test.py
-# Failures with depth
-python -m pytest || echo "Tests failed"
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-python setup.py install --skip-build --prefix=/usr --root="${pkgdir}" 
--optimize=1
-}

Copied: img2pdf/repos/community-any/PKGBUILD (from rev 1185890, 
img2pdf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 18:49:14 UTC (rev 1185891)
@@ -0,0 +1,38 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=img2pdf
+pkgver=0.4.4
+pkgrel=1
+pkgdesc="Losslessly convert raster images to PDF"
+arch=(any)
+url="https://gitlab.mister-muffin.de/josch/img2pdf";
+license=(LGPL3)
+depends=(python-pillow python-pikepdf python-setuptools)
+checkdepends=(python-pytest python-numpy python-scipy python-lxml
+  colord ghostscript imagemagick mupdf-tools openjpeg2 poppler 
perl-image-exiftool netpbm)
+source=(https://files.pythonhosted.org/packages/source/i/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('8ec898a9646523fd3862b154f3f47cd52609c24cc3e2dc1fb5f0168f0cbe793c')
+
+build() {
+cd ${pkgname}-${pkgver}
+python setup.py build
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+# Different output on Arch?
+sed -e 's|Joint Photographic Experts Group JFIF format|JPEG|g' \
+-e 's|JPEG-2000 File Format Syntax|JP2|g' \
+-e 's|Portable Network Graphics|PNG|g' \
+-e 's|Tagged Image File Format|TIFF|g' \
+-e 's|CompuServe graphics interchange format|GIF|g' \
+-i src/img2pdf_test.py
+sed 's|usr/share/color/icc/sRGB.icc|usr/share/color/icc/colord/sRGB.icc|g' 
-i src/img2pdf_test.py
+# Failures with depth
+pytest -vv --color=yes || echo "Tests failed"
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+python setup.py install --skip-build --prefix=/usr --root="${pkgdir}" 
--optimize=1
+}



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

2022-04-11 Thread Bruno Pagani via arch-commits
Date: Monday, April 11, 2022 @ 18:48:44
  Author: archange
Revision: 1185890

upgpkg: img2pdf 0.4.4-1

Modified:
  img2pdf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 18:32:07 UTC (rev 1185889)
+++ PKGBUILD2022-04-11 18:48:44 UTC (rev 1185890)
@@ -1,8 +1,8 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=img2pdf
-pkgver=0.4.3
-pkgrel=2
+pkgver=0.4.4
+pkgrel=1
 pkgdesc="Losslessly convert raster images to PDF"
 arch=(any)
 url="https://gitlab.mister-muffin.de/josch/img2pdf";
@@ -11,7 +11,7 @@
 checkdepends=(python-pytest python-numpy python-scipy python-lxml
   colord ghostscript imagemagick mupdf-tools openjpeg2 poppler 
perl-image-exiftool netpbm)
 
source=(https://files.pythonhosted.org/packages/source/i/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('8e51c5043efa95d751481b516071a006f87c2a4059961a9ac43ec238915de09f')
+sha256sums=('8ec898a9646523fd3862b154f3f47cd52609c24cc3e2dc1fb5f0168f0cbe793c')
 
 build() {
 cd ${pkgname}-${pkgver}
@@ -29,7 +29,7 @@
 -i src/img2pdf_test.py
 sed 's|usr/share/color/icc/sRGB.icc|usr/share/color/icc/colord/sRGB.icc|g' 
-i src/img2pdf_test.py
 # Failures with depth
-python -m pytest || echo "Tests failed"
+pytest -vv --color=yes || echo "Tests failed"
 }
 
 package() {



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

2022-04-11 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 11, 2022 @ 18:37:30
  Author: svenstaro
Revision: 442301

archrelease: copy trunk to testing-x86_64

Added:
  glslang/repos/testing-x86_64/
  glslang/repos/testing-x86_64/PKGBUILD
(from rev 442300, glslang/trunk/PKGBUILD)

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

Copied: glslang/repos/testing-x86_64/PKGBUILD (from rev 442300, 
glslang/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-04-11 18:37:30 UTC (rev 442301)
@@ -0,0 +1,50 @@
+# Maintainer: Sven-Hendrik Haase 
+
+# Careful when upgrading this package! It usually breaks ABI without bumping 
soname.
+pkgname=glslang
+pkgver=11.9.0
+pkgrel=1
+pkgdesc='OpenGL and OpenGL ES shader front end and validator'
+arch=('x86_64')
+url='https://github.com/KhronosGroup/glslang'
+license=('BSD')
+depends=('gcc-libs')
+makedepends=('cmake' 'ninja' 'git' 'python' 'spirv-tools' 'spirv-headers')
+options=('staticlibs')
+# Get the commits from known_good.json for every release
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/KhronosGroup/glslang/archive/${pkgver}.tar.gz)
+sha256sums=('d5744adba19eef9ad3d73f524226b39fec559d94cb582cd442e3c5de930004b2')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export CXXFLAGS+=" -ffat-lto-objects"
+  cmake \
+-Bbuild-shared \
+-GNinja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=ON
+  ninja -Cbuild-shared
+  cmake \
+-Bbuild-static \
+-GNinja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=OFF
+  ninja -Cbuild-static
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  DESTDIR="${pkgdir}" ninja -C build-shared install
+  DESTDIR="${pkgdir}" ninja -C build-static install
+
+  install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+
+  cd "${pkgdir}"/usr/lib
+  for lib in *.so; do
+ln -sf "${lib}" "${lib}.0"
+  done
+}
+
+# vim: ts=2 sw=2 et:



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

2022-04-11 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 11, 2022 @ 18:37:18
  Author: svenstaro
Revision: 442300

upgpkg: glslang 11.9.0-1

Modified:
  glslang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 18:25:50 UTC (rev 442299)
+++ PKGBUILD2022-04-11 18:37:18 UTC (rev 442300)
@@ -2,8 +2,8 @@
 
 # Careful when upgrading this package! It usually breaks ABI without bumping 
soname.
 pkgname=glslang
-pkgver=11.8.0
-pkgrel=2
+pkgver=11.9.0
+pkgrel=1
 pkgdesc='OpenGL and OpenGL ES shader front end and validator'
 arch=('x86_64')
 url='https://github.com/KhronosGroup/glslang'
@@ -13,7 +13,7 @@
 options=('staticlibs')
 # Get the commits from known_good.json for every release
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/KhronosGroup/glslang/archive/${pkgver}.tar.gz)
-sha256sums=('9e5fbe5b844d203da5e61bcd84eda76326e0ff5dc696cb862147bbe01d2febb0')
+sha256sums=('d5744adba19eef9ad3d73f524226b39fec559d94cb582cd442e3c5de930004b2')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2022-04-11 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 11, 2022 @ 18:32:07
  Author: svenstaro
Revision: 1185889

archrelease: copy trunk to community-x86_64

Added:
  kitty/repos/community-x86_64/PKGBUILD
(from rev 1185888, kitty/trunk/PKGBUILD)
Deleted:
  kitty/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 18:31:49 UTC (rev 1185888)
+++ PKGBUILD2022-04-11 18:32:07 UTC (rev 1185889)
@@ -1,63 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Fabio 'Lolix' Loli  -> 
https://github.com/FabioLolix
-# Contributor: Maximilian Kindshofer 
-
-pkgbase=kitty
-pkgname=(kitty kitty-terminfo kitty-shell-integration)
-pkgver=0.24.4
-pkgrel=1
-pkgdesc="A modern, hackable, featureful, OpenGL-based terminal emulator"
-arch=('x86_64')
-url="https://github.com/kovidgoyal/kitty";
-license=('GPL3')
-depends=('python3' 'freetype2'  'fontconfig' 'wayland' 'libx11' 
'libxkbcommon-x11' 'libxi'
- 'hicolor-icon-theme' 'libgl' 'dbus' 'lcms2')
-makedepends=('libxinerama' 'libxcursor' 'libxrandr' 'wayland-protocols' 
'librsync')
-source=("${pkgname}-${pkgver}.tar.xz::https://github.com/kovidgoyal/${pkgbase}/releases/download/v${pkgver}/${pkgbase}-${pkgver}.tar.xz";
-
"${pkgname}-${pkgver}.tar.xz.sig::https://github.com/kovidgoyal/${pkgbase}/releases/download/v${pkgver}/${pkgbase}-${pkgver}.tar.xz.sig";)
-sha512sums=('28b1e2415b5c73ad8922d4ed17a63638c497a91c9aedba71c2f53e77fc89ed49951a2e873bba5bbe85c8eda22107d9ff4e4321010ac33a2d289c2fbd5d3a5b8f'
-'SKIP')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  python3 setup.py linux-package --update-check-interval=0
-}
-
-package_kitty() {
-  depends+=('kitty-terminfo' 'kitty-shell-integration')
-  optdepends=('imagemagick: viewing images with icat'
-  'libcanberra: playing "bell" sound on terminal bell')
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  cp -r linux-package "${pkgdir}"/usr
-
-  # completions
-  python __main__.py + complete setup bash | install -Dm644 /dev/stdin 
"${pkgdir}"/usr/share/bash-completion/completions/kitty
-  python __main__.py + complete setup fish | install -Dm644 /dev/stdin 
"${pkgdir}"/usr/share/fish/vendor_completions.d/kitty.fish
-  python __main__.py + complete setup zsh  | install -Dm644 /dev/stdin 
"${pkgdir}"/usr/share/zsh/site-functions/_kitty
-
-  install -Dm644 "${pkgdir}"/usr/share/icons/hicolor/256x256/apps/kitty.png 
"${pkgdir}"/usr/share/pixmaps/kitty.png
-
-  rm -r "$pkgdir"/usr/share/terminfo
-  rm -r "$pkgdir"/usr/lib/kitty/shell-integration
-
-  install -Dm644 docs/_build/html/_downloads/*/kitty.conf 
"${pkgdir}"/usr/share/doc/${pkgname}/kitty.conf
-}
-
-package_kitty-terminfo() {
-  pkgdesc='Terminfo for kitty, an OpenGL-based terminal emulator'
-  depends=('ncurses')
-
-  mkdir -p "$pkgdir/usr/share/terminfo"
-  tic -x -o "$pkgdir/usr/share/terminfo" 
$pkgbase-$pkgver/terminfo/kitty.terminfo
-}
-
-package_kitty-shell-integration() {
-  pkgdesc='Shell integration scripts for kitty, an OpenGL-based terminal 
emulator'
-
-  mkdir -p "$pkgdir/usr/lib/kitty/"
-  cp -r "$srcdir/$pkgbase-$pkgver/shell-integration" "$pkgdir/usr/lib/kitty/"
-}

Copied: kitty/repos/community-x86_64/PKGBUILD (from rev 1185888, 
kitty/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 18:32:07 UTC (rev 1185889)
@@ -0,0 +1,63 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Fabio 'Lolix' Loli  -> 
https://github.com/FabioLolix
+# Contributor: Maximilian Kindshofer 
+
+pkgbase=kitty
+pkgname=(kitty kitty-terminfo kitty-shell-integration)
+pkgver=0.25.0
+pkgrel=1
+pkgdesc="A modern, hackable, featureful, OpenGL-based terminal emulator"
+arch=('x86_64')
+url="https://github.com/kovidgoyal/kitty";
+license=('GPL3')
+depends=('python3' 'freetype2'  'fontconfig' 'wayland' 'libx11' 
'libxkbcommon-x11' 'libxi'
+ 'hicolor-icon-theme' 'libgl' 'dbus' 'lcms2')
+makedepends=('libxinerama' 'libxcursor' 'libxrandr' 'wayland-protocols' 
'librsync')
+source=("${pkgname}-${pkgver}.tar.xz::https://github.com/kovidgoyal/${pkgbase}/releases/download/v${pkgver}/${pkgbase}-${pkgver}.tar.xz";
+
"${pkgname}-${pkgver}.tar.xz.sig::https://github.com/kovidgoyal/${pkgbase}/releases/download/v${pkgver}/${pkgbase}-${pkgver}.tar.xz.sig";)
+sha512sums=('fed8d66a9f7f2117f4b495305db0d56d8b85ef03bf7ef24a7dca31e63e16fc90e026aa8022237ad45678efb026f11fdd8aa377eb53917fd8ec885f2ccea721f8'
+'SKIP')
+validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  python3 setup.py linu

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

2022-04-11 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 11, 2022 @ 18:31:49
  Author: svenstaro
Revision: 1185888

upgpkg: kitty 0.25.0-1

Modified:
  kitty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 18:29:40 UTC (rev 1185887)
+++ PKGBUILD2022-04-11 18:31:49 UTC (rev 1185888)
@@ -5,7 +5,7 @@
 
 pkgbase=kitty
 pkgname=(kitty kitty-terminfo kitty-shell-integration)
-pkgver=0.24.4
+pkgver=0.25.0
 pkgrel=1
 pkgdesc="A modern, hackable, featureful, OpenGL-based terminal emulator"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 makedepends=('libxinerama' 'libxcursor' 'libxrandr' 'wayland-protocols' 
'librsync')
 
source=("${pkgname}-${pkgver}.tar.xz::https://github.com/kovidgoyal/${pkgbase}/releases/download/v${pkgver}/${pkgbase}-${pkgver}.tar.xz";
 
"${pkgname}-${pkgver}.tar.xz.sig::https://github.com/kovidgoyal/${pkgbase}/releases/download/v${pkgver}/${pkgbase}-${pkgver}.tar.xz.sig";)
-sha512sums=('28b1e2415b5c73ad8922d4ed17a63638c497a91c9aedba71c2f53e77fc89ed49951a2e873bba5bbe85c8eda22107d9ff4e4321010ac33a2d289c2fbd5d3a5b8f'
+sha512sums=('fed8d66a9f7f2117f4b495305db0d56d8b85ef03bf7ef24a7dca31e63e16fc90e026aa8022237ad45678efb026f11fdd8aa377eb53917fd8ec885f2ccea721f8'
 'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal
 



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

2022-04-11 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 11, 2022 @ 18:29:40
  Author: svenstaro
Revision: 1185887

archrelease: copy trunk to community-x86_64

Added:
  openimageio/repos/community-x86_64/PKGBUILD
(from rev 1185886, openimageio/trunk/PKGBUILD)
Deleted:
  openimageio/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 18:29:25 UTC (rev 1185886)
+++ PKGBUILD2022-04-11 18:29:40 UTC (rev 1185887)
@@ -1,47 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: SpepS 
-
-pkgname=openimageio
-pkgver=2.3.13.0
-pkgrel=1
-pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
-arch=(x86_64)
-url="http://www.openimageio.org/";
-license=('custom')
-depends=('openexr' 'boost-libs' 'openjpeg2' 'glew' 'libtiff' 'opencolorio' 
'libpng' 'libraw' 'libwebp'
- 'fmt' 'pugixml' 'pybind11' 'libheif' 'hdf5' 'freetype2')
-# TODO: Consider adding these deps: 'openvdb' 'ffmpeg' 'ptex' 'opencv'
-makedepends=('cmake' 'qt5-base' 'python' 'boost' 'mesa' 'fontconfig' 
'libxrender' 'ninja' 'robin-map')
-optdepends=('qt5-base: iv image viewer'
-'python: bindings support')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenImageIO/oiio/archive/refs/tags/v$pkgver.tar.gz";)
-sha512sums=('fbefa341a11fd502ec9313ca48a0fe433c5822699e4934f6a14089f670314cbe1c9c0b9a491b1d1927bda0223e38a62192c6ddeec6c4c5e6215a8b3fb6900dd8')
-
-build() {
-  cd oiio-$pkgver
-
-  cmake \
--Bbuild \
--GNinja \
--DUSE_PYTHON=ON \
--DPYTHON_VERSION=3.10 \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DOIIO_BUILD_TESTS=ON \
--DOIIO_BUILD_TOOLS=ON \
--DBUILD_MISSING_FMT=OFF \
--DUSE_EXTERNAL_PUGIXML=ON \
--DSTOP_ON_WARNING=OFF
-  ninja -C build
-}
-
-package() {
-  cd oiio-$pkgver
-
-  DESTDIR="$pkgdir" ninja -C build install
-
-  # Remove vendored fonts
-  rm -r "$pkgdir"/usr/share/fonts
-
-  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE".md
-}

Copied: openimageio/repos/community-x86_64/PKGBUILD (from rev 1185886, 
openimageio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 18:29:40 UTC (rev 1185887)
@@ -0,0 +1,47 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: SpepS 
+
+pkgname=openimageio
+pkgver=2.3.14.0
+pkgrel=1
+pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
+arch=(x86_64)
+url="http://www.openimageio.org/";
+license=('custom')
+depends=('openexr' 'boost-libs' 'openjpeg2' 'glew' 'libtiff' 'opencolorio' 
'libpng' 'libraw' 'libwebp'
+ 'fmt' 'pugixml' 'pybind11' 'libheif' 'hdf5' 'freetype2')
+# TODO: Consider adding these deps: 'openvdb' 'ffmpeg' 'ptex' 'opencv'
+makedepends=('cmake' 'qt5-base' 'python' 'boost' 'mesa' 'fontconfig' 
'libxrender' 'ninja' 'robin-map')
+optdepends=('qt5-base: iv image viewer'
+'python: bindings support')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenImageIO/oiio/archive/refs/tags/v$pkgver.tar.gz";)
+sha512sums=('42f0925bfe5470d9ed43dfd90e008b940ee6e43be4446be1853ee2cbac66041a9cbf1a469f72dc66bc6bec60d3b0049652b8c928d0d56a893b7e4185ce49dc76')
+
+build() {
+  cd oiio-$pkgver
+
+  cmake \
+-Bbuild \
+-GNinja \
+-DUSE_PYTHON=ON \
+-DPYTHON_VERSION=3.10 \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DOIIO_BUILD_TESTS=ON \
+-DOIIO_BUILD_TOOLS=ON \
+-DBUILD_MISSING_FMT=OFF \
+-DUSE_EXTERNAL_PUGIXML=ON \
+-DSTOP_ON_WARNING=OFF
+  ninja -C build
+}
+
+package() {
+  cd oiio-$pkgver
+
+  DESTDIR="$pkgdir" ninja -C build install
+
+  # Remove vendored fonts
+  rm -r "$pkgdir"/usr/share/fonts
+
+  install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE".md
+}



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

2022-04-11 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 11, 2022 @ 18:29:25
  Author: svenstaro
Revision: 1185886

upgpkg: openimageio 2.3.14.0-1

Modified:
  openimageio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 18:23:54 UTC (rev 1185885)
+++ PKGBUILD2022-04-11 18:29:25 UTC (rev 1185886)
@@ -2,7 +2,7 @@
 # Contributor: SpepS 
 
 pkgname=openimageio
-pkgver=2.3.13.0
+pkgver=2.3.14.0
 pkgrel=1
 pkgdesc="A library for reading and writing images, including classes, 
utilities, and applications"
 arch=(x86_64)
@@ -15,7 +15,7 @@
 optdepends=('qt5-base: iv image viewer'
 'python: bindings support')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenImageIO/oiio/archive/refs/tags/v$pkgver.tar.gz";)
-sha512sums=('fbefa341a11fd502ec9313ca48a0fe433c5822699e4934f6a14089f670314cbe1c9c0b9a491b1d1927bda0223e38a62192c6ddeec6c4c5e6215a8b3fb6900dd8')
+sha512sums=('42f0925bfe5470d9ed43dfd90e008b940ee6e43be4446be1853ee2cbac66041a9cbf1a469f72dc66bc6bec60d3b0049652b8c928d0d56a893b7e4185ce49dc76')
 
 build() {
   cd oiio-$pkgver



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

2022-04-11 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 11, 2022 @ 18:23:54
  Author: svenstaro
Revision: 1185885

archrelease: copy trunk to community-x86_64

Added:
  just/repos/community-x86_64/PKGBUILD
(from rev 1185884, just/trunk/PKGBUILD)
Deleted:
  just/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 18:23:39 UTC (rev 1185884)
+++ PKGBUILD2022-04-11 18:23:54 UTC (rev 1185885)
@@ -1,33 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Fredy García 
-
-pkgname=just
-pkgver=1.1.1
-pkgrel=1
-pkgdesc="A handy way to save and run project-specific commands"
-arch=("x86_64")
-url="https://github.com/casey/just";
-license=("custom:CC0")
-depends=("gcc-libs")
-makedepends=("cargo")
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/casey/${pkgname}/archive/${pkgver}.tar.gz";)
-sha256sums=('b985def8260965773422fc6c665fa37aeb7304280560dbf8f641479ba00e2da0')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cargo build --release
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  cargo check --release
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm644 "completions/just.zsh" 
"${pkgdir}/usr/share/zsh/site-functions/_just"
-  install -Dm644 "completions/just.bash" 
"${pkgdir}/usr/share/bash-completion/completions/just"
-  install -Dm644 "completions/just.fish" 
"${pkgdir}/usr/share/fish/vendor_completions.d/just.fish"
-}

Copied: just/repos/community-x86_64/PKGBUILD (from rev 1185884, 
just/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 18:23:54 UTC (rev 1185885)
@@ -0,0 +1,33 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Fredy García 
+
+pkgname=just
+pkgver=1.1.2
+pkgrel=1
+pkgdesc="A handy way to save and run project-specific commands"
+arch=("x86_64")
+url="https://github.com/casey/just";
+license=("custom:CC0")
+depends=("gcc-libs")
+makedepends=("cargo")
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/casey/${pkgname}/archive/${pkgver}.tar.gz";)
+sha256sums=('5f04ce85dc2de7609d68c336a7c51f477f8ff079d8b209a0d72183615e3f1e55')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  cargo check --release
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 "completions/just.zsh" 
"${pkgdir}/usr/share/zsh/site-functions/_just"
+  install -Dm644 "completions/just.bash" 
"${pkgdir}/usr/share/bash-completion/completions/just"
+  install -Dm644 "completions/just.fish" 
"${pkgdir}/usr/share/fish/vendor_completions.d/just.fish"
+}



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

2022-04-11 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 11, 2022 @ 18:23:39
  Author: svenstaro
Revision: 1185884

upgpkg: just 1.1.2-1

Modified:
  just/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 18:00:50 UTC (rev 1185883)
+++ PKGBUILD2022-04-11 18:23:39 UTC (rev 1185884)
@@ -2,7 +2,7 @@
 # Contributor: Fredy García 
 
 pkgname=just
-pkgver=1.1.1
+pkgver=1.1.2
 pkgrel=1
 pkgdesc="A handy way to save and run project-specific commands"
 arch=("x86_64")
@@ -11,7 +11,7 @@
 depends=("gcc-libs")
 makedepends=("cargo")
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/casey/${pkgname}/archive/${pkgver}.tar.gz";)
-sha256sums=('b985def8260965773422fc6c665fa37aeb7304280560dbf8f641479ba00e2da0')
+sha256sums=('5f04ce85dc2de7609d68c336a7c51f477f8ff079d8b209a0d72183615e3f1e55')
 
 build() {
   cd "${pkgname}-${pkgver}"



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

2022-04-11 Thread Orhun Parmaksiz via arch-commits
Date: Monday, April 11, 2022 @ 18:00:50
  Author: orhun
Revision: 1185883

archrelease: copy trunk to community-x86_64

Added:
  aliyun-cli/repos/community-x86_64/PKGBUILD
(from rev 1185882, aliyun-cli/trunk/PKGBUILD)
Deleted:
  aliyun-cli/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 18:00:40 UTC (rev 1185882)
+++ PKGBUILD2022-04-11 18:00:50 UTC (rev 1185883)
@@ -1,64 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Andreas 'Segaja' Schleifer 
-
-pkgname=aliyun-cli
-_gitcommit=4502587bccf00c3766868d2638da60f5eac7ac7d
-pkgver=3.0.115
-pkgrel=1
-pkgdesc='Alibaba Cloud CLI'
-arch=('x86_64')
-url='https://github.com/aliyun/aliyun-cli'
-license=('APACHE')
-depends=('glibc')
-makedepends=('git' 'go')
-source=("git+${url}#commit=${_gitcommit}"
-git+https://github.com/aliyun/aliyun-openapi-meta)
-sha512sums=('SKIP'
-'SKIP')
-b2sums=('SKIP'
-'SKIP')
-
-pkgver() {
-  cd ${pkgname}
-  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-prepare() {
-  cd ${pkgname}
-  git submodule init
-  git config submodule."aliyun-openapi-meta".url 
"${srcdir}/aliyun-openapi-meta"
-  git submodule update --init --recursive
-}
-
-build() {
-  cd ${pkgname}
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
-
-  go build \
--ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
'github.com/aliyun/aliyun-cli/cli.Version=${pkgver}'" \
--o ./out/aliyun ./main/main.go
-}
-
-check() {
-  cd ${pkgname}
-
-  # Horrible but needed for the ./cli/ tests
-  touch "${HOME}/.bashrc"
-
-  # for now can't test the `./oss/...` folder, because it needs an env file 
that is not so easy to have in dev
-  go test \
-./cli/... ./config/... ./i18n/... ./main/... ./openapi/... ./resource/...
-}
-
-package() {
-  cd ${pkgname}
-  install -Dm 755 out/aliyun "${pkgdir}/usr/bin/aliyun"
-  install -Dm 644 README*.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 bin/README.md -t "${pkgdir}/usr/share/doc/${pkgname}/bin"
-}
-
-# vim: ts=2 sw=2 et:

Copied: aliyun-cli/repos/community-x86_64/PKGBUILD (from rev 1185882, 
aliyun-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 18:00:50 UTC (rev 1185883)
@@ -0,0 +1,64 @@
+# Maintainer: Levente Polyak 
+# Contributor: Andreas 'Segaja' Schleifer 
+
+pkgname=aliyun-cli
+_gitcommit=292b98951253aa7f030b46a12e5d797d2a57cc07
+pkgver=3.0.116
+pkgrel=1
+pkgdesc='Alibaba Cloud CLI'
+arch=('x86_64')
+url='https://github.com/aliyun/aliyun-cli'
+license=('APACHE')
+depends=('glibc')
+makedepends=('git' 'go')
+source=("git+${url}#commit=${_gitcommit}"
+git+https://github.com/aliyun/aliyun-openapi-meta)
+sha512sums=('SKIP'
+'SKIP')
+b2sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd ${pkgname}
+  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd ${pkgname}
+  git submodule init
+  git config submodule."aliyun-openapi-meta".url 
"${srcdir}/aliyun-openapi-meta"
+  git submodule update --init --recursive
+}
+
+build() {
+  cd ${pkgname}
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
+
+  go build \
+-ldflags "-linkmode=external -extldflags '${LDFLAGS}' -X 
'github.com/aliyun/aliyun-cli/cli.Version=${pkgver}'" \
+-o ./out/aliyun ./main/main.go
+}
+
+check() {
+  cd ${pkgname}
+
+  # Horrible but needed for the ./cli/ tests
+  touch "${HOME}/.bashrc"
+
+  # for now can't test the `./oss/...` folder, because it needs an env file 
that is not so easy to have in dev
+  go test \
+./cli/... ./config/... ./i18n/... ./main/... ./openapi/... ./resource/...
+}
+
+package() {
+  cd ${pkgname}
+  install -Dm 755 out/aliyun "${pkgdir}/usr/bin/aliyun"
+  install -Dm 644 README*.md CHANGELOG.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 bin/README.md -t "${pkgdir}/usr/share/doc/${pkgname}/bin"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-04-11 Thread Orhun Parmaksiz via arch-commits
Date: Monday, April 11, 2022 @ 18:00:40
  Author: orhun
Revision: 1185882

upgpkg: aliyun-cli 3.0.116-1: upstream release

Modified:
  aliyun-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 17:55:26 UTC (rev 1185881)
+++ PKGBUILD2022-04-11 18:00:40 UTC (rev 1185882)
@@ -2,8 +2,8 @@
 # Contributor: Andreas 'Segaja' Schleifer 
 
 pkgname=aliyun-cli
-_gitcommit=4502587bccf00c3766868d2638da60f5eac7ac7d
-pkgver=3.0.115
+_gitcommit=292b98951253aa7f030b46a12e5d797d2a57cc07
+pkgver=3.0.116
 pkgrel=1
 pkgdesc='Alibaba Cloud CLI'
 arch=('x86_64')



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

2022-04-11 Thread Felix Yan via arch-commits
Date: Monday, April 11, 2022 @ 17:55:26
  Author: felixonmars
Revision: 1185881

archrelease: copy trunk to community-any

Added:
  mill/repos/community-any/PKGBUILD
(from rev 1185880, mill/trunk/PKGBUILD)
Deleted:
  mill/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 17:55:10 UTC (rev 1185880)
+++ PKGBUILD2022-04-11 17:55:26 UTC (rev 1185881)
@@ -1,36 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Jiuyang Liu 
-# Contributor: Christian Krause ("wookietreiber") 

-# Contributor: Guillaume Raffin ("theelectronwill") 
-
-pkgname=mill
-pkgver=0.10.2
-pkgrel=1
-pkgdesc="Your shiny new Java/Scala build tool"
-arch=(any)
-url="https://www.lihaoyi.com/mill/index.html";
-license=('MIT')
-depends=('bash' 'java-environment')
-makedepends=('mill')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/lihaoyi/mill/archive/$pkgver.tar.gz";)
-sha512sums=('852193fbb96116ce2f414b9fd1cb344add1b8c49034611ca47aa573a4d455d79f4db4a89c4243908b060fffc19ccdbca15dbcee36e3fd0b6449efbba0253ff1a')
-
-prepare() {
-  cd mill-$pkgver
-  # workaround non-git build
-  sed -e "s/VcsVersion.vcsState().format()/\"$pkgver\"/" \
-  -e 's/VcsVersion.vcsState().lastTag.getOrElse//' \
-  -e "s/sys.error(\"No (last) git tag found. Your git history seems 
incomplete!\")/\"$pkgver\"/" \
-  -i build.sc
-}
-
-build() {
-  cd mill-$pkgver
-  mill -i all __.publishLocal assembly
-}
-
-package() {
-  cd mill-$pkgver
-  install -Dm755 out/assembly.dest/mill "$pkgdir"/usr/bin/mill
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/mill/LICENSE
-}

Copied: mill/repos/community-any/PKGBUILD (from rev 1185880, 
mill/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 17:55:26 UTC (rev 1185881)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Contributor: Jiuyang Liu 
+# Contributor: Christian Krause ("wookietreiber") 

+# Contributor: Guillaume Raffin ("theelectronwill") 
+
+pkgname=mill
+pkgver=0.10.3
+pkgrel=1
+pkgdesc="Your shiny new Java/Scala build tool"
+arch=(any)
+url="https://www.lihaoyi.com/mill/index.html";
+license=('MIT')
+depends=('bash' 'java-environment')
+makedepends=('mill')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lihaoyi/mill/archive/$pkgver.tar.gz";)
+sha512sums=('d0443be35b41f2afd77bc5a4a32be66f87dca05478305b0816c07a2c7d852d738318b3acdf14f8ae8702f3e3f52b13e70590700c96a9180e141b8edb37dee73d')
+
+prepare() {
+  cd mill-$pkgver
+  # workaround non-git build
+  sed -e "s/VcsVersion.vcsState().format()/\"$pkgver\"/" \
+  -e 's/VcsVersion.vcsState().lastTag.getOrElse//' \
+  -e "s/sys.error(\"No (last) git tag found. Your git history seems 
incomplete!\")/\"$pkgver\"/" \
+  -i build.sc
+}
+
+build() {
+  cd mill-$pkgver
+  mill -i all __.publishLocal assembly
+}
+
+package() {
+  cd mill-$pkgver
+  install -Dm755 out/assembly.dest/mill "$pkgdir"/usr/bin/mill
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/mill/LICENSE
+}



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

2022-04-11 Thread Felix Yan via arch-commits
Date: Monday, April 11, 2022 @ 17:55:10
  Author: felixonmars
Revision: 1185880

upgpkg: mill 0.10.3-1

Modified:
  mill/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 17:30:36 UTC (rev 1185879)
+++ PKGBUILD2022-04-11 17:55:10 UTC (rev 1185880)
@@ -4,7 +4,7 @@
 # Contributor: Guillaume Raffin ("theelectronwill") 
 
 pkgname=mill
-pkgver=0.10.2
+pkgver=0.10.3
 pkgrel=1
 pkgdesc="Your shiny new Java/Scala build tool"
 arch=(any)
@@ -13,7 +13,7 @@
 depends=('bash' 'java-environment')
 makedepends=('mill')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/lihaoyi/mill/archive/$pkgver.tar.gz";)
-sha512sums=('852193fbb96116ce2f414b9fd1cb344add1b8c49034611ca47aa573a4d455d79f4db4a89c4243908b060fffc19ccdbca15dbcee36e3fd0b6449efbba0253ff1a')
+sha512sums=('d0443be35b41f2afd77bc5a4a32be66f87dca05478305b0816c07a2c7d852d738318b3acdf14f8ae8702f3e3f52b13e70590700c96a9180e141b8edb37dee73d')
 
 prepare() {
   cd mill-$pkgver



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

2022-04-11 Thread Justin Kromlinger via arch-commits
Date: Monday, April 11, 2022 @ 17:19:29
  Author: hashworks
Revision: 1185878

archrelease: copy trunk to community-x86_64

Added:
  trivy/repos/community-x86_64/PKGBUILD
(from rev 1185877, trivy/trunk/PKGBUILD)
Deleted:
  trivy/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 17:19:21 UTC (rev 1185877)
+++ PKGBUILD2022-04-11 17:19:29 UTC (rev 1185878)
@@ -1,47 +0,0 @@
-# Maintainer: Justin Kromlinger 
-# Contributor: Hao Long 
-
-pkgname=trivy
-pkgver=0.25.3
-pkgrel=1
-pkgdesc='A Simple and Comprehensive Vulnerability Scanner for Containers, 
Suitable for CI'
-arch=('x86_64')
-url='https://github.com/aquasecurity/trivy'
-license=('Apache')
-depends=('device-mapper')
-optdepends=('rpm: RHEL/CentOS based image support')
-makedepends=('go' 'btrfs-progs')
-provides=('trivy')
-conflicts=('trivy')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-b2sums=('f7ae15a52bcaa91e5eafd7f86718bfd621a95c2945e049cd9c8d7ba01fead413e567542cb93b56c8fdb409f55d0420ac6765c99e85d756350f133c16c7acd4a2')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  find docs -type f -name "*.md" \
--exec sed 
"s|\(../\)*imgs/\(.*\.[a-z]\{3\}\)|${url}/raw/main/docs/imgs/\2|g" -i {} \;
-
-  rm -Rf docs/{build,imgs}
-}
-
-build() {
-  cd ${pkgname}-${pkgver}/cmd/trivy
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
-  go build .
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm755 "cmd/trivy/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-
-  mkdir -p "${pkgdir}/usr/share/doc"
-  cp -r docs "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: trivy/repos/community-x86_64/PKGBUILD (from rev 1185877, 
trivy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 17:19:29 UTC (rev 1185878)
@@ -0,0 +1,47 @@
+# Maintainer: Justin Kromlinger 
+# Contributor: Hao Long 
+
+pkgname=trivy
+pkgver=0.25.4
+pkgrel=1
+pkgdesc='A Simple and Comprehensive Vulnerability Scanner for Containers, 
Suitable for CI'
+arch=('x86_64')
+url='https://github.com/aquasecurity/trivy'
+license=('Apache')
+depends=('device-mapper')
+optdepends=('rpm: RHEL/CentOS based image support')
+makedepends=('go' 'btrfs-progs')
+provides=('trivy')
+conflicts=('trivy')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
+b2sums=('cb794876b6f24a420f9c579113f1cdcd35b875744d1585fc6fce8d51116447493750ea768bebe48d4d885f58a1b630173092525e5b1ce5c576b0291a4bba7e3c')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  find docs -type f -name "*.md" \
+-exec sed 
"s|\(../\)*imgs/\(.*\.[a-z]\{3\}\)|${url}/raw/main/docs/imgs/\2|g" -i {} \;
+
+  rm -Rf docs/{build,imgs}
+}
+
+build() {
+  cd ${pkgname}-${pkgver}/cmd/trivy
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+  go build .
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm755 "cmd/trivy/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+
+  mkdir -p "${pkgdir}/usr/share/doc"
+  cp -r docs "${pkgdir}/usr/share/doc/${pkgname}"
+}



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

2022-04-11 Thread Justin Kromlinger via arch-commits
Date: Monday, April 11, 2022 @ 17:19:21
  Author: hashworks
Revision: 1185877

upgpkg: trivy 0.25.4-1

Modified:
  trivy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 17:10:54 UTC (rev 1185876)
+++ PKGBUILD2022-04-11 17:19:21 UTC (rev 1185877)
@@ -2,7 +2,7 @@
 # Contributor: Hao Long 
 
 pkgname=trivy
-pkgver=0.25.3
+pkgver=0.25.4
 pkgrel=1
 pkgdesc='A Simple and Comprehensive Vulnerability Scanner for Containers, 
Suitable for CI'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 provides=('trivy')
 conflicts=('trivy')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-b2sums=('f7ae15a52bcaa91e5eafd7f86718bfd621a95c2945e049cd9c8d7ba01fead413e567542cb93b56c8fdb409f55d0420ac6765c99e85d756350f133c16c7acd4a2')
+b2sums=('cb794876b6f24a420f9c579113f1cdcd35b875744d1585fc6fce8d51116447493750ea768bebe48d4d885f58a1b630173092525e5b1ce5c576b0291a4bba7e3c')
 
 prepare() {
   cd ${pkgname}-${pkgver}



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

2022-04-11 Thread Jiachen Yang via arch-commits
Date: Monday, April 11, 2022 @ 17:10:54
  Author: farseerfc
Revision: 1185876

archrelease: copy trunk to community-any

Added:
  plantuml/repos/community-any/PKGBUILD
(from rev 1185875, plantuml/trunk/PKGBUILD)
  plantuml/repos/community-any/plantuml.run
(from rev 1185875, plantuml/trunk/plantuml.run)
Deleted:
  plantuml/repos/community-any/PKGBUILD
  plantuml/repos/community-any/plantuml.run

--+
 PKGBUILD |   78 -
 plantuml.run |4 +-
 2 files changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 17:10:20 UTC (rev 1185875)
+++ PKGBUILD2022-04-11 17:10:54 UTC (rev 1185876)
@@ -1,39 +0,0 @@
-# Maintainer: Jiachen YANG 
-# AUR Contributor: juantascon 
-# Contributor : Jingbei Li 
-
-pkgname=plantuml
-pkgver=1.2021.16
-pkgrel=1
-pkgdesc="Component that allows to quickly write uml diagrams"
-arch=(any)
-url="https://plantuml.com/";
-license=('GPL')
-depends=("java-runtime>=8" "bash")
-makedepends=("apache-ant" "java-environment>=8")
-source=("https://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";
-"$pkgname.run")
-sha256sums=('a8887c9714d764a7ee44335494fffa689555822a66044d9430d51731a7981c6b'
-'a3fb528f4c719cfd0ff6154c60fd54ce341011d132caf950cc30af4989f6aac8')
-optdepends=('plantuml-ascii-math: allow use AsciiMath or JLaTeXMath notation'
-'ditaa: allow use ditaa notation'
-'graphviz: allow use Graphviz/DOT notation')
-
-prepare(){
-  cd "$srcdir/$pkgname-$pkgver"
-sed 's/target="1.6"/target="1.7"/g;s/source="1.6"/source="1.7"/g' -i 
build.xml
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  # assume ant defaults to UTF8 encoding.
-  ant dist
-}
-
-package() {
-  depends+=("java-runtime")
-  install -m 755 -D "$pkgname.run" "$pkgdir/usr/bin/$pkgname"
-
-  cd "$srcdir/$pkgname-$pkgver"
-  install -m 644 -D "$pkgname.jar" 
"$pkgdir/usr/share/java/$pkgname/$pkgname.jar"
-}

Copied: plantuml/repos/community-any/PKGBUILD (from rev 1185875, 
plantuml/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 17:10:54 UTC (rev 1185876)
@@ -0,0 +1,39 @@
+# Maintainer: Jiachen YANG 
+# AUR Contributor: juantascon 
+# Contributor : Jingbei Li 
+
+pkgname=plantuml
+pkgver=1.2022.4
+pkgrel=1
+pkgdesc="Component that allows to quickly write uml diagrams"
+arch=(any)
+url="https://plantuml.com/";
+license=('GPL')
+depends=("java-runtime>=8" "bash")
+makedepends=("apache-ant" "java-environment>=8")
+source=("https://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";
+"$pkgname.run")
+sha256sums=('288fb22c46fb24342633e5064a0be0a66e1530a1cec99457655cd31ce8f5f37b'
+'a3fb528f4c719cfd0ff6154c60fd54ce341011d132caf950cc30af4989f6aac8')
+optdepends=('plantuml-ascii-math: allow use AsciiMath or JLaTeXMath notation'
+'ditaa: allow use ditaa notation'
+'graphviz: allow use Graphviz/DOT notation')
+
+prepare(){
+  cd "$srcdir/$pkgname-$pkgver"
+sed 's/target="1.6"/target="1.7"/g;s/source="1.6"/source="1.7"/g' -i 
build.xml
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  # assume ant defaults to UTF8 encoding.
+  ant dist
+}
+
+package() {
+  depends+=("java-runtime")
+  install -m 755 -D "$pkgname.run" "$pkgdir/usr/bin/$pkgname"
+
+  cd "$srcdir/$pkgname-$pkgver"
+  install -m 644 -D "$pkgname.jar" 
"$pkgdir/usr/share/java/$pkgname/$pkgname.jar"
+}

Deleted: plantuml.run
===
--- plantuml.run2022-04-11 17:10:20 UTC (rev 1185875)
+++ plantuml.run2022-04-11 17:10:54 UTC (rev 1185876)
@@ -1,2 +0,0 @@
-#!/bin/sh
-exec /usr/bin/java -jar '/usr/share/java/plantuml/plantuml.jar' "$@"

Copied: plantuml/repos/community-any/plantuml.run (from rev 1185875, 
plantuml/trunk/plantuml.run)
===
--- plantuml.run(rev 0)
+++ plantuml.run2022-04-11 17:10:54 UTC (rev 1185876)
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec /usr/bin/java -jar '/usr/share/java/plantuml/plantuml.jar' "$@"



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

2022-04-11 Thread Jiachen Yang via arch-commits
Date: Monday, April 11, 2022 @ 17:10:20
  Author: farseerfc
Revision: 1185875

upgpkg: plantuml 1.2022.4-1

Modified:
  plantuml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 17:07:37 UTC (rev 1185874)
+++ PKGBUILD2022-04-11 17:10:20 UTC (rev 1185875)
@@ -3,7 +3,7 @@
 # Contributor : Jingbei Li 
 
 pkgname=plantuml
-pkgver=1.2021.16
+pkgver=1.2022.4
 pkgrel=1
 pkgdesc="Component that allows to quickly write uml diagrams"
 arch=(any)
@@ -13,7 +13,7 @@
 makedepends=("apache-ant" "java-environment>=8")
 
source=("https://downloads.sourceforge.net/project/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz";
 "$pkgname.run")
-sha256sums=('a8887c9714d764a7ee44335494fffa689555822a66044d9430d51731a7981c6b'
+sha256sums=('288fb22c46fb24342633e5064a0be0a66e1530a1cec99457655cd31ce8f5f37b'
 'a3fb528f4c719cfd0ff6154c60fd54ce341011d132caf950cc30af4989f6aac8')
 optdepends=('plantuml-ascii-math: allow use AsciiMath or JLaTeXMath notation'
 'ditaa: allow use ditaa notation'



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

2022-04-11 Thread Jiachen Yang via arch-commits
Date: Monday, April 11, 2022 @ 17:07:37
  Author: farseerfc
Revision: 1185874

archrelease: copy trunk to community-x86_64

Added:
  lzip/repos/community-x86_64/PKGBUILD
(from rev 1185873, lzip/trunk/PKGBUILD)
Deleted:
  lzip/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 17:06:58 UTC (rev 1185873)
+++ PKGBUILD2022-04-11 17:07:37 UTC (rev 1185874)
@@ -1,32 +0,0 @@
-# Maintainer:  Jiachen Yang 
-# AUR Maintainer:  apophys 
-# Contributor: Christoph Zeiler 
-# Contributor: Renzo Carbonara 
-
-pkgname=lzip
-pkgver=1.22
-pkgrel=1
-pkgdesc="A lossless file compressor based on the LZMA algorithm"
-arch=('x86_64')
-url="https://www.nongnu.org/lzip/lzip.html";
-license=('GPL3')
-depends=('gcc-libs')
-source=("https://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz";
-   
"https://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz.sig";)
-
-## upstream provided sha256sum:
-## http://lists.nongnu.org/archive/html/lzip-bug/2018-02/msg6.html
-sha256sums=('c3342d42e67139c165b8b128d033b5c96893a13ac5f25933190315214e87a948'
-'SKIP')
-validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742')  # Antonio Diaz Diaz 

-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr CXXFLAGS="$CXXFLAGS" LDFLAGS="$LDFLAGS"
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install{,-man}
-}

Copied: lzip/repos/community-x86_64/PKGBUILD (from rev 1185873, 
lzip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 17:07:37 UTC (rev 1185874)
@@ -0,0 +1,32 @@
+# Maintainer:  Jiachen Yang 
+# AUR Maintainer:  apophys 
+# Contributor: Christoph Zeiler 
+# Contributor: Renzo Carbonara 
+
+pkgname=lzip
+pkgver=1.23
+pkgrel=1
+pkgdesc="A lossless file compressor based on the LZMA algorithm"
+arch=('x86_64')
+url="https://www.nongnu.org/lzip/lzip.html";
+license=('GPL3')
+depends=('gcc-libs')
+source=("https://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz";
+   
"https://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz.sig";)
+
+## upstream provided sha256sum:
+## http://lists.nongnu.org/archive/html/lzip-bug/2018-02/msg6.html
+sha256sums=('4792c047ddf15ef29d55ba8e68a1a21e0cb7692d87ecdf7204419864582f280d'
+'SKIP')
+validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742')  # Antonio Diaz Diaz 

+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure --prefix=/usr CXXFLAGS="$CXXFLAGS" LDFLAGS="$LDFLAGS"
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install{,-man}
+}



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

2022-04-11 Thread Jiachen Yang via arch-commits
Date: Monday, April 11, 2022 @ 17:06:58
  Author: farseerfc
Revision: 1185873

upgpkg: lzip 1.23-1

Modified:
  lzip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 16:45:05 UTC (rev 1185872)
+++ PKGBUILD2022-04-11 17:06:58 UTC (rev 1185873)
@@ -4,7 +4,7 @@
 # Contributor: Renzo Carbonara 
 
 pkgname=lzip
-pkgver=1.22
+pkgver=1.23
 pkgrel=1
 pkgdesc="A lossless file compressor based on the LZMA algorithm"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 
 ## upstream provided sha256sum:
 ## http://lists.nongnu.org/archive/html/lzip-bug/2018-02/msg6.html
-sha256sums=('c3342d42e67139c165b8b128d033b5c96893a13ac5f25933190315214e87a948'
+sha256sums=('4792c047ddf15ef29d55ba8e68a1a21e0cb7692d87ecdf7204419864582f280d'
 'SKIP')
 validpgpkeys=('1D41C14B272A2219A739FA4F8FE99503132D7742')  # Antonio Diaz Diaz 

 



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

2022-04-11 Thread Jiachen Yang via arch-commits
Date: Monday, April 11, 2022 @ 16:45:05
  Author: farseerfc
Revision: 1185872

archrelease: copy trunk to community-testing-x86_64

Added:
  telegram-desktop/repos/community-testing-x86_64/
  telegram-desktop/repos/community-testing-x86_64/PKGBUILD
(from rev 1185871, telegram-desktop/trunk/PKGBUILD)
  telegram-desktop/repos/community-testing-x86_64/fix-ffmpeg5.patch
(from rev 1185871, telegram-desktop/trunk/fix-ffmpeg5.patch)

---+
 PKGBUILD  |   58 +
 fix-ffmpeg5.patch |   72 
 2 files changed, 130 insertions(+)

Copied: telegram-desktop/repos/community-testing-x86_64/PKGBUILD (from rev 
1185871, telegram-desktop/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-04-11 16:45:05 UTC (rev 1185872)
@@ -0,0 +1,58 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: hexchain 
+pkgname=telegram-desktop
+pkgver=3.6.1
+pkgrel=3
+pkgdesc='Official Telegram Desktop client'
+arch=('x86_64')
+url="https://desktop.telegram.org/";
+license=('GPL3')
+depends=('hunspell' 'ffmpeg4.4' 'hicolor-icon-theme' 'lz4' 'minizip' 'openal' 
'ttf-opensans'
+ 'qt6-imageformats' 'qt6-svg' 'qt6-wayland' 'qt6-5compat' 'xxhash' 
'glibmm'
+ 'rnnoise' 'pipewire' 'libxtst' 'libxrandr' 'jemalloc' 'abseil-cpp' 
'libdispatch')
+makedepends=('cmake' 'git' 'ninja' 'python' 'range-v3' 'tl-expected' 
'microsoft-gsl' 'meson'
+ 'extra-cmake-modules' 'wayland-protocols' 
'plasma-wayland-protocols' 'libtg_owt')
+optdepends=('webkit2gtk: embedded browser features'
+'xdg-desktop-portal: desktop integration')
+source=("https://github.com/telegramdesktop/tdesktop/releases/download/v${pkgver}/tdesktop-${pkgver}-full.tar.gz";
+   )
+sha512sums=('dd216c720ea3b1c72669805bb31319746a7ddfe746d188bf2ae0c5cdf0a10b379fc2e888a26fe755d77381fc5d9aa638cedc76b2dce1f1126a9c1ef9c02da2ba'
+   )
+
+prepare() {
+cd tdesktop-$pkgver-full
+}
+
+build() {
+cd tdesktop-$pkgver-full
+
+# Fix https://bugs.archlinux.org/task/73220
+export CXXFLAGS+=" -Wp,-U_GLIBCXX_ASSERTIONS"
+
+export PKG_CONFIG_PATH='/usr/lib/ffmpeg4.4/pkgconfig'
+#Turns out we're allowed to use the official API key that telegram uses 
for their snap builds:
+# 
https://github.com/telegramdesktop/tdesktop/blob/8fab9167beb2407c1153930ed03a4badd0c2b59f/snap/snapcraft.yaml#L87-L88
+# Thanks @primeos!
+cmake \
+-B build \
+-G Ninja \
+-DCMAKE_INSTALL_PREFIX="/usr" \
+-DCMAKE_BUILD_TYPE=Release \
+-DTDESKTOP_API_ID=611335 \
+-DTDESKTOP_API_HASH=d524b414d21f4d37f08684c1df41ac9c
+sed -i "s|/usr/lib/libav|/usr/lib/ffmpeg4.4/libav|g" build/build.ninja
+sed -i "s|/usr/lib/libsw|/usr/lib/ffmpeg4.4/libsw|g" build/build.ninja
+sed -i "s|-lavcodec|/usr/lib/ffmpeg4.4/libavcodec.so|g" build/build.ninja
+sed -i "s|-lavformat|/usr/lib/ffmpeg4.4/libavformat.so|g" build/build.ninja
+sed -i "s|-lavutil|/usr/lib/ffmpeg4.4/libavutil.so|g" build/build.ninja
+sed -i "s|-lswscale|/usr/lib/ffmpeg4.4/libswscale.so|g" build/build.ninja
+sed -i "s|-lswresample|/usr/lib/ffmpeg4.4/libswresample.so|g" 
build/build.ninja
+ninja -C build
+}
+
+package() {
+cd tdesktop-$pkgver-full
+DESTDIR="$pkgdir" ninja -C build install
+# They botched the release and put a lot of stuff here.
+rm -rf "$pkgdir/build"
+}

Copied: telegram-desktop/repos/community-testing-x86_64/fix-ffmpeg5.patch (from 
rev 1185871, telegram-desktop/trunk/fix-ffmpeg5.patch)
===
--- community-testing-x86_64/fix-ffmpeg5.patch  (rev 0)
+++ community-testing-x86_64/fix-ffmpeg5.patch  2022-04-11 16:45:05 UTC (rev 
1185872)
@@ -0,0 +1,72 @@
+From e89d9ca78abf7dc4fe7c832c07917696eb993868 Mon Sep 17 00:00:00 2001
+From: Nicholas Guriev 
+Date: Mon, 7 Mar 2022 11:52:01 +0300
+Subject: [PATCH] Fix build against FFmpeg v5.0
+
+It has been released on January 17th. This patch keeps source compatibility
+with older versions.
+---
+ tgcalls/group/AudioStreamingPartInternal.cpp  | 5 -
+ tgcalls/group/AudioStreamingPartPersistentDecoder.cpp | 2 +-
+ tgcalls/group/VideoStreamingPart.cpp  | 5 -
+ 3 files changed, 9 insertions(+), 3 deletions(-)
+
+diff --git a/tgcalls/group/AudioStreamingPartInternal.cpp 
b/tgcalls/group/AudioStreamingPartInternal.cpp
+index 27a71cb..5639036 100644
+--- a/tgcalls/group/AudioStreamingPartInternal.cpp
 b/tgcalls/group/AudioStreamingPartInternal.cpp
+@@ -104,6 +104,9 @@ _avIoContext(std::move(fileData)) {
+ 
+ _frame = av_frame_alloc();
+ 
++#if LIBAVFORMAT_VERSION_MAJOR >= 59
++const
++#endif
+ AVInputFormat *inputFormat = av_find_input_format(container.c_str());
+ if (!inp

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

2022-04-11 Thread Jiachen Yang via arch-commits
Date: Monday, April 11, 2022 @ 16:44:35
  Author: farseerfc
Revision: 1185871

upgpkg: telegram-desktop 3.6.1-3: build against ffmpeg4.4 again

Modified:
  telegram-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 16:38:19 UTC (rev 1185870)
+++ PKGBUILD2022-04-11 16:44:35 UTC (rev 1185871)
@@ -2,12 +2,12 @@
 # Contributor: hexchain 
 pkgname=telegram-desktop
 pkgver=3.6.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Official Telegram Desktop client'
 arch=('x86_64')
 url="https://desktop.telegram.org/";
 license=('GPL3')
-depends=('hunspell' 'ffmpeg' 'hicolor-icon-theme' 'lz4' 'minizip' 'openal' 
'ttf-opensans'
+depends=('hunspell' 'ffmpeg4.4' 'hicolor-icon-theme' 'lz4' 'minizip' 'openal' 
'ttf-opensans'
  'qt6-imageformats' 'qt6-svg' 'qt6-wayland' 'qt6-5compat' 'xxhash' 
'glibmm'
  'rnnoise' 'pipewire' 'libxtst' 'libxrandr' 'jemalloc' 'abseil-cpp' 
'libdispatch')
 makedepends=('cmake' 'git' 'ninja' 'python' 'range-v3' 'tl-expected' 
'microsoft-gsl' 'meson'
@@ -15,13 +15,12 @@
 optdepends=('webkit2gtk: embedded browser features'
 'xdg-desktop-portal: desktop integration')
 
source=("https://github.com/telegramdesktop/tdesktop/releases/download/v${pkgver}/tdesktop-${pkgver}-full.tar.gz";
-fix-ffmpeg5.patch)
+   )
 
sha512sums=('dd216c720ea3b1c72669805bb31319746a7ddfe746d188bf2ae0c5cdf0a10b379fc2e888a26fe755d77381fc5d9aa638cedc76b2dce1f1126a9c1ef9c02da2ba'
-
'6c6b1e3135ce670ecdceb11aa10fdc177951ae2088b7172249f4050b0a30346a8ebd2691302afe270acded2cef4d6eef930f8375b9a676ffcebd6801e645d6fe')
+   )
 
 prepare() {
 cd tdesktop-$pkgver-full
-patch -Np1 -d Telegram/ThirdParty/tgcalls -i "$srcdir"/fix-ffmpeg5.patch
 }
 
 build() {
@@ -30,7 +29,8 @@
 # Fix https://bugs.archlinux.org/task/73220
 export CXXFLAGS+=" -Wp,-U_GLIBCXX_ASSERTIONS"
 
-# Turns out we're allowed to use the official API key that telegram uses 
for their snap builds:
+export PKG_CONFIG_PATH='/usr/lib/ffmpeg4.4/pkgconfig'
+#Turns out we're allowed to use the official API key that telegram uses 
for their snap builds:
 # 
https://github.com/telegramdesktop/tdesktop/blob/8fab9167beb2407c1153930ed03a4badd0c2b59f/snap/snapcraft.yaml#L87-L88
 # Thanks @primeos!
 cmake \
@@ -40,6 +40,13 @@
 -DCMAKE_BUILD_TYPE=Release \
 -DTDESKTOP_API_ID=611335 \
 -DTDESKTOP_API_HASH=d524b414d21f4d37f08684c1df41ac9c
+sed -i "s|/usr/lib/libav|/usr/lib/ffmpeg4.4/libav|g" build/build.ninja
+sed -i "s|/usr/lib/libsw|/usr/lib/ffmpeg4.4/libsw|g" build/build.ninja
+sed -i "s|-lavcodec|/usr/lib/ffmpeg4.4/libavcodec.so|g" build/build.ninja
+sed -i "s|-lavformat|/usr/lib/ffmpeg4.4/libavformat.so|g" build/build.ninja
+sed -i "s|-lavutil|/usr/lib/ffmpeg4.4/libavutil.so|g" build/build.ninja
+sed -i "s|-lswscale|/usr/lib/ffmpeg4.4/libswscale.so|g" build/build.ninja
+sed -i "s|-lswresample|/usr/lib/ffmpeg4.4/libswresample.so|g" 
build/build.ninja
 ninja -C build
 }
 



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

2022-04-11 Thread Jiachen Yang via arch-commits
Date: Monday, April 11, 2022 @ 16:38:19
  Author: farseerfc
Revision: 1185870

archrelease: copy trunk to community-testing-x86_64

Added:
  libtg_owt/repos/community-testing-x86_64/
  libtg_owt/repos/community-testing-x86_64/PKGBUILD
(from rev 1185869, libtg_owt/trunk/PKGBUILD)

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

Copied: libtg_owt/repos/community-testing-x86_64/PKGBUILD (from rev 1185869, 
libtg_owt/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-04-11 16:38:19 UTC (rev 1185870)
@@ -0,0 +1,65 @@
+# Maintainer: Jiachen YANG 
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=libtg_owt
+# It seems the currently desired version can be gotten from
+# 
https://github.com/telegramdesktop/tdesktop/blob/dev/Telegram/build/docker/centos_env/Dockerfile
+_commit=a264028
+pkgver=0.git12.${_commit}
+pkgrel=2
+pkgdesc='WebRTC library'
+arch=('x86_64')
+url='https://github.com/desktop-app/tg_owt'
+license=('BSD')
+# libdrm is dynamically loaded via dlopen
+depends=('libdrm')
+makedepends=('git' 'ninja' 'unzip' 'cmake' 'protobuf' 'libxrandr' 
'libxcomposite' 'openssl' 'glibc'
+ 'ffmpeg4.4' 'libva' 'opus' 'yasm' 'libjpeg-turbo' 'pipewire' 
'libxtst' 'abseil-cpp' 'libepoxy')
+options=('staticlibs')
+source=("tg_owt::git+${url}.git#commit=${_commit}"
+"libvpx::git+https://chromium.googlesource.com/webm/libvpx.git";
+"libyuv::git+https://chromium.googlesource.com/libyuv/libyuv.git";
+"pipewire::git+https://github.com/PipeWire/pipewire.git";)
+b2sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd tg_owt
+  git submodule init
+  git config submodule.src/third_party/libvpx/source/libvpx.url 
"$srcdir"/libvpx
+  git config submodule.src/third_party/libyuv.url "$srcdir"/libyuv
+  git config submodule.src/third_party/pipewire.url "$srcdir"/pipewire
+  git submodule update
+}
+
+build() {
+  cd tg_owt
+
+  export CFLAGS+=" -ffat-lto-objects"
+  export CXXFLAGS+=" -ffat-lto-objects -I/usr/include/libdrm"
+  export PKG_CONFIG_PATH='/usr/lib/ffmpeg4.4/pkgconfig'
+  # Upstream stated that only static builds are really supported so that's 
what we'll do.
+  # https://github.com/desktop-app/tg_owt/issues/75#issuecomment-992061171
+  cmake \
+-B build \
+-G Ninja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_SHARED_LIBS=OFF
+  sed -i "s|/usr/lib/libav|/usr/lib/ffmpeg4.4/libav|g" build/build.ninja
+  sed -i "s|/usr/lib/libsw|/usr/lib/ffmpeg4.4/libsw|g" build/build.ninja
+  sed -i "s|-lavcodec|/usr/lib/ffmpeg4.4/libavcodec.so|g" build/build.ninja
+  sed -i "s|-lavformat|/usr/lib/ffmpeg4.4/libavformat.so|g" build/build.ninja
+  sed -i "s|-lavutil|/usr/lib/ffmpeg4.4/libavutil.so|g" build/build.ninja
+  sed -i "s|-lswscale|/usr/lib/ffmpeg4.4/libswscale.so|g" build/build.ninja
+  sed -i "s|-lswresample|/usr/lib/ffmpeg4.4/libswresample.so|g" 
build/build.ninja
+  ninja -C build
+}
+
+package() {
+  cd tg_owt
+  DESTDIR="${pkgdir}/" ninja -C build install
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-04-11 Thread Jiachen Yang via arch-commits
Date: Monday, April 11, 2022 @ 16:37:49
  Author: farseerfc
Revision: 1185869

upgpkg: libtg_owt 0.git12.a264028-2: build against ffmpeg4.4 again

Modified:
  libtg_owt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 16:26:45 UTC (rev 1185868)
+++ PKGBUILD2022-04-11 16:37:49 UTC (rev 1185869)
@@ -6,7 +6,7 @@
 # 
https://github.com/telegramdesktop/tdesktop/blob/dev/Telegram/build/docker/centos_env/Dockerfile
 _commit=a264028
 pkgver=0.git12.${_commit}
-pkgrel=1
+pkgrel=2
 pkgdesc='WebRTC library'
 arch=('x86_64')
 url='https://github.com/desktop-app/tg_owt'
@@ -14,7 +14,7 @@
 # libdrm is dynamically loaded via dlopen
 depends=('libdrm')
 makedepends=('git' 'ninja' 'unzip' 'cmake' 'protobuf' 'libxrandr' 
'libxcomposite' 'openssl' 'glibc'
- 'ffmpeg' 'libva' 'opus' 'yasm' 'libjpeg-turbo' 'pipewire' 
'libxtst' 'abseil-cpp' 'libepoxy')
+ 'ffmpeg4.4' 'libva' 'opus' 'yasm' 'libjpeg-turbo' 'pipewire' 
'libxtst' 'abseil-cpp' 'libepoxy')
 options=('staticlibs')
 source=("tg_owt::git+${url}.git#commit=${_commit}"
 "libvpx::git+https://chromium.googlesource.com/webm/libvpx.git";
@@ -39,6 +39,7 @@
 
   export CFLAGS+=" -ffat-lto-objects"
   export CXXFLAGS+=" -ffat-lto-objects -I/usr/include/libdrm"
+  export PKG_CONFIG_PATH='/usr/lib/ffmpeg4.4/pkgconfig'
   # Upstream stated that only static builds are really supported so that's 
what we'll do.
   # https://github.com/desktop-app/tg_owt/issues/75#issuecomment-992061171
   cmake \
@@ -47,6 +48,13 @@
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DBUILD_SHARED_LIBS=OFF
+  sed -i "s|/usr/lib/libav|/usr/lib/ffmpeg4.4/libav|g" build/build.ninja
+  sed -i "s|/usr/lib/libsw|/usr/lib/ffmpeg4.4/libsw|g" build/build.ninja
+  sed -i "s|-lavcodec|/usr/lib/ffmpeg4.4/libavcodec.so|g" build/build.ninja
+  sed -i "s|-lavformat|/usr/lib/ffmpeg4.4/libavformat.so|g" build/build.ninja
+  sed -i "s|-lavutil|/usr/lib/ffmpeg4.4/libavutil.so|g" build/build.ninja
+  sed -i "s|-lswscale|/usr/lib/ffmpeg4.4/libswscale.so|g" build/build.ninja
+  sed -i "s|-lswresample|/usr/lib/ffmpeg4.4/libswresample.so|g" 
build/build.ninja
   ninja -C build
 }
 



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

2022-04-11 Thread Sergej Pupykin via arch-commits
Date: Monday, April 11, 2022 @ 16:26:45
  Author: spupykin
Revision: 1185868

archrelease: copy trunk to community-any

Added:
  wanderlust/repos/community-any/PKGBUILD
(from rev 1185867, wanderlust/trunk/PKGBUILD)
  wanderlust/repos/community-any/wanderlust.install
(from rev 1185867, wanderlust/trunk/wanderlust.install)
Deleted:
  wanderlust/repos/community-any/PKGBUILD
  wanderlust/repos/community-any/wanderlust.install

+
 PKGBUILD   |   58 +--
 wanderlust.install |   26 +++---
 2 files changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 16:26:35 UTC (rev 1185867)
+++ PKGBUILD2022-04-11 16:26:45 UTC (rev 1185868)
@@ -1,29 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Norberto Lopes 
-
-pkgname=wanderlust
-pkgver=20210407
-_commit=6e189fc944a9bbde76c5a6d9b6a38d57e85e6390
-pkgrel=2
-pkgdesc="Mail/News reader supporting IMAP4rev1 for emacs."
-arch=(any)
-url="https://github.com/wanderlust/wanderlust/";
-license=('GPL')
-depends=('emacs' 'emacs-apel>=10.7' 'flim' 'semi')
-makedepends=('git')
-#optdepends=('bbdb: contact management utility')
-install=wanderlust.install
-source=("wanderlust::git://github.com/wanderlust/wanderlust.git#commit=${_commit}")
-sha256sums=('SKIP')
-
-package() {
-  cd "$srcdir"/wanderlust
-  PIXMAPDIR=/usr/share/emacs/`emacs -batch -eval "(princ (format \"%d.%d\" 
emacs-major-version emacs-minor-version))"`/etc/wl/icons/
-  install -dm0755 "$pkgdir"/usr/share/info
-  make all info
-  make install install-info \
-   LISPDIR="$pkgdir"/usr/share/emacs/site-lisp \
-   PIXMAPDIR="$pkgdir"$PIXMAPDIR \
-   INFODIR="$pkgdir"/usr/share/info
-  install -m644 utils/ssl.el "$pkgdir"/usr/share/emacs/site-lisp/ssl.el
-}

Copied: wanderlust/repos/community-any/PKGBUILD (from rev 1185867, 
wanderlust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 16:26:45 UTC (rev 1185868)
@@ -0,0 +1,29 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Norberto Lopes 
+
+pkgname=wanderlust
+pkgver=20220103
+_commit=638d089bba25ce8184c981d0721eba6417b3d7e2
+pkgrel=1
+pkgdesc="Mail/News reader supporting IMAP4rev1 for emacs."
+arch=(any)
+url="https://github.com/wanderlust/wanderlust/";
+license=('GPL')
+depends=('emacs' 'emacs-apel>=10.7' 'flim' 'semi')
+makedepends=('git')
+#optdepends=('bbdb: contact management utility')
+install=wanderlust.install
+source=("wanderlust::git+https://github.com/wanderlust/wanderlust.git#commit=${_commit}";)
+sha256sums=('SKIP')
+
+package() {
+  cd "$srcdir"/wanderlust
+  PIXMAPDIR=/usr/share/emacs/`emacs -batch -eval "(princ (format \"%d.%d\" 
emacs-major-version emacs-minor-version))"`/etc/wl/icons/
+  install -dm0755 "$pkgdir"/usr/share/info
+  make all info
+  make install install-info \
+   LISPDIR="$pkgdir"/usr/share/emacs/site-lisp \
+   PIXMAPDIR="$pkgdir"$PIXMAPDIR \
+   INFODIR="$pkgdir"/usr/share/info
+  install -m644 utils/ssl.el "$pkgdir"/usr/share/emacs/site-lisp/ssl.el
+}

Deleted: wanderlust.install
===
--- wanderlust.install  2022-04-11 16:26:35 UTC (rev 1185867)
+++ wanderlust.install  2022-04-11 16:26:45 UTC (rev 1185868)
@@ -1,13 +0,0 @@
-post_install () {
-cat << EOF
-==> Put this in your $HOME/.emacs file to enable Wanderlust
-
-(autoload 'wl "wl" "Wanderlust" t)
-(autoload 'wl-other-frame "wl" "Wanderlust on new frame." t)
-(autoload 'wl-draft "wl-draft" "Write draft with Wanderlust." t)
-EOF
-}
-
-post_upgrade () {
-  post_install $1
-}

Copied: wanderlust/repos/community-any/wanderlust.install (from rev 1185867, 
wanderlust/trunk/wanderlust.install)
===
--- wanderlust.install  (rev 0)
+++ wanderlust.install  2022-04-11 16:26:45 UTC (rev 1185868)
@@ -0,0 +1,13 @@
+post_install () {
+cat << EOF
+==> Put this in your $HOME/.emacs file to enable Wanderlust
+
+(autoload 'wl "wl" "Wanderlust" t)
+(autoload 'wl-other-frame "wl" "Wanderlust on new frame." t)
+(autoload 'wl-draft "wl-draft" "Write draft with Wanderlust." t)
+EOF
+}
+
+post_upgrade () {
+  post_install $1
+}



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

2022-04-11 Thread Sergej Pupykin via arch-commits
Date: Monday, April 11, 2022 @ 16:26:35
  Author: spupykin
Revision: 1185867

upgpkg: wanderlust 20220103-1

Modified:
  wanderlust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 16:26:31 UTC (rev 1185866)
+++ PKGBUILD2022-04-11 16:26:35 UTC (rev 1185867)
@@ -2,9 +2,9 @@
 # Contributor: Norberto Lopes 
 
 pkgname=wanderlust
-pkgver=20210407
-_commit=6e189fc944a9bbde76c5a6d9b6a38d57e85e6390
-pkgrel=2
+pkgver=20220103
+_commit=638d089bba25ce8184c981d0721eba6417b3d7e2
+pkgrel=1
 pkgdesc="Mail/News reader supporting IMAP4rev1 for emacs."
 arch=(any)
 url="https://github.com/wanderlust/wanderlust/";
@@ -13,7 +13,7 @@
 makedepends=('git')
 #optdepends=('bbdb: contact management utility')
 install=wanderlust.install
-source=("wanderlust::git://github.com/wanderlust/wanderlust.git#commit=${_commit}")
+source=("wanderlust::git+https://github.com/wanderlust/wanderlust.git#commit=${_commit}";)
 sha256sums=('SKIP')
 
 package() {



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

2022-04-11 Thread Sergej Pupykin via arch-commits
Date: Monday, April 11, 2022 @ 16:26:31
  Author: spupykin
Revision: 1185866

archrelease: copy trunk to community-any

Added:
  semi/repos/community-any/PKGBUILD
(from rev 1185865, semi/trunk/PKGBUILD)
Deleted:
  semi/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 16:26:23 UTC (rev 1185865)
+++ PKGBUILD2022-04-11 16:26:31 UTC (rev 1185866)
@@ -1,25 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Norberto Lopes 
-
-pkgname=semi
-pkgver=1.14.6
-_commit=16228dc2d147d6ba8762c10fb25c54a3757ee9b0
-pkgrel=8
-pkgdesc="A library to provide MIME feature for GNU Emacs."
-arch=(any)
-url="https://github.com/wanderlust/semi";
-license=('GPL')
-depends=('emacs' 'emacs-apel>=10.7' 'flim>=1.6.0')
-makedepends=('git')
-source=("git+https://github.com/wanderlust/semi#commit=${_commit}";)
-sha256sums=('SKIP')
-
-build() {
-  cd "$srcdir"/semi
-  make
-}
-
-package() {
-  cd "$srcdir"/semi
-  make install PREFIX="$pkgdir"/usr
-}

Copied: semi/repos/community-any/PKGBUILD (from rev 1185865, 
semi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 16:26:31 UTC (rev 1185866)
@@ -0,0 +1,25 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Norberto Lopes 
+
+pkgname=semi
+pkgver=1.14.6
+_commit=509f6f0bc2f5d020c63e47d9ad89410dc20bcb6f
+pkgrel=9
+pkgdesc="A library to provide MIME feature for GNU Emacs."
+arch=(any)
+url="https://github.com/wanderlust/semi";
+license=('GPL')
+depends=('emacs' 'emacs-apel>=10.7' 'flim>=1.6.0')
+makedepends=('git')
+source=("git+https://github.com/wanderlust/semi#commit=${_commit}";)
+sha256sums=('SKIP')
+
+build() {
+  cd "$srcdir"/semi
+  make
+}
+
+package() {
+  cd "$srcdir"/semi
+  make install PREFIX="$pkgdir"/usr
+}



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

2022-04-11 Thread Sergej Pupykin via arch-commits
Date: Monday, April 11, 2022 @ 16:26:23
  Author: spupykin
Revision: 1185865

upgpkg: semi 1.14.6-9

Modified:
  semi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 16:26:18 UTC (rev 1185864)
+++ PKGBUILD2022-04-11 16:26:23 UTC (rev 1185865)
@@ -3,8 +3,8 @@
 
 pkgname=semi
 pkgver=1.14.6
-_commit=16228dc2d147d6ba8762c10fb25c54a3757ee9b0
-pkgrel=8
+_commit=509f6f0bc2f5d020c63e47d9ad89410dc20bcb6f
+pkgrel=9
 pkgdesc="A library to provide MIME feature for GNU Emacs."
 arch=(any)
 url="https://github.com/wanderlust/semi";



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

2022-04-11 Thread Sergej Pupykin via arch-commits
Date: Monday, April 11, 2022 @ 16:26:18
  Author: spupykin
Revision: 1185864

archrelease: copy trunk to community-any

Added:
  flim/repos/community-any/PKGBUILD
(from rev 1185863, flim/trunk/PKGBUILD)
Deleted:
  flim/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 16:26:10 UTC (rev 1185863)
+++ PKGBUILD2022-04-11 16:26:18 UTC (rev 1185864)
@@ -1,25 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Norberto Lopes 
-# Maintainer: Stefan Husmann 
-
-pkgname=flim
-pkgver=1.14.9
-_commit=e4bd54fd7d335215b54f7ef27ed974c8cd68d472
-pkgrel=8
-pkgdesc="A library to provide basic features about message representation or 
encoding."
-arch=('any')
-url="https://github.com/wanderlust/flim";
-license=('GPL')
-depends=('emacs' 'emacs-apel>=10.7')
-makedepends=('git')
-source=("git+https://github.com/wanderlust/flim#commit=${_commit}";)
-sha256sums=('SKIP')
-
-build() {
-  cd "$srcdir"/$pkgname
-  make
-}
-package() {
-  cd "$srcdir"/$pkgname
-  make install PREFIX="$pkgdir"/usr
-}

Copied: flim/repos/community-any/PKGBUILD (from rev 1185863, 
flim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 16:26:18 UTC (rev 1185864)
@@ -0,0 +1,25 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Norberto Lopes 
+# Maintainer: Stefan Husmann 
+
+pkgname=flim
+pkgver=1.14.9
+_commit=02735dede6603987e8309a76d0bc7a9ff9a5a227
+pkgrel=9
+pkgdesc="A library to provide basic features about message representation or 
encoding."
+arch=('any')
+url="https://github.com/wanderlust/flim";
+license=('GPL')
+depends=('emacs' 'emacs-apel>=10.7')
+makedepends=('git')
+source=("git+https://github.com/wanderlust/flim#commit=${_commit}";)
+sha256sums=('SKIP')
+
+build() {
+  cd "$srcdir"/$pkgname
+  make
+}
+package() {
+  cd "$srcdir"/$pkgname
+  make install PREFIX="$pkgdir"/usr
+}



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

2022-04-11 Thread Sergej Pupykin via arch-commits
Date: Monday, April 11, 2022 @ 16:26:10
  Author: spupykin
Revision: 1185863

upgpkg: flim 1.14.9-9

Modified:
  flim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 16:26:06 UTC (rev 1185862)
+++ PKGBUILD2022-04-11 16:26:10 UTC (rev 1185863)
@@ -4,8 +4,8 @@
 
 pkgname=flim
 pkgver=1.14.9
-_commit=e4bd54fd7d335215b54f7ef27ed974c8cd68d472
-pkgrel=8
+_commit=02735dede6603987e8309a76d0bc7a9ff9a5a227
+pkgrel=9
 pkgdesc="A library to provide basic features about message representation or 
encoding."
 arch=('any')
 url="https://github.com/wanderlust/flim";



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

2022-04-11 Thread Sergej Pupykin via arch-commits
Date: Monday, April 11, 2022 @ 16:26:06
  Author: spupykin
Revision: 1185862

archrelease: copy trunk to community-any

Added:
  emacs-apel/repos/community-any/PKGBUILD
(from rev 1185861, emacs-apel/trunk/PKGBUILD)
Deleted:
  emacs-apel/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 16:25:56 UTC (rev 1185861)
+++ PKGBUILD2022-04-11 16:26:06 UTC (rev 1185862)
@@ -1,25 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Ismael Barros (RazZziel) 
-
-pkgname=emacs-apel
-pkgver=10.8.20170122
-_commit=339eb28ffae3165255a79de9b1fd362f43cd37c3
-pkgrel=2
-pkgdesc="A library for making portable Emacs Lisp programs."
-arch=(any)
-url="https://github.com/wanderlust/apel";
-license=('GPL')
-depends=('emacs')
-makedepends=('git')
-source=("apel-$pkgver::git://github.com/wanderlust/apel#commit=${_commit}")
-md5sums=('SKIP')
-
-build() {
-  cd "$srcdir"/apel-$pkgver
-  make
-}
-
-package() {
-  cd "$srcdir"/apel-$pkgver
-  make install PREFIX="$pkgdir"/usr
-}

Copied: emacs-apel/repos/community-any/PKGBUILD (from rev 1185861, 
emacs-apel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 16:26:06 UTC (rev 1185862)
@@ -0,0 +1,25 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Ismael Barros (RazZziel) 
+
+pkgname=emacs-apel
+pkgver=10.8.20201107
+_commit=4e3269b6e702db2dba48cf560563ac883e81e3bf
+pkgrel=1
+pkgdesc="A library for making portable Emacs Lisp programs."
+arch=(any)
+url="https://github.com/wanderlust/apel";
+license=('GPL')
+depends=('emacs')
+makedepends=('git')
+source=("apel-$pkgver::git+https://github.com/wanderlust/apel#commit=${_commit}";)
+md5sums=('SKIP')
+
+build() {
+  cd "$srcdir"/apel-$pkgver
+  make
+}
+
+package() {
+  cd "$srcdir"/apel-$pkgver
+  make install PREFIX="$pkgdir"/usr
+}



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

2022-04-11 Thread Sergej Pupykin via arch-commits
Date: Monday, April 11, 2022 @ 16:25:56
  Author: spupykin
Revision: 1185861

upgpkg: emacs-apel 10.8.20201107-1

Modified:
  emacs-apel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 16:24:07 UTC (rev 1185860)
+++ PKGBUILD2022-04-11 16:25:56 UTC (rev 1185861)
@@ -2,9 +2,9 @@
 # Contributor: Ismael Barros (RazZziel) 
 
 pkgname=emacs-apel
-pkgver=10.8.20170122
-_commit=339eb28ffae3165255a79de9b1fd362f43cd37c3
-pkgrel=2
+pkgver=10.8.20201107
+_commit=4e3269b6e702db2dba48cf560563ac883e81e3bf
+pkgrel=1
 pkgdesc="A library for making portable Emacs Lisp programs."
 arch=(any)
 url="https://github.com/wanderlust/apel";
@@ -11,7 +11,7 @@
 license=('GPL')
 depends=('emacs')
 makedepends=('git')
-source=("apel-$pkgver::git://github.com/wanderlust/apel#commit=${_commit}")
+source=("apel-$pkgver::git+https://github.com/wanderlust/apel#commit=${_commit}";)
 md5sums=('SKIP')
 
 build() {



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

2022-04-11 Thread Maxim Baz via arch-commits
Date: Monday, April 11, 2022 @ 16:24:03
  Author: maximbaz
Revision: 1185859

upgpkg: wire-desktop 3.27.2944-1

Modified:
  wire-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 16:11:53 UTC (rev 1185858)
+++ PKGBUILD2022-04-11 16:24:03 UTC (rev 1185859)
@@ -2,7 +2,7 @@
 # Contributor: Conor Anderson 
 
 pkgname=wire-desktop
-pkgver=3.27.2943
+pkgver=3.27.2944
 pkgrel=1
 pkgdesc='End-to-end encrypted messenger with file sharing, voice calls and 
video conferences'
 arch=('any')
@@ -14,7 +14,7 @@
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/wireapp/${pkgname}/archive/linux/${pkgver}.tar.gz";
 
"${pkgname}-${pkgver}.tar.gz.sig::https://github.com/wireapp/${pkgname}/releases/download/linux%2F${pkgver}/${pkgname}-linux-${pkgver}.tar.gz.sig";
 "${pkgname}.desktop")
-sha256sums=('7739695504699660021217ea5fe34f2ae1b3ec2c0acf7d23e334eecc79ed4511'
+sha256sums=('378c945e6933855407aa03fe49a934409675bdfc370398c8f21da1fd13832af9'
 'SKIP'
 '53f37e99d4c2f41a3e31fd70154d82ba06a4af578c68df86af4906f7f37ec787')
 validpgpkeys=('ABBA007D6E14E2DB5B283C45D599C1AA126762B1')



[arch-commits] Commit in wire-desktop/repos/community-any (4 files)

2022-04-11 Thread Maxim Baz via arch-commits
Date: Monday, April 11, 2022 @ 16:24:07
  Author: maximbaz
Revision: 1185860

archrelease: copy trunk to community-any

Added:
  wire-desktop/repos/community-any/PKGBUILD
(from rev 1185859, wire-desktop/trunk/PKGBUILD)
  wire-desktop/repos/community-any/wire-desktop.desktop
(from rev 1185859, wire-desktop/trunk/wire-desktop.desktop)
Deleted:
  wire-desktop/repos/community-any/PKGBUILD
  wire-desktop/repos/community-any/wire-desktop.desktop

--+
 PKGBUILD |  108 -
 wire-desktop.desktop |   26 +--
 2 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 16:24:03 UTC (rev 1185859)
+++ PKGBUILD2022-04-11 16:24:07 UTC (rev 1185860)
@@ -1,54 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Conor Anderson 
-
-pkgname=wire-desktop
-pkgver=3.27.2943
-pkgrel=1
-pkgdesc='End-to-end encrypted messenger with file sharing, voice calls and 
video conferences'
-arch=('any')
-url='https://wire.com/'
-license=('GPL3')
-depends=('electron13' 'xdg-utils')
-makedepends=('git' 'npm' 'yarn')
-optdepends=('emoji-font: colorful emoji')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/wireapp/${pkgname}/archive/linux/${pkgver}.tar.gz";
-
"${pkgname}-${pkgver}.tar.gz.sig::https://github.com/wireapp/${pkgname}/releases/download/linux%2F${pkgver}/${pkgname}-linux-${pkgver}.tar.gz.sig";
-"${pkgname}.desktop")
-sha256sums=('7739695504699660021217ea5fe34f2ae1b3ec2c0acf7d23e334eecc79ed4511'
-'SKIP'
-'53f37e99d4c2f41a3e31fd70154d82ba06a4af578c68df86af4906f7f37ec787')
-validpgpkeys=('ABBA007D6E14E2DB5B283C45D599C1AA126762B1')
-
-prepare() {
-# Create launcher script
-cat << EOF > "${pkgname}"
-#!/usr/bin/env sh
-
-electron13 "/usr/lib/${pkgname}" "\$@"
-EOF
-}
-
-build() {
-cd "${pkgname}-linux-${pkgver}"
-
-yarn
-BUILD_NUMBER="${pkgver##*.}" LINUX_TARGET=dir ENABLE_ASAR=false yarn 
build:linux
-}
-
-package() {
-# Place files
-install -d "${pkgdir}/usr/lib/${pkgname}"
-cp -a 
"${pkgname}-linux-${pkgver}/wrap/dist/linux-unpacked/resources/app/"{electron,node_modules,package.json}
 "${pkgdir}/usr/lib/${pkgname}"
-
-# Place launcher script
-install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
-
-# Place desktop entry and icon
-desktop-file-install -m 644 --dir "${pkgdir}/usr/share/applications/" 
"${pkgname}.desktop"
-local res
-for res in 32x32 256x256; do
-install -Dm644 "${pkgname}-linux-${pkgver}/resources/icons/${res}.png" 
"${pkgdir}/usr/share/icons/hicolor/${res}/apps/${pkgname}.png"
-done
-}
-
-# vim:set ts=4 sw=4 et:

Copied: wire-desktop/repos/community-any/PKGBUILD (from rev 1185859, 
wire-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 16:24:07 UTC (rev 1185860)
@@ -0,0 +1,54 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Conor Anderson 
+
+pkgname=wire-desktop
+pkgver=3.27.2944
+pkgrel=1
+pkgdesc='End-to-end encrypted messenger with file sharing, voice calls and 
video conferences'
+arch=('any')
+url='https://wire.com/'
+license=('GPL3')
+depends=('electron13' 'xdg-utils')
+makedepends=('git' 'npm' 'yarn')
+optdepends=('emoji-font: colorful emoji')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/wireapp/${pkgname}/archive/linux/${pkgver}.tar.gz";
+
"${pkgname}-${pkgver}.tar.gz.sig::https://github.com/wireapp/${pkgname}/releases/download/linux%2F${pkgver}/${pkgname}-linux-${pkgver}.tar.gz.sig";
+"${pkgname}.desktop")
+sha256sums=('378c945e6933855407aa03fe49a934409675bdfc370398c8f21da1fd13832af9'
+'SKIP'
+'53f37e99d4c2f41a3e31fd70154d82ba06a4af578c68df86af4906f7f37ec787')
+validpgpkeys=('ABBA007D6E14E2DB5B283C45D599C1AA126762B1')
+
+prepare() {
+# Create launcher script
+cat << EOF > "${pkgname}"
+#!/usr/bin/env sh
+
+electron13 "/usr/lib/${pkgname}" "\$@"
+EOF
+}
+
+build() {
+cd "${pkgname}-linux-${pkgver}"
+
+yarn
+BUILD_NUMBER="${pkgver##*.}" LINUX_TARGET=dir ENABLE_ASAR=false yarn 
build:linux
+}
+
+package() {
+# Place files
+install -d "${pkgdir}/usr/lib/${pkgname}"
+cp -a 
"${pkgname}-linux-${pkgver}/wrap/dist/linux-unpacked/resources/app/"{electron,node_modules,package.json}
 "${pkgdir}/usr/lib/${pkgname}"
+
+# Place launcher script
+install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
+
+# Place desktop entry and icon
+desktop-file-install -m 644 --dir "${pkgdir}/usr/share/applications/" 
"${pkgname}.desktop"
+local res
+for res in 32x32 256x256; do
+install -Dm644 "${pkgname}-linux-${pkgver}/resources/icons/${res}.png" 
"${pkgdir}/usr/share/icons/hicolor/${res}/apps/${pkgname}.png"
+done
+}
+
+# vim:set ts=4 

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

2022-04-11 Thread Jiachen Yang via arch-commits
Date: Monday, April 11, 2022 @ 16:11:53
  Author: farseerfc
Revision: 1185858

archrelease: copy trunk to community-x86_64

Added:
  xfsdump/repos/community-x86_64/PKGBUILD
(from rev 1185857, xfsdump/trunk/PKGBUILD)
Deleted:
  xfsdump/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 16:11:19 UTC (rev 1185857)
+++ PKGBUILD2022-04-11 16:11:53 UTC (rev 1185858)
@@ -1,35 +0,0 @@
-# Maintainer: Jiachen YANG 
-# Contributor: Allen Wild 
-# Contributor: judd 
-# Contributor: dkaylor 
-# Contributor: Pablo Lezaeta 
-
-pkgname=xfsdump
-pkgver=3.1.9
-pkgrel=1
-pkgdesc="Additional XFS filesystem utilities"
-arch=(x86_64)
-url="http://xfs.org";
-license=('GPL')
-depends=('xfsprogs' 'attr' 'acl' 'dmapi')
-source=(https://kernel.org/pub/linux/utils/fs/xfs/xfsdump/xfsdump-${pkgver}.tar.{xz,sign})
-# Eric R. Sandeen 
-validpgpkeys=('2B8185919E8D248981869DED20AE1692E13DDEE0')
-sha256sums=('55aeede6232ddce6c9e79e2af88d6f808534df1552eb2bfaf7fb85b92add6dd1'
-'SKIP')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --sbindir=/usr/bin INSTALL_USER=root 
INSTALL_GROUP=root
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  # root /sbin directory can't be overridden properly with configure,
-  # so move files manually
-  mv -vf "${pkgdir}/sbin/"* "${pkgdir}/usr/bin/"
-  rmdir "${pkgdir}/sbin"
-}

Copied: xfsdump/repos/community-x86_64/PKGBUILD (from rev 1185857, 
xfsdump/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 16:11:53 UTC (rev 1185858)
@@ -0,0 +1,35 @@
+# Maintainer: Jiachen YANG 
+# Contributor: Allen Wild 
+# Contributor: judd 
+# Contributor: dkaylor 
+# Contributor: Pablo Lezaeta 
+
+pkgname=xfsdump
+pkgver=3.1.10
+pkgrel=1
+pkgdesc="Additional XFS filesystem utilities"
+arch=(x86_64)
+url="http://xfs.org";
+license=('GPL')
+depends=('xfsprogs' 'attr' 'acl' 'dmapi')
+source=(https://kernel.org/pub/linux/utils/fs/xfs/xfsdump/xfsdump-${pkgver}.tar.{xz,sign})
+# Eric R. Sandeen 
+validpgpkeys=('2B8185919E8D248981869DED20AE1692E13DDEE0')
+sha256sums=('9aab7a53aa05cd46edc97269ebf1456aab2b60ab8c1fffaaf8aa492f0b5f6517'
+'SKIP')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --sbindir=/usr/bin INSTALL_USER=root 
INSTALL_GROUP=root
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  # root /sbin directory can't be overridden properly with configure,
+  # so move files manually
+  mv -vf "${pkgdir}/sbin/"* "${pkgdir}/usr/bin/"
+  rmdir "${pkgdir}/sbin"
+}



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

2022-04-11 Thread Jiachen Yang via arch-commits
Date: Monday, April 11, 2022 @ 16:11:19
  Author: farseerfc
Revision: 1185857

upgpkg: xfsdump 3.1.10-1

Modified:
  xfsdump/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 15:07:50 UTC (rev 1185856)
+++ PKGBUILD2022-04-11 16:11:19 UTC (rev 1185857)
@@ -5,7 +5,7 @@
 # Contributor: Pablo Lezaeta 
 
 pkgname=xfsdump
-pkgver=3.1.9
+pkgver=3.1.10
 pkgrel=1
 pkgdesc="Additional XFS filesystem utilities"
 arch=(x86_64)
@@ -15,7 +15,7 @@
 
source=(https://kernel.org/pub/linux/utils/fs/xfs/xfsdump/xfsdump-${pkgver}.tar.{xz,sign})
 # Eric R. Sandeen 
 validpgpkeys=('2B8185919E8D248981869DED20AE1692E13DDEE0')
-sha256sums=('55aeede6232ddce6c9e79e2af88d6f808534df1552eb2bfaf7fb85b92add6dd1'
+sha256sums=('9aab7a53aa05cd46edc97269ebf1456aab2b60ab8c1fffaaf8aa492f0b5f6517'
 'SKIP')
 
 build() {



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

2022-04-11 Thread Maxim Baz via arch-commits
Date: Monday, April 11, 2022 @ 15:07:50
  Author: maximbaz
Revision: 1185856

archrelease: copy trunk to community-x86_64

Added:
  croc/repos/community-x86_64/PKGBUILD
(from rev 1185855, croc/trunk/PKGBUILD)
Deleted:
  croc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 15:07:47 UTC (rev 1185855)
+++ PKGBUILD2022-04-11 15:07:50 UTC (rev 1185856)
@@ -1,36 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Mikuro Kagamine 
-
-pkgname=croc
-pkgver=9.5.2
-pkgrel=1
-pkgdesc='Easily and securely send things from one computer to another.'
-arch=('x86_64')
-url="https://github.com/schollz/${pkgname}";
-license=('MIT')
-depends=('glibc')
-makedepends=('go')
-source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('cccf83c4d52bbbd22091f11046c2e4b7f5117cd676064b28a0ccde9bc83e62ac')
-
-build() {
-cd "${pkgname}-${pkgver}"
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
-go build
-}
-
-check() {
-cd "${pkgname}-${pkgver}"
-go test ./...
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
-install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}

Copied: croc/repos/community-x86_64/PKGBUILD (from rev 1185855, 
croc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 15:07:50 UTC (rev 1185856)
@@ -0,0 +1,36 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Mikuro Kagamine 
+
+pkgname=croc
+pkgver=9.5.3
+pkgrel=1
+pkgdesc='Easily and securely send things from one computer to another.'
+arch=('x86_64')
+url="https://github.com/schollz/${pkgname}";
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
+sha256sums=('82cbc8bf4fee6afef840d59942ec35406b3ef47df4087020931c23d3582da40f')
+
+build() {
+cd "${pkgname}-${pkgver}"
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw -buildvcs=false"
+go build
+}
+
+check() {
+cd "${pkgname}-${pkgver}"
+go test ./...
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
+install -Dm644 -t "${pkgdir}/usr/lib/systemd/system/" "${pkgname}.service"
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}



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

2022-04-11 Thread Maxim Baz via arch-commits
Date: Monday, April 11, 2022 @ 15:07:47
  Author: maximbaz
Revision: 1185855

upgpkg: croc 9.5.3-1

Modified:
  croc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 15:00:07 UTC (rev 1185854)
+++ PKGBUILD2022-04-11 15:07:47 UTC (rev 1185855)
@@ -2,7 +2,7 @@
 # Contributor: Mikuro Kagamine 
 
 pkgname=croc
-pkgver=9.5.2
+pkgver=9.5.3
 pkgrel=1
 pkgdesc='Easily and securely send things from one computer to another.'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('glibc')
 makedepends=('go')
 source=("${url}/releases/download/v${pkgver}/${pkgname}_${pkgver}_src.tar.gz")
-sha256sums=('cccf83c4d52bbbd22091f11046c2e4b7f5117cd676064b28a0ccde9bc83e62ac')
+sha256sums=('82cbc8bf4fee6afef840d59942ec35406b3ef47df4087020931c23d3582da40f')
 
 build() {
 cd "${pkgname}-${pkgver}"
@@ -19,7 +19,7 @@
 export CGO_CFLAGS="${CFLAGS}"
 export CGO_CXXFLAGS="${CXXFLAGS}"
 export CGO_LDFLAGS="${LDFLAGS}"
-export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw"
+export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=vendor -modcacherw -buildvcs=false"
 go build
 }
 



[arch-commits] Commit in firefox-developer-edition-i18n/repos/community-any (2 files)

2022-04-11 Thread Andrew Crerar via arch-commits
Date: Monday, April 11, 2022 @ 15:00:07
  Author: andrewsc
Revision: 1185854

archrelease: copy trunk to community-any

Added:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD
(from rev 1185853, firefox-developer-edition-i18n/trunk/PKGBUILD)
Deleted:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD

--+
 PKGBUILD |  460 ++---
 1 file changed, 230 insertions(+), 230 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 14:59:49 UTC (rev 1185853)
+++ PKGBUILD2022-04-11 15:00:07 UTC (rev 1185854)
@@ -1,230 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=100.0b3
-pkgrel=1
-pkgdesc="Language pack for Firefox Developer Edition"
-arch=('any')
-url="https://www.mozilla.com/";
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach "Acholi"'
-  'af  "Afrikaans"'
-  'an  "Aragonese"'
-  'ar  "Arabic"'
-  'ast "Asturian"'
-  'az  "Azerbaijani"'
-  'be  "Belarusian"'
-  'bg  "Bulgarian"'
-  'bn  "Bengali"'
-  'br  "Breton"'
-  'bs  "Bosnian"'
-  'ca  "Catalan"'
-  'ca-valencia "Catalan (Valencian)"'
-  'cak "Maya Kaqchikel"'
-  'cs  "Czech"'
-  'cy  "Welsh"'
-  'da  "Danish"'
-  'de  "German"'
-  'dsb "Lower Sorbian"'
-  'el  "Greek"'
-  'en-CA   "English (Canada)"'
-  'en-GB   "English (British)"'
-  'en-US   "English (American)"'
-  'eo  "Esperanto"'
-  'es-AR   "Spanish (Argentina)"'
-  'es-CL   "Spanish (Chile)"'
-  'es-ES   "Spanish (Spain)"'
-  'es-MX   "Spanish (Mexico)"'
-  'et  "Estonian"'
-  'eu  "Basque"'
-  'fa  "Persian"'
-  'ff  "Fulah"'
-  'fi  "Finnish"'
-  'fr  "French"'
-  'fy-NL   "Frisian"'
-  'ga-IE   "Irish"'
-  'gd  "Gaelic (Scotland)"'
-  'gl  "Galician"'
-  'gn  "Guarani"'
-  'gu-IN   "Gujarati (India)"'
-  'he  "Hebrew"'
-  'hi-IN   "Hindi (India)"'
-  'hr  "Croatian"'
-  'hsb "Upper Sorbian"'
-  'hu  "Hungarian"'
-  'hy-AM   "Armenian"'
-  'ia  "Interlingua"'
-  'id  "Indonesian"'
-  'is  "Icelandic"'
-  'it  "Italian"'
-  'ja  "Japanese"'
-  'ka  "Georgian"'
-  'kab "Kabyle"'
-  'kk  "Kazakh"'
-  'km  "Khmer"'
-  'kn  "Kannada"'
-  'ko  "Korean"'
-  'lij "Ligurian"'
-  'lt  "Lithuanian"'
-  'lv  "Latvian"'
-  'mk  "Macedonian"'
-  'mr  "Marathi"'
-  'ms  "Malay"'
-  'my  "Burmese"'
-  'nb-NO   "Norwegian (Bokmål)"'
-  'ne-NP   "Nepali"'
-  'nl  "Dutch"'
-  'nn-NO   "Norwegian (Nynorsk)"'
-  'oc  "Occitan"'
-  'pa-IN   "Punjabi (India)"'
-  'pl  "Polish"'
-  'pt-BR   "Portuguese (Brazilian)"'
-  'pt-PT   "Portuguese (Portugal)"'
-  'rm  "Romansh"'
-  'ro  "Romanian"'
-  'ru  "Russian"'
-  'si  "Sinhala"'
-  'sk  "Slovak"'
-  'sl  "Slovenian"'
-  'son "Songhai"'
-  'sq  "Albanian"'
-  'sr  "Serbian"'
-  'sv-SE   "Swedish"'
-  'ta  "Tamil"'
-  'te  "Telugu"'
-  'th  "Thai"'
-  'tl  "Tagalog"'
-  'tr  "Turkish"'
-  'trs "Triqui"'
-  'uk  "Ukrainian"'
-  'ur  "Urdu"'
-  'uz  "Uzbek"'
-  'vi  "Vietnamese"'
-  'xh  "Xhosa"'
-  'zh-CN   "Chinese (Simplified)"'
-  'zh-TW   "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://archive.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-developer-edition-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  
source+=("firefox-developer-edition-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox Developer Edition"
-  depends=("firefox-developer-edition>=$pkgver")
-  install -Dm644 firefox-developer-edition-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha512sums=('901614e1e7616fc488a113ea253aa82637608a9b1ebafd986341d2eecf1c175028efad8a72071e14c0a6cad46157ff23c5f423cc02259b3e3032487b4c63c8ac'
-
'd617af451f2666e5becb01c0a4b149c40982faa9dc866ceeec3b23461e95e0649f9626a02052805016acf6bc9540a1e3823a26ce188a49ed759637a2208c1cd8'
-
'17488def55ee78720ae8716ec4a80c427a4c17e8da8b28b5f6b0e8af4b10d3f18830a4797b43b19e429f32ae70202b32b830d73831760129743c355312e27b6c'
-
'53f24cf829801817f1b27c0a820402e43e26c0f7933

[arch-commits] Commit in firefox-developer-edition-i18n/trunk (PKGBUILD)

2022-04-11 Thread Andrew Crerar via arch-commits
Date: Monday, April 11, 2022 @ 14:59:49
  Author: andrewsc
Revision: 1185853

upgpkg: firefox-developer-edition-i18n 100.0b4-1

Modified:
  firefox-developer-edition-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  194 ++---
 1 file changed, 97 insertions(+), 97 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 14:54:19 UTC (rev 1185852)
+++ PKGBUILD2022-04-11 14:59:49 UTC (rev 1185853)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=100.0b3
+pkgver=100.0b4
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -132,99 +132,99 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha512sums=('901614e1e7616fc488a113ea253aa82637608a9b1ebafd986341d2eecf1c175028efad8a72071e14c0a6cad46157ff23c5f423cc02259b3e3032487b4c63c8ac'
-
'd617af451f2666e5becb01c0a4b149c40982faa9dc866ceeec3b23461e95e0649f9626a02052805016acf6bc9540a1e3823a26ce188a49ed759637a2208c1cd8'
-
'17488def55ee78720ae8716ec4a80c427a4c17e8da8b28b5f6b0e8af4b10d3f18830a4797b43b19e429f32ae70202b32b830d73831760129743c355312e27b6c'
-
'53f24cf829801817f1b27c0a820402e43e26c0f7933e25d85fe0aa44d5f6324125d79f5ad00ded37f3d7f761213f2c2da8029aa45929d6d7121be5d52d4e8052'
-
'5f5ccbb7041b9d140b0fb2e8296988f3d78f14917fa5e9ca77e2626f1deebc1c0946f382fb5bc9526d88e5f2ad500bf7b62c455087fdec20315dcfde08d32f57'
-
'21c848bfe96fcf400ee2605dc6b59b320f0f08cd287964c7600549c176e8a8df1aa90b81d01d731d55ff9d8ab949ea95e5a5667ba143c1a7273512f57c72b025'
-
'87aabe6e0d542c30e8cfcfe98a053ee945ef758b76551ba1fab5383f13fde4f1fa3c265ccaabfd03361147231816500b7c1e1bd1b141c71648c9f8eaf43d0180'
-
'51c9b372ac3a0a2de1c4dbb281e65365438da0fed09b79aa9ba478d3e757a4100dbf37850244fe9c9887334cc1f2d890678f36b28b6187983b1f0b560b1bef76'
-
'3fd63ba34cbbedd9414c65920a57d8877a6c04d02204689b2f1eed62aa77e7df42f9fdb4ef73f9000397cba27644a63eb17a8815113de911408a146d336c3d7f'
-
'd05192f123a5716df3e9189fcc4c47b8e57abcc28d0bd55979a097769dc978193899353f95b8f6fb8429c2d00c496efc900fe060d24d9779ba99f483c3037c86'
-
'e9bba15d9a196459b5fdec5719c8b7bc2cd662b03170c11e4fd08f39e5a98fddaa564a90ccdd41ea9168cdbd118bf0cc3225345b4db5f0a7556604d3316286e0'
-
'c3cb1e8862b42ad3f19ad999515ed92031003ecaa62603c11323c0c37b0ea995ce9f2d401b8ebe6a48befa412d46aaa54f774959772883706a66f9389d668e67'
-
'3d33cf1baed4811e15e0f8153b9432b8fde1fd2555e5f68fc2bdf9520e39ee757655abd50e90604fbbe8a2c976955e6b0dc230c146f16d6f78a4d06cd43a3545'
-
'66b38511d8dc5e6fbb1948147a443f29fdd95d74217e6834c4e1c8ace59976fb07a313e8b08831acd45e045e55fb5b744b8a36191e627e3e3ddb6eda8a4c59e1'
-
'9f86551bafbbb2f098ceed1bbc85133128ef339f5aa819738a237085c852c6d8bb7177abeacc41582845896fc771cdf428120d90f4d914dfea3111a275c9c435'
-
'0bf07047f0e2bd5363b3003f8e957780d491e7d644dd3ddc3b7c9ba2d76b139dd86fc7cc2e6d9d69814fe2ac663faeeabbd3d666f3829046d72095ee1f1c45d0'
-
'b332c1141b71adbd1b105d7733ef57711ffe29e033534a27bb2d160a6a482603d23cd908f4e64f0103eb19b39d3207aa91937f704d6054358ebd5c37df58a541'
-
'18d1ad7b3f4f9883495fd88767e82e107226d769021cd6cd665a52118ca666128b032994143b19d1cb71beb69b29409b035aa5c1c02b7f6aa3277ed59ec65a2b'
-
'5e0927d3c4b46da2fafa1126789524d852909f365b93888cfe865b76ae9fe77f5fbfd9501580e47dd91caa451cd24b33069e1d3715acebd25b5557d3c173d42c'
-
'e0e18bda2ab09e070a19280556a1f19894e69b6fad8079ce8464479fe7257ad2533606b6ed138a38ff070de675193baa700a078835f139e07e2a65a27690fac2'
-
'cd5e12293a81ccfe67598eb05255177ee88857a75134d24c2256cd093ae26af69663c5197a038a38e467b7b52e565e99ede157beb9ade26d7d56c9c8f04b8341'
-
'caa952a850f1e68f8b65049288f6f8b5746e63d06d97d80355d11ffeecdf50c50bb760d0695e6551de7c315d7889555c25ea55abd77113e160b0077a2965bc5a'
-
'349114806d07ee387febbc5ad6de0a62093d41e2dbbcf364097e0ef3b589d0b194fb6db28e1e8d644eed6107ccaa2ad6678a8127307dc7badf590de23cd3f8f2'
-
'2a3dc1ca50625967daefef4c0185be5ee10112d0d6a8a59259b34b5bf4bc93e95f945478259ae0790a9fba82f7370bbc838b0efb0b7ec0adf51aa130b8381f3d'
-
'69ad732738cc442795f3dc52457729d5cf9745c999e69217051a7cea0fd2e9395cee33f1bd925ab1f8bf31e2fd78ccda0a2db1d3ff1491172513fcdb93b5d654'
-
'a6d82a0c3f5ee0e40bfa4a450171b732840358aed40124ef0b49d3f6aa42c0102fb50f5ad597d1e4b36e2efeed563d1b0337f4393eda1d5e0f26659669939ad6'
-
'8cd34aa092a0e3fe247c46dcc7d74b4941385d49fa8021f6d5327568c54ec04e615e7e4e5617a15a666bae257709244407b73b664c278f2fb0bf5423986229f0'
-
'd84392ffdcdd7d9e2c8d9cb5e4a509d64df528a679bac05debc44514e9e8580a7666fdaaec856c196f5b711cd196535d8c2786d781d8707382612adb6095'
-
'5314e8dbb8e709df933803cb00146fdabee48065b3c327027ebd9e69ada73c

[arch-commits] Commit in firefox-developer-edition/trunk (PKGBUILD)

2022-04-11 Thread Andrew Crerar via arch-commits
Date: Monday, April 11, 2022 @ 14:53:53
  Author: andrewsc
Revision: 1185851

upgpkg: firefox-developer-edition 100.0b4-1

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 14:11:57 UTC (rev 1185850)
+++ PKGBUILD2022-04-11 14:53:53 UTC (rev 1185851)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=100.0b3
+pkgver=100.0b4
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')
@@ -26,7 +26,7 @@
 "$pkgname".desktop
 identity-icons-brand.svg
 psutil.patch)
-sha512sums=('99d8b590db47672783aa7962f80e6c8f33f51a9a03120bc550277076de86cc056e3da1426310bbece43b79ce83187d3c739114ae01f6af97c1880c2cd31f89c5'
+sha512sums=('1eaec968ef3a006fa3c7c890e920407381533891f3dbd041c4a3483dacba31a7c0ea726e8aeb27bf7166b160144236d6debe6fa51263933d1073924142f53e18'
 'SKIP'
 
'b66dbe7f262d036e5a5b895ab5b0dbb03313bca18b0823c001ef2dbaeb1a33169b57db0cf4dfd268499f28913845119902b5d62e8a6a9cc4820eb0ee2f322a1e'
 
'2ff0cb8e2eb94cee306b488adf6d7f4debbaff6155be3ed3814cdb356e2e60fe38cc29d6c8d10079937fd2c930cfddf283977cf645395d31eaf76c7f0ac2'



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

2022-04-11 Thread Maxim Baz via arch-commits
Date: Monday, April 11, 2022 @ 14:11:57
  Author: maximbaz
Revision: 1185850

archrelease: copy trunk to community-x86_64

Added:
  kak-lsp/repos/community-x86_64/PKGBUILD
(from rev 1185849, kak-lsp/trunk/PKGBUILD)
Deleted:
  kak-lsp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 14:11:54 UTC (rev 1185849)
+++ PKGBUILD2022-04-11 14:11:57 UTC (rev 1185850)
@@ -1,33 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-pkgname=kak-lsp
-pkgver=12.0.1
-pkgrel=1
-pkgdesc='Kakoune Language Server Protocol Client'
-arch=('x86_64')
-url='https://github.com/kak-lsp/kak-lsp'
-license=('custom:unlicense')
-depends=('kakoune')
-makedepends=('rust')
-optdepends=(
-'bash-language-server: language server for Bash'
-'gopls: language server for Go'
-'haskell-language-server: language server for Haskell'
-'lua-language-server: language server for Lua'
-'python-lsp-server: language server for Python'
-'rust-analyzer: language server for Rust'
-)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ul/${pkgname}/archive/v${pkgver}.tar.gz";)
-sha256sums=('37b54186f7f18d879c605cb235452a92308361676fc3966c2e65bbaae30b7a3e')
-
-build() {
-cd "${pkgname}-${pkgver}"
-make
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=4 sw=4 et:

Copied: kak-lsp/repos/community-x86_64/PKGBUILD (from rev 1185849, 
kak-lsp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 14:11:57 UTC (rev 1185850)
@@ -0,0 +1,33 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+pkgname=kak-lsp
+pkgver=12.1.0
+pkgrel=1
+pkgdesc='Kakoune Language Server Protocol Client'
+arch=('x86_64')
+url='https://github.com/kak-lsp/kak-lsp'
+license=('custom:unlicense')
+depends=('kakoune')
+makedepends=('rust')
+optdepends=(
+'bash-language-server: language server for Bash'
+'gopls: language server for Go'
+'haskell-language-server: language server for Haskell'
+'lua-language-server: language server for Lua'
+'python-lsp-server: language server for Python'
+'rust-analyzer: language server for Rust'
+)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ul/${pkgname}/archive/v${pkgver}.tar.gz";)
+sha256sums=('9bfc6394f59f081d4f154e2896fcd72055b9bace87195b97f989eb92f6cb685a')
+
+build() {
+cd "${pkgname}-${pkgver}"
+make
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=4 sw=4 et:



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

2022-04-11 Thread Maxim Baz via arch-commits
Date: Monday, April 11, 2022 @ 14:11:54
  Author: maximbaz
Revision: 1185849

upgpkg: kak-lsp 12.1.0-1

Modified:
  kak-lsp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 13:56:00 UTC (rev 1185848)
+++ PKGBUILD2022-04-11 14:11:54 UTC (rev 1185849)
@@ -1,7 +1,7 @@
 # Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
 
 pkgname=kak-lsp
-pkgver=12.0.1
+pkgver=12.1.0
 pkgrel=1
 pkgdesc='Kakoune Language Server Protocol Client'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 'rust-analyzer: language server for Rust'
 )
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ul/${pkgname}/archive/v${pkgver}.tar.gz";)
-sha256sums=('37b54186f7f18d879c605cb235452a92308361676fc3966c2e65bbaae30b7a3e')
+sha256sums=('9bfc6394f59f081d4f154e2896fcd72055b9bace87195b97f989eb92f6cb685a')
 
 build() {
 cd "${pkgname}-${pkgver}"



[arch-commits] Commit in wire-desktop/repos/community-any (4 files)

2022-04-11 Thread Maxim Baz via arch-commits
Date: Monday, April 11, 2022 @ 13:56:00
  Author: maximbaz
Revision: 1185848

archrelease: copy trunk to community-any

Added:
  wire-desktop/repos/community-any/PKGBUILD
(from rev 1185847, wire-desktop/trunk/PKGBUILD)
  wire-desktop/repos/community-any/wire-desktop.desktop
(from rev 1185847, wire-desktop/trunk/wire-desktop.desktop)
Deleted:
  wire-desktop/repos/community-any/PKGBUILD
  wire-desktop/repos/community-any/wire-desktop.desktop

--+
 PKGBUILD |  108 -
 wire-desktop.desktop |   26 +--
 2 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 13:55:55 UTC (rev 1185847)
+++ PKGBUILD2022-04-11 13:56:00 UTC (rev 1185848)
@@ -1,54 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Conor Anderson 
-
-pkgname=wire-desktop
-pkgver=3.26.2941
-pkgrel=2
-pkgdesc='End-to-end encrypted messenger with file sharing, voice calls and 
video conferences'
-arch=('any')
-url='https://wire.com/'
-license=('GPL3')
-depends=('electron11' 'xdg-utils')
-makedepends=('git' 'npm' 'yarn')
-optdepends=('emoji-font: colorful emoji')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/wireapp/${pkgname}/archive/linux/${pkgver}.tar.gz";
-
"${pkgname}-${pkgver}.tar.gz.sig::https://github.com/wireapp/${pkgname}/releases/download/linux%2F${pkgver}/${pkgname}-linux-${pkgver}.tar.gz.sig";
-"${pkgname}.desktop")
-sha256sums=('ef8181684414e59740d444a3dbb2d364069fd9033d41da7e0c9ee5a41703c825'
-'SKIP'
-'53f37e99d4c2f41a3e31fd70154d82ba06a4af578c68df86af4906f7f37ec787')
-validpgpkeys=('ABBA007D6E14E2DB5B283C45D599C1AA126762B1')
-
-prepare() {
-# Create launcher script
-cat << EOF > "${pkgname}"
-#!/usr/bin/env sh
-
-electron11 "/usr/lib/${pkgname}" "\$@"
-EOF
-}
-
-build() {
-cd "${pkgname}-linux-${pkgver}"
-
-yarn
-BUILD_NUMBER="${pkgver##*.}" LINUX_TARGET=dir ENABLE_ASAR=false yarn 
build:linux
-}
-
-package() {
-# Place files
-install -d "${pkgdir}/usr/lib/${pkgname}"
-cp -a 
"${pkgname}-linux-${pkgver}/wrap/dist/linux-unpacked/resources/app/"{electron,node_modules,package.json}
 "${pkgdir}/usr/lib/${pkgname}"
-
-# Place launcher script
-install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
-
-# Place desktop entry and icon
-desktop-file-install -m 644 --dir "${pkgdir}/usr/share/applications/" 
"${pkgname}.desktop"
-local res
-for res in 32x32 256x256; do
-install -Dm644 "${pkgname}-linux-${pkgver}/resources/icons/${res}.png" 
"${pkgdir}/usr/share/icons/hicolor/${res}/apps/${pkgname}.png"
-done
-}
-
-# vim:set ts=4 sw=4 et:

Copied: wire-desktop/repos/community-any/PKGBUILD (from rev 1185847, 
wire-desktop/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 13:56:00 UTC (rev 1185848)
@@ -0,0 +1,54 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Conor Anderson 
+
+pkgname=wire-desktop
+pkgver=3.27.2943
+pkgrel=1
+pkgdesc='End-to-end encrypted messenger with file sharing, voice calls and 
video conferences'
+arch=('any')
+url='https://wire.com/'
+license=('GPL3')
+depends=('electron13' 'xdg-utils')
+makedepends=('git' 'npm' 'yarn')
+optdepends=('emoji-font: colorful emoji')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/wireapp/${pkgname}/archive/linux/${pkgver}.tar.gz";
+
"${pkgname}-${pkgver}.tar.gz.sig::https://github.com/wireapp/${pkgname}/releases/download/linux%2F${pkgver}/${pkgname}-linux-${pkgver}.tar.gz.sig";
+"${pkgname}.desktop")
+sha256sums=('7739695504699660021217ea5fe34f2ae1b3ec2c0acf7d23e334eecc79ed4511'
+'SKIP'
+'53f37e99d4c2f41a3e31fd70154d82ba06a4af578c68df86af4906f7f37ec787')
+validpgpkeys=('ABBA007D6E14E2DB5B283C45D599C1AA126762B1')
+
+prepare() {
+# Create launcher script
+cat << EOF > "${pkgname}"
+#!/usr/bin/env sh
+
+electron13 "/usr/lib/${pkgname}" "\$@"
+EOF
+}
+
+build() {
+cd "${pkgname}-linux-${pkgver}"
+
+yarn
+BUILD_NUMBER="${pkgver##*.}" LINUX_TARGET=dir ENABLE_ASAR=false yarn 
build:linux
+}
+
+package() {
+# Place files
+install -d "${pkgdir}/usr/lib/${pkgname}"
+cp -a 
"${pkgname}-linux-${pkgver}/wrap/dist/linux-unpacked/resources/app/"{electron,node_modules,package.json}
 "${pkgdir}/usr/lib/${pkgname}"
+
+# Place launcher script
+install -Dm755 -t "${pkgdir}/usr/bin/" "${pkgname}"
+
+# Place desktop entry and icon
+desktop-file-install -m 644 --dir "${pkgdir}/usr/share/applications/" 
"${pkgname}.desktop"
+local res
+for res in 32x32 256x256; do
+install -Dm644 "${pkgname}-linux-${pkgver}/resources/icons/${res}.png" 
"${pkgdir}/usr/share/icons/hicolor/${res}/apps/${pkgname}.png"
+done
+}
+
+# vim:set ts=4 

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

2022-04-11 Thread Maxim Baz via arch-commits
Date: Monday, April 11, 2022 @ 13:55:55
  Author: maximbaz
Revision: 1185847

upgpkg: wire-desktop 3.27.2943-1

Modified:
  wire-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 13:50:16 UTC (rev 1185846)
+++ PKGBUILD2022-04-11 13:55:55 UTC (rev 1185847)
@@ -2,19 +2,19 @@
 # Contributor: Conor Anderson 
 
 pkgname=wire-desktop
-pkgver=3.26.2941
-pkgrel=2
+pkgver=3.27.2943
+pkgrel=1
 pkgdesc='End-to-end encrypted messenger with file sharing, voice calls and 
video conferences'
 arch=('any')
 url='https://wire.com/'
 license=('GPL3')
-depends=('electron11' 'xdg-utils')
+depends=('electron13' 'xdg-utils')
 makedepends=('git' 'npm' 'yarn')
 optdepends=('emoji-font: colorful emoji')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/wireapp/${pkgname}/archive/linux/${pkgver}.tar.gz";
 
"${pkgname}-${pkgver}.tar.gz.sig::https://github.com/wireapp/${pkgname}/releases/download/linux%2F${pkgver}/${pkgname}-linux-${pkgver}.tar.gz.sig";
 "${pkgname}.desktop")
-sha256sums=('ef8181684414e59740d444a3dbb2d364069fd9033d41da7e0c9ee5a41703c825'
+sha256sums=('7739695504699660021217ea5fe34f2ae1b3ec2c0acf7d23e334eecc79ed4511'
 'SKIP'
 '53f37e99d4c2f41a3e31fd70154d82ba06a4af578c68df86af4906f7f37ec787')
 validpgpkeys=('ABBA007D6E14E2DB5B283C45D599C1AA126762B1')
@@ -24,7 +24,7 @@
 cat << EOF > "${pkgname}"
 #!/usr/bin/env sh
 
-electron11 "/usr/lib/${pkgname}" "\$@"
+electron13 "/usr/lib/${pkgname}" "\$@"
 EOF
 }
 



[arch-commits] Commit in python-google-auth-oauthlib/repos/community-any (2 files)

2022-04-11 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 11, 2022 @ 13:50:16
  Author: svenstaro
Revision: 1185846

archrelease: copy trunk to community-any

Added:
  python-google-auth-oauthlib/repos/community-any/PKGBUILD
(from rev 1185845, python-google-auth-oauthlib/trunk/PKGBUILD)
Deleted:
  python-google-auth-oauthlib/repos/community-any/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-11 13:49:42 UTC (rev 1185845)
+++ PKGBUILD2022-04-11 13:50:16 UTC (rev 1185846)
@@ -1,27 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Guillaume Horel 
-
-pkgname=python-google-auth-oauthlib
-_pkgname='google-auth-oauthlib'
-pkgver=0.4.4
-pkgrel=3
-pkgdesc="oauthlib integration for Google auth."
-url="http://google-auth-oauthlib.readthedocs.io/en/latest/";
-checkdepends=('python-click' 'python-pytest' 'python-mock')
-depends=('python' 'python-google-auth' 'python-requests-oauthlib')
-optdepends=('python-click')
-license=('Apache')
-arch=('any')
-source=("https://pypi.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz";)
-sha256sums=('09832c6e75032f93818edf1affe4746121d640c625a5bef9b5c96af676e98eee')
-
-# check() {
-# cd "${srcdir}/${_pkgname}-${pkgver}"
-# pytest
-# }
-
-package() {
-cd "${srcdir}/${_pkgname}-${pkgver}"
-python setup.py install --root="${pkgdir}" --optimize=1
-install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-google-auth-oauthlib/repos/community-any/PKGBUILD (from rev 
1185845, python-google-auth-oauthlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-11 13:50:16 UTC (rev 1185846)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Guillaume Horel 
+
+pkgname=python-google-auth-oauthlib
+_pkgname='google-auth-oauthlib'
+pkgver=0.5.1
+pkgrel=1
+pkgdesc="oauthlib integration for Google auth."
+url="http://google-auth-oauthlib.readthedocs.io/en/latest/";
+checkdepends=('python-click' 'python-pytest' 'python-mock')
+depends=('python' 'python-google-auth' 'python-requests-oauthlib')
+optdepends=('python-click')
+license=('Apache')
+arch=('any')
+source=("https://pypi.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz";)
+sha256sums=('30596b824fc6808fdaca2f048e4998cc40fb4b3599eaea66d28dc7085b36c5b8')
+
+# check() {
+# cd "${srcdir}/${_pkgname}-${pkgver}"
+# pytest
+# }
+
+package() {
+cd "${srcdir}/${_pkgname}-${pkgver}"
+python setup.py install --root="${pkgdir}" --optimize=1
+install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



[arch-commits] Commit in python-google-auth-oauthlib/trunk (PKGBUILD)

2022-04-11 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, April 11, 2022 @ 13:49:42
  Author: svenstaro
Revision: 1185845

upgpkg: python-google-auth-oauthlib 0.5.1-1

Modified:
  python-google-auth-oauthlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-11 13:28:36 UTC (rev 1185844)
+++ PKGBUILD2022-04-11 13:49:42 UTC (rev 1185845)
@@ -1,10 +1,10 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: Guillaume Horel 
 
 pkgname=python-google-auth-oauthlib
 _pkgname='google-auth-oauthlib'
-pkgver=0.4.4
-pkgrel=3
+pkgver=0.5.1
+pkgrel=1
 pkgdesc="oauthlib integration for Google auth."
 url="http://google-auth-oauthlib.readthedocs.io/en/latest/";
 checkdepends=('python-click' 'python-pytest' 'python-mock')
@@ -13,7 +13,7 @@
 license=('Apache')
 arch=('any')
 
source=("https://pypi.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz";)
-sha256sums=('09832c6e75032f93818edf1affe4746121d640c625a5bef9b5c96af676e98eee')
+sha256sums=('30596b824fc6808fdaca2f048e4998cc40fb4b3599eaea66d28dc7085b36c5b8')
 
 # check() {
 # cd "${srcdir}/${_pkgname}-${pkgver}"



  1   2   >