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

2022-06-13 Thread Jelle van der Waa via arch-commits
Date: Tuesday, June 14, 2022 @ 06:52:22
  Author: jelle
Revision: 1237843

archrelease: copy trunk to community-any

Added:
  dnf/repos/community-any/PKGBUILD
(from rev 1237842, dnf/trunk/PKGBUILD)
  dnf/repos/community-any/arch-release-ver.patch
(from rev 1237842, dnf/trunk/arch-release-ver.patch)
Deleted:
  dnf/repos/community-any/PKGBUILD
  dnf/repos/community-any/arch-release-ver.patch

+
 PKGBUILD   |  144 +++
 arch-release-ver.patch |   24 +++
 2 files changed, 84 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-14 06:52:11 UTC (rev 1237842)
+++ PKGBUILD2022-06-14 06:52:22 UTC (rev 1237843)
@@ -1,72 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=dnf
-pkgver=4.12.0
-pkgrel=1
-pkgdesc="Package manager forked from Yum, using libsolv as a dependency 
resolver"
-arch=('any')
-url="https://github.com/rpm-software-management/$pkgname";
-license=('GPL2')
-depends=('libdnf' 'libcomps'
- 'python' 'python-gpgme' 'rpm-tools')
-makedepends=('bash-completion' 'cmake' 'python-sphinx')
-optdepends=('unbound: for gpgkey_dns_verification option')
-backup=("etc/$pkgname/automatic.conf"
-"etc/$pkgname/$pkgname.conf"
-"etc/$pkgname/aliases.d/zypper.conf"
-"etc/$pkgname/protected.d/$pkgname.conf"
-"etc/$pkgname/protected.d/yum.conf"
-"etc/libreport/events.d/collect_$pkgname.conf"
-"etc/logrotate.d/$pkgname")
-options=('!emptydirs')
-source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz" 
"arch-release-ver.patch")
-sha256sums=('94fe5061a341fc553fbcdedacd25b8ca7d65d88a82154fb81d32aa41bba4314f'
-'13d082db7846482f090147b8e24b8fcb701948893c2b21f3c17cb12b9491e04e')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # sphinx-build-3 does not exist on Arch Linux,
-  # use sphinx-build instead
-  sed -e 's/sphinx-build-3/sphinx-build/' \
-  -i doc/CMakeLists.txt
-
-  # HACK: arch has no RELEASE_VER in /etc/os-release but setting it still 
makes `dnf.rpm.detect_releasever` returns None.
-  # Set it to the latest Fedora release to make dnf at least work.
-  patch -Np1 -i $srcdir/arch-release-ver.patch
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  cmake -B build \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_DESIRED=3
-
-  make -C build
-  make -C build doc-man
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  # Fails because Arch Linux does not support C.UTF-8 locale
-  make -n -C build ARGS="--output-on-failure" test
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make -C build DESTDIR="$pkgdir/" install
-
-  install -Dp -m644 README.rst "$pkgdir/usr/share/doc/$pkgname/README.rst"
-
-  rm "$pkgdir/usr/share/man/man8/yum.8" \
- "$pkgdir/usr/share/man/man5/yum.conf.5" \
- "$pkgdir/usr/share/man/man1/yum-aliases.1" \
- "$pkgdir/usr/share/man/man8/yum-shell.8"
-  ln -s $pkgname-3 "$pkgdir/usr/bin/$pkgname"
-  ln -s $pkgname-automatic-3 "$pkgdir/usr/bin/$pkgname-automatic"
-
-  rm "$pkgdir/etc/$pkgname/$pkgname-strict.conf"
-}

Copied: dnf/repos/community-any/PKGBUILD (from rev 1237842, dnf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-14 06:52:22 UTC (rev 1237843)
@@ -0,0 +1,72 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=dnf
+pkgver=4.13.0
+pkgrel=1
+pkgdesc="Package manager forked from Yum, using libsolv as a dependency 
resolver"
+arch=('any')
+url="https://github.com/rpm-software-management/$pkgname";
+license=('GPL2')
+depends=('libdnf' 'libcomps'
+ 'python' 'python-gpgme' 'rpm-tools')
+makedepends=('bash-completion' 'cmake' 'python-sphinx')
+optdepends=('unbound: for gpgkey_dns_verification option')
+backup=("etc/$pkgname/automatic.conf"
+"etc/$pkgname/$pkgname.conf"
+"etc/$pkgname/aliases.d/zypper.conf"
+"etc/$pkgname/protected.d/$pkgname.conf"
+"etc/$pkgname/protected.d/yum.conf"
+"etc/libreport/events.d/collect_$pkgname.conf"
+"etc/logrotate.d/$pkgname")
+options=('!emptydirs')
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz" 
"arch-release-ver.patch")
+sha256sums=('d7a5e11d7d44c769182dffbe070314231531e46d26363a71ecb5066d65638c1c'
+'13d082db7846482f090147b8e24b8fcb701948893c2b21f3c17cb12b9491e04e')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # sphinx-build-3 does not exist on Arch Linux,
+  # use sphinx-build instead
+  sed -e 's/sphinx-build-3/sphinx-build/' \
+  -i doc/CMakeLists.txt
+
+  # HACK: arch has no RELEASE_VER in /etc/os-release but setting it still 
makes `dnf.rpm.detect_releasever` returns None.
+  # Set it to the latest Fedora release to make dnf at least work.
+  patch -Np1 -i $srcdir/arch-release-ver.patch
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  cmake -B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_DESIRED=3
+
+  ma

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

2022-06-13 Thread Jelle van der Waa via arch-commits
Date: Tuesday, June 14, 2022 @ 06:52:11
  Author: jelle
Revision: 1237842

upgpkg: dnf 4.13.0-1

Modified:
  dnf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-14 05:54:18 UTC (rev 1237841)
+++ PKGBUILD2022-06-14 06:52:11 UTC (rev 1237842)
@@ -1,7 +1,7 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=dnf
-pkgver=4.12.0
+pkgver=4.13.0
 pkgrel=1
 pkgdesc="Package manager forked from Yum, using libsolv as a dependency 
resolver"
 arch=('any')
@@ -20,7 +20,7 @@
 "etc/logrotate.d/$pkgname")
 options=('!emptydirs')
 source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz" 
"arch-release-ver.patch")
-sha256sums=('94fe5061a341fc553fbcdedacd25b8ca7d65d88a82154fb81d32aa41bba4314f'
+sha256sums=('d7a5e11d7d44c769182dffbe070314231531e46d26363a71ecb5066d65638c1c'
 '13d082db7846482f090147b8e24b8fcb701948893c2b21f3c17cb12b9491e04e')
 
 prepare() {



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

2022-06-13 Thread Antonio Rojas via arch-commits
Date: Tuesday, June 14, 2022 @ 05:54:18
  Author: arojas
Revision: 1237841

archrelease: copy trunk to community-any

Added:
  jmol/repos/community-any/PKGBUILD
(from rev 1237840, jmol/trunk/PKGBUILD)
Deleted:
  jmol/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-14 05:54:05 UTC (rev 1237840)
+++ PKGBUILD2022-06-14 05:54:18 UTC (rev 1237841)
@@ -1,35 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: James Spencer 
-
-pkgbase=jmol
-pkgname=(jmol jsmol)
-pkgver=14.32.59
-pkgrel=1
-arch=(any)
-url='https://jmol.sourceforge.net'
-license=(LGPL)
-makedepends=(unzip)
-source=(https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.zip)
-sha256sums=('5822521617cb041266ddbb4c470343d701f426e21f20dea5729a3f9145dfe30c')
-
-package_jmol() {
-  pkgdesc='A Java 3D viewer for chemical structures'
-  depends=(java-runtime)
-
-  cd $pkgbase-$pkgver
-
-  mkdir -p "$pkgdir"/usr/share/$pkgname
-  mkdir -p "$pkgdir"/usr/bin
-
-  cp *.jar "$pkgdir"/usr/share/$pkgname
-  install -Dm755 jmol.sh "$pkgdir"/usr/share/$pkgname
-  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
-}
-
-package_jsmol() {
-  pkgdesc='A JavaScript 3D viewer for chemical structures'
-  cd $pkgbase-$pkgver
-
-  mkdir -p "$pkgdir"/usr/share
-  unzip jsmol.zip -d "$pkgdir"/usr/share/
-}

Copied: jmol/repos/community-any/PKGBUILD (from rev 1237840, 
jmol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-14 05:54:18 UTC (rev 1237841)
@@ -0,0 +1,35 @@
+# Maintainer: Antonio Rojas 
+# Contributor: James Spencer 
+
+pkgbase=jmol
+pkgname=(jmol jsmol)
+pkgver=14.32.60
+pkgrel=1
+arch=(any)
+url='https://jmol.sourceforge.net'
+license=(LGPL)
+makedepends=(unzip)
+source=(https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.zip)
+sha256sums=('026160f82bcbecb3a875777cadb853c2b826d60a12cebe0af3442a53f547829d')
+
+package_jmol() {
+  pkgdesc='A Java 3D viewer for chemical structures'
+  depends=(java-runtime)
+
+  cd $pkgbase-$pkgver
+
+  mkdir -p "$pkgdir"/usr/share/$pkgname
+  mkdir -p "$pkgdir"/usr/bin
+
+  cp *.jar "$pkgdir"/usr/share/$pkgname
+  install -Dm755 jmol.sh "$pkgdir"/usr/share/$pkgname
+  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
+}
+
+package_jsmol() {
+  pkgdesc='A JavaScript 3D viewer for chemical structures'
+  cd $pkgbase-$pkgver
+
+  mkdir -p "$pkgdir"/usr/share
+  unzip jsmol.zip -d "$pkgdir"/usr/share/
+}



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

2022-06-13 Thread Antonio Rojas via arch-commits
Date: Tuesday, June 14, 2022 @ 05:54:05
  Author: arojas
Revision: 1237840

Update to 14.32.60

Modified:
  jmol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-14 05:27:25 UTC (rev 1237839)
+++ PKGBUILD2022-06-14 05:54:05 UTC (rev 1237840)
@@ -3,7 +3,7 @@
 
 pkgbase=jmol
 pkgname=(jmol jsmol)
-pkgver=14.32.59
+pkgver=14.32.60
 pkgrel=1
 arch=(any)
 url='https://jmol.sourceforge.net'
@@ -10,7 +10,7 @@
 license=(LGPL)
 makedepends=(unzip)
 
source=(https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.zip)
-sha256sums=('5822521617cb041266ddbb4c470343d701f426e21f20dea5729a3f9145dfe30c')
+sha256sums=('026160f82bcbecb3a875777cadb853c2b826d60a12cebe0af3442a53f547829d')
 
 package_jmol() {
   pkgdesc='A Java 3D viewer for chemical structures'



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

2022-06-13 Thread George Rawlinson via arch-commits
Date: Tuesday, June 14, 2022 @ 02:15:51
  Author: grawlinson
Revision: 1237838

archrelease: copy trunk to community-x86_64

Added:
  rustscan/repos/community-x86_64/
  rustscan/repos/community-x86_64/PKGBUILD
(from rev 1237837, rustscan/trunk/PKGBUILD)
  rustscan/repos/community-x86_64/update-lockfile.patch
(from rev 1237837, rustscan/trunk/update-lockfile.patch)

---+
 PKGBUILD  |   57 
 update-lockfile.patch |   11 +
 2 files changed, 68 insertions(+)

Copied: rustscan/repos/community-x86_64/PKGBUILD (from rev 1237837, 
rustscan/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2022-06-14 02:15:51 UTC (rev 1237838)
@@ -0,0 +1,57 @@
+# Maintainer: George Rawlinson 
+# Contributor: Gobidev 
+# Contributor: Hao Long 
+
+pkgname=rustscan
+pkgver=2.1.0
+pkgrel=2
+pkgdesc='A modern port scanner'
+arch=('x86_64')
+url='https://github.com/rustscan/RustScan'
+license=('GPL3')
+depends=('gcc-libs' 'nmap')
+makedepends=('git' 'rust')
+checkdepends=('python')
+options=('!lto')
+_commit='075025113d849303af8366ada88da2edcd8a24c0'
+source=(
+  "$pkgname::git+$url#commit=$_commit"
+  'update-lockfile.patch'
+)
+b2sums=('SKIP'
+
'bede006174ed64bb1f2dcfb1ea4fc9e8b676af176c25299415a99e107581103c04f1ec08363bdd8106129ad694fb8f0b3be9d0e216222b57e44de5166f519b83')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # update out-of-sync lockfile
+  patch -p1 -i ../update-lockfile.patch
+
+  # download dependencies
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname"
+
+  cargo build --frozen --release --all-features
+}
+
+check() {
+  cd "$pkgname"
+
+  cargo test --frozen --all-features
+}
+
+package() {
+  cd "$pkgname"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" target/release/rustscan
+}

Copied: rustscan/repos/community-x86_64/update-lockfile.patch (from rev 
1237837, rustscan/trunk/update-lockfile.patch)
===
--- community-x86_64/update-lockfile.patch  (rev 0)
+++ community-x86_64/update-lockfile.patch  2022-06-14 02:15:51 UTC (rev 
1237838)
@@ -0,0 +1,11 @@
+--- a/Cargo.lock
 b/Cargo.lock
+@@ -1110,7 +1110,7 @@
+ 
+ [[package]]
+ name = "rustscan"
+-version = "2.0.0"
++version = "2.1.0"
+ dependencies = [
+  "ansi_term",
+  "anyhow",



[arch-commits] Commit in (5 files)

2022-06-13 Thread George Rawlinson via arch-commits
Date: Tuesday, June 14, 2022 @ 02:15:09
  Author: grawlinson
Revision: 1237837

addpkg: rustscan 2.1.0-2

Added:
  rustscan/
  rustscan/repos/
  rustscan/trunk/
  rustscan/trunk/PKGBUILD
  rustscan/trunk/update-lockfile.patch

---+
 PKGBUILD  |   57 
 update-lockfile.patch |   11 +
 2 files changed, 68 insertions(+)

Added: rustscan/trunk/PKGBUILD
===
--- rustscan/trunk/PKGBUILD (rev 0)
+++ rustscan/trunk/PKGBUILD 2022-06-14 02:15:09 UTC (rev 1237837)
@@ -0,0 +1,57 @@
+# Maintainer: George Rawlinson 
+# Contributor: Gobidev 
+# Contributor: Hao Long 
+
+pkgname=rustscan
+pkgver=2.1.0
+pkgrel=2
+pkgdesc='A modern port scanner'
+arch=('x86_64')
+url='https://github.com/rustscan/RustScan'
+license=('GPL3')
+depends=('gcc-libs' 'nmap')
+makedepends=('git' 'rust')
+checkdepends=('python')
+options=('!lto')
+_commit='075025113d849303af8366ada88da2edcd8a24c0'
+source=(
+  "$pkgname::git+$url#commit=$_commit"
+  'update-lockfile.patch'
+)
+b2sums=('SKIP'
+
'bede006174ed64bb1f2dcfb1ea4fc9e8b676af176c25299415a99e107581103c04f1ec08363bdd8106129ad694fb8f0b3be9d0e216222b57e44de5166f519b83')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # update out-of-sync lockfile
+  patch -p1 -i ../update-lockfile.patch
+
+  # download dependencies
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname"
+
+  cargo build --frozen --release --all-features
+}
+
+check() {
+  cd "$pkgname"
+
+  cargo test --frozen --all-features
+}
+
+package() {
+  cd "$pkgname"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" target/release/rustscan
+}

Added: rustscan/trunk/update-lockfile.patch
===
--- rustscan/trunk/update-lockfile.patch(rev 0)
+++ rustscan/trunk/update-lockfile.patch2022-06-14 02:15:09 UTC (rev 
1237837)
@@ -0,0 +1,11 @@
+--- a/Cargo.lock
 b/Cargo.lock
+@@ -1110,7 +1110,7 @@
+ 
+ [[package]]
+ name = "rustscan"
+-version = "2.0.0"
++version = "2.1.0"
+ dependencies = [
+  "ansi_term",
+  "anyhow",



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

2022-06-13 Thread George Rawlinson via arch-commits
Date: Tuesday, June 14, 2022 @ 01:51:50
  Author: grawlinson
Revision: 1237836

archrelease: copy trunk to community-x86_64

Added:
  stumpwm/repos/community-x86_64/PKGBUILD
(from rev 1237835, stumpwm/trunk/PKGBUILD)
  stumpwm/repos/community-x86_64/stumpwm.desktop
(from rev 1237835, stumpwm/trunk/stumpwm.desktop)
Deleted:
  stumpwm/repos/community-x86_64/PKGBUILD
  stumpwm/repos/community-x86_64/stumpwm.desktop

-+
 PKGBUILD|  155 +++---
 stumpwm.desktop |   18 +++---
 2 files changed, 89 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-14 01:51:00 UTC (rev 1237835)
+++ PKGBUILD2022-06-14 01:51:50 UTC (rev 1237836)
@@ -1,75 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Dario Klingenberg 
-# Contributor: Kaare Jenssen 
-# Contributor: Julian DeMille 
-# Contributor: Alexander F Rødseth 
-# Contributor: Chris Dunder 
-# Contributor: M Rawash 
-# Contributor: olvar 
-# Contributor: Andrew Antle 
-# Contributor: joyfulgirl 
-# Contributor: Jonathan Friedman 
-# Contributor: Stefan Husmann 
-# Contributor: sidereus 
-
-pkgname=stumpwm
-pkgver=22.05
-pkgrel=2
-pkgdesc='Tiling, keyboard-driven window manager written in Common Lisp'
-arch=('x86_64')
-url='https://stumpwm.github.io/'
-license=('GPL2')
-depends=(
-  'sbcl'
-  'cl-ppcre'
-  'cl-clx'
-  'cl-alexandria'
-)
-makedepends=('git')
-optdepends=(
-  'xorg-xprop: for stumpish, the StumpWM Interactive Shell'
-  'rlwrap: command completion and history in stumpish'
-  'emacs: edit and eval stumpwm code with M-x stumpwm-mode'
-  'alsa-utils: control the volume with amixer.lisp'
-  'mpd: control mpd with mpd.lisp'
-  'surfraw: surf the internet with surfraw.lisp'
-)
-options=('!strip' '!makeflags')
-_commit='09685fcddc32befcf7a0fbe38df9b0613fc4539b'
-source=(
-  "$pkgname::git+https://github.com/stumpwm/stumpwm#commit=$_commit";
-  'stumpwm.desktop'
-)
-b2sums=('SKIP'
-
'a6bf8083d300854c4252046937e18bea935b4bd496677b8bcf0ca74c3af91f37dcd0f7ce766b23ac0b22a9fbbec40d55ca2804c8ecf46db087cc1842116d8f6c')
-
-pkgver() {
-  cd "$pkgname"
-
-  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
-}
-
-build() {
-  cd "$pkgname"
-
-  autoconf
-
-  ./configure \
---prefix=/usr \
---with-module-dir=/usr/share/stumpwm/contrib
-
-  make
-}
-
-package() {
-  cd "$pkgname"
-
-  make destdir="$pkgdir" install
-
-  # sample configuration
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" \
-sample-stumpwmrc.lisp README.md
-
-  # desktop file
-  install -vDm644 -t "$pkgdir/usr/share/xsessions" ../stumpwm.desktop
-}

Copied: stumpwm/repos/community-x86_64/PKGBUILD (from rev 1237835, 
stumpwm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-14 01:51:50 UTC (rev 1237836)
@@ -0,0 +1,80 @@
+# Maintainer: George Rawlinson 
+# Contributor: Dario Klingenberg 
+# Contributor: Kaare Jenssen 
+# Contributor: Julian DeMille 
+# Contributor: Alexander F Rødseth 
+# Contributor: Chris Dunder 
+# Contributor: M Rawash 
+# Contributor: olvar 
+# Contributor: Andrew Antle 
+# Contributor: joyfulgirl 
+# Contributor: Jonathan Friedman 
+# Contributor: Stefan Husmann 
+# Contributor: sidereus 
+
+pkgname=stumpwm
+pkgver=22.05
+pkgrel=3
+pkgdesc='Tiling, keyboard-driven window manager written in Common Lisp'
+arch=('x86_64')
+url='https://stumpwm.github.io/'
+license=('GPL2')
+depends=(
+  'sbcl'
+  'cl-ppcre'
+  'cl-clx'
+  'cl-alexandria'
+)
+makedepends=('git' 'texlive-core')
+optdepends=(
+  'xorg-xprop: for stumpish, the StumpWM Interactive Shell'
+  'rlwrap: command completion and history in stumpish'
+  'emacs: edit and eval stumpwm code with M-x stumpwm-mode'
+  'alsa-utils: control the volume with amixer.lisp'
+  'mpd: control mpd with mpd.lisp'
+  'surfraw: surf the internet with surfraw.lisp'
+)
+options=('!strip' '!makeflags')
+_commit='09685fcddc32befcf7a0fbe38df9b0613fc4539b'
+source=(
+  "$pkgname::git+https://github.com/stumpwm/stumpwm#commit=$_commit";
+  'stumpwm.desktop'
+)
+b2sums=('SKIP'
+
'a6bf8083d300854c4252046937e18bea935b4bd496677b8bcf0ca74c3af91f37dcd0f7ce766b23ac0b22a9fbbec40d55ca2804c8ecf46db087cc1842116d8f6c')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed -e 's/^v//' -e 's/-/.r/' -e 's/-/./g'
+}
+
+build() {
+  cd "$pkgname"
+
+  autoconf
+
+  ./configure \
+--prefix=/usr \
+--with-module-dir=/usr/share/stumpwm/contrib
+
+  make
+
+  # generate html/pdf documentation
+  makeinfo --pdf stumpwm.texi
+  makeinfo --html stumpwm.texi
+}
+
+package() {
+  cd "$pkgname"
+
+  make destdir="$pkgdir" install
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" \
+sample-stumpwmrc.lisp README.md stumpwm.pdf
+  cp -vr stumpwm.html "$pkgdir/usr/share/doc/$pkgname/html"
+
+  # desktop file
+  install

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

2022-06-13 Thread George Rawlinson via arch-commits
Date: Tuesday, June 14, 2022 @ 01:51:00
  Author: grawlinson
Revision: 1237835

upgpkg: stumpwm 22.05-3

Include html and pdf documentation.

Modified:
  stumpwm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 23:57:17 UTC (rev 1237834)
+++ PKGBUILD2022-06-14 01:51:00 UTC (rev 1237835)
@@ -14,7 +14,7 @@
 
 pkgname=stumpwm
 pkgver=22.05
-pkgrel=2
+pkgrel=3
 pkgdesc='Tiling, keyboard-driven window manager written in Common Lisp'
 arch=('x86_64')
 url='https://stumpwm.github.io/'
@@ -25,7 +25,7 @@
   'cl-clx'
   'cl-alexandria'
 )
-makedepends=('git')
+makedepends=('git' 'texlive-core')
 optdepends=(
   'xorg-xprop: for stumpish, the StumpWM Interactive Shell'
   'rlwrap: command completion and history in stumpish'
@@ -59,6 +59,10 @@
 --with-module-dir=/usr/share/stumpwm/contrib
 
   make
+
+  # generate html/pdf documentation
+  makeinfo --pdf stumpwm.texi
+  makeinfo --html stumpwm.texi
 }
 
 package() {
@@ -66,9 +70,10 @@
 
   make destdir="$pkgdir" install
 
-  # sample configuration
+  # documentation
   install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" \
-sample-stumpwmrc.lisp README.md
+sample-stumpwmrc.lisp README.md stumpwm.pdf
+  cp -vr stumpwm.html "$pkgdir/usr/share/doc/$pkgname/html"
 
   # desktop file
   install -vDm644 -t "$pkgdir/usr/share/xsessions" ../stumpwm.desktop



[arch-commits] Commit in python-setuptools/repos/testing-any (4 files)

2022-06-13 Thread Felix Yan via arch-commits
Date: Tuesday, June 14, 2022 @ 00:43:48
  Author: felixonmars
Revision: 448529

archrelease: copy trunk to testing-any

Added:
  python-setuptools/repos/testing-any/PKGBUILD
(from rev 448528, python-setuptools/trunk/PKGBUILD)
  python-setuptools/repos/testing-any/system-validate-pyproject.patch
(from rev 448528, python-setuptools/trunk/system-validate-pyproject.patch)
Deleted:
  python-setuptools/repos/testing-any/PKGBUILD
  python-setuptools/repos/testing-any/system-validate-pyproject.patch

-+
 PKGBUILD|  180 +++---
 system-validate-pyproject.patch |   62 ++---
 2 files changed, 123 insertions(+), 119 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-14 00:43:34 UTC (rev 448528)
+++ PKGBUILD2022-06-14 00:43:48 UTC (rev 448529)
@@ -1,88 +0,0 @@
-# Maintainer: Angel Velasquez 
-# Maintainer: Felix Yan 
-# Contributor: Eli Schwartz 
-
-pkgname=python-setuptools
-pkgver=61.3.0
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="https://pypi.org/project/setuptools/";
-depends=('python-appdirs' 'python-jaraco.text' 'python-more-itertools' 
'python-nspektr'
- 'python-ordered-set' 'python-packaging' 'python-pyparsing' 
'python-tomli'
- 'python-validate-pyproject')
-makedepends=('git' 'python-setuptools')
-checkdepends=('python-jaraco.envs' 'python-jaraco.path' 'python-mock' 
'python-pip' 'python-pip-run'
-  'python-pytest-fixture-config' 'python-pytest-flake8' 
'python-pytest-virtualenv'
-  'python-wheel' 'python-paver' 'python-pytest-cov' 
'python-sphinx' 'python-build'
-  'python-ini2toml' 'python-tomli-w')
-provides=('python-distribute')
-replaces=('python-distribute')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz";
-system-validate-pyproject.patch)
-sha512sums=('35e2b848cf79e577b8c469562cb68a80b27d42d2d9c1c94f84fea9beb85e2db0796ed64d414add67a404d801c4f4e6cd489a72153de4dc8ed8b45fab24c28fd9'
-
'50495062093b1b6902484c384abe073896e4f45c5768741582e178014367f186831711a72a8a987e7bacafe96d871161fc07c686dd92c6886de19302f6a10b56')
-
-export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
-
-prepare() {
-  cd setuptools-$pkgver
-
-  patch -p1 -i ../system-validate-pyproject.patch
-
-  rm -r {pkg_resources,setuptools}/{extern,_vendor} 
setuptools/config/_validate_pyproject
-
-  # Upstream devendoring logic is badly broken, see:
-  # https://bugs.archlinux.org/task/58670
-  # https://github.com/pypa/pip/issues/5429
-  # https://github.com/pypa/setuptools/issues/1383
-  # The simplest fix is to simply rewrite import paths to use the canonical
-  # location in the first place
-  for _module in setuptools pkg_resources '' ; do
-  find . -name \*.py -exec sed -i \
-  -e 's/from '$_module.extern' import/import/' \
-  -e 's/from '$_module.extern'\./from /' \
-  -e 's/import '$_module.extern'\./import /' \
-  -e "s/__import__('$_module.extern./__import__('/" \
-  -e 's/from \.\.extern\./from /' \
-  {} +
-  done
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-  -e '/tag_date = 1/d' \
-  -i setup.cfg
-
-  # Fix shebang
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-}
-
-build() {
-  cd setuptools-$pkgver
-  python setup.py build
-}
-
-check() { (
-  # Workaround UTF-8 tests by setting LC_CTYPE
-  export LC_CTYPE=en_US.UTF-8
-
-  # https://github.com/pypa/setuptools/pull/810
-  export PYTHONDONTWRITEBYTECODE=1
-
-  cd setuptools-$pkgver
-  SETUPTOOLS_USE_DISTUTILS=stdlib python -m pytest \
---deselect setuptools/tests/test_distutils_adoption.py \
---deselect setuptools/tests/integration/test_pip_install_sdist.py \
---deselect 
setuptools/tests/test_setuptools.py::test_its_own_wheel_does_not_contain_tests \
---deselect setuptools/tests/test_virtualenv.py \
---deselect 
"setuptools/tests/test_editable_install.py::test_editable_with_pyproject[__import__('setuptools').setup()]"
 \
---deselect 
setuptools/tests/config/test_apply_pyprojecttoml.py::test_apply_pyproject_equivalent_to_setupcfg
 \
---deselect 
setuptools/tests/config/test_pyprojecttoml.py::test_invalid_example
-)}
-
-package() {
-  cd setuptools-$pkgver
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}

Copied: python-setuptools/repos/testing-any/PKGBUILD (from rev 448528, 
python-setuptools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-14 00:43:48 UTC (rev 448529)
@@ -0,0 +1,92 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Felix Yan 
+# Contributor:

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

2022-06-13 Thread Felix Yan via arch-commits
Date: Tuesday, June 14, 2022 @ 00:43:34
  Author: felixonmars
Revision: 448528

upgpkg: python-setuptools 1:61.3.1-1

Modified:
  python-setuptools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 22:25:30 UTC (rev 448527)
+++ PKGBUILD2022-06-14 00:43:34 UTC (rev 448528)
@@ -3,7 +3,7 @@
 # Contributor: Eli Schwartz 
 
 pkgname=python-setuptools
-pkgver=61.3.0
+pkgver=61.3.1
 pkgrel=1
 epoch=1
 pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
@@ -22,7 +22,7 @@
 replaces=('python-distribute')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz";
 system-validate-pyproject.patch)
-sha512sums=('35e2b848cf79e577b8c469562cb68a80b27d42d2d9c1c94f84fea9beb85e2db0796ed64d414add67a404d801c4f4e6cd489a72153de4dc8ed8b45fab24c28fd9'
+sha512sums=('33569c80465e6465871276e1923d165a1ca82599654f8375d5280f9b2ef48f227c79e457b9462ac575a82287c997b6078b496cb606134cc67a3e5e906cc2e5e0'
 
'50495062093b1b6902484c384abe073896e4f45c5768741582e178014367f186831711a72a8a987e7bacafe96d871161fc07c686dd92c6886de19302f6a10b56')
 
 export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
@@ -72,12 +72,16 @@
   export PYTHONDONTWRITEBYTECODE=1
 
   cd setuptools-$pkgver
-  SETUPTOOLS_USE_DISTUTILS=stdlib python -m pytest \
+  # 1-7: skipping all tests using "setuptools_sdist", "setuptools_wheel" (or 
"venv" which uses the latter)
+  # 8-10: subtle difference introduced by devendoring
+  PRE_BUILT_SETUPTOOLS_SDIST="$PWD"/build/lib python -m pytest \
+--deselect setuptools/tests/integration/test_pip_install_sdist.py \
 --deselect setuptools/tests/test_distutils_adoption.py \
---deselect setuptools/tests/integration/test_pip_install_sdist.py \
 --deselect 
setuptools/tests/test_setuptools.py::test_its_own_wheel_does_not_contain_tests \
 --deselect setuptools/tests/test_virtualenv.py \
---deselect 
"setuptools/tests/test_editable_install.py::test_editable_with_pyproject[__import__('setuptools').setup()]"
 \
+--deselect 
setuptools/tests/test_editable_install.py::test_editable_with_pyproject \
+--deselect 
setuptools/tests/config/test_apply_pyprojecttoml.py::TestMeta::test_example_file_in_sdist
 \
+--deselect 
setuptools/tests/config/test_apply_pyprojecttoml.py::TestMeta::test_example_file_not_in_wheel
 \
 --deselect 
setuptools/tests/config/test_apply_pyprojecttoml.py::test_apply_pyproject_equivalent_to_setupcfg
 \
 --deselect 
setuptools/tests/config/test_pyprojecttoml.py::test_invalid_example
 )}



[arch-commits] Commit in perl-package-stash-xs/repos/community-x86_64 (2 files)

2022-06-13 Thread Felix Yan via arch-commits
Date: Monday, June 13, 2022 @ 23:57:17
  Author: felixonmars
Revision: 1237834

archrelease: copy trunk to community-x86_64

Added:
  perl-package-stash-xs/repos/community-x86_64/PKGBUILD
(from rev 1237833, perl-package-stash-xs/trunk/PKGBUILD)
Deleted:
  perl-package-stash-xs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 23:57:04 UTC (rev 1237833)
+++ PKGBUILD2022-06-13 23:57:17 UTC (rev 1237834)
@@ -1,45 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Justin Davis 
-
-pkgname=perl-package-stash-xs
-pkgver=0.29
-pkgrel=6
-pkgdesc="Faster and more correct implementation of the Package::Stash API"
-arch=('x86_64')
-url="https://search.cpan.org/dist/Package-Stash-XS";
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-makedepends=('perl-extutils-makemaker')
-checkdepends=('perl-test-fatal' 'perl-test-requires')
-options=('!emptydirs')
-source=(https://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Package-Stash-XS-$pkgver.tar.gz)
-md5sums=('e5b58846a01aa39c36605e071c306dcc')
-
-build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT="INSTALLDIRS=vendor" \
-  PERL_MB_OPT="--installdirs vendor" \
-  MODULEBUILDRC=/dev/null
-
-cd Package-Stash-XS-${pkgver}
-
-/usr/bin/perl Makefile.PL
-
-make
-  )
-}
-
-check() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
-cd Package-Stash-XS-${pkgver}
-
-make test
-  )
-}
-
-package() {
-cd Package-Stash-XS-${pkgver}
-
-make DESTDIR="$pkgdir"/ install
-}

Copied: perl-package-stash-xs/repos/community-x86_64/PKGBUILD (from rev 
1237833, perl-package-stash-xs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 23:57:17 UTC (rev 1237834)
@@ -0,0 +1,31 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Justin Davis 
+
+pkgname=perl-package-stash-xs
+pkgver=0.30
+pkgrel=1
+pkgdesc="Faster and more correct implementation of the Package::Stash API"
+arch=('x86_64')
+url="https://search.cpan.org/dist/Package-Stash-XS";
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+checkdepends=('perl-test-fatal' 'perl-test-needs')
+options=('!emptydirs')
+source=(https://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Package-Stash-XS-$pkgver.tar.gz)
+sha512sums=('528faaefa71c5c37d378a9bedf325babf3b2717024995d166fc77bb1fb1ce1aed11da775608029a1c215c903dcd7ac9f68569cd8fd3690681ccd72b47c51b0a3')
+
+build() {
+  cd Package-Stash-XS-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd Package-Stash-XS-$pkgver
+  make test
+}
+
+package() {
+  cd Package-Stash-XS-$pkgver
+  make DESTDIR="$pkgdir" install
+}



[arch-commits] Commit in perl-package-stash-xs/trunk (PKGBUILD)

2022-06-13 Thread Felix Yan via arch-commits
Date: Monday, June 13, 2022 @ 23:57:04
  Author: felixonmars
Revision: 1237833

upgpkg: perl-package-stash-xs 0.30-1

Modified:
  perl-package-stash-xs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 22:29:22 UTC (rev 1237832)
+++ PKGBUILD2022-06-13 23:57:04 UTC (rev 1237833)
@@ -2,44 +2,30 @@
 # Contributor: Justin Davis 
 
 pkgname=perl-package-stash-xs
-pkgver=0.29
-pkgrel=6
+pkgver=0.30
+pkgrel=1
 pkgdesc="Faster and more correct implementation of the Package::Stash API"
 arch=('x86_64')
 url="https://search.cpan.org/dist/Package-Stash-XS";
 license=('PerlArtistic' 'GPL')
 depends=('perl')
-makedepends=('perl-extutils-makemaker')
-checkdepends=('perl-test-fatal' 'perl-test-requires')
+checkdepends=('perl-test-fatal' 'perl-test-needs')
 options=('!emptydirs')
 
source=(https://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Package-Stash-XS-$pkgver.tar.gz)
-md5sums=('e5b58846a01aa39c36605e071c306dcc')
+sha512sums=('528faaefa71c5c37d378a9bedf325babf3b2717024995d166fc77bb1fb1ce1aed11da775608029a1c215c903dcd7ac9f68569cd8fd3690681ccd72b47c51b0a3')
 
 build() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
-  PERL_AUTOINSTALL=--skipdeps\
-  PERL_MM_OPT="INSTALLDIRS=vendor" \
-  PERL_MB_OPT="--installdirs vendor" \
-  MODULEBUILDRC=/dev/null
-
-cd Package-Stash-XS-${pkgver}
-
-/usr/bin/perl Makefile.PL
-
-make
-  )
+  cd Package-Stash-XS-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
 }
 
 check() {
-  ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
-cd Package-Stash-XS-${pkgver}
-
-make test
-  )
+  cd Package-Stash-XS-$pkgver
+  make test
 }
 
 package() {
-cd Package-Stash-XS-${pkgver}
-
-make DESTDIR="$pkgdir"/ install
+  cd Package-Stash-XS-$pkgver
+  make DESTDIR="$pkgdir" install
 }



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

2022-06-13 Thread Sébastien Luttringer via arch-commits
Date: Monday, June 13, 2022 @ 22:29:22
  Author: seblu
Revision: 1237832

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 22:29:17 UTC (rev 1237831)
+++ PKGBUILD2022-06-13 22:29:22 UTC (rev 1237832)
@@ -1,69 +0,0 @@
-# Maintainer: Sébastien Luttringer
-# Contributor: Patrik Cyvoct 
-# Contributor: Mikkel Oscar Lyderik 
-
-pkgname=scaleway-cli
-pkgver=2.5.1
-pkgrel=2
-pkgdesc='Command line interface for Scaleway Cloud'
-arch=('x86_64')
-url='https://www.scaleway.com/cli/'
-license=('Apache')
-depends=('glibc')
-makedepends=('go' 'git')
-source=("git+https://github.com/scaleway/scaleway-cli.git#tag=v$pkgver";)
-sha256sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local src
-  for src in "${source[@]}"; do
-src="${src%%::*}"
-src="${src##*/}"
-[[ $src = *.patch ]] || continue
-echo "Applying patch $src..."
-patch -Np1 < "../$src"
-  done
-  :
-}
-
-build() {
-  cd $pkgname
-  export CGO_CPPFLAGS="$CPPFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_CXXFLAGS="$CXXFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
-  go build \
--buildmode=pie \
--trimpath \
--mod=readonly \
--modcacherw \
--ldflags "-linkmode external -extldflags \"${LDFLAGS}\" -X 
main.Version=$pkgver-$pkgrel -X main.BuildDate=$(date -u 
'+%Y-%m-%dT%I:%M:%S%p')" \
--o scw ./cmd/scw/main.go
-  PATH=. scw autocomplete script shell=zsh > zshcomp
-  PATH=. scw autocomplete script shell=bash > bashcomp
-}
-
-check() {
-  cd $pkgname
-  export CGO_CPPFLAGS="$CPPFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_CXXFLAGS="$CXXFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
-  go test ./... \
--buildmode=pie \
--trimpath \
--mod=readonly \
--modcacherw \
--ldflags "-linkmode external -extldflags \"${LDFLAGS}\" -X 
main.Version=$pkgver-$pkgrel -X main.BuildDate=$(date -u 
'+%Y-%m-%dT%I:%M:%S%p')"
-}
-
-package() {
-  cd $pkgname
-  install -Dm755 scw "$pkgdir"/usr/bin/scw
-  install -Dm644 bashcomp "$pkgdir"/usr/share/bash-completion/completions/scw
-  install -Dm644 zshcomp "$pkgdir"/usr/share/zsh/site-functions/_scw
-}
-
-# vim:set ts=2 sw=2 ft=PKGBUILD et:

Copied: scaleway-cli/repos/community-x86_64/PKGBUILD (from rev 1237831, 
scaleway-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 22:29:22 UTC (rev 1237832)
@@ -0,0 +1,69 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Patrik Cyvoct 
+# Contributor: Mikkel Oscar Lyderik 
+
+pkgname=scaleway-cli
+pkgver=2.5.2
+pkgrel=1
+pkgdesc='Command line interface for Scaleway Cloud'
+arch=('x86_64')
+url='https://www.scaleway.com/cli/'
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'git')
+source=("git+https://github.com/scaleway/scaleway-cli.git#tag=v$pkgver";)
+sha256sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  # apply patch from the source array (should be a pacman feature)
+  local src
+  for src in "${source[@]}"; do
+src="${src%%::*}"
+src="${src##*/}"
+[[ $src = *.patch ]] || continue
+echo "Applying patch $src..."
+patch -Np1 < "../$src"
+  done
+  :
+}
+
+build() {
+  cd $pkgname
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export CGO_LDFLAGS="$LDFLAGS"
+  go build \
+-buildmode=pie \
+-trimpath \
+-mod=readonly \
+-modcacherw \
+-ldflags "-linkmode external -extldflags \"${LDFLAGS}\" -X 
main.Version=$pkgver-$pkgrel -X main.BuildDate=$(date -u 
'+%Y-%m-%dT%I:%M:%S%p')" \
+-o scw ./cmd/scw/main.go
+  PATH=. scw autocomplete script shell=zsh > zshcomp
+  PATH=. scw autocomplete script shell=bash > bashcomp
+}
+
+check() {
+  cd $pkgname
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export CGO_LDFLAGS="$LDFLAGS"
+  go test ./... \
+-buildmode=pie \
+-trimpath \
+-mod=readonly \
+-modcacherw \
+-ldflags "-linkmode external -extldflags \"${LDFLAGS}\" -X 
main.Version=$pkgver-$pkgrel -X main.BuildDate=$(date -u 
'+%Y-%m-%dT%I:%M:%S%p')"
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 scw "$pkgdir"/usr/bin/scw
+  install -Dm644 bashcomp "$pkgdir"/usr/share/bash-completion/completions/scw
+  install -Dm644 zshcomp "$pkgdir"/usr/share/zsh/site-functions/_scw
+}
+
+# vim:set ts=2 sw=2 ft=PKGBUILD et:



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

2022-06-13 Thread Sébastien Luttringer via arch-commits
Date: Monday, June 13, 2022 @ 22:29:17
  Author: seblu
Revision: 1237831

upgpkg: scaleway-cli 2.5.2-1

Modified:
  scaleway-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 21:32:12 UTC (rev 1237830)
+++ PKGBUILD2022-06-13 22:29:17 UTC (rev 1237831)
@@ -3,8 +3,8 @@
 # Contributor: Mikkel Oscar Lyderik 
 
 pkgname=scaleway-cli
-pkgver=2.5.1
-pkgrel=2
+pkgver=2.5.2
+pkgrel=1
 pkgdesc='Command line interface for Scaleway Cloud'
 arch=('x86_64')
 url='https://www.scaleway.com/cli/'



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

2022-06-13 Thread Sébastien Luttringer via arch-commits
Date: Monday, June 13, 2022 @ 22:25:30
  Author: seblu
Revision: 448527

db-move: moved file from [testing] to [core] (x86_64)

Added:
  file/repos/core-x86_64/PKGBUILD
(from rev 448526, file/repos/testing-x86_64/PKGBUILD)
Deleted:
  file/repos/core-x86_64/PKGBUILD
  file/repos/testing-x86_64/

--+
 /PKGBUILD|   60 +
 core-x86_64/PKGBUILD |   60 -
 2 files changed, 60 insertions(+), 60 deletions(-)

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2022-06-13 20:27:29 UTC (rev 448526)
+++ core-x86_64/PKGBUILD2022-06-13 22:25:30 UTC (rev 448527)
@@ -1,60 +0,0 @@
-# Maintainer: Sébastien Luttringer 
-# Contributor: Allan McRae 
-# Contributor: Andreas Radke 
-
-pkgname=file
-pkgver=5.41
-pkgrel=1
-pkgdesc='File type identification utility'
-arch=('x86_64')
-license=('custom')
-groups=('base-devel')
-url='https://www.darwinsys.com/file/'
-depends=('glibc' 'zlib' 'xz' 'bzip2' 'libseccomp' 'libseccomp.so')
-provides=('libmagic.so')
-options=('!emptydirs')
-source=("https://astron.com/pub/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('BE04995BA8F90ED0C0C176C471112AB16CB33B3A') # Christos Zoulas
-sha256sums=('13e532c7b364f7d57e23dfeea3147103150cb90593a57af86c10e4f6e411603f'
-'SKIP')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # apply patch from the source array (should be a pacman feature)
-  local src
-  for src in "${source[@]}"; do
-src="${src%%::*}"
-src="${src##*/}"
-[[ $src = *.patch ]] || continue
-echo "Applying patch $src..."
-patch -Np1 < "../$src"
-  done
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  # Fix linking libmagic (vfork needs libpthread)
-  CFLAGS+=" -pthread"
-
-  ./configure \
---prefix=/usr \
---datadir=/usr/share/file \
---enable-fsect-man5 \
---enable-libseccomp
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: file/repos/core-x86_64/PKGBUILD (from rev 448526, 
file/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2022-06-13 22:25:30 UTC (rev 448527)
@@ -0,0 +1,60 @@
+# Maintainer: Sébastien Luttringer 
+# Contributor: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=file
+pkgver=5.42
+pkgrel=1
+pkgdesc='File type identification utility'
+arch=('x86_64')
+license=('custom')
+groups=('base-devel')
+url='https://www.darwinsys.com/file/'
+depends=('glibc' 'zlib' 'xz' 'bzip2' 'libseccomp' 'libseccomp.so')
+provides=('libmagic.so')
+options=('!emptydirs')
+source=("https://astron.com/pub/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('BE04995BA8F90ED0C0C176C471112AB16CB33B3A') # Christos Zoulas
+sha256sums=('c076fb4d029c74073f15c43361ef572cfb868407d347190ba834af3b1639b0e4'
+'SKIP')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local src
+  for src in "${source[@]}"; do
+src="${src%%::*}"
+src="${src##*/}"
+[[ $src = *.patch ]] || continue
+echo "Applying patch $src..."
+patch -Np1 < "../$src"
+  done
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Fix linking libmagic (vfork needs libpthread)
+  CFLAGS+=" -pthread"
+
+  ./configure \
+--prefix=/usr \
+--datadir=/usr/share/file \
+--enable-fsect-man5 \
+--enable-libseccomp
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-06-13 Thread George Rawlinson via arch-commits
Date: Monday, June 13, 2022 @ 21:32:12
  Author: grawlinson
Revision: 1237830

archrelease: copy trunk to community-x86_64

Added:
  difftastic/repos/community-x86_64/PKGBUILD
(from rev 1237829, difftastic/trunk/PKGBUILD)
Deleted:
  difftastic/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 21:31:33 UTC (rev 1237829)
+++ PKGBUILD2022-06-13 21:32:12 UTC (rev 1237830)
@@ -1,61 +0,0 @@
-# Maintainer: George Rawlinson 
-# Maintainer: Caleb Maclennan 
-# Contributor: Wesley Moore 
-
-pkgname=difftastic
-pkgver=0.29.0
-_commit=426ce9751f3b1ed54edfebc34a50010a73262738
-pkgrel=1
-pkgdesc='An experimental diff tool that compares files based on their syntax'
-arch=('x86_64')
-url='https://difftastic.wilfred.me.uk'
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('git' 'rust' 'mdbook')
-source=("$pkgname::git+https://github.com/Wilfred/difftastic.git#commit=$_commit";)
-b2sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  git describe --tags | sed 's/^v//'
-}
-
-prepare() {
-  cd "$pkgname"
-
-  # download dependencies
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "$pkgname"
-  export CFLAGS+=" -ffat-lto-objects"
-
-  # binary
-  cargo build --frozen --release --all-features
-
-  # documentation
-  cd manual
-  mdbook build
-}
-
-check() {
-  cd "$pkgname"
-
-  cargo test --frozen --all-features
-}
-
-package() {
-  cd "$pkgname"
-
-  # binary
-  install -vDm755 -t "$pkgdir/usr/bin" target/release/difft
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-  cp -vr manual/book "$pkgdir/usr/share/doc/$pkgname/manual"
-
-  # license
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-}

Copied: difftastic/repos/community-x86_64/PKGBUILD (from rev 1237829, 
difftastic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 21:32:12 UTC (rev 1237830)
@@ -0,0 +1,61 @@
+# Maintainer: George Rawlinson 
+# Maintainer: Caleb Maclennan 
+# Contributor: Wesley Moore 
+
+pkgname=difftastic
+pkgver=0.29.1
+_commit=17f98a7f4d5a61c0d74689aba57652a8333fba39
+pkgrel=1
+pkgdesc='An experimental diff tool that compares files based on their syntax'
+arch=('x86_64')
+url='https://difftastic.wilfred.me.uk'
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('git' 'rust' 'mdbook')
+source=("$pkgname::git+https://github.com/Wilfred/difftastic.git#commit=$_commit";)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # download dependencies
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname"
+  export CFLAGS+=" -ffat-lto-objects"
+
+  # binary
+  cargo build --frozen --release --all-features
+
+  # documentation
+  cd manual
+  mdbook build
+}
+
+check() {
+  cd "$pkgname"
+
+  cargo test --frozen --all-features
+}
+
+package() {
+  cd "$pkgname"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" target/release/difft
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+  cp -vr manual/book "$pkgdir/usr/share/doc/$pkgname/manual"
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}



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

2022-06-13 Thread George Rawlinson via arch-commits
Date: Monday, June 13, 2022 @ 21:31:33
  Author: grawlinson
Revision: 1237829

upgpkg: difftastic 0.29.1-1; new upstream release

Modified:
  difftastic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 21:11:16 UTC (rev 1237828)
+++ PKGBUILD2022-06-13 21:31:33 UTC (rev 1237829)
@@ -3,8 +3,8 @@
 # Contributor: Wesley Moore 
 
 pkgname=difftastic
-pkgver=0.29.0
-_commit=426ce9751f3b1ed54edfebc34a50010a73262738
+pkgver=0.29.1
+_commit=17f98a7f4d5a61c0d74689aba57652a8333fba39
 pkgrel=1
 pkgdesc='An experimental diff tool that compares files based on their syntax'
 arch=('x86_64')



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

2022-06-13 Thread Orhun Parmaksiz via arch-commits
Date: Monday, June 13, 2022 @ 21:11:16
  Author: orhun
Revision: 1237828

archrelease: copy trunk to community-x86_64

Added:
  grcov/repos/community-x86_64/
  grcov/repos/community-x86_64/PKGBUILD
(from rev 1237827, grcov/trunk/PKGBUILD)

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

Copied: grcov/repos/community-x86_64/PKGBUILD (from rev 1237827, 
grcov/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2022-06-13 21:11:16 UTC (rev 1237828)
@@ -0,0 +1,37 @@
+# Maintainer: Orhun Parmaksız 
+# Contributor: Sanpi 
+
+pkgname=grcov
+pkgver=0.8.10
+pkgrel=2
+pkgdesc="Rust tool to collect and aggregate code coverage data for multiple 
source files"
+arch=('x86_64')
+url="https://github.com/mozilla/grcov";
+license=('MPL2')
+depends=('zlib' 'gcc-libs')
+makedepends=('cargo')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('971efeccb23e8d6c397bcf71cf887e982dc48a3c199fb88e847de81a9c378df4')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --frozen
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo test --frozen --lib
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-06-13 Thread Orhun Parmaksiz via arch-commits
Date: Monday, June 13, 2022 @ 21:10:48
  Author: orhun
Revision: 1237827

addpkg: grcov 0.8.10-2

Added:
  grcov/
  grcov/repos/
  grcov/trunk/
  grcov/trunk/PKGBUILD

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

Added: grcov/trunk/PKGBUILD
===
--- grcov/trunk/PKGBUILD(rev 0)
+++ grcov/trunk/PKGBUILD2022-06-13 21:10:48 UTC (rev 1237827)
@@ -0,0 +1,37 @@
+# Maintainer: Orhun Parmaksız 
+# Contributor: Sanpi 
+
+pkgname=grcov
+pkgver=0.8.10
+pkgrel=2
+pkgdesc="Rust tool to collect and aggregate code coverage data for multiple 
source files"
+arch=('x86_64')
+url="https://github.com/mozilla/grcov";
+license=('MPL2')
+depends=('zlib' 'gcc-libs')
+makedepends=('cargo')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('971efeccb23e8d6c397bcf71cf887e982dc48a3c199fb88e847de81a9c378df4')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --frozen
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo test --frozen --lib
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-06-13 Thread Orhun Parmaksiz via arch-commits
Date: Monday, June 13, 2022 @ 20:44:21
  Author: orhun
Revision: 1237826

archrelease: copy trunk to community-x86_64

Added:
  cargo-nextest/repos/community-x86_64/PKGBUILD
(from rev 1237825, cargo-nextest/trunk/PKGBUILD)
Deleted:
  cargo-nextest/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 20:44:13 UTC (rev 1237825)
+++ PKGBUILD2022-06-13 20:44:21 UTC (rev 1237826)
@@ -1,41 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-# Contributor: KokaKiwi 
-
-pkgname=cargo-nextest
-pkgver=0.9.18
-pkgrel=1
-pkgdesc="A next-generation test runner for Rust."
-arch=('x86_64')
-url="https://github.com/nextest-rs/nextest";
-license=('Apache' 'MIT')
-depends=('gcc-libs')
-makedepends=('cargo')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/cargo-nextest-$pkgver.tar.gz")
-sha256sums=('608dd5a40cbe6f0475613777f90d8dd2b39378b35dce8184451964c6bb2cd82a')
-b2sums=('a7cff592b9a5f6be03634ba7673619c499866be36b168c8ae61ff8b63ac118a1cd5d7d085bbc4181089af78236ea8b55858711a34678d8cac5607a69eb3b03a3')
-options=('!lto')
-
-prepare() {
-  mv "nextest-$pkgname-$pkgver" "$pkgname-$pkgver"
-  cd "$pkgname-$pkgver"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --frozen --package "$pkgname"
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  cargo run --package cargo-nextest -- nextest run --all-features --profile ci
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE-MIT -t "$pkgdir/usr/share/licenses/$pkgname"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cargo-nextest/repos/community-x86_64/PKGBUILD (from rev 1237825, 
cargo-nextest/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 20:44:21 UTC (rev 1237826)
@@ -0,0 +1,41 @@
+# Maintainer: Orhun Parmaksız 
+# Contributor: KokaKiwi 
+
+pkgname=cargo-nextest
+pkgver=0.9.20
+pkgrel=1
+pkgdesc="A next-generation test runner for Rust."
+arch=('x86_64')
+url="https://github.com/nextest-rs/nextest";
+license=('Apache' 'MIT')
+depends=('gcc-libs')
+makedepends=('cargo')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/cargo-nextest-$pkgver.tar.gz")
+sha256sums=('ea2d707e56b4f3163c5fd5c585e5dccdc0d1c9925d090addc362966fbc7956cb')
+b2sums=('c57979a4c44cc67dfea17beecb88dafc92c39f4b93a1e1ade07d7cc4bf0a5eef4935e118e1d6fead523bdb00120e804f66ec219b5e82d0d63be578d482886044')
+options=('!lto')
+
+prepare() {
+  mv "nextest-$pkgname-$pkgver" "$pkgname-$pkgver"
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --frozen --package "$pkgname" --no-default-features
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo run --package cargo-nextest -- nextest run --all-features --profile ci
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE-MIT -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-06-13 Thread Orhun Parmaksiz via arch-commits
Date: Monday, June 13, 2022 @ 20:44:13
  Author: orhun
Revision: 1237825

upgpkg: cargo-nextest 0.9.20-1: upstream release

Modified:
  cargo-nextest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 20:38:21 UTC (rev 1237824)
+++ PKGBUILD2022-06-13 20:44:13 UTC (rev 1237825)
@@ -2,7 +2,7 @@
 # Contributor: KokaKiwi 
 
 pkgname=cargo-nextest
-pkgver=0.9.18
+pkgver=0.9.20
 pkgrel=1
 pkgdesc="A next-generation test runner for Rust."
 arch=('x86_64')
@@ -11,8 +11,8 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/cargo-nextest-$pkgver.tar.gz")
-sha256sums=('608dd5a40cbe6f0475613777f90d8dd2b39378b35dce8184451964c6bb2cd82a')
-b2sums=('a7cff592b9a5f6be03634ba7673619c499866be36b168c8ae61ff8b63ac118a1cd5d7d085bbc4181089af78236ea8b55858711a34678d8cac5607a69eb3b03a3')
+sha256sums=('ea2d707e56b4f3163c5fd5c585e5dccdc0d1c9925d090addc362966fbc7956cb')
+b2sums=('c57979a4c44cc67dfea17beecb88dafc92c39f4b93a1e1ade07d7cc4bf0a5eef4935e118e1d6fead523bdb00120e804f66ec219b5e82d0d63be578d482886044')
 options=('!lto')
 
 prepare() {
@@ -23,7 +23,7 @@
 
 build() {
   cd "$pkgname-$pkgver"
-  cargo build --release --frozen --package "$pkgname"
+  cargo build --release --frozen --package "$pkgname" --no-default-features
 }
 
 check() {



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

2022-06-13 Thread Orhun Parmaksiz via arch-commits
Date: Monday, June 13, 2022 @ 20:38:21
  Author: orhun
Revision: 1237824

archrelease: copy trunk to community-x86_64

Added:
  wasm-pack/repos/community-x86_64/PKGBUILD
(from rev 1237823, wasm-pack/trunk/PKGBUILD)
Deleted:
  wasm-pack/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 20:37:17 UTC (rev 1237823)
+++ PKGBUILD2022-06-13 20:38:21 UTC (rev 1237824)
@@ -1,33 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-# Contributor: Dario Ostuni 
-
-pkgname=wasm-pack
-pkgver=0.10.2
-pkgrel=2
-pkgdesc="Your favorite rust -> wasm workflow tool!"
-arch=('x86_64')
-url="https://github.com/rustwasm/wasm-pack";
-license=('MIT' 'Apache')
-depends=('bzip2' 'curl')
-makedepends=('cargo' 'openssl')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha384sums=('61886496539a75489bad879980d9e129bf04843bdca6c1368861048a740815526300c2daae0d5f6b4a44cce02ca9f21a')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --frozen --release --no-default-features --features sys-openssl
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE-MIT -t "$pkgdir/usr/share/licenses/$pkgname"
-}
-
-# vim: ts=2 sw=2 et:

Copied: wasm-pack/repos/community-x86_64/PKGBUILD (from rev 1237823, 
wasm-pack/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 20:38:21 UTC (rev 1237824)
@@ -0,0 +1,33 @@
+# Maintainer: Orhun Parmaksız 
+# Contributor: Dario Ostuni 
+
+pkgname=wasm-pack
+pkgver=0.10.3
+pkgrel=1
+pkgdesc="Your favorite rust -> wasm workflow tool!"
+arch=('x86_64')
+url="https://github.com/rustwasm/wasm-pack";
+license=('MIT' 'Apache')
+depends=('bzip2' 'curl')
+makedepends=('cargo' 'openssl')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha384sums=('d62367b56b8e5830b75cd01b278c4269d4f3cca5456406416c73432122a3ce750fa12e61122d12e3578603c0e1084d65')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --frozen --release --no-default-features --features sys-openssl
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE-MIT -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-06-13 Thread Orhun Parmaksiz via arch-commits
Date: Monday, June 13, 2022 @ 20:37:17
  Author: orhun
Revision: 1237823

upgpkg: wasm-pack 0.10.3-1: upstream release

Modified:
  wasm-pack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 20:18:38 UTC (rev 1237822)
+++ PKGBUILD2022-06-13 20:37:17 UTC (rev 1237823)
@@ -2,8 +2,8 @@
 # Contributor: Dario Ostuni 
 
 pkgname=wasm-pack
-pkgver=0.10.2
-pkgrel=2
+pkgver=0.10.3
+pkgrel=1
 pkgdesc="Your favorite rust -> wasm workflow tool!"
 arch=('x86_64')
 url="https://github.com/rustwasm/wasm-pack";
@@ -11,7 +11,7 @@
 depends=('bzip2' 'curl')
 makedepends=('cargo' 'openssl')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha384sums=('61886496539a75489bad879980d9e129bf04843bdca6c1368861048a740815526300c2daae0d5f6b4a44cce02ca9f21a')
+sha384sums=('d62367b56b8e5830b75cd01b278c4269d4f3cca5456406416c73432122a3ce750fa12e61122d12e3578603c0e1084d65')
 
 prepare() {
   cd "$pkgname-$pkgver"



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

2022-06-13 Thread Florian Pritz via arch-commits
Date: Monday, June 13, 2022 @ 20:18:38
  Author: bluewind
Revision: 1237822

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 20:18:35 UTC (rev 1237821)
+++ PKGBUILD2022-06-13 20:18:38 UTC (rev 1237822)
@@ -1,52 +0,0 @@
-# Maintainer: Florian Pritz 
-# Contributor: David McInnis 
-# Contributor:  jyantis 
-
-pkgname=python-internetarchive
-pkgver=3.0.0
-pkgrel=1
-pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, 
etc)'
-arch=('any')
-url='https://github.com/jjjake/ia-wrapper'
-license=('AGPL3')
-depends=('python'
- 'python-six'
- 'python-yaml'
- 'python-requests'
- 'python-jsonpatch'
- 'python-docopt'
- 'python-jsonpointer'
- 'python-args'
- 'python-tqdm'
- 'python-schema'
-)
-makedepends=('python-setuptools')
-optdepends=('python-ujson: faster json parsing'
-'python-gevent: concurrent downloads'
-'cython: speedups')
-checkdepends=(python-responses
-  python-pytest
- )
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz";)
-sha256sums=('8a29356616a72331335ae51ffcdc78881e3fb8ba58bae9f57628b0a4d46c1cd5')
-
-build() {
-  cd internetarchive-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd internetarchive-${pkgver}
-
-  python setup.py test
-}
-
-package() {
-  cd internetarchive-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1
-
-  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -D -m644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-internetarchive/repos/community-any/PKGBUILD (from rev 1237821, 
python-internetarchive/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 20:18:38 UTC (rev 1237822)
@@ -0,0 +1,52 @@
+# Maintainer: Florian Pritz 
+# Contributor: David McInnis 
+# Contributor:  jyantis 
+
+pkgname=python-internetarchive
+pkgver=3.0.1
+pkgrel=1
+pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, 
etc)'
+arch=('any')
+url='https://github.com/jjjake/ia-wrapper'
+license=('AGPL3')
+depends=('python'
+ 'python-six'
+ 'python-yaml'
+ 'python-requests'
+ 'python-jsonpatch'
+ 'python-docopt'
+ 'python-jsonpointer'
+ 'python-args'
+ 'python-tqdm'
+ 'python-schema'
+)
+makedepends=('python-setuptools')
+optdepends=('python-ujson: faster json parsing'
+'python-gevent: concurrent downloads'
+'cython: speedups')
+checkdepends=(python-responses
+  python-pytest
+ )
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz";)
+sha256sums=('02d67e0445193cb9a28df37b6665012d3007a74ab6cc6461bdedec22f5c70839')
+
+build() {
+  cd internetarchive-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd internetarchive-${pkgver}
+
+  python setup.py test
+}
+
+package() {
+  cd internetarchive-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1
+
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -D -m644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst"
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-06-13 Thread Florian Pritz via arch-commits
Date: Monday, June 13, 2022 @ 20:18:35
  Author: bluewind
Revision: 1237821

upgpkg: python-internetarchive 3.0.1-1: upstream update

Modified:
  python-internetarchive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 20:12:08 UTC (rev 1237820)
+++ PKGBUILD2022-06-13 20:18:35 UTC (rev 1237821)
@@ -3,7 +3,7 @@
 # Contributor:  jyantis 
 
 pkgname=python-internetarchive
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 pkgdesc='Wrapper for the various Internet Archive APIs (IA-S3, Metadata API, 
etc)'
 arch=('any')
@@ -28,7 +28,7 @@
   python-pytest
  )
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jjjake/internetarchive/archive/v${pkgver}.tar.gz";)
-sha256sums=('8a29356616a72331335ae51ffcdc78881e3fb8ba58bae9f57628b0a4d46c1cd5')
+sha256sums=('02d67e0445193cb9a28df37b6665012d3007a74ab6cc6461bdedec22f5c70839')
 
 build() {
   cd internetarchive-${pkgver}



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

2022-06-13 Thread Daniel M. Capella via arch-commits
Date: Monday, June 13, 2022 @ 20:12:08
  Author: polyzen
Revision: 1237820

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 20:11:39 UTC (rev 1237819)
+++ PKGBUILD2022-06-13 20:12:08 UTC (rev 1237820)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Sergey A. 
-
-pkgname=rust-analyzer
-_pkgver=2022-06-06
-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/rust-lang/$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 1237819, 
rust-analyzer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 20:12:08 UTC (rev 1237820)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Sergey A. 
+
+pkgname=rust-analyzer
+_pkgver=2022-06-13
+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/rust-lang/$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-06-13 Thread Daniel M. Capella via arch-commits
Date: Monday, June 13, 2022 @ 20:11:39
  Author: polyzen
Revision: 1237819

upgpkg: rust-analyzer 20220613-1

Modified:
  rust-analyzer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 20:07:32 UTC (rev 1237818)
+++ PKGBUILD2022-06-13 20:11:39 UTC (rev 1237819)
@@ -2,7 +2,7 @@
 # Contributor: Sergey A. 
 
 pkgname=rust-analyzer
-_pkgver=2022-06-06
+_pkgver=2022-06-13
 pkgver=${_pkgver//-}
 pkgrel=1
 pkgdesc='Rust compiler front-end for IDEs'



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

2022-06-13 Thread Kyle Keen via arch-commits
Date: Monday, June 13, 2022 @ 20:07:32
  Author: kkeen
Revision: 1237818

archrelease: copy trunk to community-any

Added:
  python-more-itertools/repos/community-any/PKGBUILD
(from rev 1237817, python-more-itertools/trunk/PKGBUILD)
Deleted:
  python-more-itertools/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 20:07:19 UTC (rev 1237817)
+++ PKGBUILD2022-06-13 20:07:32 UTC (rev 1237818)
@@ -1,28 +0,0 @@
-# Maintainer: Kyle Keen 
-# Contributor: Germán Osella Massa 
-
-pkgname=python-more-itertools
-pkgver=8.12.0
-pkgrel=2
-pkgdesc='More routines for operating on iterables, beyond itertools'
-arch=('any')
-url='https://github.com/erikrose/more-itertools'
-#url='https://pypi.python.org/pypi/more-itertools'
-license=('MIT')
-depends=('python')
-makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
-source=("https://files.pythonhosted.org/packages/source/m/more-itertools/more-itertools-$pkgver.tar.gz";)
-sha512sums=('73759f05d178bd6fe98cadac401707faf90a4f7b456c4aac3f0b3f6c13a2284600971e0b271f1768cacd3ae9b69848404f85432199ca51b8160fbe67045dfd17')
-
-build() {
-  cd more-itertools-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-package() {
-  cd more-itertools-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-more-itertools/repos/community-any/PKGBUILD (from rev 1237817, 
python-more-itertools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 20:07:32 UTC (rev 1237818)
@@ -0,0 +1,28 @@
+# Maintainer: Kyle Keen 
+# Contributor: Germán Osella Massa 
+
+pkgname=python-more-itertools
+pkgver=8.13.0
+pkgrel=1
+pkgdesc='More routines for operating on iterables, beyond itertools'
+arch=('any')
+url='https://github.com/erikrose/more-itertools'
+#url='https://pypi.python.org/pypi/more-itertools'
+license=('MIT')
+depends=('python')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel' 'python-flit')
+source=("https://files.pythonhosted.org/packages/source/m/more-itertools/more-itertools-$pkgver.tar.gz";)
+sha512sums=('2f3473cdd67ddcb2c658f60638b91a25c4ce9d9a92bbda5ca937dd4748857408bfe8dd9d4e699f53bd9f10d7b433db57e499bd28f184b8faa58b2004f2c92004')
+
+build() {
+  cd more-itertools-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+package() {
+  cd more-itertools-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-06-13 Thread Kyle Keen via arch-commits
Date: Monday, June 13, 2022 @ 20:07:19
  Author: kkeen
Revision: 1237817

upgpkg: python-more-itertools 8.13.0-1

Modified:
  python-more-itertools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 19:59:40 UTC (rev 1237816)
+++ PKGBUILD2022-06-13 20:07:19 UTC (rev 1237817)
@@ -2,8 +2,8 @@
 # Contributor: Germán Osella Massa 
 
 pkgname=python-more-itertools
-pkgver=8.12.0
-pkgrel=2
+pkgver=8.13.0
+pkgrel=1
 pkgdesc='More routines for operating on iterables, beyond itertools'
 arch=('any')
 url='https://github.com/erikrose/more-itertools'
@@ -10,9 +10,9 @@
 #url='https://pypi.python.org/pypi/more-itertools'
 license=('MIT')
 depends=('python')
-makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel' 'python-flit')
 
source=("https://files.pythonhosted.org/packages/source/m/more-itertools/more-itertools-$pkgver.tar.gz";)
-sha512sums=('73759f05d178bd6fe98cadac401707faf90a4f7b456c4aac3f0b3f6c13a2284600971e0b271f1768cacd3ae9b69848404f85432199ca51b8160fbe67045dfd17')
+sha512sums=('2f3473cdd67ddcb2c658f60638b91a25c4ce9d9a92bbda5ca937dd4748857408bfe8dd9d4e699f53bd9f10d7b433db57e499bd28f184b8faa58b2004f2c92004')
 
 build() {
   cd more-itertools-$pkgver



[arch-commits] Commit in nextcloud-app-spreed/repos/community-any (PKGBUILD PKGBUILD)

2022-06-13 Thread David Runge via arch-commits
Date: Monday, June 13, 2022 @ 19:59:40
  Author: dvzrv
Revision: 1237816

archrelease: copy trunk to community-any

Added:
  nextcloud-app-spreed/repos/community-any/PKGBUILD
(from rev 1237815, nextcloud-app-spreed/trunk/PKGBUILD)
Deleted:
  nextcloud-app-spreed/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 19:59:32 UTC (rev 1237815)
+++ PKGBUILD2022-06-13 19:59:40 UTC (rev 1237816)
@@ -1,99 +0,0 @@
-# Maintainer: David Runge 
-
-_name=spreed
-pkgname=nextcloud-app-spreed
-pkgver=14.0.1
-pkgrel=2
-epoch=1
-pkgdesc="Video & audio-conferencing using WebRTC"
-arch=(any)
-url="https://apps.nextcloud.com/apps/spreed";
-license=(AGPL3)
-groups=(nextcloud-apps)
-makedepends=(nextcloud)
-checkdepends=(ripgrep yq)
-source=(https://github.com/nextcloud-releases/$_name/releases/download/v$pkgver/$_name-v$pkgver.tar.gz)
-sha512sums=('b3467aa5d77900ab8d1a2c302128d06668889212b9598bc455a3ef69fcf5702d4f999df3ac107febe9d6e7b80fd23b3cbec3545e9490238882b329c6a06e3e04')
-b2sums=('bb1e05dd2593ec8f78e7c8fcd8aa3ad1e7fe5bf2aeb4f0336744d90969151e61f3cd946a019ff871773d2d678b6e2e260eb7a69736c77e812c8018d1d17a48eb')
-
-_get_nextcloud_versions() {
-  _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"$_name/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version="$(xq '.info.dependencies.nextcloud["@max-version"]' 
"$_name/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version=$(expr ${_app_max_major_version} + 1)
-}
-
-_get_php_versions() {
-  local _phps=(php7 php)
-
-  _app_min_php="$(xq '.info.dependencies.php["@min-version"]' 
"$_name/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_php="$(xq '.info.dependencies.php["@max-version"]' 
"$_name/appinfo/info.xml"| sed 's/"//g')"
-
-  if [[ $_app_max_php != 'null' ]]; then
-_app_max_php="$(echo $_app_max_php | awk -F '.' '{print $1"."$2+1}')"
-  fi
-
-  _system_php=""
-  for _php in "${_phps[@]}"; do
-if command -v "$_php" > /dev/null; then
-  if [[ -z "$_system_php" ]]; then
-_system_php="$_php"
-  fi
-fi
-  done
-}
-
-prepare() {
-  find ${_name} -type f -exec chmod 644 {} +
-  find ${_name} -type d -exec chmod 755 {} +
-}
-
-check() {
-  local _app_min_major_version
-  local _app_max_major_version
-  _get_nextcloud_versions
-  _get_php_versions
-  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
-
-  if (("$(vercmp "$_nextcloud_major_version" "$_app_min_major_version")"<0)) 
|| (("$(vercmp "$_nextcloud_major_version" "$_app_max_major_version")">0)) ; 
then
-printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "$_app_min_major_version" "$_app_max_major_version" 
"$_nextcloud_major_version"
-exit 1
-  fi
-
-  local _php_version="$($_system_php --version |head -n1 |cut -d ' ' -f2 |sed 
's/.[0-9]*$//g')"
-  if [[ "$(vercmp "$_php_version" "$_app_min_php" )" -lt 0 ]]; then
-printf "%s requires php-interpreter >= %s, but %s is provided\n" $pkgname 
$_app_min_php $_php_version
-exit 1
-  fi
-  if [[ $_app_max_php != 'null' ]]; then
-if [[ "$(vercmp "$_php_version" "$_app_max_php" )" -ge 0 ]]; then
-  printf "%s requires php-interpreter < %s, but %s is provided\n" $pkgname 
$_app_max_php $_php_version
-  exit 1
-fi
-  fi
-}
-
-package() {
-  _get_nextcloud_versions
-  _get_php_versions
-
-  depends=(
-"nextcloud>=$_app_min_major_version"
-"nextcloud<$_app_max_major_version"
-  )
-  if [[ "$_app_min_php" != 'null' ]]; then
-depends+=(
-  "php-interpreter>=$_app_min_php"
-)
-  fi
-  if [[ "$_app_max_php" != 'null' ]]; then
-depends+=(
-  "php-interpreter<$_app_max_php"
-)
-  fi
-  if [[ "$_app_min_php" == 'null' ]] && [[ "$_app_max_php" == 'null' ]]; then
-depends+=(php-interpreter)
-  fi
-
-  install -vdm 755 "$pkgdir/usr/share/webapps/nextcloud/apps/"
-  cp -av $_name "$pkgdir/usr/share/webapps/nextcloud/apps/"
-}

Copied: nextcloud-app-spreed/repos/community-any/PKGBUILD (from rev 1237815, 
nextcloud-app-spreed/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 19:59:40 UTC (rev 1237816)
@@ -0,0 +1,64 @@
+# Maintainer: David Runge 
+
+_name=spreed
+pkgname=nextcloud-app-spreed
+pkgver=14.0.2
+pkgrel=1
+epoch=1
+pkgdesc="Video & audio-conferencing using WebRTC"
+arch=(any)
+url="https://apps.nextcloud.com/apps/spreed";
+license=(AGPL3)
+groups=(nextcloud-apps)
+makedepends=(nextcloud)
+checkdepends=(ripgrep yq)
+source=(https://github.com/nextcloud-releases/$_name/releases/download/v$pkgver/$_name-v$pkgver.tar.gz)
+sha512sums=('859d7d3040ce13f9cf551492372c6e40adf043ae30504cbc11df7dacbec6

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

2022-06-13 Thread David Runge via arch-commits
Date: Monday, June 13, 2022 @ 19:59:32
  Author: dvzrv
Revision: 1237815

upgpkg: nextcloud-app-spreed 1:14.0.2-1: Upgrade to 14.0.2.

Remove custom detection code with shared boilerplate for nextcloud apps.

Modified:
  nextcloud-app-spreed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 19:47:41 UTC (rev 1237814)
+++ PKGBUILD2022-06-13 19:59:32 UTC (rev 1237815)
@@ -2,8 +2,8 @@
 
 _name=spreed
 pkgname=nextcloud-app-spreed
-pkgver=14.0.1
-pkgrel=2
+pkgver=14.0.2
+pkgrel=1
 epoch=1
 pkgdesc="Video & audio-conferencing using WebRTC"
 arch=(any)
@@ -13,87 +13,52 @@
 makedepends=(nextcloud)
 checkdepends=(ripgrep yq)
 
source=(https://github.com/nextcloud-releases/$_name/releases/download/v$pkgver/$_name-v$pkgver.tar.gz)
-sha512sums=('b3467aa5d77900ab8d1a2c302128d06668889212b9598bc455a3ef69fcf5702d4f999df3ac107febe9d6e7b80fd23b3cbec3545e9490238882b329c6a06e3e04')
-b2sums=('bb1e05dd2593ec8f78e7c8fcd8aa3ad1e7fe5bf2aeb4f0336744d90969151e61f3cd946a019ff871773d2d678b6e2e260eb7a69736c77e812c8018d1d17a48eb')
+sha512sums=('859d7d3040ce13f9cf551492372c6e40adf043ae30504cbc11df7dacbec672d2a263e119324ab765560a522c0840a80d71205f3f4ec66a6e0b65533fc1629060')
+b2sums=('a22d930ff1b4cfb8f6429a4ac5427d488ee45cf11c0a3d627872fba87ec0f770e1d664c83449d086cb0f3cf3ebc250c51af0a6f19983a452f56260a36267fdf1')
 
-_get_nextcloud_versions() {
-  _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"$_name/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version="$(xq '.info.dependencies.nextcloud["@max-version"]' 
"$_name/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version=$(expr ${_app_max_major_version} + 1)
+# BEGIN boilerplate nextcloud app version clamping, see also other packages in 
group
+# 1. Call respective function helpers in check() and package() *after* cd'ing 
to the source directory
+# 2. Add makedepends+=(nextcloud yq)
+_phps=(php7 php)
+_get_supported_ranges() {
+  _app_min_nextcloud="$(< appinfo/info.xml xq -r 
'.info.dependencies.nextcloud["@min-version"] | values')"
+  _app_max_nextcloud="$(< appinfo/info.xml xq -r 
'.info.dependencies.nextcloud["@max-version"] | values | tonumber | .+1')"
+  _app_min_php="$(< appinfo/info.xml xq -r 
'.info.dependencies.php["@min-version"] | values')"
+  _app_max_php="$(< appinfo/info.xml xq -r 
'.info.dependencies.php["@max-version"] | values | tonumber | .+0.1')"
 }
-
-_get_php_versions() {
-  local _phps=(php7 php)
-
-  _app_min_php="$(xq '.info.dependencies.php["@min-version"]' 
"$_name/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_php="$(xq '.info.dependencies.php["@max-version"]' 
"$_name/appinfo/info.xml"| sed 's/"//g')"
-
-  if [[ $_app_max_php != 'null' ]]; then
-_app_max_php="$(echo $_app_max_php | awk -F '.' '{print $1"."$2+1}')"
-  fi
-
-  _system_php=""
-  for _php in "${_phps[@]}"; do
-if command -v "$_php" > /dev/null; then
-  if [[ -z "$_system_php" ]]; then
-_system_php="$_php"
-  fi
-fi
-  done
+_unsupported_range() {
+  printf "%s requires %s %s, but %s %s is provided.\n" "$pkgname" "$1" "$2" 
"$1" "$3"
+  exit 1
 }
-
-prepare() {
-  find ${_name} -type f -exec chmod 644 {} +
-  find ${_name} -type d -exec chmod 755 {} +
+_nextcloud_app_check() {
+  _get_supported_ranges
+  for _php in "${_phps[@]}"; do command -v "$_php" > /dev/null && break; done
+  local _nextcloud_ver="$("$_php" <(cat 
/usr/share/webapps/nextcloud/version.php; echo 'print($OC_VersionString);'))"
+  local _php_ver="$("$_php" -r 'print(phpversion());')"
+  [[ "$(vercmp "${_app_min_nextcloud:-0}" "$_nextcloud_ver")" -le 0 ]] || \
+_unsupported_range nextcloud "=> $_app_min_nextcloud" "$_nextcloud_ver"
+  [[ "$(vercmp "${_app_max_nextcloud:-999}" "$_nextcloud_ver")" -gt 0 ]] || \
+_unsupported_range nextcloud "< $_app_max_nextcloud" "$_nextcloud_ver"
+  [[ "$(vercmp "${_app_min_php:-0}" "$_php_ver")" -le 0 ]] || \
+_unsupported_range php ">= $_app_min_php" "$_php_ver"
+  [[ "$(vercmp "${_app_max_php:-999}" "$_php_ver")" -gt 0 ]] || \
+_unsupported_range php "< $_app_max_php" "$_php_ver"
 }
+_nextcloud_app_package() {
+  _get_supported_ranges
+  depends+=("nextcloud>=${_app_min_nextcloud:-0}" 
"nextcloud<${_app_max_nextcloud:-999}")
+  depends+=("php-interpreter${_app_min_php:+>=$_app_min_php}" 
${_app_max_php:+"php-interpreter<$_app_max_php"})
+}
+# END boilerplate nextcloud app version clamping
 
 check() {
-  local _app_min_major_version
-  local _app_max_major_version
-  _get_nextcloud_versions
-  _get_php_versions
-  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
-
-  if (("$(vercmp "$_nextcloud_major_version" "$_app_min_major_version")"<0)) 
|| (("$(vercmp "$_nextcloud_major_version" "$_app_max_major_version")

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

2022-06-13 Thread Christian Hesse via arch-commits
Date: Monday, June 13, 2022 @ 19:47:41
  Author: eworm
Revision: 1237814

archrelease: copy trunk to community-testing-x86_64

Added:
  zerotier-one/repos/community-testing-x86_64/
  zerotier-one/repos/community-testing-x86_64/PKGBUILD
(from rev 1237813, zerotier-one/trunk/PKGBUILD)

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

Copied: zerotier-one/repos/community-testing-x86_64/PKGBUILD (from rev 1237813, 
zerotier-one/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-06-13 19:47:41 UTC (rev 1237814)
@@ -0,0 +1,38 @@
+# Maintainer: Felix Yan 
+# Contributor: Harry Jeffery 
+# Contributor: Alex Jordan 
+
+pkgname=zerotier-one
+pkgver=1.10.0
+pkgrel=1
+pkgdesc='Creates virtual Ethernet networks of almost unlimited size.'
+arch=('x86_64')
+url='https://www.zerotier.com/'
+license=('custom:BSL')
+depends=('gcc-libs' 'libnatpmp' 'miniupnpc')
+makedepends=('rust')
+options=('!lto')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/zerotier/ZeroTierOne/archive/$pkgver.tar.gz";)
+sha512sums=('214878b002cc12dd0c0f920f1e7fd8881152b7232938c9a7994c808af066b739b04a6c1571a0ffca3ec4c703fbf126017b68b48cd9567bf4570055009ba70662')
+
+prepare() {
+  cd ZeroTierOne-$pkgver
+  sed -i 's/sbin/bin/' make-linux.mk debian/zerotier-one.service
+}
+
+build() {
+  cd ZeroTierOne-$pkgver
+  make
+}
+
+check() {
+  cd ZeroTierOne-$pkgver
+  make selftest
+  ./zerotier-selftest
+}
+
+package() {
+  cd ZeroTierOne-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -Dm644 debian/zerotier-one.service 
"$pkgdir"/usr/lib/systemd/system/zerotier-one.service
+}



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

2022-06-13 Thread Christian Hesse via arch-commits
Date: Monday, June 13, 2022 @ 19:47:35
  Author: eworm
Revision: 1237813

upgpkg: zerotier-one 1.10.0-1: new upstream release

Modified:
  zerotier-one/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 19:43:50 UTC (rev 1237812)
+++ PKGBUILD2022-06-13 19:47:35 UTC (rev 1237813)
@@ -3,7 +3,7 @@
 # Contributor: Alex Jordan 
 
 pkgname=zerotier-one
-pkgver=1.8.10
+pkgver=1.10.0
 pkgrel=1
 pkgdesc='Creates virtual Ethernet networks of almost unlimited size.'
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('rust')
 options=('!lto')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/zerotier/ZeroTierOne/archive/$pkgver.tar.gz";)
-sha512sums=('56311f95681050f998bb67112efee78e66821850d9544ab57b0284ef032f5b098455dee80acbffa8e71c48b6bc9eaaf20e935e087f096f533dd0305cf0338cfe')
+sha512sums=('214878b002cc12dd0c0f920f1e7fd8881152b7232938c9a7994c808af066b739b04a6c1571a0ffca3ec4c703fbf126017b68b48cd9567bf4570055009ba70662')
 
 prepare() {
   cd ZeroTierOne-$pkgver



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

2022-06-13 Thread Daniel M. Capella via arch-commits
Date: Monday, June 13, 2022 @ 19:43:50
  Author: polyzen
Revision: 1237812

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 19:43:24 UTC (rev 1237811)
+++ PKGBUILD2022-06-13 19:43:50 UTC (rev 1237812)
@@ -1,42 +0,0 @@
-# Maintainer: Caleb Maclennan 
-# Maintainer: Daniel M. Capella 
-# Contributor: Angel Velasquez 
-# Contributor: Felix Yan 
-
-_pyname=astroid
-pkgname=python-$_pyname
-pkgver=2.11.5
-pkgrel=1
-pkgdesc='A common base representation of python source code'
-arch=(any)
-url="https://github.com/PyCQA/$_pyname";
-license=(LGPL)
-_pydeps=(lazy-object-proxy
- typing-extensions
- wrapt)
-depends=(python
- "${_pydeps[@]/#/python-}")
-makedepends=(python-{build,installer}
- python-setuptools
- python-wheel)
-checkdepends=(python-pytest)
-replaces=(python-logilab-astng)
-conflicts=(python-logilab-astng)
-_archive="$_pyname-$pkgver"
-source=("$url/archive/v$pkgver/$_archive.tar.gz")
-sha256sums=('90187e071045a930baabc12c97782d0906c19f7f248aee562128ddfd13840a26')
-
-build() {
-   cd "$_archive"
-   python -m build -wn
-}
-
-check() {
-   cd "$_archive"
-   pytest
-}
-
-package() {
-   cd "$_archive"
-   python -m installer -d "$pkgdir" dist/*.whl
-}

Copied: python-astroid/repos/community-any/PKGBUILD (from rev 1237811, 
python-astroid/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 19:43:50 UTC (rev 1237812)
@@ -0,0 +1,42 @@
+# Maintainer: Caleb Maclennan 
+# Maintainer: Daniel M. Capella 
+# Contributor: Angel Velasquez 
+# Contributor: Felix Yan 
+
+_pyname=astroid
+pkgname=python-$_pyname
+pkgver=2.11.6
+pkgrel=1
+pkgdesc='A common base representation of python source code'
+arch=(any)
+url="https://github.com/PyCQA/$_pyname";
+license=(LGPL)
+_pydeps=(lazy-object-proxy
+ typing-extensions
+ wrapt)
+depends=(python
+ "${_pydeps[@]/#/python-}")
+makedepends=(python-{build,installer}
+ python-setuptools
+ python-wheel)
+checkdepends=(python-pytest)
+replaces=(python-logilab-astng)
+conflicts=(python-logilab-astng)
+_archive="$_pyname-$pkgver"
+source=("$url/archive/v$pkgver/$_archive.tar.gz")
+sha256sums=('987c3c54dfdebdd14b5b348a5295aabcc8c572f93d19bfe4730a7611bf284ff2')
+
+build() {
+   cd "$_archive"
+   python -m build -wn
+}
+
+check() {
+   cd "$_archive"
+   pytest
+}
+
+package() {
+   cd "$_archive"
+   python -m installer -d "$pkgdir" dist/*.whl
+}



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

2022-06-13 Thread Daniel M. Capella via arch-commits
Date: Monday, June 13, 2022 @ 19:43:24
  Author: polyzen
Revision: 1237811

upgpkg: python-astroid 2.11.6-1

Modified:
  python-astroid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 19:39:28 UTC (rev 1237810)
+++ PKGBUILD2022-06-13 19:43:24 UTC (rev 1237811)
@@ -5,7 +5,7 @@
 
 _pyname=astroid
 pkgname=python-$_pyname
-pkgver=2.11.5
+pkgver=2.11.6
 pkgrel=1
 pkgdesc='A common base representation of python source code'
 arch=(any)
@@ -24,7 +24,7 @@
 conflicts=(python-logilab-astng)
 _archive="$_pyname-$pkgver"
 source=("$url/archive/v$pkgver/$_archive.tar.gz")
-sha256sums=('90187e071045a930baabc12c97782d0906c19f7f248aee562128ddfd13840a26')
+sha256sums=('987c3c54dfdebdd14b5b348a5295aabcc8c572f93d19bfe4730a7611bf284ff2')
 
 build() {
cd "$_archive"



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

2022-06-13 Thread Daniel M. Capella via arch-commits
Date: Monday, June 13, 2022 @ 19:39:28
  Author: polyzen
Revision: 1237810

archrelease: copy trunk to community-any

Added:
  typescript-language-server/repos/community-any/PKGBUILD
(from rev 1237809, typescript-language-server/trunk/PKGBUILD)
Deleted:
  typescript-language-server/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 19:38:58 UTC (rev 1237809)
+++ PKGBUILD2022-06-13 19:39:28 UTC (rev 1237810)
@@ -1,47 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=typescript-language-server
-pkgver=0.11.0
-pkgrel=1
-pkgdesc='Language Server Protocol (LSP) implementation for TypeScript using 
tsserver'
-url=https://github.com/theia-ide/typescript-language-server
-arch=('any')
-license=('Apache')
-depends=('typescript')
-makedepends=('jq' 'yarn')
-checkdepends=('npm')
-source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-b2sums=('8a6e163df0b3aa4aa1b15a98ad313a1871c8e71dd48870c8ed65dd9d8f362916687fc99a93bcba9feda4a6823a1bd91358efdbc5cb64fb627deb2e3f7661c4fe')
-
-prepare() {
-  cd $pkgname-$pkgver
-  yarn --frozen-lockfile
-}
-
-build() {
-  cd $pkgname-$pkgver
-  yarn compile # Needs bin links
-}
-
-check() {
-  cd $pkgname-$pkgver
-  yarn test
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  # Emulate `npm prune --production`
-  cp package.json{,.bak}
-  read -ra devDependencies < <(jq -r '.devDependencies | keys | join(" ")' 
package.json)
-  yarn remove --frozen-lockfile "${devDependencies[@]}"
-  mv package.json{.bak,}
-
-  install -d "$pkgdir"/usr/{bin,lib/node_modules/$pkgname}
-  ln -s ../lib/node_modules/$pkgname/lib/cli.js "$pkgdir"/usr/bin/$pkgname
-  chmod +x lib/cli.js
-  cp -r lib node_modules package.json "$pkgdir"/usr/lib/node_modules/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/doc/$pkgname {CHANGELOG,README}.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: typescript-language-server/repos/community-any/PKGBUILD (from rev 
1237809, typescript-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 19:39:28 UTC (rev 1237810)
@@ -0,0 +1,47 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=typescript-language-server
+pkgver=0.11.1
+pkgrel=1
+pkgdesc='Language Server Protocol (LSP) implementation for TypeScript using 
tsserver'
+url=https://github.com/theia-ide/typescript-language-server
+arch=('any')
+license=('Apache')
+depends=('typescript')
+makedepends=('jq' 'yarn')
+checkdepends=('npm')
+source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
+b2sums=('a0ffd35d64fa7af08247a822703d761c334c64fb262ed78b9a9caba6bdad1972c909e72562d3fb8cbc32d99068d48071be3e98609967c8a1261f73f76e90f972')
+
+prepare() {
+  cd $pkgname-$pkgver
+  yarn --frozen-lockfile
+}
+
+build() {
+  cd $pkgname-$pkgver
+  yarn compile # Needs bin links
+}
+
+check() {
+  cd $pkgname-$pkgver
+  yarn test
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  # Emulate `npm prune --production`
+  cp package.json{,.bak}
+  read -ra devDependencies < <(jq -r '.devDependencies | keys | join(" ")' 
package.json)
+  yarn remove --frozen-lockfile "${devDependencies[@]}"
+  mv package.json{.bak,}
+
+  install -d "$pkgdir"/usr/{bin,lib/node_modules/$pkgname}
+  ln -s ../lib/node_modules/$pkgname/lib/cli.js "$pkgdir"/usr/bin/$pkgname
+  chmod +x lib/cli.js
+  cp -r lib node_modules package.json "$pkgdir"/usr/lib/node_modules/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/doc/$pkgname {CHANGELOG,README}.md
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-06-13 Thread Daniel M. Capella via arch-commits
Date: Monday, June 13, 2022 @ 19:38:58
  Author: polyzen
Revision: 1237809

upgpkg: typescript-language-server 0.11.1-1

Modified:
  typescript-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 19:29:58 UTC (rev 1237808)
+++ PKGBUILD2022-06-13 19:38:58 UTC (rev 1237809)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=typescript-language-server
-pkgver=0.11.0
+pkgver=0.11.1
 pkgrel=1
 pkgdesc='Language Server Protocol (LSP) implementation for TypeScript using 
tsserver'
 url=https://github.com/theia-ide/typescript-language-server
@@ -11,7 +11,7 @@
 makedepends=('jq' 'yarn')
 checkdepends=('npm')
 source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-b2sums=('8a6e163df0b3aa4aa1b15a98ad313a1871c8e71dd48870c8ed65dd9d8f362916687fc99a93bcba9feda4a6823a1bd91358efdbc5cb64fb627deb2e3f7661c4fe')
+b2sums=('a0ffd35d64fa7af08247a822703d761c334c64fb262ed78b9a9caba6bdad1972c909e72562d3fb8cbc32d99068d48071be3e98609967c8a1261f73f76e90f972')
 
 prepare() {
   cd $pkgname-$pkgver



[arch-commits] Commit in syslog-ng/repos (4 files)

2022-06-13 Thread Florian Pritz via arch-commits
Date: Monday, June 13, 2022 @ 19:36:03
  Author: bluewind
Revision: 448442

archrelease: copy trunk to testing-x86_64

Added:
  syslog-ng/repos/testing-x86_64/
  syslog-ng/repos/testing-x86_64/PKGBUILD
(from rev 448441, syslog-ng/trunk/PKGBUILD)
  syslog-ng/repos/testing-x86_64/syslog-ng.conf
(from rev 448441, syslog-ng/trunk/syslog-ng.conf)
  syslog-ng/repos/testing-x86_64/syslog-ng.logrotate
(from rev 448441, syslog-ng/trunk/syslog-ng.logrotate)

-+
 PKGBUILD|   72 ++
 syslog-ng.conf  |   93 ++
 syslog-ng.logrotate |7 +++
 3 files changed, 172 insertions(+)

Copied: syslog-ng/repos/testing-x86_64/PKGBUILD (from rev 448441, 
syslog-ng/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-06-13 19:36:03 UTC (rev 448442)
@@ -0,0 +1,72 @@
+# Maintainer: Florian Pritz 
+# Contributor: Eric Bélanger 
+
+pkgname=syslog-ng
+pkgver=3.37.1
+pkgrel=1
+pkgdesc="Next-generation syslogd with advanced networking and filtering 
capabilities"
+arch=('x86_64')
+url="https://www.syslog-ng.com/products/open-source-log-management/";
+license=('GPL2' 'LGPL2.1')
+depends=('awk' 'systemd-libs' 'glib2' 'libnsl' 'json-c' 'curl' 'libnet' 
'openssl')
+makedepends=('libxslt' 'mongo-c-driver' 'librabbitmq-c' 'python' 'libesmtp' 
'hiredis'
+ 'libdbi' 'libmaxminddb' 'net-snmp' 'librdkafka' 'libcap' 
'systemd')
+checkdepends=('python-nose' 'python-ply')
+optdepends=('logrotate: for rotating log files'
+'libdbi: for the SQL plugin'
+'librabbitmq-c: for the AMQP plugin'
+'mongo-c-driver: for the MongoDB plugin'
+'libesmtp: for the SMTP plugin'
+'hiredis: for the Redis plugin'
+'libmaxminddb: for the GeoIP2 plugin'
+'net-snmp: for the SNMP plugin'
+'librdkafka: for the Kafka C plugin'
+'python: for Python-based plugins')
+conflicts=('eventlog')
+replaces=('eventlog')
+backup=('etc/syslog-ng/scl.conf'
+'etc/syslog-ng/syslog-ng.conf'
+'etc/logrotate.d/syslog-ng'
+'etc/default/syslog-ng@default')
+source=(https://github.com/balabit/syslog-ng/releases/download/syslog-ng-$pkgver/$pkgname-$pkgver.tar.gz
+syslog-ng.conf syslog-ng.logrotate)
+sha512sums=('beebd89c54a415469dc58630ac1900d632ef351f6a13fad4a95ce7bb1760b16d6cfdcede02225a35e97ebce7dae151c6aa228f3d378463e8b873c4f71ed86ab7'
+
'36629a566a8343574dc07430e744e20ce90574be0cc856bc43340f834cd6642a8f08889b9ba15996d088aeebeee4bc3ca64411265046c17c8e125fbed8948ded'
+
'cd39f545a6a855c866a466bf846e33940b2c2dd1fc2eaf50cce29c68e1a5753c7c4b56411e4f01c152f32e155104a98dd755a96319767f47c73a8853f720b2cc')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i -e 's,/bin/,/usr/bin/,' -e 's,/sbin/,/bin/,' 
contrib/systemd/syslog-ng@.service
+  sed -i -e 's|/var/run|/run|g' contrib/systemd/syslog-ng@default
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  # https://archlinux.org/todo/lto-fat-objects/
+  export CFLAGS+=" -ffat-lto-objects"
+  export CXXFLAGS+=" -ffat-lto-objects"
+
+
+  ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc/syslog-ng --libexecdir=/usr/lib \
+--sbindir=/usr/bin --localstatedir=/var/lib/syslog-ng --datadir=/usr/share 
\
+--with-pidfile-dir=/run --enable-spoof-source --enable-ipv6 \
+--enable-systemd --with-systemdsystemunitdir=/usr/lib/systemd/system \
+--enable-manpages --enable-all-modules --disable-java 
--disable-java-modules  \
+--disable-mqtt --disable-riemann --with-python=3 --with-jsonc=system
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check || /usr/bin/true # unit test requires criterion
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+  install -dm755 "$pkgdir/var/lib/syslog-ng" 
"$pkgdir/etc/syslog-ng/patterndb.d"
+  install -Dm644 "$srcdir/syslog-ng.conf" 
"$pkgdir/etc/syslog-ng/syslog-ng.conf"
+  install -Dm644 "$srcdir/syslog-ng.logrotate" 
"$pkgdir/etc/logrotate.d/syslog-ng"
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/contrib/systemd/syslog-ng@default 
-t "$pkgdir"/etc/default
+}

Copied: syslog-ng/repos/testing-x86_64/syslog-ng.conf (from rev 448441, 
syslog-ng/trunk/syslog-ng.conf)
===
--- testing-x86_64/syslog-ng.conf   (rev 0)
+++ testing-x86_64/syslog-ng.conf   2022-06-13 19:36:03 UTC (rev 448442)
@@ -0,0 +1,93 @@
+@version: 3.35
+@include "scl.conf"
+#
+# /etc/syslog-ng/syslog-ng.conf
+#
+
+options {
+  stats_freq (0);
+  flush_lines (0);
+  time_reopen (10);
+  log_fifo_size (1);
+  chain_hostnames (off);
+  dns_cache (no);
+  use_dns (no);
+  use_fqdn (no);
+  create_dirs (no);
+  keep_hostname (yes);
+  perm(0640);
+  group("log");
+};
+
+source src {
+  system();
+  inte

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

2022-06-13 Thread Florian Pritz via arch-commits
Date: Monday, June 13, 2022 @ 19:35:59
  Author: bluewind
Revision: 448441

upgpkg: syslog-ng 3.37.1-1: upstream update

Modified:
  syslog-ng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 19:25:28 UTC (rev 448440)
+++ PKGBUILD2022-06-13 19:35:59 UTC (rev 448441)
@@ -2,7 +2,7 @@
 # Contributor: Eric Bélanger 
 
 pkgname=syslog-ng
-pkgver=3.36.1
+pkgver=3.37.1
 pkgrel=1
 pkgdesc="Next-generation syslogd with advanced networking and filtering 
capabilities"
 arch=('x86_64')
@@ -30,7 +30,7 @@
 'etc/default/syslog-ng@default')
 
source=(https://github.com/balabit/syslog-ng/releases/download/syslog-ng-$pkgver/$pkgname-$pkgver.tar.gz
 syslog-ng.conf syslog-ng.logrotate)
-sha512sums=('b74c10e708616f7f5f5d529de5c1a3ce8ac888c05aa4b0fcf390d70082e9bc3432f3752998a5a258663fd47b8e4d0c2735240a3e4eda28178579b18308ebb376'
+sha512sums=('beebd89c54a415469dc58630ac1900d632ef351f6a13fad4a95ce7bb1760b16d6cfdcede02225a35e97ebce7dae151c6aa228f3d378463e8b873c4f71ed86ab7'
 
'36629a566a8343574dc07430e744e20ce90574be0cc856bc43340f834cd6642a8f08889b9ba15996d088aeebeee4bc3ca64411265046c17c8e125fbed8948ded'
 
'cd39f545a6a855c866a466bf846e33940b2c2dd1fc2eaf50cce29c68e1a5753c7c4b56411e4f01c152f32e155104a98dd755a96319767f47c73a8853f720b2cc')
 



[arch-commits] Commit in nextcloud-app-bookmarks/repos/community-any (2 files)

2022-06-13 Thread David Runge via arch-commits
Date: Monday, June 13, 2022 @ 19:29:58
  Author: dvzrv
Revision: 1237808

archrelease: copy trunk to community-any

Added:
  nextcloud-app-bookmarks/repos/community-any/PKGBUILD
(from rev 1237807, nextcloud-app-bookmarks/trunk/PKGBUILD)
Deleted:
  nextcloud-app-bookmarks/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 19:29:50 UTC (rev 1237807)
+++ PKGBUILD2022-06-13 19:29:58 UTC (rev 1237808)
@@ -1,64 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Caleb Maclennan 
-
-pkgname=nextcloud-app-bookmarks
-epoch=1
-pkgver=10.3.1
-pkgrel=5
-pkgdesc="Bookmarks app for nextcloud"
-arch=(any)
-url="https://github.com/nextcloud/bookmarks";
-license=(AGPL3)
-makedepends=(nextcloud yq)
-groups=(nextcloud-apps)
-options=(!strip)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/v$pkgver/bookmarks-$pkgver.tar.gz";)
-sha256sums=('96f19ed9e1f7175745b527e1673e53bea0ccc84f212fb0e10330953dffa075c4')
-b2sums=('d1de66aa827594710e2659396db75ef98cbdf15a5cd16d627960eef9930e9613a8bde2fd8338e3df53184f45cb3ab17418b5273e4490ebf324763a623609ab39')
-
-# BEGIN boilerplate nextcloud app version clamping, see also other packages in 
group
-# 1. Call respective function helpers in check() and package() *after* cd'ing 
to the source directory
-# 2. Add makedepends+=(nextcloud yq)
-_phps=(php7 php)
-_get_supported_ranges() {
-  _app_min_nextcloud="$(< appinfo/info.xml xq -r 
'.info.dependencies.nextcloud["@min-version"] | values')"
-  _app_max_nextcloud="$(< appinfo/info.xml xq -r 
'.info.dependencies.nextcloud["@max-version"] | values | tonumber | .+1')"
-  _app_min_php="$(< appinfo/info.xml xq -r 
'.info.dependencies.php["@min-version"] | values')"
-  _app_max_php="$(< appinfo/info.xml xq -r 
'.info.dependencies.php["@max-version"] | values | tonumber | .+0.1')"
-}
-_unsupported_range() {
-  printf "%s requires %s %s, but %s %s is provided.\n" "$pkgname" "$1" "$2" 
"$1" "$3"
-  exit 1
-}
-_nextcloud_app_check() {
-  _get_supported_ranges
-  for _php in "${_phps[@]}"; do command -v "$_php" > /dev/null && break; done
-  local _nextcloud_ver="$("$_php" <(cat 
/usr/share/webapps/nextcloud/version.php; echo 'print($OC_VersionString);'))"
-  local _php_ver="$("$_php" -r 'print(phpversion());')"
-  [[ "$(vercmp "${_app_min_nextcloud:-0}" "$_nextcloud_ver")" -le 0 ]] || \
-_unsupported_range nextcloud "=> $_app_min_nextcloud" "$_nextcloud_ver"
-  [[ "$(vercmp "${_app_max_nextcloud:-999}" "$_nextcloud_ver")" -gt 0 ]] || \
-_unsupported_range nextcloud "< $_app_max_nextcloud" "$_nextcloud_ver"
-  [[ "$(vercmp "${_app_min_php:-0}" "$_php_ver")" -le 0 ]] || \
-_unsupported_range php ">= $_app_min_php" "$_php_ver"
-  [[ "$(vercmp "${_app_max_php:-999}" "$_php_ver")" -gt 0 ]] || \
-_unsupported_range php "< $_app_max_php" "$_php_ver"
-}
-_nextcloud_app_package() {
-  _get_supported_ranges
-  depends+=("nextcloud>=${_app_min_nextcloud:-0}" 
"nextcloud<${_app_max_nextcloud:-999}")
-  depends+=("php-interpreter${_app_min_php:+>=$_app_min_php}" 
${_app_max_php:+"php-interpreter<$_app_max_php"})
-}
-# END boilerplate nextcloud app version clamping
-
-check() {
-  cd bookmarks
-  _nextcloud_app_check
-}
-
-package() {
-  install -d "$pkgdir"/usr/share/webapps/nextcloud/apps
-  cp -a "$srcdir"/bookmarks 
"$pkgdir"/usr/share/webapps/nextcloud/apps/bookmarks
-  cd bookmarks
-  _nextcloud_app_package
-}

Copied: nextcloud-app-bookmarks/repos/community-any/PKGBUILD (from rev 1237807, 
nextcloud-app-bookmarks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 19:29:58 UTC (rev 1237808)
@@ -0,0 +1,64 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Caleb Maclennan 
+
+pkgname=nextcloud-app-bookmarks
+epoch=1
+pkgver=10.4.0
+pkgrel=1
+pkgdesc="Bookmarks app for nextcloud"
+arch=(any)
+url="https://github.com/nextcloud/bookmarks";
+license=(AGPL3)
+makedepends=(nextcloud yq)
+groups=(nextcloud-apps)
+options=(!strip)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/v$pkgver/bookmarks-$pkgver.tar.gz";)
+sha256sums=('b69286ec5dc65184a0a557ad352ff6d7867f0a66992ddd2ed88b962b22778f8c')
+b2sums=('98d52e15ce4057492269086b22d5472c140874b9d9336575a4aa8ff24715613061c4c2177f815b442c6d6ab3f5c40c01ba45befcfbe8441f5b6dc580caa764c8')
+
+# BEGIN boilerplate nextcloud app version clamping, see also other packages in 
group
+# 1. Call respective function helpers in check() and package() *after* cd'ing 
to the source directory
+# 2. Add makedepends+=(nextcloud yq)
+_phps=(php7 php)
+_get_supported_ranges() {
+  _app_min_nextcloud="$(< appinfo/info.xml xq -r 
'.info.dependencies.nextcloud["@min-version"] | values')"
+  _app_max_n

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

2022-06-13 Thread David Runge via arch-commits
Date: Monday, June 13, 2022 @ 19:29:50
  Author: dvzrv
Revision: 1237807

upgpkg: nextcloud-app-bookmarks 1:10.4.0-1: Upgrade to 10.4.0.

Modified:
  nextcloud-app-bookmarks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 19:29:02 UTC (rev 1237806)
+++ PKGBUILD2022-06-13 19:29:50 UTC (rev 1237807)
@@ -3,8 +3,8 @@
 
 pkgname=nextcloud-app-bookmarks
 epoch=1
-pkgver=10.3.1
-pkgrel=5
+pkgver=10.4.0
+pkgrel=1
 pkgdesc="Bookmarks app for nextcloud"
 arch=(any)
 url="https://github.com/nextcloud/bookmarks";
@@ -13,8 +13,8 @@
 groups=(nextcloud-apps)
 options=(!strip)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/v$pkgver/bookmarks-$pkgver.tar.gz";)
-sha256sums=('96f19ed9e1f7175745b527e1673e53bea0ccc84f212fb0e10330953dffa075c4')
-b2sums=('d1de66aa827594710e2659396db75ef98cbdf15a5cd16d627960eef9930e9613a8bde2fd8338e3df53184f45cb3ab17418b5273e4490ebf324763a623609ab39')
+sha256sums=('b69286ec5dc65184a0a557ad352ff6d7867f0a66992ddd2ed88b962b22778f8c')
+b2sums=('98d52e15ce4057492269086b22d5472c140874b9d9336575a4aa8ff24715613061c4c2177f815b442c6d6ab3f5c40c01ba45befcfbe8441f5b6dc580caa764c8')
 
 # BEGIN boilerplate nextcloud app version clamping, see also other packages in 
group
 # 1. Call respective function helpers in check() and package() *after* cd'ing 
to the source directory



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

2022-06-13 Thread Jan Steffens via arch-commits
Date: Monday, June 13, 2022 @ 19:17:46
  Author: heftig
Revision: 448439

archrelease: copy trunk to extra-x86_64

Added:
  ghex/repos/extra-x86_64/PKGBUILD
(from rev 448437, ghex/trunk/PKGBUILD)
Deleted:
  ghex/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 19:17:45 UTC (rev 448438)
+++ PKGBUILD2022-06-13 19:17:46 UTC (rev 448439)
@@ -1,53 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Tobias Kieslich 
-
-pkgbase=ghex
-pkgname=(ghex ghex-docs)
-pkgver=42.2
-pkgrel=1
-pkgdesc="A simple binary editor for the Gnome desktop"
-url="https://wiki.gnome.org/Apps/Ghex";
-arch=(x86_64)
-license=(GPL)
-depends=(gtk4)
-makedepends=(git meson yelp-tools gobject-introspection gi-docgen)
-options=(debug)
-_commit=1c2029bc07290449e3ac3fc354eaf9832f652df5  # tags/42.2^0
-source=("git+https://gitlab.gnome.org/GNOME/ghex.git#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd ghex
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd ghex
-}
-
-build() {
-  arch-meson ghex build -D gtk_doc=true
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package_ghex() {
-  provides=(libgtkhex-4.so)
-  groups=(gnome-extra)
-
-  meson install -C build --destdir "$pkgdir"
-
-  mkdir -p doc/usr/share
-  mv {"$pkgdir",doc}/usr/share/doc
-}
-
-package_ghex-docs() {
-  pkgdesc+=" (documentation)"
-  depends=()
-
-  mv doc/* "$pkgdir"
-}

Copied: ghex/repos/extra-x86_64/PKGBUILD (from rev 448437, ghex/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 19:17:46 UTC (rev 448439)
@@ -0,0 +1,53 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Tobias Kieslich 
+
+pkgbase=ghex
+pkgname=(ghex ghex-docs)
+pkgver=42.3
+pkgrel=1
+pkgdesc="A simple binary editor for the Gnome desktop"
+url="https://wiki.gnome.org/Apps/Ghex";
+arch=(x86_64)
+license=(GPL)
+depends=(gtk4)
+makedepends=(git meson yelp-tools gobject-introspection gi-docgen)
+options=(debug)
+_commit=0ae685b879a382f46ca0f8c81870d155db4e39df  # tags/42.3^0
+source=("git+https://gitlab.gnome.org/GNOME/ghex.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd ghex
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd ghex
+}
+
+build() {
+  arch-meson ghex build -D gtk_doc=true
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package_ghex() {
+  provides=(libgtkhex-4.so)
+  groups=(gnome-extra)
+
+  meson install -C build --destdir "$pkgdir"
+
+  mkdir -p doc/usr/share
+  mv {"$pkgdir",doc}/usr/share/doc
+}
+
+package_ghex-docs() {
+  pkgdesc+=" (documentation)"
+  depends=()
+
+  mv doc/* "$pkgdir"
+}



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

2022-06-13 Thread Jan Steffens via arch-commits
Date: Monday, June 13, 2022 @ 19:17:45
  Author: heftig
Revision: 448438

archrelease: copy trunk to extra-x86_64

Added:
  gtksourceview5/repos/extra-x86_64/PKGBUILD
(from rev 448437, gtksourceview5/trunk/PKGBUILD)
Deleted:
  gtksourceview5/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 19:17:31 UTC (rev 448437)
+++ PKGBUILD2022-06-13 19:17:45 UTC (rev 448438)
@@ -1,56 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Balló György 
-# Contributor: Ionut Biru 
-
-pkgbase=gtksourceview5
-pkgname=(gtksourceview5 gtksourceview5-docs)
-pkgver=5.4.1
-pkgrel=1
-pkgdesc="A text widget adding syntax highlighting and more to GNOME"
-url="https://wiki.gnome.org/Projects/GtkSourceView";
-arch=(x86_64)
-license=(LGPL)
-depends=(gtk4 libxml2 pcre2)
-makedepends=(gobject-introspection vala gi-docgen git meson)
-checkdepends=(xorg-server-xvfb)
-options=(debug)
-_commit=4d563021b97c3eeeaecceb29db2b581f8268f851  # tags/5.4.1^0
-source=("git+https://gitlab.gnome.org/GNOME/gtksourceview.git#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd gtksourceview
-  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd gtksourceview
-}
-
-build() {
-  arch-meson gtksourceview build -D gtk_doc=true
-  meson compile -C build
-}
-
-check() {
-  dbus-run-session xvfb-run -s '-nolisten local' \
-meson test -C build --print-errorlogs
-}
-
-package_gtksourceview5() {
-  provides=(libgtksourceview-${pkgver%%.*}.so)
-
-  meson install -C build --destdir "$pkgdir"
-
-  mkdir -p doc/usr/share
-  mv {"$pkgdir",doc}/usr/share/doc
-}
-
-package_gtksourceview5-docs() {
-  pkgdesc+=" (documentation)"
-  depends=()
-
-  mv doc/* "$pkgdir"
-}
-
-# vim:set sw=2 et:

Copied: gtksourceview5/repos/extra-x86_64/PKGBUILD (from rev 448437, 
gtksourceview5/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 19:17:45 UTC (rev 448438)
@@ -0,0 +1,56 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Balló György 
+# Contributor: Ionut Biru 
+
+pkgbase=gtksourceview5
+pkgname=(gtksourceview5 gtksourceview5-docs)
+pkgver=5.4.2
+pkgrel=1
+pkgdesc="A text widget adding syntax highlighting and more to GNOME"
+url="https://wiki.gnome.org/Projects/GtkSourceView";
+arch=(x86_64)
+license=(LGPL)
+depends=(gtk4 libxml2 pcre2)
+makedepends=(gobject-introspection vala gi-docgen git meson)
+checkdepends=(xorg-server-xvfb)
+options=(debug)
+_commit=ec0b434c4ebea7e9c1920013af2a911c4b28a66a  # tags/5.4.2^0
+source=("git+https://gitlab.gnome.org/GNOME/gtksourceview.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd gtksourceview
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd gtksourceview
+}
+
+build() {
+  arch-meson gtksourceview build -D gtk_doc=true
+  meson compile -C build
+}
+
+check() {
+  dbus-run-session xvfb-run -s '-nolisten local' \
+meson test -C build --print-errorlogs
+}
+
+package_gtksourceview5() {
+  provides=(libgtksourceview-${pkgver%%.*}.so)
+
+  meson install -C build --destdir "$pkgdir"
+
+  mkdir -p doc/usr/share
+  mv {"$pkgdir",doc}/usr/share/doc
+}
+
+package_gtksourceview5-docs() {
+  pkgdesc+=" (documentation)"
+  depends=()
+
+  mv doc/* "$pkgdir"
+}
+
+# vim:set sw=2 et:



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

2022-06-13 Thread Jan Steffens via arch-commits
Date: Monday, June 13, 2022 @ 19:17:31
  Author: heftig
Revision: 448437

5.4.2-1

Modified:
  gtksourceview5/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 19:17:08 UTC (rev 448436)
+++ PKGBUILD2022-06-13 19:17:31 UTC (rev 448437)
@@ -4,7 +4,7 @@
 
 pkgbase=gtksourceview5
 pkgname=(gtksourceview5 gtksourceview5-docs)
-pkgver=5.4.1
+pkgver=5.4.2
 pkgrel=1
 pkgdesc="A text widget adding syntax highlighting and more to GNOME"
 url="https://wiki.gnome.org/Projects/GtkSourceView";
@@ -14,7 +14,7 @@
 makedepends=(gobject-introspection vala gi-docgen git meson)
 checkdepends=(xorg-server-xvfb)
 options=(debug)
-_commit=4d563021b97c3eeeaecceb29db2b581f8268f851  # tags/5.4.1^0
+_commit=ec0b434c4ebea7e9c1920013af2a911c4b28a66a  # tags/5.4.2^0
 source=("git+https://gitlab.gnome.org/GNOME/gtksourceview.git#commit=$_commit";)
 sha256sums=('SKIP')
 



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

2022-06-13 Thread Jan Steffens via arch-commits
Date: Monday, June 13, 2022 @ 19:17:08
  Author: heftig
Revision: 448436

42.3-1

Modified:
  ghex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 17:53:03 UTC (rev 448435)
+++ PKGBUILD2022-06-13 19:17:08 UTC (rev 448436)
@@ -4,7 +4,7 @@
 
 pkgbase=ghex
 pkgname=(ghex ghex-docs)
-pkgver=42.2
+pkgver=42.3
 pkgrel=1
 pkgdesc="A simple binary editor for the Gnome desktop"
 url="https://wiki.gnome.org/Apps/Ghex";
@@ -13,7 +13,7 @@
 depends=(gtk4)
 makedepends=(git meson yelp-tools gobject-introspection gi-docgen)
 options=(debug)
-_commit=1c2029bc07290449e3ac3fc354eaf9832f652df5  # tags/42.2^0
+_commit=0ae685b879a382f46ca0f8c81870d155db4e39df  # tags/42.3^0
 source=("git+https://gitlab.gnome.org/GNOME/ghex.git#commit=$_commit";)
 sha256sums=('SKIP')
 



[arch-commits] Commit in element.io/repos/community-x86_64 (8 files)

2022-06-13 Thread Bruno Pagani via arch-commits
Date: Monday, June 13, 2022 @ 18:49:05
  Author: archange
Revision: 1237795

archrelease: copy trunk to community-x86_64

Added:
  element.io/repos/community-x86_64/PKGBUILD
(from rev 1237794, element.io/trunk/PKGBUILD)
  element.io/repos/community-x86_64/autolaunch.patch
(from rev 1237794, element.io/trunk/autolaunch.patch)
  element.io/repos/community-x86_64/element-desktop.sh
(from rev 1237794, element.io/trunk/element-desktop.sh)
  element.io/repos/community-x86_64/io.element.Element.desktop
(from rev 1237794, element.io/trunk/io.element.Element.desktop)
Deleted:
  element.io/repos/community-x86_64/PKGBUILD
  element.io/repos/community-x86_64/autolaunch.patch
  element.io/repos/community-x86_64/element-desktop.sh
  element.io/repos/community-x86_64/io.element.Element.desktop

+
 PKGBUILD   |  195 +--
 autolaunch.patch   |   22 ++--
 element-desktop.sh |6 -
 io.element.Element.desktop |   20 ++--
 4 files changed, 122 insertions(+), 121 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 18:48:52 UTC (rev 1237794)
+++ PKGBUILD2022-06-13 18:49:05 UTC (rev 1237795)
@@ -1,97 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Steef Hegeman 
-# Contributor: Luca Weiss 
-# Contributor: Julian Schacher 
-
-_electron=electron17
-pkgbase=element.io
-pkgname=(element-web element-desktop)
-pkgver=1.10.13
-pkgrel=1
-pkgdesc="Glossy Matrix collaboration client — "
-arch=(x86_64)
-url="https://element.io";
-license=(Apache)
-makedepends=(npm git yarn python rust tcl ${_electron} nodejs-lts-gallium)
-_url="https://github.com/vector-im/element";
-source=(element-web-${pkgver}.tar.gz::${_url}-web/archive/v${pkgver}.tar.gz
-
element-web-${pkgver}.tar.gz.asc::${_url}-web/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc
-
element-desktop-${pkgver}.tar.gz::${_url}-desktop/archive/v${pkgver}.tar.gz
-
element-desktop-${pkgver}.tar.gz.asc::${_url}-desktop/releases/download/v${pkgver}/v${pkgver}-src.tar.gz.asc
-autolaunch.patch
-io.element.Element.desktop
-element-desktop.sh)
-sha256sums=('438d0796479c38e91cac1879d3325a60803aac4623f1993bce27be641f187ec7'
-'SKIP'
-'ee8eca00ec59913141bab33e03cde99483142840db4923d9ecf4265289dca384'
-'SKIP'
-'aaae4ffa41590361dac0c159aecc1166f69e459e89faa9d5cab1202f0277e06f'
-'0103f28a32fe31f698836516783c1c70a76a0117b5df7fd0af5c422c224220f9'
-'c1bd9ace215e3ec9af14d7f28b163fc8c8b42e23a2cf04ce6f4ce2fcc465feba')
-validpgpkeys=(712BFBEE92DCA45252DB17D7C7BE97EFA179B100) # Element Releases 

-
-prepare() {
-  # Specify electron version in launcher
-  sed -i "s|@ELECTRON@|${_electron}|" element-desktop.sh
-
-  cd element-web-${pkgver}
-  yarn install --no-fund
-
-  cd ../element-desktop-${pkgver}
-  patch -p1 < ../autolaunch.patch
-  sed -i 's|"target": "deb"|"target": "dir"|' package.json
-  sed -i 's|"https://packages.element.io/desktop/update/";|null|' 
element.io/release/config.json
-  yarn install --no-fund
-}
-
-build() {
-  cd element-web-${pkgver}
-  VERSION=${pkgver} yarn build --offline
-
-  cd ../element-desktop-${pkgver}
-  yarn run build:native
-  yarn run build
-}
-
-package_element-web() {
-  pkgdesc+="web version."
-  replaces=(riot-web vector-web)
-
-  cd element-web-${pkgver}
-
-  install -d "${pkgdir}"/{usr/share/webapps,etc/webapps}/element
-
-  cp -r webapp/* "${pkgdir}"/usr/share/webapps/element/
-  install -Dm644 config.sample.json -t "${pkgdir}"/etc/webapps/element/
-  ln -s /etc/webapps/element/config.json "${pkgdir}"/usr/share/webapps/element/
-  echo "${pkgver}" > "${pkgdir}"/usr/share/webapps/element/version
-}
-
-package_element-desktop() {
-  pkgdesc+="desktop version."
-  replaces=(riot-desktop)
-  depends=("element-web=${pkgver}" ${_electron} libsecret)
-  backup=('etc/element/config.json')
-
-  cd element-desktop-${pkgver}
-
-  install -d "${pkgdir}"{/usr/lib/element/,/etc/webapps/element}
-
-  # Install the app content, replace the webapp with a symlink to the system 
package
-  cp -r dist/linux-unpacked/resources/* "${pkgdir}"/usr/lib/element/
-  ln -s /usr/share/webapps/element "${pkgdir}"/usr/lib/element/webapp
-
-  # Config file
-  ln -s /etc/element/config.json "${pkgdir}"/etc/webapps/element/config.json
-  install -Dm644 element.io/release/config.json -t "${pkgdir}"/etc/element
-
-  # Required extras
-  install -Dm644 ../io.element.Element.desktop -t 
"${pkgdir}"/usr/share/applications/
-  install -Dm755 ../${pkgname}.sh "${pkgdir}"/usr/bin/${pkgname}
-
-  # Icons
-  install -Dm644 
../element-web-${pkgver}/res/themes/element/img/logos/element-logo.svg 
"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/io.element.Element.svg
-  for i in 16 24 48 64 96 128 256 512; do
-install -Dm644 build/icons/${i}x${i}.png 
"${pkgdir}"/usr/share/icons/h

[arch-commits] Commit in element.io/trunk (PKGBUILD)

2022-06-13 Thread Bruno Pagani via arch-commits
Date: Monday, June 13, 2022 @ 18:48:52
  Author: archange
Revision: 1237794

upgpkg: element.io 1.10.14-1

Upstream now defaults to linking dynamically again, but allows overriding for 
static.

Modified:
  element.io/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 17:55:53 UTC (rev 1237793)
+++ PKGBUILD2022-06-13 18:48:52 UTC (rev 1237794)
@@ -6,7 +6,7 @@
 _electron=electron17
 pkgbase=element.io
 pkgname=(element-web element-desktop)
-pkgver=1.10.13
+pkgver=1.10.14
 pkgrel=1
 pkgdesc="Glossy Matrix collaboration client — "
 arch=(x86_64)
@@ -21,9 +21,9 @@
 autolaunch.patch
 io.element.Element.desktop
 element-desktop.sh)
-sha256sums=('438d0796479c38e91cac1879d3325a60803aac4623f1993bce27be641f187ec7'
+sha256sums=('57d4730d6ced050199966db34bd56da89d2dbbfd52bd90546c300549601b7b31'
 'SKIP'
-'ee8eca00ec59913141bab33e03cde99483142840db4923d9ecf4265289dca384'
+'4e590e765944701b9884ea493ba482272f61fb0dd1c877fc59db6c460c1a2e10'
 'SKIP'
 'aaae4ffa41590361dac0c159aecc1166f69e459e89faa9d5cab1202f0277e06f'
 '0103f28a32fe31f698836516783c1c70a76a0117b5df7fd0af5c422c224220f9'
@@ -49,6 +49,7 @@
   VERSION=${pkgver} yarn build --offline
 
   cd ../element-desktop-${pkgver}
+  export SQLCIPHER_STATIC=1
   yarn run build:native
   yarn run build
 }



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

2022-06-13 Thread Anatol Pomozov via arch-commits
Date: Monday, June 13, 2022 @ 17:55:53
  Author: anatolik
Revision: 1237793

archrelease: copy trunk to community-testing-any

Added:
  android-udev/repos/community-testing-any/
  android-udev/repos/community-testing-any/PKGBUILD
(from rev 1237792, android-udev/trunk/PKGBUILD)

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

Copied: android-udev/repos/community-testing-any/PKGBUILD (from rev 1237792, 
android-udev/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2022-06-13 17:55:53 UTC (rev 1237793)
@@ -0,0 +1,19 @@
+# Maintainer: M0Rf30
+# Contributor: marlock
+
+pkgname=android-udev
+pkgver=20220611
+pkgrel=1
+pkgdesc='Udev rules to connect Android devices to your linux box'
+arch=(any)
+url='https://github.com/M0Rf30/android-udev-rules'
+license=(GPL3)
+depends=(udev libmtp)
+source=(android-udev-$pkgver.zip::https://github.com/M0Rf30/android-udev-rules/archive/$pkgver.zip)
+sha1sums=('ecba1051ba1f9d80fe232c4754a92fd11c5559c9')
+
+package() {
+  cd android-udev-rules-$pkgver
+  install -Dm 644 51-android.rules 
"$pkgdir"/usr/lib/udev/rules.d/51-android.rules
+  install -Dm 644 android-udev.conf 
"$pkgdir"/usr/lib/sysusers.d/android-udev.conf
+}



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

2022-06-13 Thread Anatol Pomozov via arch-commits
Date: Monday, June 13, 2022 @ 17:55:35
  Author: anatolik
Revision: 1237792

upgpkg: android-udev 20220611-1

Modified:
  android-udev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 17:53:23 UTC (rev 1237791)
+++ PKGBUILD2022-06-13 17:55:35 UTC (rev 1237792)
@@ -2,7 +2,7 @@
 # Contributor: marlock
 
 pkgname=android-udev
-pkgver=20220102
+pkgver=20220611
 pkgrel=1
 pkgdesc='Udev rules to connect Android devices to your linux box'
 arch=(any)
@@ -10,7 +10,7 @@
 license=(GPL3)
 depends=(udev libmtp)
 
source=(android-udev-$pkgver.zip::https://github.com/M0Rf30/android-udev-rules/archive/$pkgver.zip)
-sha1sums=('b8a2419fcaf09b687558093f6447857c557df66b')
+sha1sums=('ecba1051ba1f9d80fe232c4754a92fd11c5559c9')
 
 package() {
   cd android-udev-rules-$pkgver



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

2022-06-13 Thread Antonio Rojas via arch-commits
Date: Monday, June 13, 2022 @ 16:40:21
  Author: arojas
Revision: 1237789

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 16:40:10 UTC (rev 1237788)
+++ PKGBUILD2022-06-13 16:40:21 UTC (rev 1237789)
@@ -1,32 +0,0 @@
-# Maintainer: Kyle Keen 
-
-pkgname=python-ipykernel
-pkgver=6.13.1
-pkgrel=1
-pkgdesc="The ipython kernel for Jupyter"
-arch=('any')
-url="https://pypi.org/project/ipykernel/";
-license=('BSD')
-depends=('python-traitlets' 'python-tornado' 'ipython' 'python-jupyter_client' 
'python-debugpy' 'python-psutil')
-makedepends=('python-build' 'python-installer' 'python-hatchling')
-checkdepends=('python-pytest-timeout' 'python-mock' 'python-flaky' 
'python-ipyparallel')
-source=("ipykernel-$pkgver.tgz::https://github.com/ipython/ipykernel/archive/v$pkgver.tar.gz";)
-sha256sums=('76f576ad47398f6cd1f86151b59c6a6eba3a4ecff05d89cba6c0ae361bd9998b')
-
-# dep cycle with python-jupyter_client
-
-build() {
-  cd ipykernel-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd ipykernel-$pkgver
-  pytest -v
-}
-
-package() {
-  cd ipykernel-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-ipykernel/repos/community-any/PKGBUILD (from rev 1237788, 
python-ipykernel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 16:40:21 UTC (rev 1237789)
@@ -0,0 +1,32 @@
+# Maintainer: Kyle Keen 
+
+pkgname=python-ipykernel
+pkgver=6.14.0
+pkgrel=1
+pkgdesc="The ipython kernel for Jupyter"
+arch=('any')
+url="https://pypi.org/project/ipykernel/";
+license=('BSD')
+depends=('python-traitlets' 'python-tornado' 'ipython' 'python-jupyter_client' 
'python-debugpy' 'python-psutil')
+makedepends=('python-build' 'python-installer' 'python-hatchling')
+checkdepends=('python-pytest-timeout' 'python-mock' 'python-flaky' 
'python-ipyparallel')
+source=("ipykernel-$pkgver.tgz::https://github.com/ipython/ipykernel/archive/v$pkgver.tar.gz";)
+sha256sums=('fc8c9126a6875c5323696fa9def0b8b86e1cc1994d4cc30e0d7cf470d48106ae')
+
+# dep cycle with python-jupyter_client
+
+build() {
+  cd ipykernel-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd ipykernel-$pkgver
+  pytest -v
+}
+
+package() {
+  cd ipykernel-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-06-13 Thread Antonio Rojas via arch-commits
Date: Monday, June 13, 2022 @ 16:40:10
  Author: arojas
Revision: 1237788

Update to 6.14.0

Modified:
  python-ipykernel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 16:23:11 UTC (rev 1237787)
+++ PKGBUILD2022-06-13 16:40:10 UTC (rev 1237788)
@@ -1,7 +1,7 @@
 # Maintainer: Kyle Keen 
 
 pkgname=python-ipykernel
-pkgver=6.13.1
+pkgver=6.14.0
 pkgrel=1
 pkgdesc="The ipython kernel for Jupyter"
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('python-build' 'python-installer' 'python-hatchling')
 checkdepends=('python-pytest-timeout' 'python-mock' 'python-flaky' 
'python-ipyparallel')
 
source=("ipykernel-$pkgver.tgz::https://github.com/ipython/ipykernel/archive/v$pkgver.tar.gz";)
-sha256sums=('76f576ad47398f6cd1f86151b59c6a6eba3a4ecff05d89cba6c0ae361bd9998b')
+sha256sums=('fc8c9126a6875c5323696fa9def0b8b86e1cc1994d4cc30e0d7cf470d48106ae')
 
 # dep cycle with python-jupyter_client
 



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

2022-06-13 Thread Antonio Rojas via arch-commits
Date: Monday, June 13, 2022 @ 16:31:56
  Author: arojas
Revision: 448434

archrelease: copy trunk to extra-x86_64

Added:
  kdenlive/repos/extra-x86_64/PKGBUILD
(from rev 448433, kdenlive/trunk/PKGBUILD)
Deleted:
  kdenlive/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 16:31:43 UTC (rev 448433)
+++ PKGBUILD2022-06-13 16:31:56 UTC (rev 448434)
@@ -1,42 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Sergej Pupykin 
-# Contributor: Zuf 
-# Contributor: Darwin Bautista 
-# Contributor: Gustavo Alvarez 
-
-pkgname=kdenlive
-pkgver=22.04.2
-pkgrel=1
-pkgdesc='A non-linear video editor for Linux using the MLT video framework'
-arch=(x86_64)
-url='https://apps.kde.org/kdenlive/'
-license=(GPL)
-groups=(kde-applications kde-multimedia)
-depends=(qt5-networkauth knewstuff knotifyconfig kfilemetadata purpose mlt 
breeze-icons frei0r-plugins)
-makedepends=(extra-cmake-modules kdoctools v4l-utils doxygen qt5-tools)
-optdepends=('ffmpeg: for FFmpeg plugin'
-'dvgrab: for firewire capture'
-'recordmydesktop: for screen capture'
-'opencv: for motion tracking'
-'plasma-desktop: theme configuration'
-'opentimelineio: timeline export/import'
-'bigsh0t: VR360 effects'
-'noise-suppression-for-voice: noise suppression effect')
-source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('1f74804ece89b4a95b2971e959e5fc9403b7b723acb5e4406acde88e4e02dcc9'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

-  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

-options=(debug)
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DBUILD_TESTING=OFF \
--DBUILD_QCH=ON
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: kdenlive/repos/extra-x86_64/PKGBUILD (from rev 448433, 
kdenlive/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 16:31:56 UTC (rev 448434)
@@ -0,0 +1,43 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: Zuf 
+# Contributor: Darwin Bautista 
+# Contributor: Gustavo Alvarez 
+
+pkgname=kdenlive
+pkgver=22.04.2
+pkgrel=2
+pkgdesc='A non-linear video editor for Linux using the MLT video framework'
+arch=(x86_64)
+url='https://apps.kde.org/kdenlive/'
+license=(GPL)
+groups=(kde-applications kde-multimedia)
+depends=(qt5-networkauth knewstuff knotifyconfig kfilemetadata purpose mlt 
breeze-icons frei0r-plugins)
+makedepends=(extra-cmake-modules kdoctools v4l-utils doxygen qt5-tools)
+optdepends=('ffmpeg: for FFmpeg plugin'
+'dvgrab: for firewire capture'
+'recordmydesktop: for screen capture'
+'opencv: for motion tracking'
+'plasma-desktop: theme configuration'
+'opentimelineio: timeline export/import'
+'bigsh0t: VR360 effects'
+'mediainfo: for technical clip information'
+'noise-suppression-for-voice: noise suppression effect')
+source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('1f74804ece89b4a95b2971e959e5fc9403b7b723acb5e4406acde88e4e02dcc9'
+'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+options=(debug)
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2022-06-13 Thread Antonio Rojas via arch-commits
Date: Monday, June 13, 2022 @ 16:31:43
  Author: arojas
Revision: 448433

Add mediainfo optdepend

Modified:
  kdenlive/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 16:00:38 UTC (rev 448432)
+++ PKGBUILD2022-06-13 16:31:43 UTC (rev 448433)
@@ -6,7 +6,7 @@
 
 pkgname=kdenlive
 pkgver=22.04.2
-pkgrel=1
+pkgrel=2
 pkgdesc='A non-linear video editor for Linux using the MLT video framework'
 arch=(x86_64)
 url='https://apps.kde.org/kdenlive/'
@@ -21,6 +21,7 @@
 'plasma-desktop: theme configuration'
 'opentimelineio: timeline export/import'
 'bigsh0t: VR360 effects'
+'mediainfo: for technical clip information'
 'noise-suppression-for-voice: noise suppression effect')
 
source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
 sha256sums=('1f74804ece89b4a95b2971e959e5fc9403b7b723acb5e4406acde88e4e02dcc9'



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

2022-06-13 Thread Andrew Crerar via arch-commits
Date: Monday, June 13, 2022 @ 16:18:15
  Author: andrewsc
Revision: 1237742

archrelease: copy trunk to community-any

Added:
  python-pipenv/repos/community-any/PKGBUILD
(from rev 1237741, python-pipenv/trunk/PKGBUILD)
  python-pipenv/repos/community-any/requirements_downgrade.patch
(from rev 1237741, python-pipenv/trunk/requirements_downgrade.patch)
Deleted:
  python-pipenv/repos/community-any/PKGBUILD
  python-pipenv/repos/community-any/requirements_downgrade.patch

--+
 PKGBUILD |   82 -
 requirements_downgrade.patch |   26 ++---
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 16:17:59 UTC (rev 1237741)
+++ PKGBUILD2022-06-13 16:18:15 UTC (rev 1237742)
@@ -1,41 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Andrew Crerar 
-# Contributor: Maikel Wever 
-
-pkgname=python-pipenv
-pkgver=2022.5.2
-pkgrel=1
-pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv."
-url="https://pipenv.pypa.io";
-arch=('any')
-license=('MIT')
-depends=('python' 'python-pip' 'python-certifi'
- 'python-virtualenv-clone' 'python-virtualenv')
-makedepends=('python-setuptools')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pypa/pipenv/archive/v${pkgver}.tar.gz";
-"requirements_downgrade.patch")
-sha512sums=('0c0fcaf14046cb0d75cb9c260408683b53d6a5e5f2c20c4f73cc20c21af054ac2f18d3c616bfebf18dd6ad02731dadcc0efa85f861643c5ce7dc16d61e9d1983'
-
'd35c6c9d6c490af0b34a97ef2a5a37244df7aceb9b45d4caf8e3155cd28c9ea9721557235b6b99c880d866c89b2b479c974345fde4b989b480bcb7b9ccd34736')
-
-prepare() {
-  cd "pipenv-${pkgver}"
-  patch -Np1 -i ../requirements_downgrade.patch
-}
-
-build() {
-  cd "pipenv-${pkgver}"
-  python setup.py build
-}
-
-package() {
-  cd "pipenv-${pkgver}"
-  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
-  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  pushd pipenv
-  find . -name \*LICENSE\* -exec install -Dm 644 \{\} 
"${pkgdir}/usr/share/licenses/${pkgname}/"\{\} \;
-  popd
-
-  PIPENV_SHELL=bash python -m pipenv --completion | install -Dm644 /dev/stdin 
"${pkgdir}/usr/share/bash-completion/completions/pipenv"
-  PIPENV_SHELL=zsh  python -m pipenv --completion | install -Dm644 /dev/stdin 
"${pkgdir}/usr/share/zsh/site-functions/_pipenv"
-  PIPENV_SHELL=fish python -m pipenv --completion | install -Dm644 /dev/stdin 
"${pkgdir}/usr/share/fish/vendor_completions.d/pipenv.fish"
-}

Copied: python-pipenv/repos/community-any/PKGBUILD (from rev 1237741, 
python-pipenv/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 16:18:15 UTC (rev 1237742)
@@ -0,0 +1,41 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Andrew Crerar 
+# Contributor: Maikel Wever 
+
+pkgname=python-pipenv
+pkgver=2022.6.7
+pkgrel=1
+pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv."
+url="https://pipenv.pypa.io";
+arch=('any')
+license=('MIT')
+depends=('python' 'python-pip' 'python-certifi'
+ 'python-virtualenv-clone' 'python-virtualenv')
+makedepends=('python-setuptools')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pypa/pipenv/archive/v${pkgver}.tar.gz";
+"requirements_downgrade.patch")
+sha512sums=('2b9c42bd88d8643d07f2eb375040b5b26a88980f5f6e4ee8e99bcbbc17ab268f6dbfa582d1974d2cbfd18691dd06d8b9e3b6c25cec17d64fa3e5541529fe05fc'
+
'd35c6c9d6c490af0b34a97ef2a5a37244df7aceb9b45d4caf8e3155cd28c9ea9721557235b6b99c880d866c89b2b479c974345fde4b989b480bcb7b9ccd34736')
+
+prepare() {
+  cd "pipenv-${pkgver}"
+  patch -Np1 -i ../requirements_downgrade.patch
+}
+
+build() {
+  cd "pipenv-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "pipenv-${pkgver}"
+  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
+  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  pushd pipenv
+  find . -name \*LICENSE\* -exec install -Dm 644 \{\} 
"${pkgdir}/usr/share/licenses/${pkgname}/"\{\} \;
+  popd
+
+  PIPENV_SHELL=bash python -m pipenv --completion | install -Dm644 /dev/stdin 
"${pkgdir}/usr/share/bash-completion/completions/pipenv"
+  PIPENV_SHELL=zsh  python -m pipenv --completion | install -Dm644 /dev/stdin 
"${pkgdir}/usr/share/zsh/site-functions/_pipenv"
+  PIPENV_SHELL=fish python -m pipenv --completion | install -Dm644 /dev/stdin 
"${pkgdir}/usr/share/fish/vendor_completions.d/pipenv.fish"
+}

Deleted: requirements_downgrade.patch
===
--- requirements_downgrade.patch2022-06-13 16:17:59 UTC (rev 1237741)
+++ requirements_downgrade.patch2022-06-13 16:18:15 UTC (rev 1237742)
@@ -1,13 +0,0 @@
-diff --git a/setup.py b/setup.py
-index 3a1cd31a..d7083434 100644
 a/se

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

2022-06-13 Thread Andrew Crerar via arch-commits
Date: Monday, June 13, 2022 @ 16:17:59
  Author: andrewsc
Revision: 1237741

upgpkg: python-pipenv 2022.6.7-1

Modified:
  python-pipenv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 16:01:40 UTC (rev 1237740)
+++ PKGBUILD2022-06-13 16:17:59 UTC (rev 1237741)
@@ -3,7 +3,7 @@
 # Contributor: Maikel Wever 
 
 pkgname=python-pipenv
-pkgver=2022.5.2
+pkgver=2022.6.7
 pkgrel=1
 pkgdesc="Sacred Marriage of Pipfile, Pip, & Virtualenv."
 url="https://pipenv.pypa.io";
@@ -14,7 +14,7 @@
 makedepends=('python-setuptools')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pypa/pipenv/archive/v${pkgver}.tar.gz";
 "requirements_downgrade.patch")
-sha512sums=('0c0fcaf14046cb0d75cb9c260408683b53d6a5e5f2c20c4f73cc20c21af054ac2f18d3c616bfebf18dd6ad02731dadcc0efa85f861643c5ce7dc16d61e9d1983'
+sha512sums=('2b9c42bd88d8643d07f2eb375040b5b26a88980f5f6e4ee8e99bcbbc17ab268f6dbfa582d1974d2cbfd18691dd06d8b9e3b6c25cec17d64fa3e5541529fe05fc'
 
'd35c6c9d6c490af0b34a97ef2a5a37244df7aceb9b45d4caf8e3155cd28c9ea9721557235b6b99c880d866c89b2b479c974345fde4b989b480bcb7b9ccd34736')
 
 prepare() {



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

2022-06-13 Thread Andrew Crerar via arch-commits
Date: Monday, June 13, 2022 @ 16:01:40
  Author: andrewsc
Revision: 1237740

archrelease: copy trunk to community-any

Added:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD
(from rev 1237739, 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-06-13 16:01:15 UTC (rev 1237739)
+++ PKGBUILD2022-06-13 16:01:40 UTC (rev 1237740)
@@ -1,230 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=102.0b4
-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=('219c254e6d52af3b8f11d6aa18f66ac7a5401aa95efa2da620c5c9df21416fb681fcb8ae82b1e09419dab301b03a5d3052c3aa857fdd219f89d12cb266fe4b01'
-
'b1750fd49a17b735413e7b226a7fa685e4cdbf054f82f6dbfe7c4ce852b3ba65e1fb81baff65b4a2e9bb977d1d11316ddb127c4be7e2a0bbe9322432cd4a82d3'
-
'14194233bd871a52a7d7f0928abc6d43a68bea1c2145170633e94e5a0fea9eb3f7d5f93619628ee77a199b94e5f8504e67c65ac95a53fed1cff9df4776d90269'
-
'98b89d4a77c7fcacd77b8db7e5540489f555d27fc227

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

2022-06-13 Thread Andrew Crerar via arch-commits
Date: Monday, June 13, 2022 @ 16:01:15
  Author: andrewsc
Revision: 1237739

upgpkg: firefox-developer-edition-i18n 102.0b7-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 16:00:19 UTC (rev 1237738)
+++ PKGBUILD2022-06-13 16:01:15 UTC (rev 1237739)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=102.0b4
+pkgver=102.0b7
 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=('219c254e6d52af3b8f11d6aa18f66ac7a5401aa95efa2da620c5c9df21416fb681fcb8ae82b1e09419dab301b03a5d3052c3aa857fdd219f89d12cb266fe4b01'
-
'b1750fd49a17b735413e7b226a7fa685e4cdbf054f82f6dbfe7c4ce852b3ba65e1fb81baff65b4a2e9bb977d1d11316ddb127c4be7e2a0bbe9322432cd4a82d3'
-
'14194233bd871a52a7d7f0928abc6d43a68bea1c2145170633e94e5a0fea9eb3f7d5f93619628ee77a199b94e5f8504e67c65ac95a53fed1cff9df4776d90269'
-
'98b89d4a77c7fcacd77b8db7e5540489f555d27fc227e1a5a7c3f31756f3629cb238331f10f66e92e7e0f3919066cd400bca941ebaf081f408785b24ee68a255'
-
'36be78d6a53a2231998e6bb662c9aa80f731293c0958fe784c7f2674fb6780393130aef025dc5bf8cbec37721ff72dbb17119ca6d873785e4f653de4d87795ba'
-
'aa2f03e62b69e58243a2d15fbef602d0a818c53848a72935ea58a07c03a006710de8d509e55482741284fbd67a3ac58fe8aa76ef30ee8770c9817fc94965ce93'
-
'c5a77da549872c7b7e36e49b43ac2891a23638bada9ca102a75732279b6afa52fc990cda051dee59e7703e77c523f921a7669e68065e24ec742c21ccfc52a42e'
-
'4390c60c775b855df7bea09a041d2a6a5795ff0a7f3e368429f106be1be75ef288d675a38f230f665a0bfa5bf847a31d7bbb3dfa559d16856c6beb5816ca4a0b'
-
'9df8f3e09f337603681285886c5f9446b7a25e3c75080cce02d7e90777f605fa463189f840e9b31e3fd29930cffd1f82549e93e014388bb8314e523366d9eb53'
-
'09884cc6c13187e31ef81d5d67ac4e68f3937f33473be472b77e203081bd49434dd94554e0fdf3733a7d504c0ac295f6f422b91ae3fa8d54b64d158f590293f1'
-
'783964e0da9dcef15772c0798397036e1368247864e030cf25fcabd8e2ce1b42b6fa274ad3ba08469de94822c8576712233384a0a9a2edec040d0e795245a9fe'
-
'1a02e6c05b60d33256c4a8f9bf762ac734379ca6907cf485b414f98a6563bc17e4f42d9ef8d93685c322b014b6d1ef855f21ceb9a3a85861b9857d5f914e0acf'
-
'19eb9b3db370ae08ae755b340287e85aef78c3638378b6a930b7ce5eb42a79792d5025d75025f6116ff289434a2dcecd9acaeace34c3a70deef2892728bec96d'
-
'aebb375078a805d61a95c6fe54b46e1a83b64badfc93232112e47b1f5f2d4fbd450f2231401006c7d7820d4ed743950a62a439284cd85f1eb44f572ff69ede20'
-
'0192ffe62868d3fe057333ab780f24ae5a5dfa8397bdc6092b9ef26a2f96af3b0edd94dcfac20e82bdff7e956871eb8df1546c1a9f88994628da12bd87b891a3'
-
'a0fcc454fc118b44558126496b2137ba1b8d0aff913a52d24ef2f9caaca6b70208c72877d4879014b1014017bb07287e391a2defe76d6bb19b7baa2262ffeaf1'
-
'4275b72a95887f5d52e84b6b84f5ece0c564485eb352d1c5fe657ce49a2b68fd1ab2ef46d3ac50c4e15e71859d5126652c2e82aa58717591da3fefb64800d829'
-
'35a3527ed7a4d02a677e1aff7756fd2f7df106ace8e72acf2ee6f0ca5999530b6c769d8e01f3f9bca01724550167174daad048258b5f8b424ff1cb743e6d6d34'
-
'5e5d562b60cd149c4c08b46c2cd6f917597ca4a015625fbb4b1048d7a95d51b6967b3b5ac6328a7019588f8b808f275e4f3f387a7f2cd7bb31990316e9a468ec'
-
'e35c2e7e7353d1ffe807d0e664c3e1d53e4b68df8b3dd06ffd544a8c368df57b5fe3f34aadc973fbbfd3f133349579324067761afd6cb2116d40be09d7fbea40'
-
'7208b68cec6194cc05ed5500d4ee74721273d1fbd5ae8353186c4a279df6cb1eaaed33bb5efd1782eae9efcc89c958225ef1ccfca45b2e02f838e0f26f9d5779'
-
'2b2c6f8bc7a1ce6a4a4e9f88fbbe056e4c20754174681cbab9938638e377d6e1c8dab942389ef43413df71859f2bc4dbb6427dafcdff7fbdf94f8699f7da5ce3'
-
'deb120db77db2e9a8b508efe9d17e615d1841e02385babd8c12b0d7644e20c64e95303c4a648558826e1aa168a292cd930fa48d4e41243245ddb32a6a0b9bded'
-
'52bd287b3aa03cce0ad830c01fd9612f69dd9d15f0b5a81e613bf6f70fc0384a647efe1c45e8b2e56e8bd26646616be76fd07c3b03e01dd50b517fb3b0939ee4'
-
'c0965bcfa0544145857bb73e526faa6057d4109df8f37a8f6c7920a9a94636ac66860a0635bf6cedfe82824075b447eb4060d7b085d18b24535f0c031341'
-
'10e03eaaf0148bbfeaac0263568652cbbcc4733f88dab03f1d9629560929519a3f62db652ec85121348157b9c8bcb0e4cfca2eef518d76b385718dced00a3ab0'
-
'86b0ded5f0c545ca8f1311966960c139d5312e84e9bf48ea4c9fc9fb62566fee079314c92994d39e5205f0cea3ae4f63bb01d431c7c5ee24b3e11e699a6bd538'
-
'3a1f74ddf1c838992db2d4a904cb48a50c4857aa3e549a9818d3aa84f02d803c1eb38edc438037e209a4863ad04bb5815a3ebfb456ec3b1e2db2feee57c14146'
-
'804c348023520657fd66ff5032a559961ce6d52689d17a17ca56801768c9a0a

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

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 16:00:19
  Author: jlichtblau
Revision: 1237738

archrelease: copy trunk to community-x86_64

Added:
  aqbanking/repos/community-x86_64/PKGBUILD
(from rev 1237737, aqbanking/trunk/PKGBUILD)
Deleted:
  aqbanking/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 16:00:13 UTC (rev 1237737)
+++ PKGBUILD2022-06-13 16:00:19 UTC (rev 1237738)
@@ -1,36 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Sergej Pupykin 
-# Contributor: David Moore 
-
-pkgname=aqbanking
-pkgver=6.4.1
-pkgrel=1
-pkgdesc="A library for online banking and financial applications"
-arch=('x86_64')
-url="https://www.aquamaniac.de/rdm/projects/aqbanking";
-license=('GPL')
-depends=('gwenhywfar' 'ktoblzcheck' 'libofx')
-options=('!makeflags')
-source=(https://www.aquamaniac.de/rdm/attachments/download/400/$pkgname-$pkgver.tar.gz
-
https://www.aquamaniac.de/rdm/attachments/download/399/$pkgname-$pkgver.tar.gz.asc)
-validpgpkeys=('42400AF5EB2A17F0A69BB551E9899D784A977416') #AqBanking Package 
Key 
-sha256sums=('79adeaf05e99b5aa0d31c3eac3db37a56bb375f537b3f106a9acfcf844dadd77'
-'SKIP')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  BUILD_DATE="$(date --utc --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" 
+%Y-%m-%d)"
-
-  export PKG_CONFIG=/usr/bin/pkg-config
-  ./configure --prefix=/usr --enable-gwenhywfar \
-  --with-backends="aqhbci aqofxconnect aqpaypal" \
-  --with-build-datetime=$(BUILD_DATE)
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: aqbanking/repos/community-x86_64/PKGBUILD (from rev 1237737, 
aqbanking/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 16:00:19 UTC (rev 1237738)
@@ -0,0 +1,37 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Sergej Pupykin 
+# Contributor: David Moore 
+
+pkgname=aqbanking
+pkgver=6.5.0
+pkgrel=1
+pkgdesc="A library for online banking and financial applications"
+arch=('x86_64')
+url="https://www.aquamaniac.de/rdm/projects/aqbanking";
+license=('GPL')
+depends=('gwenhywfar')
+options=('!makeflags')
+source=(https://www.aquamaniac.de/rdm/attachments/download/435/$pkgname-$pkgver.tar.gz
+
https://www.aquamaniac.de/rdm/attachments/download/434/$pkgname-$pkgver.tar.gz.asc)
+validpgpkeys=('42400AF5EB2A17F0A69BB551E9899D784A977416') #AqBanking Package 
Key 
+sha256sums=('4d2d3bea086e96ada7b6819206d4eb4168ceb7e32dce9a68dc6c6eabcc9eb63e'
+'SKIP')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  BUILD_DATE="$(date --utc --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" 
+%Y-%m-%d)"
+
+  export PKG_CONFIG=/usr/bin/pkg-config
+  ./configure --prefix=/usr --enable-gwenhywfar \
+  --with-backends="aqhbci aqofxconnect aqpaypal" \
+  --with-build-datetime=$(BUILD_DATE) \
+  --with-backends=aqnone
#https://www.aquamaniac.de/rdm/issues/258
+  make
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+}



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

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 16:00:13
  Author: jlichtblau
Revision: 1237737

upgpkg: aqbanking 6.5.0-1 - new upstream release

Modified:
  aqbanking/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:56:58 UTC (rev 1237736)
+++ PKGBUILD2022-06-13 16:00:13 UTC (rev 1237737)
@@ -3,18 +3,18 @@
 # Contributor: David Moore 
 
 pkgname=aqbanking
-pkgver=6.4.1
+pkgver=6.5.0
 pkgrel=1
 pkgdesc="A library for online banking and financial applications"
 arch=('x86_64')
 url="https://www.aquamaniac.de/rdm/projects/aqbanking";
 license=('GPL')
-depends=('gwenhywfar' 'ktoblzcheck' 'libofx')
+depends=('gwenhywfar')
 options=('!makeflags')
-source=(https://www.aquamaniac.de/rdm/attachments/download/400/$pkgname-$pkgver.tar.gz
-
https://www.aquamaniac.de/rdm/attachments/download/399/$pkgname-$pkgver.tar.gz.asc)
+source=(https://www.aquamaniac.de/rdm/attachments/download/435/$pkgname-$pkgver.tar.gz
+
https://www.aquamaniac.de/rdm/attachments/download/434/$pkgname-$pkgver.tar.gz.asc)
 validpgpkeys=('42400AF5EB2A17F0A69BB551E9899D784A977416') #AqBanking Package 
Key 
-sha256sums=('79adeaf05e99b5aa0d31c3eac3db37a56bb375f537b3f106a9acfcf844dadd77'
+sha256sums=('4d2d3bea086e96ada7b6819206d4eb4168ceb7e32dce9a68dc6c6eabcc9eb63e'
 'SKIP')
 
 build() {
@@ -25,7 +25,8 @@
   export PKG_CONFIG=/usr/bin/pkg-config
   ./configure --prefix=/usr --enable-gwenhywfar \
   --with-backends="aqhbci aqofxconnect aqpaypal" \
-  --with-build-datetime=$(BUILD_DATE)
+  --with-build-datetime=$(BUILD_DATE) \
+  --with-backends=aqnone
#https://www.aquamaniac.de/rdm/issues/258
   make
 }
 



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

2022-06-13 Thread Andrew Crerar via arch-commits
Date: Monday, June 13, 2022 @ 15:56:25
  Author: andrewsc
Revision: 1237735

upgpkg: firefox-developer-edition 102.0b7-1

- Removed python-psutil makedep and associated patch
- Added patch to remove ROOT_CLIP_CHAIN const definition as cbindgen >= 0.24.1
  attempts to redefine it during compilation. This patch can be removed once
  firefox beta 103 lands as mozcentral already calls for its removal.
  See the following for more details:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1773070
- https://phabricator.services.mozilla.com/D148537
- https://hg.mozilla.org/integration/autoland/rev/51947744ce12

Added:
  firefox-developer-edition/trunk/clip-chain.patch
Modified:
  firefox-developer-edition/trunk/PKGBUILD
Deleted:
  firefox-developer-edition/trunk/psutil.patch

--+
 PKGBUILD |   14 +++---
 clip-chain.patch |   12 
 psutil.patch |   10 --
 3 files changed, 19 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:52:28 UTC (rev 1237734)
+++ PKGBUILD2022-06-13 15:56:25 UTC (rev 1237735)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=102.0b4
+pkgver=102.0b7
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')
@@ -10,8 +10,8 @@
 url="https://www.mozilla.org/firefox/channel/#developer";
 depends=('gtk3' 'libxt' 'mime-types' 'dbus-glib' 'ffmpeg' 'ttf-font' 
'libpulse' 'nss')
 makedepends=('unzip' 'zip' 'diffutils' 'python-setuptools' 'yasm' 'mesa' 
'imake' 'inetutils'
- 'xorg-server-xvfb' 'autoconf2.13' 'rust' 'clang' 'llvm' 'jack' 
'nodejs'
- 'python-psutil' 'cbindgen' 'nasm' 'lld' 'python-zstandard' 
'dump_syms'
+ 'xorg-server-xvfb' 'autoconf2.13' 'rust' 'clang' 'llvm' 'jack'
+ 'nodejs' 'cbindgen' 'nasm' 'lld' 'python-zstandard' 'dump_syms'
  'wasi-compiler-rt' 'wasi-libc' 'wasi-libc++' 'wasi-libc++abi')
 optdepends=('networkmanager: Location detection via available WiFi networks'
 'libnotify: Notification integration'
@@ -25,13 +25,13 @@
 firefox-install-dir.patch
 "$pkgname".desktop
 identity-icons-brand.svg
-psutil.patch)
-sha512sums=('9338683c7ebde189192e4c826d0068e34ff3d5434a83c0dbd201e1fad0fa084ff367ba30cbbc83a0c7d6a6458a24f74bd843c1b7a7a23fbfeccedab3acad2a3c'
+clip-chain.patch)
+sha512sums=('78bbdf16dcc39f52c0cbab8c34dacb94dd822aac4db23e0efc5db2c29ba0adba2383b0312f0f6f7788e257c013e85bfd395ec9220f08e20c790cec5d18683753'
 'SKIP'
 
'b66dbe7f262d036e5a5b895ab5b0dbb03313bca18b0823c001ef2dbaeb1a33169b57db0cf4dfd268499f28913845119902b5d62e8a6a9cc4820eb0ee2f322a1e'
 
'2ff0cb8e2eb94cee306b488adf6d7f4debbaff6155be3ed3814cdb356e2e60fe38cc29d6c8d10079937fd2c930cfddf283977cf645395d31eaf76c7f0ac2'
 
'b579b73176c72a5ecf36e3f63bba08fdb8041ae99d54e5cab906660fed6a9cf2311f7ca1ec1649e451cc6d5a4b1e6060b974b1d7befe9c8df3c5a89c50383c17'
-
'd445a6964958de41687eb0f33addee1f382b3e5c8cbb9d568ccaf11e230ef11baa08f166c79750de24958c0f38e4e934c7a04e676b96053cdbdb917653d6a5cd')
+
'df0f1295ae03d9be2401a87d1896bee681c760dfde05d07190a7875d141264fd2d5ace6c6cca4318fb08f60bd8e489ae3a75e244bd7ba5615a7479bb720204eb')
 validpgpkeys=('14F26682D0916CDD81E37B6D61B7B526D98F0353') # Mozilla Software 
Releases 
 
 # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
@@ -50,7 +50,7 @@
   mkdir mozbuild
   cd firefox-${pkgver%b*}
   patch -Np1 -i ../firefox-install-dir.patch
-  patch -Np1 -i ../psutil.patch
+  patch -Np1 -i ../clip-chain.patch
 
   echo -n "$_google_api_key" > google-api-key
   echo -n "$_mozilla_api_key" > mozilla-api-key

Added: clip-chain.patch
===
--- clip-chain.patch(rev 0)
+++ clip-chain.patch2022-06-13 15:56:25 UTC (rev 1237735)
@@ -0,0 +1,12 @@
+diff --git a/gfx/webrender_bindings/webrender_ffi.h 
b/gfx/webrender_bindings/webrender_ffi.h
+--- a/gfx/webrender_bindings/webrender_ffi.h
 b/gfx/webrender_bindings/webrender_ffi.h
+@@ -73,8 +73,6 @@
+ struct WrPipelineIdAndEpoch;
+ using WrPipelineIdEpochs = nsTArray;
+ 
+-const uint64_t ROOT_CLIP_CHAIN = ~0;
+-
+ }  // namespace wr
+ }  // namespace mozilla
+ 

Deleted: psutil.patch
===
--- psutil.patch2022-06-13 15:52:28 UTC (rev 1237734)
+++ psutil.patch2022-06-13 15:56:25 UTC (rev 1237735)
@@ -1,10 +0,0 @@
-diff --git a/python/sites/mach.txt b/python/sites/mach.txt
 a/python/sites/mach.txt
-+++ b/python/sites/mach.txt
-@@ -133,5 +133,5 @@
- # Mach gracefully handles the case where `psutil` is unavailable.
- # We aren't (yet) able to pin packages in automation, so we have to
- # support down to the oldest locally-installed 

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

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:52:28
  Author: jlichtblau
Revision: 1237734

archrelease: copy trunk to community-x86_64

Added:
  fdm/repos/community-x86_64/PKGBUILD
(from rev 1237733, fdm/trunk/PKGBUILD)
Deleted:
  fdm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 15:52:22 UTC (rev 1237733)
+++ PKGBUILD2022-06-13 15:52:28 UTC (rev 1237734)
@@ -1,36 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Maintainer: Gaetan Bisson 
-# Contributor: Jeff Mickey 
-# Contributor: Grigorios Bouzakis 
-# Contributor: Stephen Gregoratto 
-
-pkgname=fdm
-pkgver=2.0
-pkgrel=3
-pkgdesc='Program to fetch mail and deliver it in various ways'
-url='https://github.com/nicm/fdm'
-license=('BSD')
-arch=('x86_64')
-depends=('openssl' 'pcre' 'tdb' 'zlib')
-source=("https://github.com/nicm/fdm/releases/download/${pkgver}/fdm-${pkgver}.tar.gz";)
-sha256sums=('06b28cb6b792570bc61d7e29b13d2af46b92fea77e058b2b17e11e8f7ed0cea4')
-
-options=('!makeflags')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr --enable-pcre
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   make DESTDIR="${pkgdir}" install
-
-   install -d "${pkgdir}/usr/share/licenses/${pkgname}"
-   sed '3,17p;d' fdm.c > "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-   install -d "${pkgdir}/usr/share/doc/${pkgname}"
-   cp -a examples MANUAL "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: fdm/repos/community-x86_64/PKGBUILD (from rev 1237733, 
fdm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 15:52:28 UTC (rev 1237734)
@@ -0,0 +1,36 @@
+# Maintainer: Jaroslav Lichtblau 
+# Maintainer: Gaetan Bisson 
+# Contributor: Jeff Mickey 
+# Contributor: Grigorios Bouzakis 
+# Contributor: Stephen Gregoratto 
+
+pkgname=fdm
+pkgver=2.1
+pkgrel=1
+pkgdesc='Program to fetch mail and deliver it in various ways'
+url='https://github.com/nicm/fdm'
+license=('BSD')
+arch=('x86_64')
+depends=('openssl' 'pcre' 'tdb' 'zlib')
+source=("https://github.com/nicm/fdm/releases/download/${pkgver}/fdm-${pkgver}.tar.gz";)
+sha256sums=('858df2e6ef0836d940e8b8cc4fec333770fa9c97ba0f2485a9e63ed18b2cadff')
+
+options=('!makeflags')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr --enable-pcre
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   install -d "${pkgdir}/usr/share/licenses/${pkgname}"
+   sed '3,17p;d' fdm.c > "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+   install -d "${pkgdir}/usr/share/doc/${pkgname}"
+   cp -a examples MANUAL "${pkgdir}/usr/share/doc/${pkgname}"
+}



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

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:52:22
  Author: jlichtblau
Revision: 1237733

upgpkg: fdm 2.1-1 - new upstream release

Modified:
  fdm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:49:56 UTC (rev 1237732)
+++ PKGBUILD2022-06-13 15:52:22 UTC (rev 1237733)
@@ -5,8 +5,8 @@
 # Contributor: Stephen Gregoratto 
 
 pkgname=fdm
-pkgver=2.0
-pkgrel=3
+pkgver=2.1
+pkgrel=1
 pkgdesc='Program to fetch mail and deliver it in various ways'
 url='https://github.com/nicm/fdm'
 license=('BSD')
@@ -13,7 +13,7 @@
 arch=('x86_64')
 depends=('openssl' 'pcre' 'tdb' 'zlib')
 
source=("https://github.com/nicm/fdm/releases/download/${pkgver}/fdm-${pkgver}.tar.gz";)
-sha256sums=('06b28cb6b792570bc61d7e29b13d2af46b92fea77e058b2b17e11e8f7ed0cea4')
+sha256sums=('858df2e6ef0836d940e8b8cc4fec333770fa9c97ba0f2485a9e63ed18b2cadff')
 
 options=('!makeflags')
 



[arch-commits] Commit in perl-x11-protocol-other/repos/community-any (2 files)

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:49:56
  Author: jlichtblau
Revision: 1237732

archrelease: copy trunk to community-any

Added:
  perl-x11-protocol-other/repos/community-any/PKGBUILD
(from rev 1237731, perl-x11-protocol-other/trunk/PKGBUILD)
Deleted:
  perl-x11-protocol-other/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 15:49:50 UTC (rev 1237731)
+++ PKGBUILD2022-06-13 15:49:56 UTC (rev 1237732)
@@ -1,39 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: 3ED 
-
-pkgname=perl-x11-protocol-other
-pkgver=30
-pkgrel=8
-pkgdesc="Extra extransions for perl-x11-protocol"
-arch=('any')
-url=https://search.cpan.org/dist/X11-Protocol-Other/
-license=('GPL')
-depends=('perl-x11-protocol')
-makedepends=('perl-extutils-makemaker')
-options=('!emptydirs')
-source=(https://search.cpan.org/CPAN/authors/id/K/KR/KRYDE/X11-Protocol-Other-${pkgver}.tar.gz)
-sha256sums=('323fe7736e20480a8b0940ab5695c6c028709cf088061eb9407236764a5c55d5')
-
-build() {
-  cd "${srcdir}"/X11-Protocol-Other-${pkgver}
-
-  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL="--skipdeps" \
-PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
-PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
-MODULEBUILDRC=/dev/null
-
-  perl Makefile.PL
-  make
-}
-
-check() {
-  cd "${srcdir}"/X11-Protocol-Other-${pkgver}
-
-  make test
-}
-
-package() {
-  cd "${srcdir}"/X11-Protocol-Other-${pkgver}
-
-  make install
-}

Copied: perl-x11-protocol-other/repos/community-any/PKGBUILD (from rev 1237731, 
perl-x11-protocol-other/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 15:49:56 UTC (rev 1237732)
@@ -0,0 +1,39 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: 3ED 
+
+pkgname=perl-x11-protocol-other
+pkgver=31
+pkgrel=1
+pkgdesc="Extra extransions for perl-x11-protocol"
+arch=('any')
+url=https://search.cpan.org/dist/X11-Protocol-Other/
+license=('GPL')
+depends=('perl-x11-protocol')
+makedepends=('perl-extutils-makemaker')
+options=('!emptydirs')
+source=(https://search.cpan.org/CPAN/authors/id/K/KR/KRYDE/X11-Protocol-Other-${pkgver}.tar.gz)
+sha256sums=('3c625993dc7a8eb1d02e07108a666302459c6fc6f9f3d27615f7495158dc73f4')
+
+build() {
+  cd "${srcdir}"/X11-Protocol-Other-${pkgver}
+
+  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL="--skipdeps" \
+PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
+PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
+MODULEBUILDRC=/dev/null
+
+  perl Makefile.PL
+  make
+}
+
+check() {
+  cd "${srcdir}"/X11-Protocol-Other-${pkgver}
+
+  make test
+}
+
+package() {
+  cd "${srcdir}"/X11-Protocol-Other-${pkgver}
+
+  make install
+}



[arch-commits] Commit in perl-x11-protocol-other/trunk (PKGBUILD)

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:49:50
  Author: jlichtblau
Revision: 1237731

upgpkg: perl-x11-protocol-other 31-1 - new upstream release

Modified:
  perl-x11-protocol-other/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:47:58 UTC (rev 1237730)
+++ PKGBUILD2022-06-13 15:49:50 UTC (rev 1237731)
@@ -2,8 +2,8 @@
 # Contributor: 3ED 
 
 pkgname=perl-x11-protocol-other
-pkgver=30
-pkgrel=8
+pkgver=31
+pkgrel=1
 pkgdesc="Extra extransions for perl-x11-protocol"
 arch=('any')
 url=https://search.cpan.org/dist/X11-Protocol-Other/
@@ -12,7 +12,7 @@
 makedepends=('perl-extutils-makemaker')
 options=('!emptydirs')
 
source=(https://search.cpan.org/CPAN/authors/id/K/KR/KRYDE/X11-Protocol-Other-${pkgver}.tar.gz)
-sha256sums=('323fe7736e20480a8b0940ab5695c6c028709cf088061eb9407236764a5c55d5')
+sha256sums=('3c625993dc7a8eb1d02e07108a666302459c6fc6f9f3d27615f7495158dc73f4')
 
 build() {
   cd "${srcdir}"/X11-Protocol-Other-${pkgver}



[arch-commits] Commit in perl-module-manifest/repos/community-any (PKGBUILD PKGBUILD)

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:47:58
  Author: jlichtblau
Revision: 1237730

archrelease: copy trunk to community-any

Added:
  perl-module-manifest/repos/community-any/PKGBUILD
(from rev 1237729, perl-module-manifest/trunk/PKGBUILD)
Deleted:
  perl-module-manifest/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 15:47:52 UTC (rev 1237729)
+++ PKGBUILD2022-06-13 15:47:58 UTC (rev 1237730)
@@ -1,37 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: John D Jones III
-
-pkgname=perl-module-manifest
-pkgver=1.08
-pkgrel=5
-pkgdesc="Parse and examine a Perl distribution MANIFEST file"
-arch=('any')
-url='https://search.cpan.org/dist/Module-Manifest/'
-license=('GPL' 'PerlArtistic')
-depends=('perl' 'perl-params-util' 'perl' 'perl-file-slurp')
-checkdepends=('perl-test-exception' 'perl-test-warn')
-options=('!emptydirs')
-source=(https://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Module-Manifest-$pkgver.tar.gz)
-sha256sums=('722ed428afcbe5b5b441b0165cbafbd8534fa63d7856d4089e6e25ac21e6445d')
-
-build() {
-  cd "${srcdir}"/Module-Manifest-$pkgver
-
-  PERL_USE_UNSAFE_INC=1 PERL_MM_USE_DEFAULT=1 perl Makefile.PL 
installdirs=vendor
-  make
-}
-
-check() {
-  cd "${srcdir}"/Module-Manifest-$pkgver
-
-  make test
-}
-
-package() {
-  cd "${srcdir}"/Module-Manifest-$pkgver
-
-  make install DESTDIR="${pkgdir}"
-
-  find "${pkgdir}" -name '.packlist' -delete
-  find "${pkgdir}" -name '*.pod' -delete
-}

Copied: perl-module-manifest/repos/community-any/PKGBUILD (from rev 1237729, 
perl-module-manifest/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 15:47:58 UTC (rev 1237730)
@@ -0,0 +1,37 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: John D Jones III
+
+pkgname=perl-module-manifest
+pkgver=1.09
+pkgrel=1
+pkgdesc="Parse and examine a Perl distribution MANIFEST file"
+arch=('any')
+url='https://search.cpan.org/dist/Module-Manifest/'
+license=('GPL' 'PerlArtistic')
+depends=('perl' 'perl-params-util' 'perl' 'perl-file-slurp')
+checkdepends=('perl-test-exception' 'perl-test-warn')
+options=('!emptydirs')
+source=(https://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Module-Manifest-$pkgver.tar.gz)
+sha256sums=('a395f80ff15ea0e66fd6c453844b6787ed4a875a3cd8df9f7e29280250bd539b')
+
+build() {
+  cd "${srcdir}"/Module-Manifest-$pkgver
+
+  PERL_USE_UNSAFE_INC=1 PERL_MM_USE_DEFAULT=1 perl Makefile.PL 
installdirs=vendor
+  make
+}
+
+check() {
+  cd "${srcdir}"/Module-Manifest-$pkgver
+
+  make test
+}
+
+package() {
+  cd "${srcdir}"/Module-Manifest-$pkgver
+
+  make install DESTDIR="${pkgdir}"
+
+  find "${pkgdir}" -name '.packlist' -delete
+  find "${pkgdir}" -name '*.pod' -delete
+}



[arch-commits] Commit in perl-module-manifest/trunk (PKGBUILD)

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:47:52
  Author: jlichtblau
Revision: 1237729

upgpkg: perl-module-manifest 1.09-1 - new upstream release

Modified:
  perl-module-manifest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:43:58 UTC (rev 1237728)
+++ PKGBUILD2022-06-13 15:47:52 UTC (rev 1237729)
@@ -2,8 +2,8 @@
 # Contributor: John D Jones III
 
 pkgname=perl-module-manifest
-pkgver=1.08
-pkgrel=5
+pkgver=1.09
+pkgrel=1
 pkgdesc="Parse and examine a Perl distribution MANIFEST file"
 arch=('any')
 url='https://search.cpan.org/dist/Module-Manifest/'
@@ -11,8 +11,8 @@
 depends=('perl' 'perl-params-util' 'perl' 'perl-file-slurp')
 checkdepends=('perl-test-exception' 'perl-test-warn')
 options=('!emptydirs')
-source=(https://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Module-Manifest-$pkgver.tar.gz)
-sha256sums=('722ed428afcbe5b5b441b0165cbafbd8534fa63d7856d4089e6e25ac21e6445d')
+source=(https://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Module-Manifest-$pkgver.tar.gz)
+sha256sums=('a395f80ff15ea0e66fd6c453844b6787ed4a875a3cd8df9f7e29280250bd539b')
 
 build() {
   cd "${srcdir}"/Module-Manifest-$pkgver



[arch-commits] Commit in libplacebo/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2022-06-13 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 13, 2022 @ 15:45:02
  Author: svenstaro
Revision: 448426

archrelease: copy trunk to staging-x86_64

Added:
  libplacebo/repos/staging-x86_64/
  libplacebo/repos/staging-x86_64/PKGBUILD
(from rev 448425, libplacebo/trunk/PKGBUILD)

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

Copied: libplacebo/repos/staging-x86_64/PKGBUILD (from rev 448425, 
libplacebo/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-06-13 15:45:02 UTC (rev 448426)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+
+pkgname=libplacebo
+pkgver=4.192.1
+pkgrel=3
+pkgdesc='Reusable library for GPU-accelerated video/image rendering primitives'
+url='https://github.com/haasn/libplacebo'
+arch=('x86_64')
+license=('LGPL2.1')
+depends=('vulkan-icd-loader' 'libvulkan.so' 'glslang' 'lcms2' 'liblcms2.so' 
'shaderc' 'libshaderc_shared.so'
+ 'libepoxy' 'libglvnd' 'glibc' 'gcc-libs')
+makedepends=('meson' 'ninja' 'vulkan-headers' 'python' 'python-mako')
+provides=('libplacebo.so')
+source=(https://code.videolan.org/videolan/libplacebo/-/archive/v${pkgver}/libplacebo-v${pkgver}.tar.gz)
+sha512sums=('780dff60a31a9c7fff47522385235077cc6b1a38be32bc0276c090d89ce25754dd0b910db5be631d0065337fe4700f68adabee06f48a4935d422f09f2e0e5525')
+b2sums=('19a3bee6f05632cde1739fe8c861c96035a7b1f5ed2af6bbc67776529551c88f5da63d49dede2d7ee2c8d96edd6faf733e0371714028b72eddcf4c4cf23b937f')
+
+build() {
+  cd ${pkgbase}-v${pkgver}
+  CXXFLAGS+=" -I/usr/include/glslang"
+  arch-meson build \
+-D tests=true \
+-D vulkan=enabled \
+-D glslang=enabled \
+-D shaderc=enabled \
+-D lcms=enabled \
+-D d3d11=disabled
+  ninja -C build
+}
+
+check() {
+  cd ${pkgbase}-v${pkgver}
+  ninja -C build test
+}
+
+package() {
+  cd ${pkgbase}-v${pkgver}
+  DESTDIR="${pkgdir}" ninja -C build install
+  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-06-13 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 13, 2022 @ 15:44:57
  Author: svenstaro
Revision: 448425

upgpkg: libplacebo 4.192.1-3: glslang 11.10 rebuild

Modified:
  libplacebo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:43:36 UTC (rev 448424)
+++ PKGBUILD2022-06-13 15:44:57 UTC (rev 448425)
@@ -2,7 +2,7 @@
 
 pkgname=libplacebo
 pkgver=4.192.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Reusable library for GPU-accelerated video/image rendering primitives'
 url='https://github.com/haasn/libplacebo'
 arch=('x86_64')



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

2022-06-13 Thread Jonas Witschel via arch-commits
Date: Monday, June 13, 2022 @ 15:43:58
  Author: diabonas
Revision: 1237728

archrelease: copy trunk to community-x86_64

Added:
  qpwgraph/repos/community-x86_64/PKGBUILD
(from rev 1237727, qpwgraph/trunk/PKGBUILD)
Deleted:
  qpwgraph/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 15:43:51 UTC (rev 1237727)
+++ PKGBUILD2022-06-13 15:43:58 UTC (rev 1237728)
@@ -1,23 +0,0 @@
-# Maintainer: Jonas Witschel 
-pkgname=qpwgraph
-pkgver=0.3.1
-pkgrel=1
-pkgdesc='PipeWire Graph Qt GUI Interface'
-arch=('x86_64')
-url='https://gitlab.freedesktop.org/rncbc/qpwgraph'
-license=('GPL')
-depends=('alsa-lib' 'pipewire' 'qt6-base' 'qt6-svg')
-makedepends=('cmake')
-options=('debug')
-source=("$url/-/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
-sha512sums=('857fd153bc60287f95e51f76eb883be6264ba5c1aca2705f509a0e6631b611609fb3e53a825c23ca8d64cf847b39e542e722362317ca8c9a509fbba6a8c263a1')
-
-build() {
-   cmake -B build -S "$pkgname-v$pkgver" -DCMAKE_BUILD_TYPE=None \
- -DCMAKE_INSTALL_PREFIX=/usr -DCONFIG_WAYLAND=ON
-   cmake --build build
-}
-
-package() {
-   DESTDIR="$pkgdir" cmake --install build
-}

Copied: qpwgraph/repos/community-x86_64/PKGBUILD (from rev 1237727, 
qpwgraph/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 15:43:58 UTC (rev 1237728)
@@ -0,0 +1,23 @@
+# Maintainer: Jonas Witschel 
+pkgname=qpwgraph
+pkgver=0.3.2
+pkgrel=1
+pkgdesc='PipeWire Graph Qt GUI Interface'
+arch=('x86_64')
+url='https://gitlab.freedesktop.org/rncbc/qpwgraph'
+license=('GPL')
+depends=('alsa-lib' 'pipewire' 'qt6-base' 'qt6-svg')
+makedepends=('cmake')
+options=('debug')
+source=("$url/-/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
+sha512sums=('06a43d0fb524048d76fa67913aed5eb5bc78f7e4c6b448e3b8a7d306a55bd6336f1c38c58a43c2d152c80ec7f634ad0e1027b226ab8460319ca33893ece32c51')
+
+build() {
+   cmake -B build -S "$pkgname-v$pkgver" -DCMAKE_BUILD_TYPE=None \
+ -DCMAKE_INSTALL_PREFIX=/usr -DCONFIG_WAYLAND=ON
+   cmake --build build
+}
+
+package() {
+   DESTDIR="$pkgdir" cmake --install build
+}



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

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:43:51
  Author: jlichtblau
Revision: 1237727

archrelease: copy trunk to community-x86_64

Added:
  hugo/repos/community-x86_64/PKGBUILD
(from rev 1237726, hugo/trunk/PKGBUILD)
Deleted:
  hugo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 15:43:46 UTC (rev 1237726)
+++ PKGBUILD2022-06-13 15:43:51 UTC (rev 1237727)
@@ -1,46 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Maintainer: Christian Rebischke 
-# Contributor: fordprefect
-# Contributor: Jonathon Fernyhough 
-# Contributor: Brenton Horne
-
-pkgname=hugo
-pkgver=0.100.0
-pkgrel=1
-pkgdesc="Fast and Flexible Static Site Generator in Go"
-arch=('x86_64')
-url="https://gohugo.io/";
-license=('Apache')
-depends=('glibc')
-makedepends=('go' 'git')
-optdepends=('python-pygments: syntax-highlight code snippets'
-'python-docutils: reStructuredText support')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('fee730c6567f58f39c9108b3a8706bd18a34a7d5ba364874ffb4d838b3f29d3063cbdf9ff6c5c7e5cabff1804d3159afaea244d777e2e8268c91cd45c7fcf731')
-
-build() {
-  cd "${srcdir}"/${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 -tags extended
-
-  ./hugo gen man
-  ./hugo completion bash > ${pkgname}.bash-completion
-  ./hugo completion fish > ${pkgname}.fish
-  ./hugo completion zsh > ${pkgname}.zsh
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
-  
-  install -Dm644 ${pkgname}.bash-completion 
"${pkgdir}"/usr/share/bash-completion/completions/${pkgname}
-  install -Dm644 ${pkgname}.fish 
"${pkgdir}"/usr/share/fish/vendor_completions.d/${pkgname}.fish
-  install -Dm644 ${pkgname}.zsh 
"${pkgdir}"/usr/share/zsh/site-functions/_${pkgname}
-}

Copied: hugo/repos/community-x86_64/PKGBUILD (from rev 1237726, 
hugo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 15:43:51 UTC (rev 1237727)
@@ -0,0 +1,46 @@
+# Maintainer: Jaroslav Lichtblau 
+# Maintainer: Christian Rebischke 
+# Contributor: fordprefect
+# Contributor: Jonathon Fernyhough 
+# Contributor: Brenton Horne
+
+pkgname=hugo
+pkgver=0.100.2
+pkgrel=1
+pkgdesc="Fast and Flexible Static Site Generator in Go"
+arch=('x86_64')
+url="https://gohugo.io/";
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'git')
+optdepends=('python-pygments: syntax-highlight code snippets'
+'python-docutils: reStructuredText support')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
+sha512sums=('23126ce07b68752ad16c72300335254e8cae48524a1763edecd77ea2253b39afc07e9fe75a5375d48b50e3f0577c6872023a3aaa0a292c42ba23ed3ad1d360f5')
+
+build() {
+  cd "${srcdir}"/${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 -tags extended
+
+  ./hugo gen man
+  ./hugo completion bash > ${pkgname}.bash-completion
+  ./hugo completion fish > ${pkgname}.fish
+  ./hugo completion zsh > ${pkgname}.zsh
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+
+  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
+  
+  install -Dm644 ${pkgname}.bash-completion 
"${pkgdir}"/usr/share/bash-completion/completions/${pkgname}
+  install -Dm644 ${pkgname}.fish 
"${pkgdir}"/usr/share/fish/vendor_completions.d/${pkgname}.fish
+  install -Dm644 ${pkgname}.zsh 
"${pkgdir}"/usr/share/zsh/site-functions/_${pkgname}
+}



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

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:43:46
  Author: jlichtblau
Revision: 1237726

upgpkg: hugo 0.100.2-1 - new upstream release

Modified:
  hugo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:43:41 UTC (rev 1237725)
+++ PKGBUILD2022-06-13 15:43:46 UTC (rev 1237726)
@@ -5,7 +5,7 @@
 # Contributor: Brenton Horne
 
 pkgname=hugo
-pkgver=0.100.0
+pkgver=0.100.2
 pkgrel=1
 pkgdesc="Fast and Flexible Static Site Generator in Go"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 optdepends=('python-pygments: syntax-highlight code snippets'
 'python-docutils: reStructuredText support')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('fee730c6567f58f39c9108b3a8706bd18a34a7d5ba364874ffb4d838b3f29d3063cbdf9ff6c5c7e5cabff1804d3159afaea244d777e2e8268c91cd45c7fcf731')
+sha512sums=('23126ce07b68752ad16c72300335254e8cae48524a1763edecd77ea2253b39afc07e9fe75a5375d48b50e3f0577c6872023a3aaa0a292c42ba23ed3ad1d360f5')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}



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

2022-06-13 Thread Jonas Witschel via arch-commits
Date: Monday, June 13, 2022 @ 15:43:41
  Author: diabonas
Revision: 1237725

upgpkg: qpwgraph 0.3.2-1: upstream release

Modified:
  qpwgraph/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:42:38 UTC (rev 1237724)
+++ PKGBUILD2022-06-13 15:43:41 UTC (rev 1237725)
@@ -1,6 +1,6 @@
 # Maintainer: Jonas Witschel 
 pkgname=qpwgraph
-pkgver=0.3.1
+pkgver=0.3.2
 pkgrel=1
 pkgdesc='PipeWire Graph Qt GUI Interface'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 makedepends=('cmake')
 options=('debug')
 source=("$url/-/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
-sha512sums=('857fd153bc60287f95e51f76eb883be6264ba5c1aca2705f509a0e6631b611609fb3e53a825c23ca8d64cf847b39e542e722362317ca8c9a509fbba6a8c263a1')
+sha512sums=('06a43d0fb524048d76fa67913aed5eb5bc78f7e4c6b448e3b8a7d306a55bd6336f1c38c58a43c2d152c80ec7f634ad0e1027b226ab8460319ca33893ece32c51')
 
 build() {
cmake -B build -S "$pkgname-v$pkgver" -DCMAKE_BUILD_TYPE=None \



[arch-commits] Commit in shaderc/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2022-06-13 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 13, 2022 @ 15:43:36
  Author: svenstaro
Revision: 448424

archrelease: copy trunk to staging-x86_64

Added:
  shaderc/repos/staging-x86_64/
  shaderc/repos/staging-x86_64/PKGBUILD
(from rev 448423, shaderc/trunk/PKGBUILD)

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

Copied: shaderc/repos/staging-x86_64/PKGBUILD (from rev 448423, 
shaderc/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-06-13 15:43:36 UTC (rev 448424)
@@ -0,0 +1,53 @@
+# Maintainer: Levente Polyak 
+# Contributor: Daniel M. Capella 
+# Contributor: Bin Jin 
+
+pkgname=shaderc
+pkgver=2022.1
+pkgrel=4
+pkgdesc='Collection of tools, libraries and tests for shader compilation'
+url='https://github.com/google/shaderc'
+arch=('x86_64')
+license=('Apache')
+depends=('glibc' 'gcc-libs' 'glslang' 'spirv-tools')
+makedepends=('asciidoctor' 'cmake' 'ninja' 'python' 'spirv-headers')
+provides=('libshaderc_shared.so')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/google/shaderc/archive/v${pkgver}.tar.gz)
+sha512sums=('21c2462cb434d94da87c71ba660f6cd5b161450d7faeff8789b41db25e64f2baa7c560e78aa856d128c5a73699215d6b1085b5ca19a4640237adf194793ad44b')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  # de-vendor libs and disable git versioning
+  sed '/examples/d;/third_party/d' -i CMakeLists.txt
+  sed '/build-version/d' -i glslc/CMakeLists.txt
+  cat <<- EOF > glslc/src/build-version.inc
+"${pkgver}\\n"
+"$(pacman -Q spirv-tools|cut -d \  -f 2|sed 's/-.*//')\\n"
+"$(pacman -Q glslang|cut -d \  -f 2|sed 's/-.*//')\\n"
+EOF
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cmake \
+-B build \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_CXX_FLAGS="$CXXFLAGS -ffat-lto-objects" \
+-DSHADERC_SKIP_TESTS=ON \
+-Dglslang_SOURCE_DIR=/usr/include/glslang \
+-GNinja
+  ninja -C build
+
+  cd glslc
+  asciidoctor -b manpage README.asciidoc -o glslc.1
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  DESTDIR="${pkgdir}" ninja -C build install
+  install -Dm 644 glslc/glslc.1 -t "${pkgdir}/usr/share/man/man1"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-06-13 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 13, 2022 @ 15:43:31
  Author: svenstaro
Revision: 448423

upgpkg: shaderc 2022.1-4: glslang 11.10

Modified:
  shaderc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:39:16 UTC (rev 448422)
+++ PKGBUILD2022-06-13 15:43:31 UTC (rev 448423)
@@ -4,7 +4,7 @@
 
 pkgname=shaderc
 pkgver=2022.1
-pkgrel=3
+pkgrel=4
 pkgdesc='Collection of tools, libraries and tests for shader compilation'
 url='https://github.com/google/shaderc'
 arch=('x86_64')



[arch-commits] Commit in stack/repos (4 files)

2022-06-13 Thread Felix Yan via arch-commits
Date: Monday, June 13, 2022 @ 15:42:38
  Author: felixonmars
Revision: 1237724

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 1237723, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/ghc9.patch
(from rev 1237723, stack/trunk/ghc9.patch)
  stack/repos/community-staging-x86_64/stack.install
(from rev 1237723, stack/trunk/stack.install)

---+
 PKGBUILD  |   79 +++
 ghc9.patch|  188 
 stack.install |4 +
 3 files changed, 271 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 1237723, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-13 15:42:38 UTC (rev 1237724)
@@ -0,0 +1,79 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.7.5
+pkgrel=84
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-colour' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-extra' 'haskell-file-embed' 'haskell-filelock' 
'haskell-fsnotify'
+ 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security' 'haskell-hashable'
+ 'haskell-hi-file-parser' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-mono-traversable' 
'haskell-mustache'
+ 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-generic' 
'haskell-optparse-simple'
+ 'haskell-pantry' 'haskell-path' 'haskell-path-io' 'haskell-persistent'
+ 'haskell-persistent-sqlite' 'haskell-primitive' 
'haskell-project-template'
+ 'haskell-retry' 'haskell-rio' 'haskell-rio-prettyprint' 
'haskell-split'
+ 'haskell-streaming-commons' 'haskell-tar' 'haskell-temporary' 
'haskell-text-metrics'
+ 'haskell-th-reify-many' 'haskell-tls' 'haskell-typed-process' 
'haskell-unicode-transforms'
+ 'haskell-unix-compat' 'haskell-unliftio' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-yaml' 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'uusi' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-hspec-discover'
+ 'haskell-raw-strings-qq' 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver";
+ghc9.patch)
+sha512sums=('SKIP'
+
'5229f2f6a32bf8d317a2fc7a7bb16c0698359255c2ec6cbe74cbc78799aa170d4e174e6e182478e52d7040f12f32b7a2b9c246f185d79b6e3f295ccb59f3f3b8')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../ghc9.patch
+  uusi -d semigroups -d persistent-template $pkgname.cabal
+}
+
+build() {
+  cd $pkgname
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build \
+  --ghc-option='-pie'
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test --show-details=direct
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+  install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+  runhaskell Setup copy --destdir="${pkgdir}"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion

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

2022-06-13 Thread Felix Yan via arch-commits
Date: Monday, June 13, 2022 @ 15:42:23
  Author: felixonmars
Revision: 1237723

upgpkg: stack 2.7.5-84: rebuild with tls 1.6.0

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:35:32 UTC (rev 1237722)
+++ PKGBUILD2022-06-13 15:42:23 UTC (rev 1237723)
@@ -3,7 +3,7 @@
 
 pkgname=stack
 pkgver=2.7.5
-pkgrel=83
+pkgrel=84
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack";
 license=("BSD")



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

2022-06-13 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 13, 2022 @ 15:39:16
  Author: svenstaro
Revision: 448422

archrelease: copy trunk to staging-x86_64

Added:
  glslang/repos/staging-x86_64/
  glslang/repos/staging-x86_64/PKGBUILD
(from rev 448421, glslang/trunk/PKGBUILD)

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

Copied: glslang/repos/staging-x86_64/PKGBUILD (from rev 448421, 
glslang/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-06-13 15:39:16 UTC (rev 448422)
@@ -0,0 +1,50 @@
+# Maintainer: Sven-Hendrik Haase 
+
+# Careful when upgrading this package! It usually breaks ABI without bumping 
soname.
+pkgname=glslang
+pkgver=11.10.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=('8ffc19c435232d09299dd2c91e247292b3508c1b826a3497c60682e4bbf2d602')
+
+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-06-13 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 13, 2022 @ 15:39:11
  Author: svenstaro
Revision: 448421

upgpkg: glslang 11.10.0-1

Modified:
  glslang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:18:22 UTC (rev 448420)
+++ PKGBUILD2022-06-13 15:39:11 UTC (rev 448421)
@@ -2,7 +2,7 @@
 
 # Careful when upgrading this package! It usually breaks ABI without bumping 
soname.
 pkgname=glslang
-pkgver=11.9.0
+pkgver=11.10.0
 pkgrel=1
 pkgdesc='OpenGL and OpenGL ES shader front end and validator'
 arch=('x86_64')
@@ -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=('d5744adba19eef9ad3d73f524226b39fec559d94cb582cd442e3c5de930004b2')
+sha256sums=('8ffc19c435232d09299dd2c91e247292b3508c1b826a3497c60682e4bbf2d602')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:35:32
  Author: jlichtblau
Revision: 1237722

archrelease: copy trunk to community-x86_64

Added:
  hugo/repos/community-x86_64/PKGBUILD
(from rev 1237721, hugo/trunk/PKGBUILD)
Deleted:
  hugo/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 15:35:27 UTC (rev 1237721)
+++ PKGBUILD2022-06-13 15:35:32 UTC (rev 1237722)
@@ -1,46 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Maintainer: Christian Rebischke 
-# Contributor: fordprefect
-# Contributor: Jonathon Fernyhough 
-# Contributor: Brenton Horne
-
-pkgname=hugo
-pkgver=0.99.1
-pkgrel=1
-pkgdesc="Fast and Flexible Static Site Generator in Go"
-arch=('x86_64')
-url="https://gohugo.io/";
-license=('Apache')
-depends=('glibc')
-makedepends=('go' 'git')
-optdepends=('python-pygments: syntax-highlight code snippets'
-'python-docutils: reStructuredText support')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('cebdad62493b1f734fd0346d94f1480a597ea38bf984d8e91a2ae63a4083c1671d81f289a4396a1e1a2c973c8733eba95623dd7d50c31b8c4b096576a06ae03b')
-
-build() {
-  cd "${srcdir}"/${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 -tags extended
-
-  ./hugo gen man
-  ./hugo completion bash > ${pkgname}.bash-completion
-  ./hugo completion fish > ${pkgname}.fish
-  ./hugo completion zsh > ${pkgname}.zsh
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-
-  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
-  
-  install -Dm644 ${pkgname}.bash-completion 
"${pkgdir}"/usr/share/bash-completion/completions/${pkgname}
-  install -Dm644 ${pkgname}.fish 
"${pkgdir}"/usr/share/fish/vendor_completions.d/${pkgname}.fish
-  install -Dm644 ${pkgname}.zsh 
"${pkgdir}"/usr/share/zsh/site-functions/_${pkgname}
-}

Copied: hugo/repos/community-x86_64/PKGBUILD (from rev 1237721, 
hugo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 15:35:32 UTC (rev 1237722)
@@ -0,0 +1,46 @@
+# Maintainer: Jaroslav Lichtblau 
+# Maintainer: Christian Rebischke 
+# Contributor: fordprefect
+# Contributor: Jonathon Fernyhough 
+# Contributor: Brenton Horne
+
+pkgname=hugo
+pkgver=0.100.0
+pkgrel=1
+pkgdesc="Fast and Flexible Static Site Generator in Go"
+arch=('x86_64')
+url="https://gohugo.io/";
+license=('Apache')
+depends=('glibc')
+makedepends=('go' 'git')
+optdepends=('python-pygments: syntax-highlight code snippets'
+'python-docutils: reStructuredText support')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
+sha512sums=('fee730c6567f58f39c9108b3a8706bd18a34a7d5ba364874ffb4d838b3f29d3063cbdf9ff6c5c7e5cabff1804d3159afaea244d777e2e8268c91cd45c7fcf731')
+
+build() {
+  cd "${srcdir}"/${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 -tags extended
+
+  ./hugo gen man
+  ./hugo completion bash > ${pkgname}.bash-completion
+  ./hugo completion fish > ${pkgname}.fish
+  ./hugo completion zsh > ${pkgname}.zsh
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}-${pkgver}
+  install -Dm755 "${pkgname}" "${pkgdir}"/usr/bin/${pkgname}
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+
+  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/man/*.1  -t 
"${pkgdir}"/usr/share/man/man1/
+  
+  install -Dm644 ${pkgname}.bash-completion 
"${pkgdir}"/usr/share/bash-completion/completions/${pkgname}
+  install -Dm644 ${pkgname}.fish 
"${pkgdir}"/usr/share/fish/vendor_completions.d/${pkgname}.fish
+  install -Dm644 ${pkgname}.zsh 
"${pkgdir}"/usr/share/zsh/site-functions/_${pkgname}
+}



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

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:35:27
  Author: jlichtblau
Revision: 1237721

upgpkg: hugo 0.100.0-1 - new upstream release

Modified:
  hugo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:31:32 UTC (rev 1237720)
+++ PKGBUILD2022-06-13 15:35:27 UTC (rev 1237721)
@@ -5,7 +5,7 @@
 # Contributor: Brenton Horne
 
 pkgname=hugo
-pkgver=0.99.1
+pkgver=0.100.0
 pkgrel=1
 pkgdesc="Fast and Flexible Static Site Generator in Go"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 optdepends=('python-pygments: syntax-highlight code snippets'
 'python-docutils: reStructuredText support')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/gohugoio/${pkgname}/archive/v${pkgver}.tar.gz)
-sha512sums=('cebdad62493b1f734fd0346d94f1480a597ea38bf984d8e91a2ae63a4083c1671d81f289a4396a1e1a2c973c8733eba95623dd7d50c31b8c4b096576a06ae03b')
+sha512sums=('fee730c6567f58f39c9108b3a8706bd18a34a7d5ba364874ffb4d838b3f29d3063cbdf9ff6c5c7e5cabff1804d3159afaea244d777e2e8268c91cd45c7fcf731')
 
 build() {
   cd "${srcdir}"/${pkgname}-${pkgver}



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

2022-06-13 Thread Felix Yan via arch-commits
Date: Monday, June 13, 2022 @ 15:31:32
  Author: felixonmars
Revision: 1237720

archrelease: copy trunk to community-x86_64

Added:
  v2ray/repos/community-x86_64/PKGBUILD
(from rev 1237719, v2ray/trunk/PKGBUILD)
Deleted:
  v2ray/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 15:31:20 UTC (rev 1237719)
+++ PKGBUILD2022-06-13 15:31:32 UTC (rev 1237720)
@@ -1,45 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: pandada8 
-
-pkgname=v2ray
-pkgver=4.45.0
-pkgrel=1
-pkgdesc="A platform for building proxies to bypass network restrictions"
-arch=('x86_64')
-url="https://github.com/v2fly/v2ray-core";
-license=('MIT')
-depends=('glibc' 'v2ray-domain-list-community' 'v2ray-geoip')
-makedepends=('go' 'git')
-backup=(etc/v2ray/config.json)
-source=("https://github.com/v2fly/v2ray-core/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
-sha512sums=('d8f374bfa723ce4ed8b8d633123cc7e8fd748b33218e55cc277cac1e69626ae44cb3096e62f8e50062faab5757d1e7c0ff36414e5920ee6d496f02ca8a68a7f0')
-
-prepare() {
-  cd v2ray-core-$pkgver
-  sed -i 's|/usr/local/bin|/usr/bin|;s|/usr/local/etc|/etc|' 
release/config/systemd/system/*.service
-}
-
-build() {
-  cd v2ray-core-$pkgver
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  go build -o v2ray ./main
-  go build -o v2ctl ./infra/control/main
-}
-
-check() {
-  cd v2ray-core-$pkgver
-  go test -p 1 -tags json -v -timeout 30m ./...
-}
-
-package() {
-  cd v2ray-core-$pkgver
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/v2ray/LICENSE
-  install -Dm644 release/config/systemd/system/v2ray.service 
"$pkgdir"/usr/lib/systemd/system/v2ray.service
-  install -Dm644 release/config/systemd/system/v2ray@.service 
"$pkgdir"/usr/lib/systemd/system/v2ray@.service
-  install -Dm644 release/config/*.json -t "$pkgdir"/etc/v2ray/
-  install -Dm755 v2ray -t "$pkgdir"/usr/bin/
-  install -Dm755 v2ctl -t "$pkgdir"/usr/bin/
-}

Copied: v2ray/repos/community-x86_64/PKGBUILD (from rev 1237719, 
v2ray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 15:31:32 UTC (rev 1237720)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: pandada8 
+
+pkgname=v2ray
+pkgver=4.45.2
+pkgrel=1
+pkgdesc="A platform for building proxies to bypass network restrictions"
+arch=('x86_64')
+url="https://github.com/v2fly/v2ray-core";
+license=('MIT')
+depends=('glibc' 'v2ray-domain-list-community' 'v2ray-geoip')
+makedepends=('go' 'git')
+backup=(etc/v2ray/config.json)
+source=("https://github.com/v2fly/v2ray-core/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
+sha512sums=('78805d1fe4b1153dd654e61b4d2e3fedf6c5055e69ce4b86bfae1214904eca2da09595dc0d6b5873ad06e4a6f91a061eaae1f75e363e851693a50b0c26ad25e2')
+
+prepare() {
+  cd v2ray-core-$pkgver
+  sed -i 's|/usr/local/bin|/usr/bin|;s|/usr/local/etc|/etc|' 
release/config/systemd/system/*.service
+}
+
+build() {
+  cd v2ray-core-$pkgver
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  go build -o v2ray ./main
+  go build -o v2ctl ./infra/control/main
+}
+
+check() {
+  cd v2ray-core-$pkgver
+  go test -p 1 -tags json -v -timeout 30m ./...
+}
+
+package() {
+  cd v2ray-core-$pkgver
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/v2ray/LICENSE
+  install -Dm644 release/config/systemd/system/v2ray.service 
"$pkgdir"/usr/lib/systemd/system/v2ray.service
+  install -Dm644 release/config/systemd/system/v2ray@.service 
"$pkgdir"/usr/lib/systemd/system/v2ray@.service
+  install -Dm644 release/config/*.json -t "$pkgdir"/etc/v2ray/
+  install -Dm755 v2ray -t "$pkgdir"/usr/bin/
+  install -Dm755 v2ctl -t "$pkgdir"/usr/bin/
+}



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

2022-06-13 Thread Felix Yan via arch-commits
Date: Monday, June 13, 2022 @ 15:31:20
  Author: felixonmars
Revision: 1237719

upgpkg: v2ray 4.45.2-1

Modified:
  v2ray/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:30:01 UTC (rev 1237718)
+++ PKGBUILD2022-06-13 15:31:20 UTC (rev 1237719)
@@ -2,7 +2,7 @@
 # Contributor: pandada8 
 
 pkgname=v2ray
-pkgver=4.45.0
+pkgver=4.45.2
 pkgrel=1
 pkgdesc="A platform for building proxies to bypass network restrictions"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go' 'git')
 backup=(etc/v2ray/config.json)
 
source=("https://github.com/v2fly/v2ray-core/archive/v$pkgver/$pkgname-$pkgver.tar.gz";)
-sha512sums=('d8f374bfa723ce4ed8b8d633123cc7e8fd748b33218e55cc277cac1e69626ae44cb3096e62f8e50062faab5757d1e7c0ff36414e5920ee6d496f02ca8a68a7f0')
+sha512sums=('78805d1fe4b1153dd654e61b4d2e3fedf6c5055e69ce4b86bfae1214904eca2da09595dc0d6b5873ad06e4a6f91a061eaae1f75e363e851693a50b0c26ad25e2')
 
 prepare() {
   cd v2ray-core-$pkgver



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

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:30:01
  Author: jlichtblau
Revision: 1237718

archrelease: copy trunk to community-any

Added:
  josm/repos/community-any/PKGBUILD
(from rev 1237717, josm/trunk/PKGBUILD)
  josm/repos/community-any/josm.changelog
(from rev 1237717, josm/trunk/josm.changelog)
  josm/repos/community-any/josm.conf.d
(from rev 1237717, josm/trunk/josm.conf.d)
Deleted:
  josm/repos/community-any/PKGBUILD
  josm/repos/community-any/josm.changelog
  josm/repos/community-any/josm.conf.d

+
 PKGBUILD   |  116 +++
 josm.changelog |  849 +++
 josm.conf.d|   14 
 3 files changed, 491 insertions(+), 488 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 15:29:52 UTC (rev 1237717)
+++ PKGBUILD2022-06-13 15:30:01 UTC (rev 1237718)
@@ -1,58 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Michele Schäuble 
-
-pkgname=josm
-pkgver=18427
-pkgrel=1
-pkgdesc="An editor for OpenStreetMap written in Java"
-arch=('any')
-url="https://josm.openstreetmap.de/";
-license=('GPL')
-depends=('desktop-file-utils' 'hicolor-icon-theme' 'java-runtime>=11' 
'libxtst' 'ttf-font')
-makedepends=('subversion')
-changelog=$pkgname.changelog
-backup=('etc/conf.d/josm')
-source=(https://josm.openstreetmap.de/download/$pkgname-snapshot-$pkgver.jar
-$pkgname.conf.d
-$pkgname::svn+https://josm.openstreetmap.de/svn/trunk#revision=$pkgver)
-noextract=($pkgname-snapshot-$pkgver.jar)
-sha256sums=('4aca1e29fa568b8d6c77becb7da416d0e7079f27fc88ba2529617be1d85a9696'
-'29377ce55c50951b1bd0e39003a977d8ea558c0657d613cea5f0056ce255e60e'
-'SKIP')
-
-package() {
-  cd "${srcdir}"
-
-  install -Dm644 $pkgname-snapshot-$pkgver.jar 
"${pkgdir}"/usr/share/java/$pkgname/$pkgname.jar
-
-#.desktop and icon file
-  install -Dm644 
$pkgname/native/linux/tested/usr/share/applications/org.openstreetmap.josm.desktop
 \
-"${pkgdir}"/usr/share/applications/org.openstreetmap.josm.desktop
-  install -Dm644 $pkgname/native/linux/tested/usr/share/man/man1/josm.1 \
-"${pkgdir}"/usr/share/man/man1/josm.1
-  install -Dm644 
$pkgname/native/linux/tested/usr/share/metainfo/org.openstreetmap.josm.appdata.xml
 \
-"${pkgdir}"/usr/share/metainfo/org.openstreetmap.josm.appdata.xml
-  install -Dm644 
$pkgname/native/linux/tested/usr/share/icons/hicolor/scalable/apps/org.openstreetmap.josm.svg
 \
-
"${pkgdir}"/usr/share/icons/hicolor/scalable/apps/org.openstreetmap.josm.svg
-
-  for _icon in 8 16 22 24 32 36 40 42 48 64 72 80 96 128 192 256 512; do
-  install -Dm644 
$pkgname/native/linux/tested/usr/share/icons/hicolor/${_icon}x${_icon}/apps/org.openstreetmap.josm.png
 \
-
"${pkgdir}"/usr/share/icons/hicolor/${_icon}x${_icon}/apps/org.openstreetmap.josm.png
-  done
-
-#executable file
-  install -d "${pkgdir}"/usr/bin
-  cat <<"EOF" >"${pkgdir}"/usr/bin/$pkgname 
-#!/bin/sh
-# source application-specific settings
-while true; do
-JOSM_ARGS=
-[ -f /etc/conf.d/josm ] && . /etc/conf.d/josm
-CLASSPATH="/usr/share/java/josm/josm.jar"
-java ${JOSM_ARGS} -cp "${CLASSPATH}" -Djosm.restart=true 
org.openstreetmap.josm.gui.MainApplication "$@"
-[ $? -eq 9 ] || break
-done
-EOF
-  chmod 755 "${pkgdir}"/usr/bin/$pkgname
-  install -Dm644 "${srcdir}"/$pkgname.conf.d "${pkgdir}"/etc/conf.d/$pkgname
-}

Copied: josm/repos/community-any/PKGBUILD (from rev 1237717, 
josm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 15:30:01 UTC (rev 1237718)
@@ -0,0 +1,58 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Michele Schäuble 
+
+pkgname=josm
+pkgver=18463
+pkgrel=1
+pkgdesc="An editor for OpenStreetMap written in Java"
+arch=('any')
+url="https://josm.openstreetmap.de/";
+license=('GPL')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'java-runtime>=11' 
'libxtst' 'ttf-font')
+makedepends=('subversion')
+changelog=$pkgname.changelog
+backup=('etc/conf.d/josm')
+source=(https://josm.openstreetmap.de/download/$pkgname-snapshot-$pkgver.jar
+$pkgname.conf.d
+$pkgname::svn+https://josm.openstreetmap.de/svn/trunk#revision=$pkgver)
+noextract=($pkgname-snapshot-$pkgver.jar)
+sha256sums=('fbef17b73032909fbce4abf3cb7c60699a0a695949c33f82b75c5bfd0902d467'
+'29377ce55c50951b1bd0e39003a977d8ea558c0657d613cea5f0056ce255e60e'
+'SKIP')
+
+package() {
+  cd "${srcdir}"
+
+  install -Dm644 $pkgname-snapshot-$pkgver.jar 
"${pkgdir}"/usr/share/java/$pkgname/$pkgname.jar
+
+#.desktop and icon file
+  install -Dm644 
$pkgname/native/linux/tested/usr/share/applications/org.openstreetmap.josm.desktop
 \
+"${pkgdir}"/usr/share/applications/org.openstreetmap.josm.desktop
+  install -Dm644 $pkgname/native/linux/tested/usr/share/man/man1/josm.1 \
+"${pkgdir}"/usr/sh

[arch-commits] Commit in josm/trunk (PKGBUILD josm.changelog)

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:29:52
  Author: jlichtblau
Revision: 1237717

upgpkg: josm 18463-1 - new upstream release

Modified:
  josm/trunk/PKGBUILD
  josm/trunk/josm.changelog

+
 PKGBUILD   |4 ++--
 josm.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:29:34 UTC (rev 1237716)
+++ PKGBUILD2022-06-13 15:29:52 UTC (rev 1237717)
@@ -2,7 +2,7 @@
 # Contributor: Michele Schäuble 
 
 pkgname=josm
-pkgver=18427
+pkgver=18463
 pkgrel=1
 pkgdesc="An editor for OpenStreetMap written in Java"
 arch=('any')
@@ -16,7 +16,7 @@
 $pkgname.conf.d
 $pkgname::svn+https://josm.openstreetmap.de/svn/trunk#revision=$pkgver)
 noextract=($pkgname-snapshot-$pkgver.jar)
-sha256sums=('4aca1e29fa568b8d6c77becb7da416d0e7079f27fc88ba2529617be1d85a9696'
+sha256sums=('fbef17b73032909fbce4abf3cb7c60699a0a695949c33f82b75c5bfd0902d467'
 '29377ce55c50951b1bd0e39003a977d8ea558c0657d613cea5f0056ce255e60e'
 'SKIP')
 

Modified: josm.changelog
===
--- josm.changelog  2022-06-13 15:29:34 UTC (rev 1237716)
+++ josm.changelog  2022-06-13 15:29:52 UTC (rev 1237717)
@@ -1,3 +1,6 @@
+2022-06-13 Jaroslav Lichtblau -
+   * josm 18463-1
+
 2022-04-26 Jaroslav Lichtblau -
* josm 18427-1
 



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

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:29:34
  Author: jlichtblau
Revision: 1237716

archrelease: copy trunk to community-x86_64

Added:
  qmmp/repos/community-x86_64/PKGBUILD
(from rev 1237715, qmmp/trunk/PKGBUILD)
  qmmp/repos/community-x86_64/qmmp.changelog
(from rev 1237715, qmmp/trunk/qmmp.changelog)
Deleted:
  qmmp/repos/community-x86_64/PKGBUILD
  qmmp/repos/community-x86_64/qmmp.changelog

+
 PKGBUILD   |  100 
 qmmp.changelog |  667 +++
 2 files changed, 385 insertions(+), 382 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 15:29:24 UTC (rev 1237715)
+++ PKGBUILD2022-06-13 15:29:34 UTC (rev 1237716)
@@ -1,50 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=qmmp
-pkgver=2.1.0
-pkgrel=1
-pkgdesc="Qt based audio-player"
-arch=('x86_64')
-url="http://qmmp.ylsoftware.com/";
-license=('GPL')
-depends=('alsa-lib' 'curl' 'desktop-file-utils' 'hicolor-icon-theme' 'libmad' 
'libvorbis'
- 'libogg' 'libxkbcommon-x11' 'taglib' 'xdg-utils' 'qt6-base')
-makedepends=('cmake' 'flac' 'jack' 'libmpcdec' 'pipewire' 'pulseaudio' 
'ffmpeg' 'libcdio-paranoia'
- 'libcddb' 'libmms' 'libsamplerate' 'libmodplug' 'libsndfile' 
'wavpack' 'mpg123' 'mesa'
- 'projectm' 'faad2' 'libgme' 'libsidplayfp' 'opusfile>=0.12' 
'wildmidi' 'qt6-tools')
-optdepends=('mpg123: to play MP3 files'
-'flac: native FLAC support'
-'jack: JACK sound output'
-'libmpcdec: Musepack support'
-'pulseaudio: PulseAudio output'
-'pipewire: pipewire support'
-'libcdio-paranoia: Compact Disc input and control support'
-'libcddb: CDDB server support'
-'libmms: MMS stream protocol support'
-'libmodplug: MOD playing library'
-'libsndfile: sampled sound support'
-'projectm: visual efects'
-'faad2: ADTS AAC support'
-'libgme: support for chiptunes from various platforms'
-'libsidplayfp: C64 music support'
-'opusfile: Opus support'
-'wildmidi: MIDI support'
-'ffmpeg' 'libsamplerate' 'wavpack')
-changelog=$pkgname.changelog
-source=(http://qmmp.ylsoftware.com/files/$pkgname/2.1/$pkgname-$pkgver.tar.bz2)
-sha512sums=('b884da143d37a9008c013f5143122f876aff6b4cc291da523b0a861d9bc6c3347d55b72eec2fa6e7e16d5ed094f076658cdef26007587e404175da62ee3a043b')
-
-build() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_INSTALL_LIBDIR=lib \
-  -DUSE_HAL:BOOL=FALSE
-  make
-}
-
-package() {
-  cd "${srcdir}"/$pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: qmmp/repos/community-x86_64/PKGBUILD (from rev 1237715, 
qmmp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 15:29:34 UTC (rev 1237716)
@@ -0,0 +1,50 @@
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=qmmp
+pkgver=2.1.1
+pkgrel=1
+pkgdesc="Qt based audio-player"
+arch=('x86_64')
+url="http://qmmp.ylsoftware.com/";
+license=('GPL')
+depends=('alsa-lib' 'curl' 'desktop-file-utils' 'hicolor-icon-theme' 'libmad' 
'libvorbis'
+ 'libogg' 'libxkbcommon-x11' 'taglib' 'xdg-utils' 'qt6-base')
+makedepends=('cmake' 'flac' 'jack' 'libmpcdec' 'pipewire' 'pulseaudio' 
'ffmpeg' 'libcdio-paranoia'
+ 'libcddb' 'libmms' 'libsamplerate' 'libmodplug' 'libsndfile' 
'wavpack' 'mpg123' 'mesa'
+ 'projectm' 'faad2' 'libgme' 'libsidplayfp' 'opusfile>=0.12' 
'wildmidi' 'qt6-tools')
+optdepends=('mpg123: to play MP3 files'
+'flac: native FLAC support'
+'jack: JACK sound output'
+'libmpcdec: Musepack support'
+'pulseaudio: PulseAudio output'
+'pipewire: pipewire support'
+'libcdio-paranoia: Compact Disc input and control support'
+'libcddb: CDDB server support'
+'libmms: MMS stream protocol support'
+'libmodplug: MOD playing library'
+'libsndfile: sampled sound support'
+'projectm: visual efects'
+'faad2: ADTS AAC support'
+'libgme: support for chiptunes from various platforms'
+'libsidplayfp: C64 music support'
+'opusfile: Opus support'
+'wildmidi: MIDI support'
+'ffmpeg' 'libsamplerate' 'wavpack')
+changelog=$pkgname.changelog
+source=(http://qmmp.ylsoftware.com/files/$pkgname/2.1/$pkgname-$pkgver.tar.bz2)
+sha512sums=('606a12cc663b38714b1a3d0489d8dce3d88e5331bf9b4873dbe8e03f3306c70ba2937351d4b144160a4f71a5c67cba0bdacc89356ecf0cab86d5b5595c1b9ff5')
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  cmake . -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_INSTALL_LIBDIR=lib \
+  -DUSE_HAL:BOOL=FALSE
+  make
+}
+
+package() {
+  cd "

[arch-commits] Commit in qmmp/trunk (PKGBUILD qmmp.changelog)

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:29:24
  Author: jlichtblau
Revision: 1237715

upgpkg: qmmp 2.1.1-1 - new upstream release

Modified:
  qmmp/trunk/PKGBUILD
  qmmp/trunk/qmmp.changelog

+
 PKGBUILD   |4 ++--
 qmmp.changelog |3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:19:04 UTC (rev 1237714)
+++ PKGBUILD2022-06-13 15:29:24 UTC (rev 1237715)
@@ -1,7 +1,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=qmmp
-pkgver=2.1.0
+pkgver=2.1.1
 pkgrel=1
 pkgdesc="Qt based audio-player"
 arch=('x86_64')
@@ -32,7 +32,7 @@
 'ffmpeg' 'libsamplerate' 'wavpack')
 changelog=$pkgname.changelog
 source=(http://qmmp.ylsoftware.com/files/$pkgname/2.1/$pkgname-$pkgver.tar.bz2)
-sha512sums=('b884da143d37a9008c013f5143122f876aff6b4cc291da523b0a861d9bc6c3347d55b72eec2fa6e7e16d5ed094f076658cdef26007587e404175da62ee3a043b')
+sha512sums=('606a12cc663b38714b1a3d0489d8dce3d88e5331bf9b4873dbe8e03f3306c70ba2937351d4b144160a4f71a5c67cba0bdacc89356ecf0cab86d5b5595c1b9ff5')
 
 build() {
   cd "${srcdir}"/$pkgname-$pkgver

Modified: qmmp.changelog
===
--- qmmp.changelog  2022-06-13 15:19:04 UTC (rev 1237714)
+++ qmmp.changelog  2022-06-13 15:29:24 UTC (rev 1237715)
@@ -1,3 +1,6 @@
+2022-06-13 Jaroslav Lichtblau 
+   * qmmp 2.1.1-1
+
 2022-05-22 Jaroslav Lichtblau 
* qmmp 2.1.0-1
 



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

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:19:04
  Author: jlichtblau
Revision: 1237714

archrelease: copy trunk to community-x86_64

Added:
  umockdev/repos/community-x86_64/PKGBUILD
(from rev 1237713, umockdev/trunk/PKGBUILD)
Deleted:
  umockdev/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 15:18:55 UTC (rev 1237713)
+++ PKGBUILD2022-06-13 15:19:04 UTC (rev 1237714)
@@ -1,34 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Marcin (CTRL) Wieczorek 
-# Contributor: Xiao-Long Chen 
-
-pkgname=umockdev
-pkgver=0.17.12
-pkgrel=1
-pkgdesc="Record/mock hardware devices for bug reports and regression tests"
-arch=('x86_64')
-url="https://github.com/martinpitt/umockdev/";
-license=('LGPL')
-depends=('systemd' 'libgudev')
-makedepends=('meson' 'gobject-introspection' 'gtk-doc' 'vala')
-source=($pkgname-$pkgver.tar.gz::https://github.com/martinpitt/$pkgname/archive/$pkgver.tar.gz)
-sha256sums=('ac59aa274cb0eb910051d9da413c89cfaf5455705eea30e83a9ae50e4660b238')
-
-build() {
-  cd $pkgname-$pkgver
-
-  arch-meson -Dgtk_doc=true ../build
-  ninja -v -C ../build
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  meson test -C ../build --print-errorlogs
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  DESTDIR="${pkgdir}" meson install -C ../build
-}

Copied: umockdev/repos/community-x86_64/PKGBUILD (from rev 1237713, 
umockdev/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-13 15:19:04 UTC (rev 1237714)
@@ -0,0 +1,34 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Marcin (CTRL) Wieczorek 
+# Contributor: Xiao-Long Chen 
+
+pkgname=umockdev
+pkgver=0.17.13
+pkgrel=1
+pkgdesc="Record/mock hardware devices for bug reports and regression tests"
+arch=('x86_64')
+url="https://github.com/martinpitt/umockdev/";
+license=('LGPL')
+depends=('systemd' 'libgudev')
+makedepends=('meson' 'gobject-introspection' 'gtk-doc' 'vala')
+source=($pkgname-$pkgver.tar.gz::https://github.com/martinpitt/$pkgname/archive/$pkgver.tar.gz)
+sha256sums=('d34227cc48be96da220f8ebeb1d2ae6ab88c751ae0db07c6ea875e37740acfe9')
+
+build() {
+  cd $pkgname-$pkgver
+
+  arch-meson -Dgtk_doc=true ../build
+  ninja -v -C ../build
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  meson test -C ../build --print-errorlogs
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  DESTDIR="${pkgdir}" meson install -C ../build
+}



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

2022-06-13 Thread Jaroslav Lichtblau via arch-commits
Date: Monday, June 13, 2022 @ 15:18:55
  Author: jlichtblau
Revision: 1237713

upgpkg: umockdev 0.17.13-1 - new upstream release

Modified:
  umockdev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 15:17:41 UTC (rev 1237712)
+++ PKGBUILD2022-06-13 15:18:55 UTC (rev 1237713)
@@ -3,7 +3,7 @@
 # Contributor: Xiao-Long Chen 
 
 pkgname=umockdev
-pkgver=0.17.12
+pkgver=0.17.13
 pkgrel=1
 pkgdesc="Record/mock hardware devices for bug reports and regression tests"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('systemd' 'libgudev')
 makedepends=('meson' 'gobject-introspection' 'gtk-doc' 'vala')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/martinpitt/$pkgname/archive/$pkgver.tar.gz)
-sha256sums=('ac59aa274cb0eb910051d9da413c89cfaf5455705eea30e83a9ae50e4660b238')
+sha256sums=('d34227cc48be96da220f8ebeb1d2ae6ab88c751ae0db07c6ea875e37740acfe9')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in ceph/repos (31 files)

2022-06-13 Thread Evangelos Foutras via arch-commits
Date: Monday, June 13, 2022 @ 15:11:25
  Author: foutrelis
Revision: 1237633

archrelease: copy trunk to community-staging-x86_64

Added:
  ceph/repos/community-staging-x86_64/
  ceph/repos/community-staging-x86_64/PKGBUILD
(from rev 1237632, ceph/trunk/PKGBUILD)
  
ceph/repos/community-staging-x86_64/backport_mgr_disabled_modules_workaround_PR34846.patch
(from rev 1237632, 
ceph/trunk/backport_mgr_disabled_modules_workaround_PR34846.patch)
  ceph/repos/community-staging-x86_64/boost-1.67.patch
(from rev 1237632, ceph/trunk/boost-1.67.patch)
  ceph/repos/community-staging-x86_64/ceph-12.2.4-boost-build-none-options.patch
(from rev 1237632, ceph/trunk/ceph-12.2.4-boost-build-none-options.patch)
  ceph/repos/community-staging-x86_64/ceph-13.2.0-cflags.patch
(from rev 1237632, ceph/trunk/ceph-13.2.0-cflags.patch)
  
ceph/repos/community-staging-x86_64/ceph-13.2.2-dont-install-sysvinit-script.patch
(from rev 1237632, 
ceph/trunk/ceph-13.2.2-dont-install-sysvinit-script.patch)
  ceph/repos/community-staging-x86_64/ceph-14.2.0-cflags.patch
(from rev 1237632, ceph/trunk/ceph-14.2.0-cflags.patch)
  ceph/repos/community-staging-x86_64/ceph-14.2.0-cython-0.29.patch
(from rev 1237632, ceph/trunk/ceph-14.2.0-cython-0.29.patch)
  ceph/repos/community-staging-x86_64/ceph-14.2.0-link-crc32-statically.patch
(from rev 1237632, ceph/trunk/ceph-14.2.0-link-crc32-statically.patch)
  ceph/repos/community-staging-x86_64/ceph-15.2.0-rocksdb-cmake.patch
(from rev 1237632, ceph/trunk/ceph-15.2.0-rocksdb-cmake.patch)
  ceph/repos/community-staging-x86_64/ceph-15.2.14-gcc12.patch
(from rev 1237632, ceph/trunk/ceph-15.2.14-gcc12.patch)
  ceph/repos/community-staging-x86_64/ceph-15.2.4-system-uring.patch
(from rev 1237632, ceph/trunk/ceph-15.2.4-system-uring.patch)
  ceph/repos/community-staging-x86_64/ceph-15.2.5-missing-includes.patch
(from rev 1237632, ceph/trunk/ceph-15.2.5-missing-includes.patch)
  ceph/repos/community-staging-x86_64/ceph.sysusers
(from rev 1237632, ceph/trunk/ceph.sysusers)
  ceph/repos/community-staging-x86_64/disable-broken-mgr-dashboard-test.patch
(from rev 1237632, ceph/trunk/disable-broken-mgr-dashboard-test.patch)
  ceph/repos/community-staging-x86_64/disable-empty-readable.sh-test.patch
(from rev 1237632, ceph/trunk/disable-empty-readable.sh-test.patch)
  
ceph/repos/community-staging-x86_64/exclude-frontend-from-mgr-dashboard-cov.patch
(from rev 1237632, ceph/trunk/exclude-frontend-from-mgr-dashboard-cov.patch)
  ceph/repos/community-staging-x86_64/fix-ceph_disk-python-interpreter.patch
(from rev 1237632, ceph/trunk/fix-ceph_disk-python-interpreter.patch)
  
ceph/repos/community-staging-x86_64/fix-mgr-dashboard-frontend-unittests-dist-stuff.patch
(from rev 1237632, 
ceph/trunk/fix-mgr-dashboard-frontend-unittests-dist-stuff.patch)
  ceph/repos/community-staging-x86_64/fix-mgr-dashboard-partial_dict.patch
(from rev 1237632, ceph/trunk/fix-mgr-dashboard-partial_dict.patch)
  ceph/repos/community-staging-x86_64/fix-python2-paths.patch
(from rev 1237632, ceph/trunk/fix-python2-paths.patch)
  ceph/repos/community-staging-x86_64/fix-tox-test-commands.patch
(from rev 1237632, ceph/trunk/fix-tox-test-commands.patch)
  ceph/repos/community-staging-x86_64/fix_snappy_namespace_uint.patch
(from rev 1237632, ceph/trunk/fix_snappy_namespace_uint.patch)
  
ceph/repos/community-staging-x86_64/glibc2.32-strsignal-compat-backported.patch
(from rev 1237632, ceph/trunk/glibc2.32-strsignal-compat-backported.patch)
  ceph/repos/community-staging-x86_64/mgr-dashboard-update-pylint-to-2.6.0.patch
(from rev 1237632, ceph/trunk/mgr-dashboard-update-pylint-to-2.6.0.patch)
  ceph/repos/community-staging-x86_64/qa-src-update-mypy-to-0.782.patch
(from rev 1237632, ceph/trunk/qa-src-update-mypy-to-0.782.patch)
  ceph/repos/community-staging-x86_64/remove-distro-version-detection.patch
(from rev 1237632, ceph/trunk/remove-distro-version-detection.patch)
  ceph/repos/community-staging-x86_64/suppress-pylint-warnings.patch
(from rev 1237632, ceph/trunk/suppress-pylint-warnings.patch)
  
ceph/repos/community-staging-x86_64/use-system-zstd-and-fix-zstd-1.4.0-compatbility.patch
(from rev 1237632, 
ceph/trunk/use-system-zstd-and-fix-zstd-1.4.0-compatbility.patch)
  
ceph/repos/community-staging-x86_64/use-threadsafe-death-tests-objectstore-memstore.patch
(from rev 1237632, 
ceph/trunk/use-threadsafe-death-tests-objectstore-memstore.patch)

+
 PKGBUILD   |  356 +++
 backport_mgr_disabled_modules_workaround_PR34846.patch |  207 
 boost-1.67.patch   |   11 
 ceph-12.2.4-boost-build-none-options.patch |   26 
 ceph-13.2.0-cflags.patch   |   26 
 ceph-13.2.2-dont-install-sysvinit-script.patch |   15 
 ceph-14.2.0-cflags.patch   

[arch-commits] Commit in ceph/trunk (PKGBUILD ceph-15.2.14-gcc12.patch)

2022-06-13 Thread Evangelos Foutras via arch-commits
Date: Monday, June 13, 2022 @ 15:11:02
  Author: foutrelis
Revision: 1237632

upgpkg: ceph 15.2.14-6: boost 1.79.0 rebuild

Added:
  ceph/trunk/ceph-15.2.14-gcc12.patch
Modified:
  ceph/trunk/PKGBUILD

--+
 PKGBUILD |   11 --
 ceph-15.2.14-gcc12.patch |   73 +
 2 files changed, 80 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 14:35:00 UTC (rev 1237631)
+++ PKGBUILD2022-06-13 15:11:02 UTC (rev 1237632)
@@ -3,9 +3,9 @@
 
 pkgbase='ceph'
 pkgname=('ceph' 'ceph-libs' 'ceph-mgr')
-_zstdver=1.5.0
+_zstdver=1.5.2
 pkgver=15.2.14
-pkgrel=5
+pkgrel=6
 pkgdesc='Distributed, fault-tolerant storage platform delivering object, 
block, and file system'
 arch=('x86_64')
 url='https://ceph.com/'
@@ -38,7 +38,8 @@
  'xfsprogs' 'xmlstarlet' 'xmlsec' 'xxhash' 'yaml-cpp' 'yasm' 
'zlib' )
 checkdepends=('python-mock' 'python-nose' 'python-pycodestyle' 'python-pylint'
   'python-pytest' 'python-pytest-cov')
-options=('emptydirs')
+# need newer version for LTO (https://github.com/ceph/ceph/pull/42602)
+options=('emptydirs' '!lto')
 source=(
   "https://download.ceph.com/tarballs/${pkgbase}-${pkgver}.tar.gz";
   'ceph.sysusers'
@@ -53,6 +54,7 @@
   'ceph-15.2.0-rocksdb-cmake.patch'
   'ceph-15.2.4-system-uring.patch'
   # 'ceph-15.2.5-missing-includes.patch'
+  'ceph-15.2.14-gcc12.patch'
   'disable-empty-readable.sh-test.patch'
   'qa-src-update-mypy-to-0.782.patch'
   'fix-mgr-dashboard-partial_dict.patch'
@@ -70,7 +72,7 @@
 )
 
sha512sums=('eacc4dea0d8dfe2753aff78d89324d81c5634a784313c3da8ded778e2734958c216f8c705b25f070d7ba66b559424ad3c47cb68852f66f8c9c83a83ca78ad5a5'
 
'4354001c1abd9a0c385ba7bd529e3638fb6660b6a88d4e49706d4ac21c81b8e829303a20fb5445730bdac18c4865efb10bc809c1cd56d743c12aa9a52e160049'
-
'25b657529a698eec891f92ff4a085d1fd95d2ff938ce52c8a4ff6163eb0b668ec642dd09e0db190652638cd92371006afa01d8e437437762c4097ad301675c33'
+
'e107508a41fca50845cc2494e64adaba93efb95a2fa486fc962510a8ba4b2180d93067cae9870f119e88e5e8b28a046bc2240b0b23cdd8933d1fb1a6a9668c1e'
 
'9e6bb46d5bbdc5d93f4f026b2a8d6bdb692d9ea6e7018c1bb0188d95ea8574c76238d968b340fd67ddaa3d8183b310e393e3549dc3a63a795fde696413b0ca94'
 
'6ff46a90d76f667fa23be0f9eb1ed2fb7e30af9a2621aec19944d0a22a431a0f5721603c588286e483ff55c14aac920adfccb039c9678a87cc59640dd70367ae'
 
'8ec0d668fefee12d2c7f5b5297dd81fc6a559f5823d069e6395d9b4240110eb8f95049d3054697a459948c1f3784b4450539849cf9d7f3b1aa1c7fbd96c475df'
@@ -78,6 +80,7 @@
 
'82c1608928ee669ef60b8930ce82c443152c446e669e7bde9ce32f78571afb19a9620c3818b69ac8cb3ea33e7d7ac40f77c89162c71b19b157336d907fa23e3d'
 
'20256de5c3227caa149f8285bcc90fcbd67be8cefa568fb72ad0d43688f1f62db7c7fc231dfd4ecf2dd11be68bf1ccc284ebbc691a82a26f3968200f12c82097'
 
'8258661e56b5360f4260fdd29b07bac4d415068a112b61ca8c55c529fb1593d8d61a0d59a4eec8f1567b97167c058082198d008f55f8ee701cb46489df5f7823'
+
'69b058e7b215f85f347b1e4528800ed62635864fa32b24b0f9db97b08fe6576f30d260bf6a19bb5166482f43928feb535e9a6dca8f3c2b3ce7700c108db9fb7a'
 
'2234d005df71b3b6013e6b76ad07a5791e3af7efec5f41c78eb1a9c92a22a67f0be9560be59b52534e90bfe251bcf32c33d5d40163f3f8f7e7420691f0f4a222'
 
'204741c65b8ceeddae0a58a49e2b4249ee7ffc624ce8d9faa6284af198abe63bffb6758e064eeff6d1857be044647f99749a45443e258b35e92cc36b9edeba80'
 
'79e337a78cc4bd9ed8c8ab66831b3efd5a3a34e16d2c73ecedef03d2a34c7ac65ea25641a808913cd2dc2dc0f992fac35822efe4188622add6898dce1e5f13e3'

Added: ceph-15.2.14-gcc12.patch
===
--- ceph-15.2.14-gcc12.patch(rev 0)
+++ ceph-15.2.14-gcc12.patch2022-06-13 15:11:02 UTC (rev 1237632)
@@ -0,0 +1,73 @@
+From 963d756ded40f5adf2efef53893c917bec1845c1 Mon Sep 17 00:00:00 2001
+From: Radoslaw Zarzynski 
+Date: Wed, 19 Jan 2022 15:24:11 +
+Subject: [PATCH] common: fix FTBFS due to dout & need_dynamic on GCC-12
+
+For details see:
+https://gist.github.com/rzarzynski/d6d2df6888923bef6a3e764f4856853f.
+
+Special thanks to Kaleb Keithley who reported the issue
+and tested the fix!
+
+Fixes: https://tracker.ceph.com/issues/53896
+Signed-off-by: Radoslaw Zarzynski 
+---
+ src/common/dout.h | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/src/common/dout.h b/src/common/dout.h
+index 421222d535f8d..a1375fbb91026 100644
+--- a/src/common/dout.h
 b/src/common/dout.h
+@@ -99,11 +99,12 @@ namespace ceph::dout {
+ template
+ struct dynamic_marker_t {
+   T value;
+-  operator T() const { return value; }
++  // constexpr ctor isn't needed as it's an aggregate type
++  constexpr operator T() const { return value; }
+ };
+ 
+ template
+-dynamic_marker_t need_dynamic(T&& t) {
++constexpr dynamic_marker_t need_dynamic(T&&

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

2022-06-13 Thread Felix Yan via arch-commits
Date: Monday, June 13, 2022 @ 14:35:00
  Author: felixonmars
Revision: 1237631

archrelease: copy trunk to community-staging-x86_64

Added:
  darcs/repos/community-staging-x86_64/
  darcs/repos/community-staging-x86_64/PKGBUILD
(from rev 1237630, darcs/trunk/PKGBUILD)

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

Copied: darcs/repos/community-staging-x86_64/PKGBUILD (from rev 1237630, 
darcs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-13 14:35:00 UTC (rev 1237631)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=darcs
+pkgver=2.16.5
+pkgrel=38
+pkgdesc="A distributed, interactive, smart revision control system"
+url="http://darcs.net";
+license=("GPL")
+arch=('x86_64')
+depends=('curl' 'ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-conduit' 'haskell-constraints' 'haskell-cryptonite' 
'haskell-data-ordlist'
+ 'haskell-fgl' 'haskell-hashable' 'haskell-html' 
'haskell-http-conduit' 'haskell-http-types'
+ 'haskell-knob' 'haskell-memory' 'haskell-mmap' 'haskell-network' 
'haskell-network-uri'
+ 'haskell-old-time' 'haskell-regex-applicative' 'haskell-regex-base' 
'haskell-regex-tdfa'
+ 'haskell-tar' 'haskell-temporary' 'haskell-unix-compat' 
'haskell-utf8-string'
+ 'haskell-vector' 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'uusi' 'haskell-cmdargs' 'haskell-findbin' 'haskell-hunit' 
'haskell-leancheck'
+ 'haskell-quickcheck' 'haskell-test-framework' 
'haskell-test-framework-hunit'
+ 'haskell-test-framework-leancheck' 
'haskell-test-framework-quickcheck2'
+ # Added for their bundled shelly
+ 'haskell-monad-control' 'haskell-system-filepath'
+ 'haskell-system-fileio' 'haskell-transformers-base')
+checkdepends=('bc' 'time')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('9116043943315417ff314197f6a143435b5545f614c6e6210c3645987a68c69c31f53f823ee5269cb663ccba393f8caf1834120783f15128e43b132c731a0edb')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -e 's/^ghc /ghc -dynamic /' \
+-e 's/ ghc / ghc -dynamic /' \
+-i tests/*.sh tests/lib
+uusi -u attoparsec -u constraints -u cryptonite -u hashable -u memory -u 
unix-compat $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-fcurl -fpkgconfig -f-static -fterminfo -fthreaded -fexecutable \
+-f-rts -foptimize -f-warn-as-error -f-libiconv
+LD_LIBRARY_PATH="$srcdir"/$pkgname-$pkgver/dist/build runhaskell Setup 
build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+chmod 644 "${pkgdir}/usr/share/man/man1/darcs.1"
+
+install -Dm644 contrib/darcs_completion 
"${pkgdir}/usr/share/bash-completion/completions/darcs"
+install -Dm644 contrib/_darcs.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_darcs"
+}



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

2022-06-13 Thread Felix Yan via arch-commits
Date: Monday, June 13, 2022 @ 14:34:48
  Author: felixonmars
Revision: 1237630

upgpkg: darcs 2.16.5-38: rebuild with tls 1.6.0

Modified:
  darcs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 14:33:02 UTC (rev 1237629)
+++ PKGBUILD2022-06-13 14:34:48 UTC (rev 1237630)
@@ -3,7 +3,7 @@
 
 pkgname=darcs
 pkgver=2.16.5
-pkgrel=37
+pkgrel=38
 pkgdesc="A distributed, interactive, smart revision control system"
 url="http://darcs.net";
 license=("GPL")



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

2022-06-13 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 13, 2022 @ 14:33:02
  Author: svenstaro
Revision: 1237629

archrelease: copy trunk to community-staging-x86_64

Added:
  openvkl/repos/community-staging-x86_64/
  openvkl/repos/community-staging-x86_64/PKGBUILD
(from rev 1237628, openvkl/trunk/PKGBUILD)

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

Copied: openvkl/repos/community-staging-x86_64/PKGBUILD (from rev 1237628, 
openvkl/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-13 14:33:02 UTC (rev 1237629)
@@ -0,0 +1,31 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=openvkl
+pkgver=1.3.0
+pkgrel=2
+pkgdesc="Intel® Open Volume Kernel Library"
+arch=(x86_64)
+url="https://www.openvkl.org/";
+license=(Apache)
+depends=(embree ispc glfw libglvnd imath openvdb rkcommon tbb zlib)
+makedepends=(boost cmake)
+source=(https://github.com/openvkl/openvkl/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('c6d4d40e6d232839c278b53dee1e7bd3bd239c3ccac33f49b465fc65a0692be9')
+
+build() {
+  cmake -B build -S ${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_EXAMPLES=OFF \
+-DOpenVDB_ROOT=/usr \
+-Wno-dev
+  make -C build
+}
+
+check() {
+  make -C build test
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+}



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

2022-06-13 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 13, 2022 @ 14:32:57
  Author: svenstaro
Revision: 1237628

upgpkg: openvkl 1.3.0-2: openvdb 9.1.0

Modified:
  openvkl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 14:28:22 UTC (rev 1237627)
+++ PKGBUILD2022-06-13 14:32:57 UTC (rev 1237628)
@@ -2,7 +2,7 @@
 
 pkgname=openvkl
 pkgver=1.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Intel® Open Volume Kernel Library"
 arch=(x86_64)
 url="https://www.openvkl.org/";



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

2022-06-13 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 13, 2022 @ 14:28:22
  Author: svenstaro
Revision: 1237627

archrelease: copy trunk to community-staging-x86_64

Added:
  vtk/repos/community-staging-x86_64/.contrib
(from rev 1237626, vtk/trunk/.contrib)
  vtk/repos/community-staging-x86_64/PKGBUILD
(from rev 1237626, vtk/trunk/PKGBUILD)
Deleted:
  vtk/repos/community-staging-x86_64/.contrib
  vtk/repos/community-staging-x86_64/PKGBUILD

--+
 .contrib |   12 +-
 PKGBUILD |  262 ++---
 2 files changed, 137 insertions(+), 137 deletions(-)

Deleted: .contrib
===
--- .contrib2022-06-13 14:28:15 UTC (rev 1237626)
+++ .contrib2022-06-13 14:28:22 UTC (rev 1237627)
@@ -1,6 +0,0 @@
-# Contributor: Christofer Bertonha 
-# Contributor: leepesjee 
-# Contributor: Olivier Medoc
-# Contributor: ignotus
-# Contributor: Fabian Moser
-# Contributor: djscholl

Copied: vtk/repos/community-staging-x86_64/.contrib (from rev 1237626, 
vtk/trunk/.contrib)
===
--- .contrib(rev 0)
+++ .contrib2022-06-13 14:28:22 UTC (rev 1237627)
@@ -0,0 +1,6 @@
+# Contributor: Christofer Bertonha 
+# Contributor: leepesjee 
+# Contributor: Olivier Medoc
+# Contributor: ignotus
+# Contributor: Fabian Moser
+# Contributor: djscholl

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-13 14:28:15 UTC (rev 1237626)
+++ PKGBUILD2022-06-13 14:28:22 UTC (rev 1237627)
@@ -1,131 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Evgeniy Alekseev 
-# Contributor: Michael Migliore 
-# Contributor: Ray Rashif 
-# Contributor: Andrzej Giniewicz 
-# Contributor: Thomas Dziedzic 
-
-pkgname=vtk
-pkgver=9.1.0
-pkgrel=17
-pkgdesc="Software system for 3D computer graphics, image processing, and 
visualization"
-arch=(x86_64)
-url="https://www.vtk.org/";
-license=(BSD)
-depends=(gcc-libs double-conversion pugixml tbb)
-makedepends=(adios2 cmake boost doxygen ffmpeg gdal git gnuplot 
java-environment=11
- liblas libxt openimagedenoise openmp openmpi openvdb openvr 
ospray pdal
- postgresql python-matplotlib qt5-base qt5-tools qt5-webkit
- qt5-x11extras tk unixodbc wget
- cgns cli11 eigen expat fmt freetype2 gl2ps glew hdf5 libjpeg
- jsoncpp libjsoncpp.so libharu proj libxml2 lz4 xz python-mpi4py
- netcdf libogg libpng rapidjson sqlite libtheora libtiff utf8cpp 
zfp zlib)
-# pegtl: https://gitlab.kitware.com/vtk/vtk/-/issues/18151
-# exprtk, ioss: not packaged
-optdepends=('gnuplot: plotting tools'
-'graphviz: drawing tools'
-'java-runtime=11: java bindings'
-'python: python bindings'
-'python-mpi4py: OpenMPI python support'
-'python-matplotlib: for Matplotlib rendering'
-'openmpi: OpenMPI support'
-'qt5-x11extras'
-'qt5-webkit: WebKit support'
-'tk: tcl bindings'
-adios2
-cgns
-ffmpeg
-fmt
-gdal
-gl2ps
-glew
-hdf5
-jsoncpp
-libarchive
-libharu
-liblas
-lz4
-netcdf
-openimagedenoise
-openvdb
-openvr
-ospray
-pdal
-postgresql
-proj
-sqlite
-unixodbc)
-source=(${url}/files/release/${pkgver%.*}/VTK-${pkgver}.tar.gz
-
vtkm-tbb-2021.patch::https://gitlab.kitware.com/vtk/vtk-m/-/merge_requests/2509.patch
-
vtk-ffmpeg5.patch::https://gitlab.kitware.com/vtk/vtk/-/merge_requests/8863.patch)
-options=(staticlibs)
-sha256sums=('8fed42f4f8f1eb8083107b68eaa9ad71da07110161a3116ad807f43e5ca5ce96'
-'37cff664c4eaacf44ecb995e62e9e54e54880bae0857d598c74660a2159ccb2e'
-'955ef22d2541beb9935557ef09a802b6504855a350f27ff056734679da8f0281')
-
-prepare() {
-  cd VTK-${pkgver}
-  # We have a patched libharu
-  sed -i "s|2.4.0|2.3.0|" ThirdParty/libharu/CMakeLists.txt
-  # We have a patched fmt
-  sed -i "s|8.1.0|8.0.1|" ThirdParty/fmt/CMakeLists.txt
-  # Fix build with TBB 2021
-  patch -p1 -d ThirdParty/vtkm/vtkvtkm/vtk-m < ../vtkm-tbb-2021.patch
-  # Fix build with FFmpeg 5
-  patch -p1 < ../vtk-ffmpeg5.patch
-}
-
-build() {
-  # To help cmake find java
-  export JAVA_HOME=/usr/lib/jvm/default
-  # To set tcl lib path
-  local _tkver=$(echo 'puts $tcl_version' | tclsh)
-  cmake -B build -S VTK-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_CXX_FLAGS="$CXXFLAGS -ffat-lto-objects" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LICENSEDIR=share/licenses/vtk \
--DCMAKE_SKIP_RPATH=OFF \
--DCMAKE_SKIP_INSTALL_RPATH=ON \
--DBUILD_SHARED_LIBS=ON \
--DVTK_BUILD_ALL_MODULES=ON \
--DVTK_INSTALL_TCL_DIR=

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

2022-06-13 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 13, 2022 @ 14:28:15
  Author: svenstaro
Revision: 1237626

upgpkg: vtk 9.1.0-18: openvdb 9.1.0

Modified:
  vtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 14:19:20 UTC (rev 1237625)
+++ PKGBUILD2022-06-13 14:28:15 UTC (rev 1237626)
@@ -7,7 +7,7 @@
 
 pkgname=vtk
 pkgver=9.1.0
-pkgrel=17
+pkgrel=18
 pkgdesc="Software system for 3D computer graphics, image processing, and 
visualization"
 arch=(x86_64)
 url="https://www.vtk.org/";



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

2022-06-13 Thread Felix Yan via arch-commits
Date: Monday, June 13, 2022 @ 14:16:29
  Author: felixonmars
Revision: 1237611

archrelease: copy trunk to community-staging-x86_64

Added:
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 1237610, xmobar/trunk/PKGBUILD)

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 1237610, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-13 14:16:29 UTC (rev 1237611)
@@ -0,0 +1,69 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.39
+pkgrel=160
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('BSD')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-parsec-numbers'
+ 'haskell-regex-compat' 'haskell-old-locale'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-cereal' 
'haskell-netlink'
+ 'haskell-async' 'haskell-aeson'
+ 'haskell-timezone-olson' 'haskell-timezone-series' 'alsa-lib'
+ 'haskell-extensible-exceptions' 'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-http-client-tls' 'haskell-alsa-core' 
'haskell-alsa-mixer')
+makedepends=('ghc' 'uusi' 'haskell-hspec' 'haskell-temporary')
+source=(https://github.com/jaor/xmobar/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('a47d7cf16fdea4bece1d622db1c2ac76acc9d9369043eec6ff41a22c1f59c9757932fbcebfe804a636c783e9a66317bb3aaf72edc4a373c48e7db3c9292d9658')
+
+prepare() {
+  cd xmobar-${pkgver}
+  uusi -u base xmobar.cabal
+}
+
+build() {
+  cd xmobar-${pkgver}
+
+  _flags=(with_xft with_utf8 with_inotify with_mpd with_alsa with_nl80211
+  with_datezone with_mpris with_dbus with_xpm with_threaded
+  with_rtsopts with_weather)
+
+  runhaskell setup configure -O \
+--enable-shared \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--prefix=/usr \
+--dynlibdir=/usr/lib \
+--libsubdir=\$compiler/site-local/\$pkgid --ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' \
+--flags="${_flags[*]}" \
+--enable-tests
+  runhaskell setup build
+  runhaskell setup register --gen-script
+  runhaskell setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd xmobar-${pkgver}
+  runhaskell setup test
+}
+
+package() {
+  cd xmobar-${pkgver}
+  install -Dm 744 register.sh   
"${pkgdir}/usr/share/haskell/register/xmobar.sh"
+  install -Dm 744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/xmobar.sh"
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-06-13 Thread Felix Yan via arch-commits
Date: Monday, June 13, 2022 @ 14:18:59
  Author: felixonmars
Revision: 1237623

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-ui/repos/community-staging-x86_64/
  hledger-ui/repos/community-staging-x86_64/PKGBUILD
(from rev 1237622, hledger-ui/trunk/PKGBUILD)

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

Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 1237622, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-13 14:18:59 UTC (rev 1237623)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+# Maintainer: Caleb Maclennan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.25
+pkgrel=73
+pkgdesc="Curses-style terminal interface for the hledger accounting system"
+url="http://hledger.org";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-ansi-terminal' 
'haskell-async'
+ 'haskell-cmdargs' 'haskell-data-default' 'haskell-doclayout' 
'haskell-extra'
+ 'haskell-fsnotify' 'haskell-microlens' 'haskell-microlens-platform' 
'haskell-megaparsec'
+ 'haskell-safe' 'haskell-split' 'haskell-text-zipper'
+ 'haskell-vector' 'haskell-brick' 'haskell-vty')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('100febd118e7ad538d82e215d7413aac1b8b914fcb8be1bc6a26c311d9d2ba2accad187ffa3bdc623c448e9c36ba5dcf81a86db139541fbc33abba3557dd8f62')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" --datasubdir=$pkgname 
\
+-fthreaded
+runhaskell Setup build $MAKEFLAGS
+}
+
+package() {
+cd $pkgname-$pkgver
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+install -Dm644 hledger-ui.1 -t "$pkgdir"/usr/share/man/man1/
+}



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

2022-06-13 Thread Felix Yan via arch-commits
Date: Monday, June 13, 2022 @ 14:19:20
  Author: felixonmars
Revision: 1237625

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-web/repos/community-staging-x86_64/
  hledger-web/repos/community-staging-x86_64/PKGBUILD
(from rev 1237624, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 1237624, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-13 14:19:20 UTC (rev 1237625)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.25
+pkgrel=94
+pkgdesc="Web-based user interface for the hledger accounting system"
+url="http://hledger.org";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-base64'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-cmdargs' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-data-default' 'haskell-decimal' 'haskell-extra' 
'haskell-hjsmin'
+ 'haskell-hspec' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-http-types'
+ 'haskell-megaparsec' 'haskell-network' 'haskell-shakespeare' 
'haskell-unix-compat'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 'haskell-wai' 
'haskell-wai-cors'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-yesod-test')
+makedepends=('ghc' 'uusi')
+replaces=('hledger-api')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('4be48eb2ba57f3f2e183c27bf6689c9b28d4028e194fcd6c400545d7e2119703cc947a8deaaa0b3a9d07668fda09e78744305f5138d5204330399ce557d4ca4f')
+
+build() {
+cd $pkgname-$pkgver
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $pkgname-$pkgver
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+install -Dm644 hledger-web.1 -t "$pkgdir"/usr/share/man/man1/
+}



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

2022-06-13 Thread Felix Yan via arch-commits
Date: Monday, June 13, 2022 @ 14:16:17
  Author: felixonmars
Revision: 1237610

upgpkg: xmobar 0.39-160: rebuild with tls 1.6.0

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-13 14:15:52 UTC (rev 1237609)
+++ PKGBUILD2022-06-13 14:16:17 UTC (rev 1237610)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.39
-pkgrel=159
+pkgrel=160
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')



  1   2   3   4   5   >