[arch-commits] Commit in gptfdisk/trunk (PKGBUILD util-linux-2.38.patch)

2022-04-15 Thread Evangelos Foutras via arch-commits
Date: Saturday, April 16, 2022 @ 05:35:44
  Author: foutrelis
Revision: 442715

upgpkg: gptfdisk 1.0.9-1: new upstream release

Added:
  gptfdisk/trunk/util-linux-2.38.patch
Modified:
  gptfdisk/trunk/PKGBUILD

---+
 PKGBUILD  |9 ++---
 util-linux-2.38.patch |   25 +
 2 files changed, 31 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 03:59:33 UTC (rev 442714)
+++ PKGBUILD2022-04-16 05:35:44 UTC (rev 442715)
@@ -3,7 +3,7 @@
 # Contributor: Hokum 
 
 pkgname=gptfdisk
-pkgver=1.0.8
+pkgver=1.0.9
 pkgrel=1
 pkgdesc="A text-mode partitioning tool that works on GUID Partition Table 
(GPT) disks"
 arch=('x86_64')
@@ -13,11 +13,14 @@
 provides=("gdisk=$pkgver")
 conflicts=('gdisk')
 replaces=('gdisk')
-source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('95d19856f004dabc4b8c342b2612e8d0a9eebdd52004297188369f152e9dc6df')
+source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz
+util-linux-2.38.patch)
+sha256sums=('dafead2693faeb8e8b97832b23407f6ed5b3219bc1784f482dd855774e2d50c2'
+'c014a1054c597fb9afb06e7cd4c91a038d887e66dd36aba26a68494ea0f41a43')
 
 prepare() {
   cd "$srcdir/$pkgname-$pkgver"
+  patch -Np1 -i ../util-linux-2.38.patch
 
   # https://sourceforge.net/p/gptfdisk/discussion/939590/thread/bc29ca06f8/
   sed -i '/^#include /s:ncursesw/::' gptcurses.cc

Added: util-linux-2.38.patch
===
--- util-linux-2.38.patch   (rev 0)
+++ util-linux-2.38.patch   2022-04-16 05:35:44 UTC (rev 442715)
@@ -0,0 +1,25 @@
+From 127e40dcc2d62ad693cb4e03e1182d0a227d85e1 Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Sat, 16 Apr 2022 08:24:58 +0300
+Subject: [PATCH] Fix uuid/uuid.h detection with util-linux 2.38
+
+util-linux commit 10f5f79485964ab52272ebe79c3b0047b1f84d82 changed the
+header guard in uuid/uuid.h from _UUID_UUID_H to _UL_LIBUUID_UUID_H as
+the former was too generic; fix guid.cc to also look for the new name.
+---
+ guid.cc | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/guid.cc b/guid.cc
+index 1e73ab7..d3e4fd5 100644
+--- a/guid.cc
 b/guid.cc
+@@ -141,7 +141,7 @@ void GUIDData::Zero(void) {
+ void GUIDData::Randomize(void) {
+int i, uuidGenerated = 0;
+ 
+-#ifdef _UUID_UUID_H
++#if defined (_UUID_UUID_H) || defined (_UL_LIBUUID_UUID_H)
+uuid_generate(uuidData);
+ReverseBytes([0], 4);
+ReverseBytes([4], 2);



[arch-commits] Commit in gptfdisk/repos/extra-x86_64 (3 files)

2022-04-15 Thread Evangelos Foutras via arch-commits
Date: Saturday, April 16, 2022 @ 05:35:49
  Author: foutrelis
Revision: 442716

archrelease: copy trunk to extra-x86_64

Added:
  gptfdisk/repos/extra-x86_64/PKGBUILD
(from rev 442715, gptfdisk/trunk/PKGBUILD)
  gptfdisk/repos/extra-x86_64/util-linux-2.38.patch
(from rev 442715, gptfdisk/trunk/util-linux-2.38.patch)
Deleted:
  gptfdisk/repos/extra-x86_64/PKGBUILD

---+
 PKGBUILD  |   89 
 util-linux-2.38.patch |   25 +
 2 files changed, 71 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 05:35:44 UTC (rev 442715)
+++ PKGBUILD2022-04-16 05:35:49 UTC (rev 442716)
@@ -1,43 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Tobias Powalowski 
-# Contributor: Hokum 
-
-pkgname=gptfdisk
-pkgver=1.0.8
-pkgrel=1
-pkgdesc="A text-mode partitioning tool that works on GUID Partition Table 
(GPT) disks"
-arch=('x86_64')
-url="https://www.rodsbooks.com/gdisk/;
-license=('GPL2')
-depends=('gcc-libs' 'popt' 'libuuid.so' 'libncursesw.so')
-provides=("gdisk=$pkgver")
-conflicts=('gdisk')
-replaces=('gdisk')
-source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('95d19856f004dabc4b8c342b2612e8d0a9eebdd52004297188369f152e9dc6df')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  # https://sourceforge.net/p/gptfdisk/discussion/939590/thread/bc29ca06f8/
-  sed -i '/^#include /s:ncursesw/::' gptcurses.cc
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make
-}
-
-check() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make test
-}
-
-package () {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  install -d "$pkgdir"/usr/{bin,share/{doc/gdisk,man/man8}}
-  install -t "$pkgdir/usr/bin" {,c,s}gdisk fixparts
-  install -m644 -t "$pkgdir/usr/share/man/man8" {{,c,s}gdisk,fixparts}.8
-  install -m644 -t "$pkgdir/usr/share/doc/gdisk" README NEWS
-}

Copied: gptfdisk/repos/extra-x86_64/PKGBUILD (from rev 442715, 
gptfdisk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 05:35:49 UTC (rev 442716)
@@ -0,0 +1,46 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Tobias Powalowski 
+# Contributor: Hokum 
+
+pkgname=gptfdisk
+pkgver=1.0.9
+pkgrel=1
+pkgdesc="A text-mode partitioning tool that works on GUID Partition Table 
(GPT) disks"
+arch=('x86_64')
+url="https://www.rodsbooks.com/gdisk/;
+license=('GPL2')
+depends=('gcc-libs' 'popt' 'libuuid.so' 'libncursesw.so')
+provides=("gdisk=$pkgver")
+conflicts=('gdisk')
+replaces=('gdisk')
+source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz
+util-linux-2.38.patch)
+sha256sums=('dafead2693faeb8e8b97832b23407f6ed5b3219bc1784f482dd855774e2d50c2'
+'c014a1054c597fb9afb06e7cd4c91a038d887e66dd36aba26a68494ea0f41a43')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  patch -Np1 -i ../util-linux-2.38.patch
+
+  # https://sourceforge.net/p/gptfdisk/discussion/939590/thread/bc29ca06f8/
+  sed -i '/^#include /s:ncursesw/::' gptcurses.cc
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make test
+}
+
+package () {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  install -d "$pkgdir"/usr/{bin,share/{doc/gdisk,man/man8}}
+  install -t "$pkgdir/usr/bin" {,c,s}gdisk fixparts
+  install -m644 -t "$pkgdir/usr/share/man/man8" {{,c,s}gdisk,fixparts}.8
+  install -m644 -t "$pkgdir/usr/share/doc/gdisk" README NEWS
+}

Copied: gptfdisk/repos/extra-x86_64/util-linux-2.38.patch (from rev 442715, 
gptfdisk/trunk/util-linux-2.38.patch)
===
--- util-linux-2.38.patch   (rev 0)
+++ util-linux-2.38.patch   2022-04-16 05:35:49 UTC (rev 442716)
@@ -0,0 +1,25 @@
+From 127e40dcc2d62ad693cb4e03e1182d0a227d85e1 Mon Sep 17 00:00:00 2001
+From: Evangelos Foutras 
+Date: Sat, 16 Apr 2022 08:24:58 +0300
+Subject: [PATCH] Fix uuid/uuid.h detection with util-linux 2.38
+
+util-linux commit 10f5f79485964ab52272ebe79c3b0047b1f84d82 changed the
+header guard in uuid/uuid.h from _UUID_UUID_H to _UL_LIBUUID_UUID_H as
+the former was too generic; fix guid.cc to also look for the new name.
+---
+ guid.cc | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/guid.cc b/guid.cc
+index 1e73ab7..d3e4fd5 100644
+--- a/guid.cc
 b/guid.cc
+@@ -141,7 +141,7 @@ void GUIDData::Zero(void) {
+ void GUIDData::Randomize(void) {
+int i, uuidGenerated = 0;
+ 
+-#ifdef _UUID_UUID_H
++#if defined (_UUID_UUID_H) || defined (_UL_LIBUUID_UUID_H)
+uuid_generate(uuidData);
+ReverseBytes([0], 4);
+ReverseBytes([4], 2);



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

2022-04-15 Thread Evangelos Foutras via arch-commits
Date: Saturday, April 16, 2022 @ 03:59:33
  Author: foutrelis
Revision: 442714

archrelease: copy trunk to testing-x86_64

Added:
  dialog/repos/testing-x86_64/
  dialog/repos/testing-x86_64/PKGBUILD
(from rev 442713, dialog/trunk/PKGBUILD)

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

Copied: dialog/repos/testing-x86_64/PKGBUILD (from rev 442713, 
dialog/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-04-16 03:59:33 UTC (rev 442714)
@@ -0,0 +1,37 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=dialog
+pkgver=1.3_20220414
+pkgrel=1
+epoch=1
+pkgdesc="A tool to display dialog boxes from shell scripts"
+arch=('x86_64')
+url="https://invisible-island.net/dialog/;
+license=('LGPL2.1')
+depends=('sh' 'ncurses')
+provides=('libdialog.so')
+source=(https://invisible-mirror.net/archives/$pkgname/$pkgname-${pkgver/_/-}.tgz{,.asc})
+sha256sums=('493781718642cdd58bdba1cdf2a26776ca855908710d813bd2e93810dc49ece2'
+'SKIP')
+validpgpkeys=('19882D92DDA4C400C22C0D56CC2AF4472167BE03') # Thomas E. Dickey 
(self-signed w/o SHA1) 
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+
+  ./configure \
+--prefix=/usr \
+--enable-nls \
+--with-libtool \
+--with-ncursesw
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+  make DESTDIR="$pkgdir" install-full
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-04-15 Thread Evangelos Foutras via arch-commits
Date: Saturday, April 16, 2022 @ 03:59:27
  Author: foutrelis
Revision: 442713

upgpkg: dialog 1:1.3_20220414-1: new upstream release

Modified:
  dialog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 20:00:49 UTC (rev 442712)
+++ PKGBUILD2022-04-16 03:59:27 UTC (rev 442713)
@@ -4,7 +4,7 @@
 # Contributor: Andreas Radke 
 
 pkgname=dialog
-pkgver=1.3_20220117
+pkgver=1.3_20220414
 pkgrel=1
 epoch=1
 pkgdesc="A tool to display dialog boxes from shell scripts"
@@ -14,7 +14,7 @@
 depends=('sh' 'ncurses')
 provides=('libdialog.so')
 
source=(https://invisible-mirror.net/archives/$pkgname/$pkgname-${pkgver/_/-}.tgz{,.asc})
-sha256sums=('754cb6bf7dc6a9ac5c1f80c13caa4d976e30a5a6e8b46f17b3bb9b080c31041f'
+sha256sums=('493781718642cdd58bdba1cdf2a26776ca855908710d813bd2e93810dc49ece2'
 'SKIP')
 validpgpkeys=('19882D92DDA4C400C22C0D56CC2AF4472167BE03') # Thomas E. Dickey 
(self-signed w/o SHA1) 
 



[arch-commits] Commit in fcitx5-pinyin-zhwiki/repos/community-any (PKGBUILD PKGBUILD)

2022-04-15 Thread Felix Yan via arch-commits
Date: Saturday, April 16, 2022 @ 03:50:40
  Author: felixonmars
Revision: 1186645

archrelease: copy trunk to community-any

Added:
  fcitx5-pinyin-zhwiki/repos/community-any/PKGBUILD
(from rev 1186644, fcitx5-pinyin-zhwiki/trunk/PKGBUILD)
Deleted:
  fcitx5-pinyin-zhwiki/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 03:50:26 UTC (rev 1186644)
+++ PKGBUILD2022-04-16 03:50:40 UTC (rev 1186645)
@@ -1,50 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=fcitx5-pinyin-zhwiki
-pkgname=(fcitx5-pinyin-zhwiki rime-pinyin-zhwiki)
-_converterver=0.2.3
-_zhwikiver=20220301
-_webslangver=20220312
-pkgver=$_converterver.$_webslangver
-pkgrel=1
-epoch=1
-pkgdesc="Fcitx 5 Pinyin Dictionary from zh.wikipedia.org"
-arch=('any')
-url="https://github.com/felixonmars/fcitx5-pinyin-zhwiki;
-license=('CCPL:by-sa' 'custom:GFDL')
-makedepends=('libime' 'opencc' 'pypinyin')
-source=(https://github.com/felixonmars/fcitx5-pinyin-zhwiki/archive/$_converterver/$pkgbase-$_converterver.tar.gz
-
https://github.com/felixonmars/fcitx5-pinyin-zhwiki/releases/download/$_converterver/web-slang-$_webslangver.source
-
https://dumps.wikimedia.org/zhwiki/$_zhwikiver/zhwiki-$_zhwikiver-all-titles-in-ns0.gz
-https://www.gnu.org/licenses/fdl-1.3.txt)
-sha512sums=('b09e4e29e4c3e5e9007f28d56e2ac07663ad56eb1e4004dad647de7f4b41522054a65c40f952bb3752ea6015b3b1adc30f95922749cd5653ea60b9d151dd4013'
-
'd1b458469bb0b83ad901e7eb6fe8bb0c74a1af8671fe41f07a2bb9ba7d1f723965075273de901dc91f1c51daeacc4eb1c73562c6fcd5d07b7abb4ffbf723f679'
-
'3c17ea751f78cd3ac4188214c81b82e0b70d336ce002c091436849eaf40c1b17dbaa02f897f6cdc8abdbb0329c07f5be50cdd9d9febbe4eca0586ce418b8df96'
-
'22d46818d3998ad841f537af4de7c50440dd918099fb6c5d4ab324cd71dc03066bfe1b67210a5efde77abd1d97b88da3c3dbfc39a24ae7248ee2d64e7f0fe6bb')
-
-_make="make -L VERSION=$_zhwikiver WEB_SLANG_VERSION=$_webslangver"
-
-prepare() {
-  cd $pkgbase-$_converterver
-  # Workaround pacman decompression
-  touch zhwiki-$_zhwikiver-all-titles-in-ns0.gz
-  ln -s ../zhwiki-$_zhwikiver-all-titles-in-ns0
-  ln -s ../web-slang-$_webslangver.source
-}
-
-build() {
-  cd $pkgbase-$_converterver
-  $_make zhwiki.dict zhwiki.dict.yaml
-}
-
-package_fcitx5-pinyin-zhwiki() {
-  cd $pkgbase-$_converterver
-  $_make DESTDIR="$pkgdir" install
-  install -Dm644 ../fdl-1.3.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
-}
-
-package_rime-pinyin-zhwiki() {
-  cd $pkgbase-$_converterver
-  $_make DESTDIR="$pkgdir" install_rime_dict
-  install -Dm644 ../fdl-1.3.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: fcitx5-pinyin-zhwiki/repos/community-any/PKGBUILD (from rev 1186644, 
fcitx5-pinyin-zhwiki/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 03:50:40 UTC (rev 1186645)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+pkgbase=fcitx5-pinyin-zhwiki
+pkgname=(fcitx5-pinyin-zhwiki rime-pinyin-zhwiki)
+_converterver=0.2.4
+_zhwikiver=20220401
+_webslangver=20220416
+pkgver=$_converterver.$_webslangver
+pkgrel=1
+epoch=1
+pkgdesc="Fcitx 5 Pinyin Dictionary from zh.wikipedia.org"
+arch=('any')
+url="https://github.com/felixonmars/fcitx5-pinyin-zhwiki;
+license=('CCPL:by-sa' 'custom:GFDL')
+makedepends=('libime' 'opencc' 'pypinyin')
+source=(https://github.com/felixonmars/fcitx5-pinyin-zhwiki/archive/$_converterver/$pkgbase-$_converterver.tar.gz
+
https://github.com/felixonmars/fcitx5-pinyin-zhwiki/releases/download/$_converterver/web-slang-$_webslangver.source
+
https://dumps.wikimedia.org/zhwiki/$_zhwikiver/zhwiki-$_zhwikiver-all-titles-in-ns0.gz
+https://www.gnu.org/licenses/fdl-1.3.txt)
+sha512sums=('f03215f0c6e137238a8c9f0ba557bf933ca2d4faf8c2a3aaa84f5e58485c8e0ace57f24d0cd855aa7a1d7e3001b4b36427c9a47ad04b92d11847bb5dbd24a709'
+
'f011aa03c6c7af0d842f52b4f7f7e1ce1c7b8628c02e3d75f4d56b84d7b52accb53393a00f787384e88c2c0b0d5da94e332b380ee219a239f762c1686b2f1aa4'
+
'61e6c67ab28102f0e9eb39470131e4ff583cd9149a261c61368836e722e0350072f857cc3b7152547d84313e96facf1c4d41c2b67005b8fb47b89a9f34b00017'
+
'22d46818d3998ad841f537af4de7c50440dd918099fb6c5d4ab324cd71dc03066bfe1b67210a5efde77abd1d97b88da3c3dbfc39a24ae7248ee2d64e7f0fe6bb')
+
+_make="make -L VERSION=$_zhwikiver WEB_SLANG_VERSION=$_webslangver"
+
+prepare() {
+  cd $pkgbase-$_converterver
+  # Workaround pacman decompression
+  touch zhwiki-$_zhwikiver-all-titles-in-ns0.gz
+  ln -s ../zhwiki-$_zhwikiver-all-titles-in-ns0
+  ln -s ../web-slang-$_webslangver.source
+}
+
+build() {
+  cd $pkgbase-$_converterver
+  $_make zhwiki.dict zhwiki.dict.yaml
+}
+
+package_fcitx5-pinyin-zhwiki() {
+  cd $pkgbase-$_converterver
+  

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

2022-04-15 Thread Felix Yan via arch-commits
Date: Saturday, April 16, 2022 @ 03:50:26
  Author: felixonmars
Revision: 1186644

upgpkg: fcitx5-pinyin-zhwiki 1:0.2.4.20220416-1

Modified:
  fcitx5-pinyin-zhwiki/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 02:14:37 UTC (rev 1186643)
+++ PKGBUILD2022-04-16 03:50:26 UTC (rev 1186644)
@@ -2,9 +2,9 @@
 
 pkgbase=fcitx5-pinyin-zhwiki
 pkgname=(fcitx5-pinyin-zhwiki rime-pinyin-zhwiki)
-_converterver=0.2.3
-_zhwikiver=20220301
-_webslangver=20220312
+_converterver=0.2.4
+_zhwikiver=20220401
+_webslangver=20220416
 pkgver=$_converterver.$_webslangver
 pkgrel=1
 epoch=1
@@ -17,9 +17,9 @@
 
https://github.com/felixonmars/fcitx5-pinyin-zhwiki/releases/download/$_converterver/web-slang-$_webslangver.source
 
https://dumps.wikimedia.org/zhwiki/$_zhwikiver/zhwiki-$_zhwikiver-all-titles-in-ns0.gz
 https://www.gnu.org/licenses/fdl-1.3.txt)
-sha512sums=('b09e4e29e4c3e5e9007f28d56e2ac07663ad56eb1e4004dad647de7f4b41522054a65c40f952bb3752ea6015b3b1adc30f95922749cd5653ea60b9d151dd4013'
-
'd1b458469bb0b83ad901e7eb6fe8bb0c74a1af8671fe41f07a2bb9ba7d1f723965075273de901dc91f1c51daeacc4eb1c73562c6fcd5d07b7abb4ffbf723f679'
-
'3c17ea751f78cd3ac4188214c81b82e0b70d336ce002c091436849eaf40c1b17dbaa02f897f6cdc8abdbb0329c07f5be50cdd9d9febbe4eca0586ce418b8df96'
+sha512sums=('f03215f0c6e137238a8c9f0ba557bf933ca2d4faf8c2a3aaa84f5e58485c8e0ace57f24d0cd855aa7a1d7e3001b4b36427c9a47ad04b92d11847bb5dbd24a709'
+
'f011aa03c6c7af0d842f52b4f7f7e1ce1c7b8628c02e3d75f4d56b84d7b52accb53393a00f787384e88c2c0b0d5da94e332b380ee219a239f762c1686b2f1aa4'
+
'61e6c67ab28102f0e9eb39470131e4ff583cd9149a261c61368836e722e0350072f857cc3b7152547d84313e96facf1c4d41c2b67005b8fb47b89a9f34b00017'
 
'22d46818d3998ad841f537af4de7c50440dd918099fb6c5d4ab324cd71dc03066bfe1b67210a5efde77abd1d97b88da3c3dbfc39a24ae7248ee2d64e7f0fe6bb')
 
 _make="make -L VERSION=$_zhwikiver WEB_SLANG_VERSION=$_webslangver"



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

2022-04-15 Thread Felix Yan via arch-commits
Date: Saturday, April 16, 2022 @ 02:14:37
  Author: felixonmars
Revision: 1186643

archrelease: copy trunk to community-any

Added:
  ammonite/repos/community-any/PKGBUILD
(from rev 1186642, ammonite/trunk/PKGBUILD)
Deleted:
  ammonite/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 02:14:12 UTC (rev 1186642)
+++ PKGBUILD2022-04-16 02:14:37 UTC (rev 1186643)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Thayne 
-# Contributor: Yiqiao Wang 
-# Contributor: wenLiangcan 
-
-pkgname=ammonite
-pkgver=2.5.2
-_scalaversion=2.13.2
-pkgrel=1
-pkgdesc="A cleanroom re-implementation of the Scala REPL from first 
principles. "
-arch=('any')
-url="https://github.com/lihaoyi/Ammonite;
-license=('MIT')
-depends=('bash' 'java-environment')
-makedepends=('mill')
-source=("https://github.com/lihaoyi/Ammonite/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-b2sums=('06aba1f1d58932f10c1066989f1f5010d620b51399794e534649140abad63663dd94bc99b1fe6a11007737bd839dfae069bf24cbceb52f84172b035997f44385')
-
-prepare() {
-  cd Ammonite-$pkgver
-  sed -i 
"s/'git/'true/;s/\"git\"/\"true\"/;s/\$latestTaggedVersion-\$commitsSinceTaggedVersion-\$gitHash/$pkgver/;s/^
\\.toInt$//;s/(tagName, false)/(\"$pkgver\", false)/" build.sc
-}
-
-build() {
-  cd Ammonite-$pkgver
-  TRAVIS_TAG=$pkgver mill -i amm[$_scalaversion].assembly
-}
-
-package() {
-  cd Ammonite-$pkgver
-  install -dm755 "$pkgdir"/usr/bin
-  (echo "#!/bin/sh"; cat out/amm/$_scalaversion/assembly.dest/out.jar) > 
"$pkgdir"/usr/bin/amm
-  chmod +x "$pkgdir"/usr/bin/amm
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: ammonite/repos/community-any/PKGBUILD (from rev 1186642, 
ammonite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 02:14:37 UTC (rev 1186643)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+# Contributor: Thayne 
+# Contributor: Yiqiao Wang 
+# Contributor: wenLiangcan 
+
+pkgname=ammonite
+pkgver=2.5.3
+_scalaversion=2.13.2
+pkgrel=1
+pkgdesc="A cleanroom re-implementation of the Scala REPL from first 
principles. "
+arch=('any')
+url="https://github.com/lihaoyi/Ammonite;
+license=('MIT')
+depends=('bash' 'java-environment')
+makedepends=('mill')
+source=("https://github.com/lihaoyi/Ammonite/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+b2sums=('6dfa6bdb8df600268fc7fe4e897fd6369b1e3c8b691f025b5b9e4edd8df88e75e134f5bb6b7cb0c47ca09839863af5e968adab95d684309b0d0caca4ad7d')
+
+prepare() {
+  cd Ammonite-$pkgver
+  sed -i 
"s/'git/'true/;s/\"git\"/\"true\"/;s/\$latestTaggedVersion-\$commitsSinceTaggedVersion-\$gitHash/$pkgver/;s/^
\\.toInt$//;s/(tagName, false)/(\"$pkgver\", false)/" build.sc
+}
+
+build() {
+  cd Ammonite-$pkgver
+  TRAVIS_TAG=$pkgver mill -i amm[$_scalaversion].assembly
+}
+
+package() {
+  cd Ammonite-$pkgver
+  install -dm755 "$pkgdir"/usr/bin
+  (echo "#!/bin/sh"; cat out/amm/$_scalaversion/assembly.dest/out.jar) > 
"$pkgdir"/usr/bin/amm
+  chmod +x "$pkgdir"/usr/bin/amm
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2022-04-15 Thread Felix Yan via arch-commits
Date: Saturday, April 16, 2022 @ 02:14:12
  Author: felixonmars
Revision: 1186642

upgpkg: ammonite 2.5.3-1

Modified:
  ammonite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 02:09:28 UTC (rev 1186641)
+++ PKGBUILD2022-04-16 02:14:12 UTC (rev 1186642)
@@ -4,7 +4,7 @@
 # Contributor: wenLiangcan 
 
 pkgname=ammonite
-pkgver=2.5.2
+pkgver=2.5.3
 _scalaversion=2.13.2
 pkgrel=1
 pkgdesc="A cleanroom re-implementation of the Scala REPL from first 
principles. "
@@ -14,7 +14,7 @@
 depends=('bash' 'java-environment')
 makedepends=('mill')
 
source=("https://github.com/lihaoyi/Ammonite/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-b2sums=('06aba1f1d58932f10c1066989f1f5010d620b51399794e534649140abad63663dd94bc99b1fe6a11007737bd839dfae069bf24cbceb52f84172b035997f44385')
+b2sums=('6dfa6bdb8df600268fc7fe4e897fd6369b1e3c8b691f025b5b9e4edd8df88e75e134f5bb6b7cb0c47ca09839863af5e968adab95d684309b0d0caca4ad7d')
 
 prepare() {
   cd Ammonite-$pkgver



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

2022-04-15 Thread Felix Yan via arch-commits
Date: Saturday, April 16, 2022 @ 02:09:28
  Author: felixonmars
Revision: 1186641

archrelease: copy trunk to community-x86_64

Added:
  deno/repos/community-x86_64/PKGBUILD
(from rev 1186640, deno/trunk/PKGBUILD)
Deleted:
  deno/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 02:09:09 UTC (rev 1186640)
+++ PKGBUILD2022-04-16 02:09:28 UTC (rev 1186641)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Metal A-wing <1 at 233 dot email>
-
-pkgname=deno
-pkgver=1.20.5
-pkgrel=1
-pkgdesc="A secure runtime for JavaScript and TypeScript"
-arch=('x86_64')
-url="https://deno.land;
-license=('MIT')
-options=('!lto')
-depends=('gcc-libs')
-makedepends=('git' 'python' 'cargo' 'nodejs')
-source=("git+https://github.com/denoland/deno#tag=v$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  git submodule update --init --recursive
-}
-
-build() {
-  cd $pkgname
-  cargo build --release
-}
-
-check() {
-  cd $pkgname
-  ./target/release/deno run cli/tests/testdata/002_hello.ts
-}
-
-package() {
-  cd $pkgname
-  install -Dm755 target/release/deno "$pkgdir"/usr/bin/deno
-
-  install -dm755 "$pkgdir"/usr/share/bash-completion/completions
-  ./target/release/deno completions bash > 
"$pkgdir"/usr/share/bash-completion/completions/deno
-  install -dm755 "$pkgdir"/usr/share/zsh/site-functions
-  ./target/release/deno completions zsh > 
"$pkgdir"/usr/share/zsh/site-functions/_deno
-  install -dm755 "$pkgdir"/usr/share/fish/vendor_functions.d
-  ./target/release/deno completions fish > 
"$pkgdir"/usr/share/fish/vendor_functions.d/deno.fish
-
-  install -Dm644 LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: deno/repos/community-x86_64/PKGBUILD (from rev 1186640, 
deno/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 02:09:28 UTC (rev 1186641)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Metal A-wing <1 at 233 dot email>
+
+pkgname=deno
+pkgver=1.20.6
+pkgrel=1
+pkgdesc="A secure runtime for JavaScript and TypeScript"
+arch=('x86_64')
+url="https://deno.land;
+license=('MIT')
+options=('!lto')
+depends=('gcc-libs')
+makedepends=('git' 'python' 'cargo' 'nodejs')
+source=("git+https://github.com/denoland/deno#tag=v$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  git submodule update --init --recursive
+}
+
+build() {
+  cd $pkgname
+  cargo build --release
+}
+
+check() {
+  cd $pkgname
+  ./target/release/deno run cli/tests/testdata/002_hello.ts
+}
+
+package() {
+  cd $pkgname
+  install -Dm755 target/release/deno "$pkgdir"/usr/bin/deno
+
+  install -dm755 "$pkgdir"/usr/share/bash-completion/completions
+  ./target/release/deno completions bash > 
"$pkgdir"/usr/share/bash-completion/completions/deno
+  install -dm755 "$pkgdir"/usr/share/zsh/site-functions
+  ./target/release/deno completions zsh > 
"$pkgdir"/usr/share/zsh/site-functions/_deno
+  install -dm755 "$pkgdir"/usr/share/fish/vendor_functions.d
+  ./target/release/deno completions fish > 
"$pkgdir"/usr/share/fish/vendor_functions.d/deno.fish
+
+  install -Dm644 LICENSE.md -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2022-04-15 Thread Felix Yan via arch-commits
Date: Saturday, April 16, 2022 @ 02:09:09
  Author: felixonmars
Revision: 1186640

upgpkg: deno 1.20.6-1

Modified:
  deno/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 00:15:47 UTC (rev 1186639)
+++ PKGBUILD2022-04-16 02:09:09 UTC (rev 1186640)
@@ -2,7 +2,7 @@
 # Contributor: Metal A-wing <1 at 233 dot email>
 
 pkgname=deno
-pkgver=1.20.5
+pkgver=1.20.6
 pkgrel=1
 pkgdesc="A secure runtime for JavaScript and TypeScript"
 arch=('x86_64')



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

2022-04-15 Thread David Runge via arch-commits
Date: Saturday, April 16, 2022 @ 00:15:47
  Author: dvzrv
Revision: 1186639

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 00:15:31 UTC (rev 1186638)
+++ PKGBUILD2022-04-16 00:15:47 UTC (rev 1186639)
@@ -1,38 +0,0 @@
-# Maintainer: David Runge 
-
-_name=orjson
-pkgname=python-orjson
-pkgver=3.6.7
-pkgrel=1
-pkgdesc="Fast, correct Python JSON library supporting dataclasses and 
datetimes"
-arch=(x86_64)
-url="https://github.com/ijl/orjson;
-license=(Apache MIT)
-depends=(python)
-makedepends=(maturin python-pip rust)
-checkdepends=(python-arrow python-pendulum python-psutil python-pytest
-python-pytz python-xxhash)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ijl/${_name}/archive/${pkgver}.tar.gz;)
-sha512sums=('5fd7d354f19a01a72218bca4bb7d767ebb73cc79398c5e32c482fed65a93d9f98d58835ebaa0c5e85a975e5eb29d2522a1051bad8f03de8bc227dc2838b8a72b')
-b2sums=('2d666885420745d1e783b1d2795bd9814530447818e14f7ea4203a225849869a30962da9a377a86af1f012e3119b9377a723ebf08cf61127b5e50bd3125bdc4a')
-
-build() {
-  cd "${_name}-${pkgver}"
-  maturin build --no-sdist --release --strip
-}
-
-check() {
-  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-  cd "${_name}-${pkgver}"
-  mkdir -vp testdir
-
-  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="testdir" 
--ignore-installed --no-deps target/wheels/*.whl
-  
PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
 pytest -v
-}
-
-package() {
-  cd "${_name}-${pkgver}"
-  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" 
--ignore-installed --no-deps target/wheels/*.whl
-  install -vDm 644 {CHANGELOG,README}.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 LICENSE-* -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

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



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

2022-04-15 Thread David Runge via arch-commits
Date: Saturday, April 16, 2022 @ 00:15:31
  Author: dvzrv
Revision: 1186638

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

Remove unneeded quotes and curly braces.
Switch to python-installer to install wheels.
Simplify pytest call in check().
Add debug package.

Modified:
  python-orjson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 23:36:42 UTC (rev 1186637)
+++ PKGBUILD2022-04-16 00:15:31 UTC (rev 1186638)
@@ -2,7 +2,7 @@
 
 _name=orjson
 pkgname=python-orjson
-pkgver=3.6.7
+pkgver=3.6.8
 pkgrel=1
 pkgdesc="Fast, correct Python JSON library supporting dataclasses and 
datetimes"
 arch=(x86_64)
@@ -9,30 +9,31 @@
 url="https://github.com/ijl/orjson;
 license=(Apache MIT)
 depends=(python)
-makedepends=(maturin python-pip rust)
+makedepends=(maturin python-installer rust)
 checkdepends=(python-arrow python-pendulum python-psutil python-pytest
 python-pytz python-xxhash)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ijl/${_name}/archive/${pkgver}.tar.gz;)
-sha512sums=('5fd7d354f19a01a72218bca4bb7d767ebb73cc79398c5e32c482fed65a93d9f98d58835ebaa0c5e85a975e5eb29d2522a1051bad8f03de8bc227dc2838b8a72b')
-b2sums=('2d666885420745d1e783b1d2795bd9814530447818e14f7ea4203a225849869a30962da9a377a86af1f012e3119b9377a723ebf08cf61127b5e50bd3125bdc4a')
+options=(debug)
+source=($pkgname-$pkgver.tar.gz::https://github.com/ijl/$_name/archive/$pkgver.tar.gz)
+sha512sums=('d929e26f98c5a50ccc45f782b0a7de85e68cc8631597f7c27262a35fa15d5d8c30a5493ab67279d5ea691562a572b0001509b809440c0a018cca1e99d665937d')
+b2sums=('520f038aaf058e2ddd6e41575d8fd6b88111a1627fd9000800bf695385a6292ce73911d37d268878ac6e08f3a84d5dc46eeb8ba7183d8bc5d0daee5b93a7e034')
 
 build() {
-  cd "${_name}-${pkgver}"
+  cd $_name-$pkgver
   maturin build --no-sdist --release --strip
 }
 
 check() {
-  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-  cd "${_name}-${pkgver}"
-  mkdir -vp testdir
+  local _site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
 
-  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="testdir" 
--ignore-installed --no-deps target/wheels/*.whl
-  
PYTHONPATH="testdir/usr/lib/python${python_version}/site-packages:${PYTHONPATH}"
 pytest -v
+  cd $_name-$pkgver
+  python -m installer --destdir=test_dir target/wheels/*.whl
+  export PYTHONPATH="test_dir/$_site_packages:$PYTHONPATH"
+  pytest -vv
 }
 
 package() {
-  cd "${_name}-${pkgver}"
-  PIP_CONFIG_FILE=/dev/null pip install --isolated --root="$pkgdir" 
--ignore-installed --no-deps target/wheels/*.whl
-  install -vDm 644 {CHANGELOG,README}.md -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-  install -vDm 644 LICENSE-* -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" target/wheels/*.whl
+  install -vDm 644 {CHANGELOG,README}.md -t "$pkgdir/usr/share/doc/$pkgname/"
+  install -vDm 644 LICENSE-* -t "$pkgdir/usr/share/licenses/$pkgname/"
 }



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 23:36:42
  Author: dvzrv
Revision: 1186637

archrelease: copy trunk to community-x86_64

Added:
  lv2lint/repos/community-x86_64/PKGBUILD
(from rev 1186636, lv2lint/trunk/PKGBUILD)
Deleted:
  lv2lint/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 23:36:32 UTC (rev 1186636)
+++ PKGBUILD2022-04-15 23:36:42 UTC (rev 1186637)
@@ -1,34 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=lv2lint
-pkgver=0.16.0
-pkgrel=1
-pkgdesc="Check whether a given LV2 plugin is up to the specification"
-arch=(x86_64)
-url="https://open-music-kontrollers.ch/lv2/lv2lint/;
-license=(Artistic2.0)
-depends=(glibc libelf)
-makedepends=(curl lilv lv2 meson)
-options=(debug)
-source=(https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz{,.asc})
-sha512sums=('987c4ef075d05fe26412877e3a0fabd4f83f6b1ea88e876da906b8b4239c8c55a57754a951b79ef9d0d835d882189696fd2bd858fede3e0c37b2d912dd8f6e2c'
-'SKIP')
-b2sums=('dbe9dd6809273b27460769c5a7ebb77b6d5ec93a5ced7f5c3a3f6edb56daac975647eaab92cd466df3f700ae502f4e2585044942b20e6c2f1dd440cd6f397d36'
-'SKIP')
-validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

-
-build() {
-  arch-meson -Donline-tests=enabled -Delf-tests=enabled build $pkgname-$pkgver
-  ninja -C build
-}
-
-check() {
-  ninja -C build test
-}
-
-package() {
-  depends+=(libcurl.so liblilv-0.so)
-
-  DESTDIR="$pkgdir" ninja -C build install
-  install -vDm 644 $pkgname-$pkgver/{ChangeLog,README.md,TODO} -t 
"$pkgdir/usr/share/doc/$pkgname/"
-}

Copied: lv2lint/repos/community-x86_64/PKGBUILD (from rev 1186636, 
lv2lint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 23:36:42 UTC (rev 1186637)
@@ -0,0 +1,34 @@
+# Maintainer: David Runge 
+
+pkgname=lv2lint
+pkgver=0.16.2
+pkgrel=1
+pkgdesc="Check whether a given LV2 plugin is up to the specification"
+arch=(x86_64)
+url="https://open-music-kontrollers.ch/lv2/lv2lint/;
+license=(Artistic2.0)
+depends=(glibc libelf)
+makedepends=(curl lilv lv2 meson)
+options=(debug)
+source=(https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz{,.asc})
+sha512sums=('3478dc8f29f9b34bcabe1c10d92af1e9450f549150bed2925a5065bed983b63ae0731348db1a828099bd9037b5f0e50e3f1125861a2d8bdd55ebad8bf638b45f'
+'SKIP')
+b2sums=('4d4abdd5979248e83079698664d6d9098fc7ae820f6db052693112573c17103d575858d25912b1d84200258e6d4c3068579c641e7e523ce675bcc2b252bb5c7f'
+'SKIP')
+validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

+
+build() {
+  arch-meson -Donline-tests=enabled -Delf-tests=enabled build $pkgname-$pkgver
+  ninja -C build
+}
+
+check() {
+  ninja -C build test
+}
+
+package() {
+  depends+=(libcurl.so liblilv-0.so)
+
+  DESTDIR="$pkgdir" ninja -C build install
+  install -vDm 644 $pkgname-$pkgver/{ChangeLog,README.md,TODO} -t 
"$pkgdir/usr/share/doc/$pkgname/"
+}



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 23:36:32
  Author: dvzrv
Revision: 1186636

upgpkg: lv2lint 0.16.2-1: Upgrade to 0.16.2.

Modified:
  lv2lint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 23:34:20 UTC (rev 1186635)
+++ PKGBUILD2022-04-15 23:36:32 UTC (rev 1186636)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=lv2lint
-pkgver=0.16.0
+pkgver=0.16.2
 pkgrel=1
 pkgdesc="Check whether a given LV2 plugin is up to the specification"
 arch=(x86_64)
@@ -11,9 +11,9 @@
 makedepends=(curl lilv lv2 meson)
 options=(debug)
 
source=(https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz{,.asc})
-sha512sums=('987c4ef075d05fe26412877e3a0fabd4f83f6b1ea88e876da906b8b4239c8c55a57754a951b79ef9d0d835d882189696fd2bd858fede3e0c37b2d912dd8f6e2c'
+sha512sums=('3478dc8f29f9b34bcabe1c10d92af1e9450f549150bed2925a5065bed983b63ae0731348db1a828099bd9037b5f0e50e3f1125861a2d8bdd55ebad8bf638b45f'
 'SKIP')
-b2sums=('dbe9dd6809273b27460769c5a7ebb77b6d5ec93a5ced7f5c3a3f6edb56daac975647eaab92cd466df3f700ae502f4e2585044942b20e6c2f1dd440cd6f397d36'
+b2sums=('4d4abdd5979248e83079698664d6d9098fc7ae820f6db052693112573c17103d575858d25912b1d84200258e6d4c3068579c641e7e523ce675bcc2b252bb5c7f'
 'SKIP')
 validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

 



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 23:34:20
  Author: dvzrv
Revision: 1186635

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 23:34:10 UTC (rev 1186634)
+++ PKGBUILD2022-04-15 23:34:20 UTC (rev 1186635)
@@ -1,48 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=mephisto.lv2
-pkgver=0.18.0
-pkgrel=1
-pkgdesc="A Just-in-Time FAUST compiler embedded in an LV2 plugin"
-arch=(x86_64)
-url="https://open-music-kontrollers.ch/lv2/mephisto/;
-license=(Artistic2.0)
-groups=(lv2-plugins pro-audio)
-depends=(glibc libglvnd libvterm libx11 lv2-host ttf-fira-code ttf-fira-sans)
-makedepends=(faust fontconfig glew glu lv2 meson)
-checkdepends=(lv2lint)
-source=(https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz{,.asc})
-sha512sums=('1ed3f2fd005069163d4180bdce1104236a66746d1572561c4e4dcfafede73b460601ee10b0f4d64c8bf1b25c0810d71103a0ec9cf02944519791f47c69e2dddc'
-'SKIP')
-b2sums=('ee925a28644ae1144af73ae0dbf4ddf7cf062fddfe3b8422f812f573fd82f53a4aac93178219afacba37afad683f99280fea48aedb0dd4c751a30ffd9938a69e'
-'SKIP')
-validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

-
-prepare() {
-  local _subproject
-  # disable accidental -Werror in subprojects
-  for _subproject in $pkgname-$pkgver/subprojects/*/meson.build; do
-sed -e 's/werror=true/werror=false/g' -i $_subproject
-  done
-}
-
-build() {
-  arch-meson build $pkgname-$pkgver
-  ninja -C build
-}
-
-check() {
-  ninja -C build test || echo "Known issue with lv2lint call, upstream has 
been notified."
-}
-
-package() {
-  depends+=(libGLEW.so libfaust.so libfontconfig.so)
-
-  DESTDIR="$pkgdir" ninja -C build install
-  # devendor ttf-fira-code
-  rm -vf "$pkgdir/usr/lib/lv2/$pkgname/"*.ttf
-  for font_type in {Bold,Light,Medium,Regular}; do
-ln -svf /usr/share/fonts/TTF/FiraCode-$font_type.ttf 
"$pkgdir/usr/lib/lv2/$pkgname/"
-  done
-  install -vDm 644 $pkgname-$pkgver/{ChangeLog,README.md} -t 
"$pkgdir/usr/share/doc/$pkgname/"
-}

Copied: mephisto.lv2/repos/community-x86_64/PKGBUILD (from rev 1186634, 
mephisto.lv2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 23:34:20 UTC (rev 1186635)
@@ -0,0 +1,41 @@
+# Maintainer: David Runge 
+
+pkgname=mephisto.lv2
+pkgver=0.18.2
+pkgrel=1
+pkgdesc="A Just-in-Time FAUST compiler embedded in an LV2 plugin"
+arch=(x86_64)
+url="https://open-music-kontrollers.ch/lv2/mephisto/;
+license=(Artistic2.0)
+groups=(lv2-plugins pro-audio)
+depends=(glibc libglvnd libvterm libx11 lv2-host ttf-fira-code ttf-fira-sans)
+makedepends=(faust fontconfig glew glu lv2 meson)
+checkdepends=(lv2lint)
+options=(debug)
+source=(https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz{,.asc})
+sha512sums=('6136dcc32c41bd494f156e84be0fb417efbcb42fbddfaff7f54d3e11dc4bba29957cf919b25ada27b8d0e796abbfbe3c7bd0e0fba3698d4871b166b38ba5fa2d'
+'SKIP')
+b2sums=('5ef07088b8ba006dcfc511c7b34a4fabb5482b4a3bd7287ecafbdb0414a10d7f7058a21ea66e94e78c35c3b32dc0e9911e40b920f1dddcd8f377e5596b521c7d'
+'SKIP')
+validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

+
+build() {
+  arch-meson build $pkgname-$pkgver
+  ninja -C build
+}
+
+check() {
+  ninja -C build test
+}
+
+package() {
+  depends+=(libGLEW.so libfaust.so libfontconfig.so)
+
+  DESTDIR="$pkgdir" ninja -C build install
+  # devendor ttf-fira-code
+  rm -vf "$pkgdir/usr/lib/lv2/$pkgname/"*.ttf
+  for font_type in {Bold,Light,Medium,Regular}; do
+ln -svf /usr/share/fonts/TTF/FiraCode-$font_type.ttf 
"$pkgdir/usr/lib/lv2/$pkgname/"
+  done
+  install -vDm 644 $pkgname-$pkgver/{ChangeLog,README.md} -t 
"$pkgdir/usr/share/doc/$pkgname/"
+}



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 23:34:10
  Author: dvzrv
Revision: 1186634

upgpkg: mephisto.lv2 0.18.2-1: Upgrade to 0.18.2.

Remove fixes for removal of -Werror and forced passing of tests as upstream 
fixed this.
Add debug package.

Modified:
  mephisto.lv2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 20:33:04 UTC (rev 1186633)
+++ PKGBUILD2022-04-15 23:34:10 UTC (rev 1186634)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=mephisto.lv2
-pkgver=0.18.0
+pkgver=0.18.2
 pkgrel=1
 pkgdesc="A Just-in-Time FAUST compiler embedded in an LV2 plugin"
 arch=(x86_64)
@@ -11,21 +11,14 @@
 depends=(glibc libglvnd libvterm libx11 lv2-host ttf-fira-code ttf-fira-sans)
 makedepends=(faust fontconfig glew glu lv2 meson)
 checkdepends=(lv2lint)
+options=(debug)
 
source=(https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz{,.asc})
-sha512sums=('1ed3f2fd005069163d4180bdce1104236a66746d1572561c4e4dcfafede73b460601ee10b0f4d64c8bf1b25c0810d71103a0ec9cf02944519791f47c69e2dddc'
+sha512sums=('6136dcc32c41bd494f156e84be0fb417efbcb42fbddfaff7f54d3e11dc4bba29957cf919b25ada27b8d0e796abbfbe3c7bd0e0fba3698d4871b166b38ba5fa2d'
 'SKIP')
-b2sums=('ee925a28644ae1144af73ae0dbf4ddf7cf062fddfe3b8422f812f573fd82f53a4aac93178219afacba37afad683f99280fea48aedb0dd4c751a30ffd9938a69e'
+b2sums=('5ef07088b8ba006dcfc511c7b34a4fabb5482b4a3bd7287ecafbdb0414a10d7f7058a21ea66e94e78c35c3b32dc0e9911e40b920f1dddcd8f377e5596b521c7d'
 'SKIP')
 validpgpkeys=('5AE26CEBBF49705C19FB273A30258F99258CB76A') # Hanspeter Portner 

 
-prepare() {
-  local _subproject
-  # disable accidental -Werror in subprojects
-  for _subproject in $pkgname-$pkgver/subprojects/*/meson.build; do
-sed -e 's/werror=true/werror=false/g' -i $_subproject
-  done
-}
-
 build() {
   arch-meson build $pkgname-$pkgver
   ninja -C build
@@ -32,7 +25,7 @@
 }
 
 check() {
-  ninja -C build test || echo "Known issue with lv2lint call, upstream has 
been notified."
+  ninja -C build test
 }
 
 package() {



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

2022-04-15 Thread Jelle van der Waa via arch-commits
Date: Friday, April 15, 2022 @ 20:33:04
  Author: jelle
Revision: 1186633

wip 3.1.0 update

Modified:
  httpie/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 20:00:27 UTC (rev 1186632)
+++ PKGBUILD2022-04-15 20:33:04 UTC (rev 1186633)
@@ -4,13 +4,14 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=2.6.0
-pkgrel=2
+pkgver=3.1.0
+pkgrel=1
 pkgdesc="human-friendly CLI HTTP client for the API era"
 url="https://github.com/httpie/httpie;
 depends=('python-defusedxml'
  'python-pygments'
  'python-pysocks'
+ 'python-multidict'
  'python-requests'
  'python-requests-toolbelt'
  'python-charset-normalizer')
@@ -17,6 +18,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest'
   'python-pytest-httpbin'
+  'python-pytest-lazy-fixture'
   'python-responses')
 conflicts=(python-httpie)
 replaces=(python-httpie python2-httpie)
@@ -23,7 +25,7 @@
 license=('BSD')
 arch=('any')
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/httpie/httpie/archive/$pkgver.tar.gz;)
-sha256sums=('3bcd9a8cb2b11299da12d3af36c095c6d4b665e41c395898a07f1ae4d99fc14a')
+sha256sums=('823cb4856cb7edf016939b53fcc126d10416688980cf54895b3355b39a3f8dba')
 
 build() {
   cd $pkgname-$pkgver



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 20:00:27
  Author: dvzrv
Revision: 1186632

archrelease: copy trunk to community-x86_64

Added:
  carla/repos/community-x86_64/PKGBUILD
(from rev 1186631, carla/trunk/PKGBUILD)
Deleted:
  carla/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 20:00:09 UTC (rev 1186631)
+++ PKGBUILD2022-04-15 20:00:27 UTC (rev 1186632)
@@ -1,49 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Llewelyn Trahaearn 
-# Contributor: falkTX 
-
-_name=Carla
-pkgname=carla
-pkgver=2.4.2
-pkgrel=2
-pkgdesc="Audio Plugin Host"
-arch=(x86_64)
-url="https://kxstudio.linuxaudio.org/Applications:Carla;
-license=(GPL2)
-groups=(pro-audio)
-depends=(alsa-lib gcc-libs glibc hicolor-icon-theme libglvnd libx11
-python-pyqt5 python-pyliblo python-rdflib qt5-base qt5-svg)
-makedepends=(file fluidsynth freetype2 git libsndfile liblo libpulse qt5-tools)
-optdepends=(
-  'jack: for using carla with JACK'
-  'lv2-host: for the LV2 plugin'
-  'vst-host: for the VST plugin'
-)
-provides=(dssi-host ladspa-host lv2-host vst-host vst3-host)
-options=(debug)
-source=(
-  git+https://github.com/falkTX/$pkgname#tag=v$pkgver?signed
-)
-sha512sums=('SKIP')
-b2sums=('SKIP')
-validpgpkeys=('62B11043D2F6EB6672D93103CDBAA37ABC74FBA0')  # falkTX 

-
-prepare() {
-  cd $pkgname
-  # fix issue with python-pyqt5/ python 3.10: 
https://github.com/falkTX/Carla/issues/1590
-  git cherry-pick -n 7e16efba89c180f170c6fe22c773742cfbb89f17
-}
-
-build() {
-  make features -C $pkgname
-  make -C $pkgname
-}
-
-package() {
-  depends+=(libasound.so libfluidsynth.so libfreetype.so liblo.so libmagic.so
-  libpulse.so libsndfile.so)
-
-  make DEFAULT_QT=5 DESTDIR="$pkgdir/" PREFIX=/usr install -C $pkgname
-  install -vDm 644 $pkgname/README.md -t "${pkgdir}/usr/share/doc/$pkgname/"
-}
-# vim:set ts=2 sw=2 et:

Copied: carla/repos/community-x86_64/PKGBUILD (from rev 1186631, 
carla/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 20:00:27 UTC (rev 1186632)
@@ -0,0 +1,49 @@
+# Maintainer: David Runge 
+# Contributor: Llewelyn Trahaearn 
+# Contributor: falkTX 
+
+_name=Carla
+pkgname=carla
+pkgver=2.4.3
+pkgrel=1
+pkgdesc="Audio Plugin Host"
+arch=(x86_64)
+url="https://kxstudio.linuxaudio.org/Applications:Carla;
+license=(GPL2)
+groups=(pro-audio)
+depends=(alsa-lib gcc-libs glibc hicolor-icon-theme libglvnd libx11
+python-pyqt5 python-pyliblo python-rdflib qt5-base qt5-svg)
+makedepends=(file fluidsynth freetype2 git libsndfile liblo libpulse qt5-tools)
+optdepends=(
+  'jack: for using carla with JACK'
+  'lv2-host: for the LV2 plugin'
+  'vst-host: for the VST plugin'
+)
+provides=(dssi-host ladspa-host lv2-host vst-host vst3-host)
+options=(debug)
+source=(
+  git+https://github.com/falkTX/$pkgname#tag=v$pkgver?signed
+)
+sha512sums=('SKIP')
+b2sums=('SKIP')
+validpgpkeys=('62B11043D2F6EB6672D93103CDBAA37ABC74FBA0')  # falkTX 

+
+prepare() {
+  cd $pkgname
+  # fix issue with python-pyqt5/ python 3.10: 
https://github.com/falkTX/Carla/issues/1590
+  git cherry-pick -n 7e16efba89c180f170c6fe22c773742cfbb89f17
+}
+
+build() {
+  make features -C $pkgname
+  make -C $pkgname
+}
+
+package() {
+  depends+=(libasound.so libfluidsynth.so libfreetype.so liblo.so libmagic.so
+  libpulse.so libsndfile.so)
+
+  make DEFAULT_QT=5 DESTDIR="$pkgdir" PREFIX=/usr install -C $pkgname
+  install -vDm 644 $pkgname/README.md -t "$pkgdir/usr/share/doc/$pkgname/"
+}
+# vim:set ts=2 sw=2 et:



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 20:00:09
  Author: dvzrv
Revision: 1186631

upgpkg: carla 2.4.3-1: Upgrade to 2.4.3.

Modified:
  carla/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 19:59:59 UTC (rev 1186630)
+++ PKGBUILD2022-04-15 20:00:09 UTC (rev 1186631)
@@ -4,8 +4,8 @@
 
 _name=Carla
 pkgname=carla
-pkgver=2.4.2
-pkgrel=2
+pkgver=2.4.3
+pkgrel=1
 pkgdesc="Audio Plugin Host"
 arch=(x86_64)
 url="https://kxstudio.linuxaudio.org/Applications:Carla;
@@ -43,7 +43,7 @@
   depends+=(libasound.so libfluidsynth.so libfreetype.so liblo.so libmagic.so
   libpulse.so libsndfile.so)
 
-  make DEFAULT_QT=5 DESTDIR="$pkgdir/" PREFIX=/usr install -C $pkgname
-  install -vDm 644 $pkgname/README.md -t "${pkgdir}/usr/share/doc/$pkgname/"
+  make DEFAULT_QT=5 DESTDIR="$pkgdir" PREFIX=/usr install -C $pkgname
+  install -vDm 644 $pkgname/README.md -t "$pkgdir/usr/share/doc/$pkgname/"
 }
 # vim:set ts=2 sw=2 et:



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 19:59:59
  Author: dvzrv
Revision: 1186630

Removed community-x86_64 for agordejo

Deleted:
  agordejo/repos/community-x86_64/



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 19:59:57
  Author: dvzrv
Revision: 1186629

archrelease: copy trunk to community-any

Added:
  agordejo/repos/community-any/
  agordejo/repos/community-any/PKGBUILD
(from rev 1186628, agordejo/trunk/PKGBUILD)

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

Copied: agordejo/repos/community-any/PKGBUILD (from rev 1186628, 
agordejo/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-04-15 19:59:57 UTC (rev 1186629)
@@ -0,0 +1,28 @@
+# Maintainer: David Runge 
+
+pkgname=agordejo
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="A music production session manager"
+arch=(any)
+url="https://www.laborejo.org/agordejo/;
+license=(GPL3)
+groups=(pro-audio)
+depends=(hicolor-icon-theme new-session-manager python python-pyqt5
+python-pyxdg ttf-dejavu)
+source=(https://laborejo.org/downloads/$pkgname-$pkgver.tar.gz{,.sig})
+sha512sums=('9b4b2a9e8b80b25014ddf5882b6ea3864e925525f30a5e5253dcb410e3d7641729f1f6ce338e2a7f27294d97ed5776d5cbde1a67ab4dd60e3d59a0c78b71259d'
+'SKIP')
+b2sums=('28a9c8e9959ce4358ea5a7512dfe25f6b6f3be028a1321116eafb244880828dc1aa5b57c1e42b1571f184bee1764c919323da50b41506ad735083800c73ccbd5'
+'SKIP')
+validpgpkeys=('45D952EF384ADFBB00913E3428C6A306F2909FEE') # Nils Hilbricht 

+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make DESTDIR="$pkgdir" install -C $pkgname-$pkgver
+}



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 19:59:44
  Author: dvzrv
Revision: 1186628

upgpkg: agordejo 0.4.0-1: Upgrade to 0.4.0.

This package is now fully Python interpreted and therefore of type any.

Modified:
  agordejo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 19:51:06 UTC (rev 1186627)
+++ PKGBUILD2022-04-15 19:59:44 UTC (rev 1186628)
@@ -1,29 +1,28 @@
 # Maintainer: David Runge 
 
 pkgname=agordejo
-pkgver=0.3.1
+pkgver=0.4.0
 pkgrel=1
 pkgdesc="A music production session manager"
-arch=(x86_64)
+arch=(any)
 url="https://www.laborejo.org/agordejo/;
 license=(GPL3)
 groups=(pro-audio)
-depends=(glibc hicolor-icon-theme new-session-manager python python-pyqt5
-ttf-dejavu)
-source=("https://laborejo.org/downloads/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha512sums=('addb91c53acd7ff1a608d25d1ca6901e502ec384b38a474100dbf0f317ebefcfa83b33f99bfc6aa5053b575e5f592bbe6b9bbe9b4f06b6417261449ef653e2fc'
+depends=(hicolor-icon-theme new-session-manager python python-pyqt5
+python-pyxdg ttf-dejavu)
+source=(https://laborejo.org/downloads/$pkgname-$pkgver.tar.gz{,.sig})
+sha512sums=('9b4b2a9e8b80b25014ddf5882b6ea3864e925525f30a5e5253dcb410e3d7641729f1f6ce338e2a7f27294d97ed5776d5cbde1a67ab4dd60e3d59a0c78b71259d'
 'SKIP')
-b2sums=('8ceda940dd33f390de9b0ece12a649c03cd433ea46aa634db8bbed0017022f6c54b06ac105a8ce1cc9e6a3c894cfa638544be848e4255886e2bfae7fe0d9ea24'
+b2sums=('28a9c8e9959ce4358ea5a7512dfe25f6b6f3be028a1321116eafb244880828dc1aa5b57c1e42b1571f184bee1764c919323da50b41506ad735083800c73ccbd5'
 'SKIP')
 validpgpkeys=('45D952EF384ADFBB00913E3428C6A306F2909FEE') # Nils Hilbricht 

 
 build() {
-  cd "$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
+  make DESTDIR="$pkgdir" install -C $pkgname-$pkgver
 }



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 19:51:06
  Author: dvzrv
Revision: 1186627

Removed community-x86_64 for patroneo

Deleted:
  patroneo/repos/community-x86_64/



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 19:51:02
  Author: dvzrv
Revision: 1186626

archrelease: copy trunk to community-any

Added:
  patroneo/repos/community-any/
  patroneo/repos/community-any/PKGBUILD
(from rev 1186625, patroneo/trunk/PKGBUILD)

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

Copied: patroneo/repos/community-any/PKGBUILD (from rev 1186625, 
patroneo/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-04-15 19:51:02 UTC (rev 1186626)
@@ -0,0 +1,28 @@
+# Maintainer: David Runge 
+
+pkgname=patroneo
+pkgver=2.3.1
+pkgrel=1
+pkgdesc="An easy to use pattern based midi sequencer"
+arch=(any)
+url="https://www.laborejo.org/patroneo/;
+license=(GPL3)
+groups=(pro-audio)
+depends=(hicolor-icon-theme libcalfbox-lss python python-pyqt5 ttf-dejavu)
+optdepends=('new-session-manager: for session management')
+source=(https://www.laborejo.org/downloads/$pkgname-$pkgver.tar.gz{,.sig})
+sha512sums=('c17a40d6d4bba370f7dada316d81bde9d2c0f7dbb501eca0af8e3641f70de41aae34879222fb3e3f779f7a71865c2639c14be833c73e2371969822e8b04d3c0b'
+'SKIP')
+b2sums=('e096bf1304ed5e09dfeda3c0c72280879f6f12cb9ea1fdcf15583a858b728ee9596b24d724fd706244b1786e1bb652478ea91d8fa8819156c04ba77d2f91847b'
+'SKIP')
+validpgpkeys=('45D952EF384ADFBB00913E3428C6A306F2909FEE') # Nils Hilbricht 

+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make DESTDIR="$pkgdir" install -C $pkgname-$pkgver
+}



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 19:50:48
  Author: dvzrv
Revision: 1186625

upgpkg: patroneo 2.3.1-1: Upgrade to 2.3.1.

The package now makes use of libcalfbox-lss.

Modified:
  patroneo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 19:47:51 UTC (rev 1186624)
+++ PKGBUILD2022-04-15 19:50:48 UTC (rev 1186625)
@@ -1,32 +1,28 @@
 # Maintainer: David Runge 
 
 pkgname=patroneo
-pkgver=2.3.0
+pkgver=2.3.1
 pkgrel=1
 pkgdesc="An easy to use pattern based midi sequencer"
-arch=(x86_64)
+arch=(any)
 url="https://www.laborejo.org/patroneo/;
 license=(GPL3)
 groups=(pro-audio)
-depends=(glibc hicolor-icon-theme python python-pyqt5 ttf-dejavu)
-makedepends=(glib2 jack libsndfile util-linux-libs)
+depends=(hicolor-icon-theme libcalfbox-lss python python-pyqt5 ttf-dejavu)
 optdepends=('new-session-manager: for session management')
-source=("https://www.laborejo.org/downloads/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha512sums=('d2b6e7a6bd712130d36be2448f5a4c6225d7bd2f868440df41c523f482350687dc32e80a53388d461c9b8ae4c1f5f5b1bd1d712639cb6f8e7a357ea1557ee584'
+source=(https://www.laborejo.org/downloads/$pkgname-$pkgver.tar.gz{,.sig})
+sha512sums=('c17a40d6d4bba370f7dada316d81bde9d2c0f7dbb501eca0af8e3641f70de41aae34879222fb3e3f779f7a71865c2639c14be833c73e2371969822e8b04d3c0b'
 'SKIP')
-b2sums=('4e48ac208b9f7bd0b6c6952c67c1f94f4da29e7e9b6959b4fd624c6fcab28e280916df8fe89a176902f0254ec3cadafb4d22c73182672ace2e856272a7ec782f'
+b2sums=('e096bf1304ed5e09dfeda3c0c72280879f6f12cb9ea1fdcf15583a858b728ee9596b24d724fd706244b1786e1bb652478ea91d8fa8819156c04ba77d2f91847b'
 'SKIP')
 validpgpkeys=('45D952EF384ADFBB00913E3428C6A306F2909FEE') # Nils Hilbricht 

 
 build() {
-  cd "$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  depends+=(libglib-2.0.so libjack.so libsndfile.so libuuid.so)
-
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
+  make DESTDIR="$pkgdir" install -C $pkgname-$pkgver
 }



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 19:47:51
  Author: dvzrv
Revision: 1186624

Removed community-x86_64 for fluajho

Deleted:
  fluajho/repos/community-x86_64/



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 19:47:46
  Author: dvzrv
Revision: 1186623

archrelease: copy trunk to community-any

Added:
  fluajho/repos/community-any/
  fluajho/repos/community-any/PKGBUILD
(from rev 1186622, fluajho/trunk/PKGBUILD)

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

Copied: fluajho/repos/community-any/PKGBUILD (from rev 1186622, 
fluajho/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-04-15 19:47:46 UTC (rev 1186623)
@@ -0,0 +1,29 @@
+# Maintainer: David Runge 
+
+pkgname=fluajho
+pkgver=1.7.2
+pkgrel=1
+pkgdesc="A simple sf2 soundfont host/player"
+arch=(any)
+url="https://www.laborejo.org/fluajho/;
+license=(GPL3)
+groups=(pro-audio)
+depends=(hicolor-icon-theme libcalfbox-lss python python-pyqt5 ttf-dejavu)
+optdepends=('new-session-manager: Session management')
+provides=(soundfont-synthesizer)
+source=(https://www.laborejo.org/downloads/$pkgname-$pkgver.tar.gz{,.sig})
+sha512sums=('3b74edb734710781723df2b182a2dbab2a52af3167ae79fffdec9ccbae4ed8046012513a507e6ebc4852ff7ad57f3b3df231128b498f186d5128600fc26cc6b6'
+'SKIP')
+b2sums=('d20d31d9db743aa56c24422ab0a8d593118be4138d13caffba1e978d37583ac32b6c5871210a39752751cfef4616f4f6f3510c3c9038332787b97852d908823a'
+'SKIP')
+validpgpkeys=('45D952EF384ADFBB00913E3428C6A306F2909FEE') # Nils Hilbricht 

+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make DESTDIR="$pkgdir/" install -C $pkgname-$pkgver
+}



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 19:47:38
  Author: dvzrv
Revision: 1186622

upgpkg: fluajho 1.7.2-1: Upgrade to 1.7.2.

The package now makes use of libcalfbox-lss.

Modified:
  fluajho/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 19:45:40 UTC (rev 1186621)
+++ PKGBUILD2022-04-15 19:47:38 UTC (rev 1186622)
@@ -1,34 +1,29 @@
 # Maintainer: David Runge 
 
 pkgname=fluajho
-pkgver=1.7.1
+pkgver=1.7.2
 pkgrel=1
 pkgdesc="A simple sf2 soundfont host/player"
-arch=(x86_64)
+arch=(any)
 url="https://www.laborejo.org/fluajho/;
 license=(GPL3)
 groups=(pro-audio)
-depends=(glibc hicolor-icon-theme python python-pyqt5 ttf-dejavu)
-makedepends=(fluidsynth glib2 jack libsndfile util-linux-libs ncurses)
+depends=(hicolor-icon-theme libcalfbox-lss python python-pyqt5 ttf-dejavu)
 optdepends=('new-session-manager: Session management')
 provides=(soundfont-synthesizer)
-source=("https://www.laborejo.org/downloads/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha512sums=('4b7798796ab3133cc55b9fa705cc990055de21b51c7099bc1ae5e55cdcf3167b613265f288634fa61e88c3ee5467946e799c9c7d48605c91030904d602d7ed50'
+source=(https://www.laborejo.org/downloads/$pkgname-$pkgver.tar.gz{,.sig})
+sha512sums=('3b74edb734710781723df2b182a2dbab2a52af3167ae79fffdec9ccbae4ed8046012513a507e6ebc4852ff7ad57f3b3df231128b498f186d5128600fc26cc6b6'
 'SKIP')
-b2sums=('de632e9fab25b0ce0f69a897f8cd1f61eca7f5a67a5864476785962998d7f3f78c718ba55a8ba05a3645a52c383104f133b975a69899d805d61ce5e34cd44716'
+b2sums=('d20d31d9db743aa56c24422ab0a8d593118be4138d13caffba1e978d37583ac32b6c5871210a39752751cfef4616f4f6f3510c3c9038332787b97852d908823a'
 'SKIP')
 validpgpkeys=('45D952EF384ADFBB00913E3428C6A306F2909FEE') # Nils Hilbricht 

 
 build() {
-  cd "$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  depends+=(libfluidsynth.so libglib-2.0.so libjack.so libncursesw.so
-  libsndfile.so libuuid.so)
-
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
+  make DESTDIR="$pkgdir/" install -C $pkgname-$pkgver
 }



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

2022-04-15 Thread Daniel M. Capella via arch-commits
Date: Friday, April 15, 2022 @ 19:45:40
  Author: polyzen
Revision: 1186621

archrelease: copy trunk to community-any

Added:
  rstcheck/repos/community-any/PKGBUILD
(from rev 1186620, rstcheck/trunk/PKGBUILD)
Deleted:
  rstcheck/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 19:45:21 UTC (rev 1186620)
+++ PKGBUILD2022-04-15 19:45:40 UTC (rev 1186621)
@@ -1,34 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=rstcheck
-pkgver=3.4.0
-pkgrel=1
-pkgdesc='Checks syntax of reStructuredText and code blocks nested within it'
-arch=('any')
-url=https://github.com/myint/rstcheck
-license=('MIT')
-depends=('python-docutils')
-makedepends=('python-setuptools')
-checkdepends=('python-sphinx')
-optdepends=('python-sphinx: Sphinx support')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('a142f780bcfa5d17407f1729c66a45ddbbb979789dafda16b19aa347ea8a2d4c')
-b2sums=('f317283367fb581a8623fb3acf7265c01d895b84c23f20b3fcab2fb6d3db1a215c0c6ad9ec59bbbdc6240ffcb2533036b5605dad799a04930383afb323b152d8')
-
-build() {
-  cd rstcheck-$pkgver
-  python setup.py build
-}
-
-check() {
- cd rstcheck-$pkgver
- ./test_rstcheck.py
-}
-
-package() {
-  cd rstcheck-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/rstcheck LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rstcheck/repos/community-any/PKGBUILD (from rev 1186620, 
rstcheck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 19:45:40 UTC (rev 1186621)
@@ -0,0 +1,34 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=rstcheck
+pkgver=3.5.0
+pkgrel=1
+pkgdesc='Checks syntax of reStructuredText and code blocks nested within it'
+arch=('any')
+url=https://github.com/myint/rstcheck
+license=('MIT')
+depends=('python-docutils')
+makedepends=('python-setuptools')
+checkdepends=('python-sphinx')
+optdepends=('python-sphinx: Sphinx support')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
+sha256sums=('d4b035300b7d898403544f38c3a4980171ce85f487d25e188347bbafb6ee58c0')
+b2sums=('f773ccac6f98a317b195c0e6d948fd637fb5e93e187b64614f92aa315ed21e112e1c7ba9850500ce02210543388b716ffe1a58f5ef2a387697ed98d75fb4be40')
+
+build() {
+  cd rstcheck-$pkgver
+  python setup.py build
+}
+
+check() {
+ cd rstcheck-$pkgver
+ ./test_rstcheck.py
+}
+
+package() {
+  cd rstcheck-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/rstcheck LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-04-15 Thread Daniel M. Capella via arch-commits
Date: Friday, April 15, 2022 @ 19:45:21
  Author: polyzen
Revision: 1186620

upgpkg: rstcheck 3.5.0-1

Modified:
  rstcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 19:44:47 UTC (rev 1186619)
+++ PKGBUILD2022-04-15 19:45:21 UTC (rev 1186620)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=rstcheck
-pkgver=3.4.0
+pkgver=3.5.0
 pkgrel=1
 pkgdesc='Checks syntax of reStructuredText and code blocks nested within it'
 arch=('any')
@@ -12,8 +12,8 @@
 checkdepends=('python-sphinx')
 optdepends=('python-sphinx: Sphinx support')
 
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz;)
-sha256sums=('a142f780bcfa5d17407f1729c66a45ddbbb979789dafda16b19aa347ea8a2d4c')
-b2sums=('f317283367fb581a8623fb3acf7265c01d895b84c23f20b3fcab2fb6d3db1a215c0c6ad9ec59bbbdc6240ffcb2533036b5605dad799a04930383afb323b152d8')
+sha256sums=('d4b035300b7d898403544f38c3a4980171ce85f487d25e188347bbafb6ee58c0')
+b2sums=('f773ccac6f98a317b195c0e6d948fd637fb5e93e187b64614f92aa315ed21e112e1c7ba9850500ce02210543388b716ffe1a58f5ef2a387697ed98d75fb4be40')
 
 build() {
   cd rstcheck-$pkgver



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 19:43:24
  Author: dvzrv
Revision: 1186618

archrelease: copy trunk to multilib-staging-x86_64

Added:
  lib32-jack2/repos/multilib-staging-x86_64/
  lib32-jack2/repos/multilib-staging-x86_64/PKGBUILD
(from rev 1186617, lib32-jack2/trunk/PKGBUILD)

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

Copied: lib32-jack2/repos/multilib-staging-x86_64/PKGBUILD (from rev 1186617, 
lib32-jack2/trunk/PKGBUILD)
===
--- multilib-staging-x86_64/PKGBUILD(rev 0)
+++ multilib-staging-x86_64/PKGBUILD2022-04-15 19:43:24 UTC (rev 1186618)
@@ -0,0 +1,53 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+
+_name=jack2
+pkgname=lib32-jack2
+pkgver=1.9.21
+pkgrel=1
+pkgdesc="The JACK low-latency audio server (32 bit)"
+arch=(x86_64)
+url="https://github.com/jackaudio/jack2;
+license=(GPL2 LGPL2.1)
+depends=(lib32-gcc-libs lib32-glibc lib32-opus jack2=$pkgver)
+makedepends=(git lib32-alsa-lib lib32-dbus lib32-expat lib32-libsamplerate waf)
+conflicts=(lib32-jack)
+provides=(lib32-jack libjack.so libjackserver.so libjacknet.so)
+options=(debug)
+source=(git+https://github.com/jackaudio/$_name.git#tag=v$pkgver?signed)
+sha512sums=('SKIP')
+validpgpkeys=('62B11043D2F6EB6672D93103CDBAA37ABC74FBA0') # falkTX 

+
+prepare() {
+  cd $_name
+  touch __init__.py
+  # remove custom waflib, as we are using system provided waf
+  rm -rv waflib
+}
+
+build() {
+  cd $_name
+  export LINKFLAGS="$LDFLAGS"
+  export PYTHONPATH="$PWD:$PYTHONPATH"
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+  export CXXFLAGS+=' -m32'
+  export CFLAGS+=' -m32'
+  waf configure --prefix=/usr \
+--libdir=/usr/lib32 \
+--classic \
+--dbus
+  waf build
+}
+
+package() {
+  depends+=(libasound.so libsamplerate.so)
+
+  cd $_name
+  export PYTHONPATH="$PWD:$PYTHONPATH"
+  waf install --destdir="$pkgdir"
+  # remove all files provided by jack2
+  rm -rf "$pkgdir/usr/"{bin,include,share}
+}
+# vim:set ts=2 sw=2 et:



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 19:43:13
  Author: dvzrv
Revision: 1186617

upgpkg: lib32-jack2 1.9.21-1: Upgrade to 1.9.21.

Remove unneeded quotes and curly braces.

Modified:
  lib32-jack2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 19:38:01 UTC (rev 1186616)
+++ PKGBUILD2022-04-15 19:43:13 UTC (rev 1186617)
@@ -3,23 +3,23 @@
 
 _name=jack2
 pkgname=lib32-jack2
-pkgver=1.9.20
-pkgrel=3
+pkgver=1.9.21
+pkgrel=1
 pkgdesc="The JACK low-latency audio server (32 bit)"
 arch=(x86_64)
 url="https://github.com/jackaudio/jack2;
 license=(GPL2 LGPL2.1)
-depends=(lib32-gcc-libs lib32-glibc lib32-opus "jack2=${pkgver}")
+depends=(lib32-gcc-libs lib32-glibc lib32-opus jack2=$pkgver)
 makedepends=(git lib32-alsa-lib lib32-dbus lib32-expat lib32-libsamplerate waf)
 conflicts=(lib32-jack)
 provides=(lib32-jack libjack.so libjackserver.so libjacknet.so)
 options=(debug)
-source=("git+https://github.com/jackaudio/${_name}.git#tag=v${pkgver}?signed;)
+source=(git+https://github.com/jackaudio/$_name.git#tag=v$pkgver?signed)
 sha512sums=('SKIP')
 validpgpkeys=('62B11043D2F6EB6672D93103CDBAA37ABC74FBA0') # falkTX 

 
 prepare() {
-  cd "${_name}"
+  cd $_name
   touch __init__.py
   # remove custom waflib, as we are using system provided waf
   rm -rv waflib
@@ -26,17 +26,16 @@
 }
 
 build() {
-  cd "${_name}"
+  cd $_name
   export LINKFLAGS="$LDFLAGS"
-  export PYTHONPATH="${PWD}:${PYTHONPATH}"
+  export PYTHONPATH="$PWD:$PYTHONPATH"
   export CC="gcc -m32"
   export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
   export CXXFLAGS+=' -m32'
   export CFLAGS+=' -m32'
   waf configure --prefix=/usr \
 --libdir=/usr/lib32 \
---example-tools=no \
 --classic \
 --dbus
   waf build
@@ -45,10 +44,10 @@
 package() {
   depends+=(libasound.so libsamplerate.so)
 
-  cd "${_name}"
-  export PYTHONPATH="${PWD}:${PYTHONPATH}"
-  waf install --destdir="${pkgdir}"
+  cd $_name
+  export PYTHONPATH="$PWD:$PYTHONPATH"
+  waf install --destdir="$pkgdir"
   # remove all files provided by jack2
-  rm -rf "${pkgdir}"/usr/{bin,include,share}
+  rm -rf "$pkgdir/usr/"{bin,include,share}
 }
 # vim:set ts=2 sw=2 et:



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 19:38:58
  Author: dvzrv
Revision: 442710

archrelease: copy trunk to staging-x86_64

Added:
  jack2/repos/staging-x86_64/
  jack2/repos/staging-x86_64/PKGBUILD
(from rev 442709, jack2/trunk/PKGBUILD)

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

Copied: jack2/repos/staging-x86_64/PKGBUILD (from rev 442709, 
jack2/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-04-15 19:38:58 UTC (rev 442710)
@@ -0,0 +1,96 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: Daniele Paolella 
+# Contributor: Philipp Überbacher 
+# Contributor: Thomas Bahn 
+
+pkgbase=jack2
+pkgname=(jack2 jack2-dbus jack2-docs)
+pkgdesc="The JACK low-latency audio server"
+pkgver=1.9.21
+pkgrel=1
+arch=(x86_64)
+url="https://github.com/jackaudio/jack2;
+license=(GPL2)
+makedepends=(alsa-lib dbus doxygen expat git libffado libsamplerate opus 
systemd waf)
+# jack breaks when built with LTO: 
https://github.com/jackaudio/jack2/issues/485
+options=(debug !lto)
+source=(git+https://github.com/jackaudio/$pkgbase.git#tag=v$pkgver?signed)
+validpgpkeys=('62B11043D2F6EB6672D93103CDBAA37ABC74FBA0') # falkTX 

+sha512sums=('SKIP')
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+prepare() {
+  cd "${pkgbase}"
+  # remove custom waflib, as we are using system provided waf
+  (
+touch __init__.py
+rm -rv waflib
+  )
+}
+
+build() {
+  cd $pkgbase
+  export LINKFLAGS="$LDFLAGS"
+  export PYTHONPATH="$PWD:$PYTHONPATH"
+  waf configure --prefix=/usr \
+--htmldir=/usr/share/doc/$pkgbase/html \
+--autostart=none \
+--doxygen=yes \
+--systemd-unit \
+--classic \
+--dbus
+  waf build
+}
+
+package_jack2() {
+  license+=(LGPL2.1)
+  depends=(db gcc-libs glibc opus libasound.so libdbus-1.so libsamplerate.so
+  libsystemd.so )
+  optdepends=(
+'a2jmidid: for ALSA MIDI to JACK MIDI bridging'
+'libffado: for firewire support using FFADO'
+'jack-example-tools: for official JACK example-clients and tools'
+'jack2-dbus: for dbus integration'
+'jack2-docs: for developer documentation'
+'realtime-privileges: for realtime privileges'
+  )
+  conflicts=(jack)
+  provides=(jack libjack.so libjacknet.so libjackserver.so)
+
+  cd "${pkgbase}"
+  export PYTHONPATH="$PWD:$PYTHONPATH"
+  waf install --destdir="$pkgdir"
+
+  ( cd "$pkgdir"
+
+  _pick jack2-dbus usr/bin/jack{dbus,_control}
+  _pick jack2-dbus usr/share/dbus-1/services/*
+  _pick jack2-docs usr/share/doc/$pkgbase/html
+  )
+}
+
+package_jack2-dbus() {
+  pkgdesc+=" (dbus integration)"
+  depends=(gcc-libs glibc jack2 libdbus-1.so libexpat.so libjackserver.so
+  python-dbus)
+
+  mv -v jack2-dbus/* "$pkgdir"
+}
+
+package_jack2-docs() {
+  pkgdesc+=" (documentation)"
+
+  mv -v jack2-docs/* "$pkgdir"
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 19:38:31
  Author: dvzrv
Revision: 442709

upgpkg: jack2 1.9.21-1: Upgrade to 1.9.21.

Remove unneeded quotes and curly braces.
Remove option to disable build of example-tools (off by default now).

Modified:
  jack2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 17:53:50 UTC (rev 442708)
+++ PKGBUILD2022-04-15 19:38:31 UTC (rev 442709)
@@ -7,8 +7,8 @@
 pkgbase=jack2
 pkgname=(jack2 jack2-dbus jack2-docs)
 pkgdesc="The JACK low-latency audio server"
-pkgver=1.9.20
-pkgrel=4
+pkgver=1.9.21
+pkgrel=1
 arch=(x86_64)
 url="https://github.com/jackaudio/jack2;
 license=(GPL2)
@@ -15,7 +15,7 @@
 makedepends=(alsa-lib dbus doxygen expat git libffado libsamplerate opus 
systemd waf)
 # jack breaks when built with LTO: 
https://github.com/jackaudio/jack2/issues/485
 options=(debug !lto)
-source=("${pkgbase}::git+https://github.com/jackaudio/${pkgname}.git#tag=v${pkgver}?signed;)
+source=(git+https://github.com/jackaudio/$pkgbase.git#tag=v$pkgver?signed)
 validpgpkeys=('62B11043D2F6EB6672D93103CDBAA37ABC74FBA0') # falkTX 

 sha512sums=('SKIP')
 
@@ -39,14 +39,13 @@
 }
 
 build() {
-  cd "${pkgbase}"
+  cd $pkgbase
   export LINKFLAGS="$LDFLAGS"
-  export PYTHONPATH="${PWD}:${PYTHONPATH}"
+  export PYTHONPATH="$PWD:$PYTHONPATH"
   waf configure --prefix=/usr \
---htmldir="/usr/share/doc/${pkgbase}/html" \
+--htmldir=/usr/share/doc/$pkgbase/html \
 --autostart=none \
 --doxygen=yes \
---example-tools=no \
 --systemd-unit \
 --classic \
 --dbus
@@ -69,8 +68,8 @@
   provides=(jack libjack.so libjacknet.so libjackserver.so)
 
   cd "${pkgbase}"
-  export PYTHONPATH="${PWD}:${PYTHONPATH}"
-  waf install --destdir="${pkgdir}"
+  export PYTHONPATH="$PWD:$PYTHONPATH"
+  waf install --destdir="$pkgdir"
 
   ( cd "$pkgdir"
 
@@ -85,13 +84,13 @@
   depends=(gcc-libs glibc jack2 libdbus-1.so libexpat.so libjackserver.so
   python-dbus)
 
-  mv -v jack2-dbus/* "${pkgdir}"
+  mv -v jack2-dbus/* "$pkgdir"
 }
 
 package_jack2-docs() {
   pkgdesc+=" (documentation)"
 
-  mv -v jack2-docs/* "${pkgdir}"
+  mv -v jack2-docs/* "$pkgdir"
 }
 
 # vim:set ts=2 sw=2 et:



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

2022-04-15 Thread Daniel M. Capella via arch-commits
Date: Friday, April 15, 2022 @ 19:38:01
  Author: polyzen
Revision: 1186616

archrelease: copy trunk to community-any

Added:
  stylelint/repos/community-any/PKGBUILD
(from rev 1186615, stylelint/trunk/PKGBUILD)
Deleted:
  stylelint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 19:37:42 UTC (rev 1186615)
+++ PKGBUILD2022-04-15 19:38:01 UTC (rev 1186616)
@@ -1,41 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=stylelint
-pkgver=14.6.1
-pkgrel=1
-pkgdesc='Mighty, modern CSS linter'
-arch=('any')
-url=https://stylelint.io
-license=('MIT')
-depends=('nodejs')
-makedepends=('git' 'npm' 'rsync')
-optdepends=('stylelint-config-standard: for the standard shareable config')
-source=("git+https://github.com/stylelint/stylelint.git#tag=$pkgver;)
-b2sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  npm ci
-}
-
-check() {
-  cd $pkgname
-  npm test
-}
-
-package() {
-  cd $pkgname
-
-  npm prune --production
-
-  install -d "$pkgdir"/usr/{bin,share/doc/$pkgname}
-  ln -s ../lib/node_modules/$pkgname/bin/$pkgname.js "$pkgdir"/usr/bin/$pkgname
-  install -Dt "$pkgdir"/usr/lib/node_modules/$pkgname/bin bin/$pkgname.js
-  rsync -r --exclude __tests__ --exclude lib/testUtils lib \
-"$pkgdir"/usr/lib/node_modules/$pkgname
-  cp -r node_modules package.json "$pkgdir"/usr/lib/node_modules/$pkgname
-  cp -r {CHANGELOG,CONTRIBUTING,README}.md docs 
"$pkgdir"/usr/share/doc/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: stylelint/repos/community-any/PKGBUILD (from rev 1186615, 
stylelint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 19:38:01 UTC (rev 1186616)
@@ -0,0 +1,41 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=stylelint
+pkgver=14.7.0
+pkgrel=1
+pkgdesc='Mighty, modern CSS linter'
+arch=('any')
+url=https://stylelint.io
+license=('MIT')
+depends=('nodejs')
+makedepends=('git' 'npm' 'rsync')
+optdepends=('stylelint-config-standard: for the standard shareable config')
+source=("git+https://github.com/stylelint/stylelint.git#tag=$pkgver;)
+b2sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  npm ci
+}
+
+check() {
+  cd $pkgname
+  npm test
+}
+
+package() {
+  cd $pkgname
+
+  npm prune --production
+
+  install -d "$pkgdir"/usr/{bin,share/doc/$pkgname}
+  ln -s ../lib/node_modules/$pkgname/bin/$pkgname.js "$pkgdir"/usr/bin/$pkgname
+  install -Dt "$pkgdir"/usr/lib/node_modules/$pkgname/bin bin/$pkgname.js
+  rsync -r --exclude __tests__ --exclude lib/testUtils lib \
+"$pkgdir"/usr/lib/node_modules/$pkgname
+  cp -r node_modules package.json "$pkgdir"/usr/lib/node_modules/$pkgname
+  cp -r {CHANGELOG,CONTRIBUTING,README}.md docs 
"$pkgdir"/usr/share/doc/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-04-15 Thread Daniel M. Capella via arch-commits
Date: Friday, April 15, 2022 @ 19:37:42
  Author: polyzen
Revision: 1186615

upgpkg: stylelint 14.7.0-1

Modified:
  stylelint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 19:26:35 UTC (rev 1186614)
+++ PKGBUILD2022-04-15 19:37:42 UTC (rev 1186615)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=stylelint
-pkgver=14.6.1
+pkgver=14.7.0
 pkgrel=1
 pkgdesc='Mighty, modern CSS linter'
 arch=('any')



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

2022-04-15 Thread Daniel M. Capella via arch-commits
Date: Friday, April 15, 2022 @ 19:26:35
  Author: polyzen
Revision: 1186614

archrelease: copy trunk to community-x86_64

Added:
  lua-language-server/repos/community-x86_64/PKGBUILD
(from rev 1186613, lua-language-server/trunk/PKGBUILD)
  lua-language-server/repos/community-x86_64/wrapper
(from rev 1186613, lua-language-server/trunk/wrapper)
Deleted:
  lua-language-server/repos/community-x86_64/PKGBUILD
  lua-language-server/repos/community-x86_64/wrapper

--+
 PKGBUILD |  124 ++---
 wrapper  |   16 +++
 2 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 19:26:13 UTC (rev 1186613)
+++ PKGBUILD2022-04-15 19:26:35 UTC (rev 1186614)
@@ -1,62 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Maintainer: Caleb Maclennan 
-# Contributor: KokaKiwi 
-# Contributor: Mohammad AlSaleh 
-
-pkgname=lua-language-server
-pkgver=3.0.1
-pkgrel=1
-license=('MIT')
-pkgdesc='Lua Language Server coded by Lua'
-url=https://github.com/sumneko/lua-language-server
-arch=('x86_64')
-depends=('bash' 'gcc-libs')
-makedepends=('git' 'ninja')
-source=("git+$url.git#tag=$pkgver"
-'git+https://github.com/actboy168/bee.lua.git'
-'git+https://github.com/love2d-community/love-api.git'
-'git+https://github.com/bjornbytes/lovr-docs.git'
-'git+https://github.com/sqmedeiros/lpeglabel.git'
-'git+https://github.com/actboy168/luamake.git'
-'git+https://github.com/electron/rcedit.git'
-'wrapper')
-b2sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'2ec98b16514c8e416af10625fd582d081448dbe7889d3d9e1fee0540c79f26220bd4b91991c0479852c0102f4c35b63059fe176a59fffbbca8e01274171c7de2')
-
-prepare() {
-  cd $pkgname
-  git submodule init
-  for i in ../{bee.lua,love-api,lpeglabel,luamake,rcedit}; do
-git config submodule.3rd/${i##../}.url $i
-  done
-  git config submodule.3rd/lovr-api.url ../lovr-docs
-  git submodule update
-  cd 3rd/luamake
-  git submodule init
-  git config submodule.3rd/bee.lua.url ../../../bee.lua
-  git submodule update
-}
-
-build() {
-  cd $pkgname
-  ninja -C 3rd/luamake -f compile/ninja/linux.ninja
-  ./3rd/luamake/luamake rebuild
-}
-
-package() {
-  install -D wrapper "$pkgdir"/usr/bin/$pkgname
-  cd $pkgname
-  install -Dt "$pkgdir"/usr/lib/$pkgname/bin bin/$pkgname
-  install -m644 -t "$pkgdir"/usr/lib/$pkgname/bin bin/main.lua
-  install -m644 -t "$pkgdir"/usr/lib/$pkgname {debugger,main}.lua
-  cp -r locale meta script "$pkgdir"/usr/lib/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lua-language-server/repos/community-x86_64/PKGBUILD (from rev 1186613, 
lua-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 19:26:35 UTC (rev 1186614)
@@ -0,0 +1,62 @@
+# Maintainer: Daniel M. Capella 
+# Maintainer: Caleb Maclennan 
+# Contributor: KokaKiwi 
+# Contributor: Mohammad AlSaleh 
+
+pkgname=lua-language-server
+pkgver=3.0.2
+pkgrel=1
+license=('MIT')
+pkgdesc='Lua Language Server coded by Lua'
+url=https://github.com/sumneko/lua-language-server
+arch=('x86_64')
+depends=('bash' 'gcc-libs')
+makedepends=('git' 'ninja')
+source=("git+$url.git#tag=$pkgver"
+'git+https://github.com/actboy168/bee.lua.git'
+'git+https://github.com/love2d-community/love-api.git'
+'git+https://github.com/bjornbytes/lovr-docs.git'
+'git+https://github.com/sqmedeiros/lpeglabel.git'
+'git+https://github.com/actboy168/luamake.git'
+'git+https://github.com/electron/rcedit.git'
+'wrapper')
+b2sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+
'2ec98b16514c8e416af10625fd582d081448dbe7889d3d9e1fee0540c79f26220bd4b91991c0479852c0102f4c35b63059fe176a59fffbbca8e01274171c7de2')
+
+prepare() {
+  cd $pkgname
+  git submodule init
+  for i in ../{bee.lua,love-api,lpeglabel,luamake,rcedit}; do
+git config submodule.3rd/${i##../}.url $i
+  done
+  git config submodule.3rd/lovr-api.url ../lovr-docs
+  git submodule update
+  cd 3rd/luamake
+  git submodule init
+  git config submodule.3rd/bee.lua.url ../../../bee.lua
+  git submodule update
+}
+
+build() {
+  cd $pkgname
+  ninja -C 3rd/luamake -f compile/ninja/linux.ninja
+  ./3rd/luamake/luamake rebuild
+}
+
+package() {
+  install -D wrapper "$pkgdir"/usr/bin/$pkgname
+  cd $pkgname
+  install -Dt "$pkgdir"/usr/lib/$pkgname/bin bin/$pkgname
+  install -m644 -t "$pkgdir"/usr/lib/$pkgname/bin bin/main.lua
+  install -m644 -t "$pkgdir"/usr/lib/$pkgname {debugger,main}.lua
+  cp -r locale meta script "$pkgdir"/usr/lib/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname 

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

2022-04-15 Thread Daniel M. Capella via arch-commits
Date: Friday, April 15, 2022 @ 19:26:13
  Author: polyzen
Revision: 1186613

upgpkg: lua-language-server 3.0.2-1

Modified:
  lua-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 18:40:30 UTC (rev 1186612)
+++ PKGBUILD2022-04-15 19:26:13 UTC (rev 1186613)
@@ -4,7 +4,7 @@
 # Contributor: Mohammad AlSaleh 
 
 pkgname=lua-language-server
-pkgver=3.0.1
+pkgver=3.0.2
 pkgrel=1
 license=('MIT')
 pkgdesc='Lua Language Server coded by Lua'



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

2022-04-15 Thread Caleb Maclennan via arch-commits
Date: Friday, April 15, 2022 @ 18:40:30
  Author: alerque
Revision: 1186612

archrelease: copy trunk to community-x86_64

Added:
  mdbook/repos/community-x86_64/PKGBUILD
(from rev 1186611, mdbook/trunk/PKGBUILD)
Deleted:
  mdbook/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 18:40:21 UTC (rev 1186611)
+++ PKGBUILD2022-04-15 18:40:30 UTC (rev 1186612)
@@ -1,46 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Maintainer: Orhun Parmaksız 
-# Maintainer: Caleb Maclennan 
-# Contributor: Fabio 'Lolix' Loli  -> 
https://github.com/FabioLolix
-# Contributor: Moritz Schönherr 
-
-pkgname=mdbook
-pkgver=0.4.17
-pkgrel=1
-pkgdesc="Create book from markdown files, like Gitbook but implemented in Rust"
-url="https://github.com/rust-lang/mdBook;
-arch=('x86_64')
-license=('MPL2')
-depends=('gcc-libs')
-makedepends=('cargo')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rust-lang/mdBook/archive/v${pkgver}.tar.gz;)
-sha256sums=('9523d0bed63ce35eec5a8259eb963651cd7e37ec5644ef551134068a2fb72f89')
-# https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md
-
-prepare() {
-  cd "mdBook-${pkgver}"
-  mkdir completions/
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "mdBook-${pkgver}"
-  cargo build --frozen --release
-  "./target/release/$pkgname" completions bash > "completions/$pkgname.bash"
-  "./target/release/$pkgname" completions fish > "completions/$pkgname.fish"
-  "./target/release/$pkgname" completions zsh > "completions/_$pkgname"
-}
-
-check() {
-  cd "mdBook-${pkgver}"
-  cargo test --frozen
-}
-
-package() {
-  cd "mdBook-${pkgver}"
-  install -Dm 755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 "completions/$pkgname.bash" 
"$pkgdir/usr/share/bash-completion/completions/$pkgname"
-  install -Dm 644 "completions/$pkgname.fish" -t 
"$pkgdir/usr/share/fish/vendor_completions.d"
-  install -Dm 644 "completions/_$pkgname" -t 
"$pkgdir/usr/share/zsh/site-functions"
-}

Copied: mdbook/repos/community-x86_64/PKGBUILD (from rev 1186611, 
mdbook/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 18:40:30 UTC (rev 1186612)
@@ -0,0 +1,46 @@
+# Maintainer: Jelle van der Waa 
+# Maintainer: Orhun Parmaksız 
+# Maintainer: Caleb Maclennan 
+# Contributor: Fabio 'Lolix' Loli  -> 
https://github.com/FabioLolix
+# Contributor: Moritz Schönherr 
+
+pkgname=mdbook
+pkgver=0.4.18
+pkgrel=1
+pkgdesc="Create book from markdown files, like Gitbook but implemented in Rust"
+url="https://github.com/rust-lang/mdBook;
+arch=('x86_64')
+license=('MPL2')
+depends=('gcc-libs')
+makedepends=('cargo')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rust-lang/mdBook/archive/v${pkgver}.tar.gz;)
+sha256sums=('ce357327f4443189fde307103f8008f43410ca8b738c5c61401ada9a54b8b5b5')
+# https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md
+
+prepare() {
+  cd "mdBook-${pkgver}"
+  mkdir completions/
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "mdBook-${pkgver}"
+  cargo build --frozen --release
+  "./target/release/$pkgname" completions bash > "completions/$pkgname.bash"
+  "./target/release/$pkgname" completions fish > "completions/$pkgname.fish"
+  "./target/release/$pkgname" completions zsh > "completions/_$pkgname"
+}
+
+check() {
+  cd "mdBook-${pkgver}"
+  cargo test --frozen
+}
+
+package() {
+  cd "mdBook-${pkgver}"
+  install -Dm 755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 "completions/$pkgname.bash" 
"$pkgdir/usr/share/bash-completion/completions/$pkgname"
+  install -Dm 644 "completions/$pkgname.fish" -t 
"$pkgdir/usr/share/fish/vendor_completions.d"
+  install -Dm 644 "completions/_$pkgname" -t 
"$pkgdir/usr/share/zsh/site-functions"
+}



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

2022-04-15 Thread Caleb Maclennan via arch-commits
Date: Friday, April 15, 2022 @ 18:40:21
  Author: alerque
Revision: 1186611

upgpkg: mdbook 0.4.18-1

Modified:
  mdbook/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 18:03:38 UTC (rev 1186610)
+++ PKGBUILD2022-04-15 18:40:21 UTC (rev 1186611)
@@ -5,7 +5,7 @@
 # Contributor: Moritz Schönherr 
 
 pkgname=mdbook
-pkgver=0.4.17
+pkgver=0.4.18
 pkgrel=1
 pkgdesc="Create book from markdown files, like Gitbook but implemented in Rust"
 url="https://github.com/rust-lang/mdBook;
@@ -14,7 +14,7 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/rust-lang/mdBook/archive/v${pkgver}.tar.gz;)
-sha256sums=('9523d0bed63ce35eec5a8259eb963651cd7e37ec5644ef551134068a2fb72f89')
+sha256sums=('ce357327f4443189fde307103f8008f43410ca8b738c5c61401ada9a54b8b5b5')
 # https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md
 
 prepare() {



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

2022-04-15 Thread Lukas Fleischer via arch-commits
Date: Friday, April 15, 2022 @ 18:03:38
  Author: lfleischer
Revision: 1186610

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 18:03:26 UTC (rev 1186609)
+++ PKGBUILD2022-04-15 18:03:38 UTC (rev 1186610)
@@ -1,41 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Andrey Mivrenik 
-# Contributor: Tim Diels 
-
-pkgname=python-dropbox
-_pkgname=dropbox-sdk-python
-pkgver=11.28.0
-pkgrel=1
-pkgdesc="Python SDK for Dropbox Core APIs"
-url="https://github.com/dropbox/dropbox-sdk-python;
-arch=('any')
-license=('MIT')
-depends=(python python-urllib3 python-requests python-stone)
-makedepends=(python-setuptools python-pytest-runner)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/dropbox/$_pkgname/archive/v$pkgver.tar.gz;)
-sha512sums=('9776a75962d7370ea38b50d05801b662884086ccf865288f00cb0941143f41f8d9ab0947676cd403acdc92cd08fce519bf9f1471da9ccc64f0dd7278487be174')
-
-prepare() {
-  sed -e 's|pytest-runner == 5.2.0|pytest-runner|' -i 
$_pkgname-$pkgver/setup.py # Unversion dependency
-}
-
-build() {
-  cd "$srcdir/$_pkgname-$pkgver"
-
-  python setup.py build
-}
-
-# requires API token in $DROPBOX_TOKEN
-#check() {
-#  cd "$srcdir/$_pkgname-$pkgver"
-#
-#  python setup.py pytest --addopts "-k 'not TestDropboxTeam'"
-#  python2 setup.py pytest --addopts "-k 'not TestDropboxTeam'"
-#}
-
-package() {
-  cd "$srcdir/$_pkgname-$pkgver"
-
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-dropbox/repos/community-any/PKGBUILD (from rev 1186609, 
python-dropbox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 18:03:38 UTC (rev 1186610)
@@ -0,0 +1,41 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Andrey Mivrenik 
+# Contributor: Tim Diels 
+
+pkgname=python-dropbox
+_pkgname=dropbox-sdk-python
+pkgver=11.29.0
+pkgrel=1
+pkgdesc="Python SDK for Dropbox Core APIs"
+url="https://github.com/dropbox/dropbox-sdk-python;
+arch=('any')
+license=('MIT')
+depends=(python python-urllib3 python-requests python-stone)
+makedepends=(python-setuptools python-pytest-runner)
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/dropbox/$_pkgname/archive/v$pkgver.tar.gz;)
+sha512sums=('99d0bb32d23ee9ab8787eddeca1be81f51096f28c76b6cf818e8c28577ebad9478b12ba3a1615ed44520816f3ca1d753f2acc82cd36fb6ec39a556691d0acf43')
+
+prepare() {
+  sed -e 's|pytest-runner == 5.2.0|pytest-runner|' -i 
$_pkgname-$pkgver/setup.py # Unversion dependency
+}
+
+build() {
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  python setup.py build
+}
+
+# requires API token in $DROPBOX_TOKEN
+#check() {
+#  cd "$srcdir/$_pkgname-$pkgver"
+#
+#  python setup.py pytest --addopts "-k 'not TestDropboxTeam'"
+#  python2 setup.py pytest --addopts "-k 'not TestDropboxTeam'"
+#}
+
+package() {
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-04-15 Thread Lukas Fleischer via arch-commits
Date: Friday, April 15, 2022 @ 18:03:26
  Author: lfleischer
Revision: 1186609

upgpkg: python-dropbox 11.29.0-1: upstream update

Modified:
  python-dropbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 18:01:53 UTC (rev 1186608)
+++ PKGBUILD2022-04-15 18:03:26 UTC (rev 1186609)
@@ -4,7 +4,7 @@
 
 pkgname=python-dropbox
 _pkgname=dropbox-sdk-python
-pkgver=11.28.0
+pkgver=11.29.0
 pkgrel=1
 pkgdesc="Python SDK for Dropbox Core APIs"
 url="https://github.com/dropbox/dropbox-sdk-python;
@@ -13,7 +13,7 @@
 depends=(python python-urllib3 python-requests python-stone)
 makedepends=(python-setuptools python-pytest-runner)
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/dropbox/$_pkgname/archive/v$pkgver.tar.gz;)
-sha512sums=('9776a75962d7370ea38b50d05801b662884086ccf865288f00cb0941143f41f8d9ab0947676cd403acdc92cd08fce519bf9f1471da9ccc64f0dd7278487be174')
+sha512sums=('99d0bb32d23ee9ab8787eddeca1be81f51096f28c76b6cf818e8c28577ebad9478b12ba3a1615ed44520816f3ca1d753f2acc82cd36fb6ec39a556691d0acf43')
 
 prepare() {
   sed -e 's|pytest-runner == 5.2.0|pytest-runner|' -i 
$_pkgname-$pkgver/setup.py # Unversion dependency



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

2022-04-15 Thread Lukas Fleischer via arch-commits
Date: Friday, April 15, 2022 @ 18:01:53
  Author: lfleischer
Revision: 1186608

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 18:01:40 UTC (rev 1186607)
+++ PKGBUILD2022-04-15 18:01:53 UTC (rev 1186608)
@@ -1,24 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Tomislav Ivek 
-
-pkgname=python-fasteners
-pkgver=0.16.3
-pkgrel=3
-pkgdesc="A python package that provides useful locks."
-arch=('any')
-url="https://github.com/harlowja/fasteners;
-license=('Apache')
-depends=('python-six')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/harlowja/fasteners/archive/$pkgver.tar.gz;)
-sha512sums=('72b4ead49bb0c4f0e0c4ff47cab12f645af456e9100f270b72582b68239dd2536b1b641b38693f4f3635fc977e4ffa059c249e097e8842a1325333c4a6e864f9')
-
-build() {
-  cd "$srcdir/fasteners-$pkgver"
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir/fasteners-$pkgver"
-  python setup.py install --optimize=1 --root="$pkgdir"
-}

Copied: python-fasteners/repos/community-any/PKGBUILD (from rev 1186607, 
python-fasteners/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 18:01:53 UTC (rev 1186608)
@@ -0,0 +1,24 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Tomislav Ivek 
+
+pkgname=python-fasteners
+pkgver=0.17.3
+pkgrel=1
+pkgdesc="A python package that provides useful locks."
+arch=('any')
+url="https://github.com/harlowja/fasteners;
+license=('Apache')
+depends=('python-six')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/harlowja/fasteners/archive/$pkgver.tar.gz;)
+sha512sums=('bed890d674bbb8d0442cb0a36c81bd5d1b4e34ce4451f1cf70dcf72e222d52ae98154d09ac0ad1e52d1a2026c532fd40df715fbbd6bc95f874a916911ec7')
+
+build() {
+  cd "$srcdir/fasteners-$pkgver"
+  python3 -m build --wheel --no-isolation
+}
+
+package() {
+  cd "$srcdir/fasteners-$pkgver"
+  python3 -m installer --destdir="$pkgdir" dist/*.whl
+}



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

2022-04-15 Thread Lukas Fleischer via arch-commits
Date: Friday, April 15, 2022 @ 18:01:40
  Author: lfleischer
Revision: 1186607

upgpkg: python-fasteners 0.17.3-1: upstream update

Modified:
  python-fasteners/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 17:22:49 UTC (rev 1186606)
+++ PKGBUILD2022-04-15 18:01:40 UTC (rev 1186607)
@@ -2,23 +2,23 @@
 # Contributor: Tomislav Ivek 
 
 pkgname=python-fasteners
-pkgver=0.16.3
-pkgrel=3
+pkgver=0.17.3
+pkgrel=1
 pkgdesc="A python package that provides useful locks."
 arch=('any')
 url="https://github.com/harlowja/fasteners;
 license=('Apache')
 depends=('python-six')
-makedepends=('python-setuptools')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/harlowja/fasteners/archive/$pkgver.tar.gz;)
-sha512sums=('72b4ead49bb0c4f0e0c4ff47cab12f645af456e9100f270b72582b68239dd2536b1b641b38693f4f3635fc977e4ffa059c249e097e8842a1325333c4a6e864f9')
+sha512sums=('bed890d674bbb8d0442cb0a36c81bd5d1b4e34ce4451f1cf70dcf72e222d52ae98154d09ac0ad1e52d1a2026c532fd40df715fbbd6bc95f874a916911ec7')
 
 build() {
   cd "$srcdir/fasteners-$pkgver"
-  python setup.py build
+  python3 -m build --wheel --no-isolation
 }
 
 package() {
   cd "$srcdir/fasteners-$pkgver"
-  python setup.py install --optimize=1 --root="$pkgdir"
+  python3 -m installer --destdir="$pkgdir" dist/*.whl
 }



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

2022-04-15 Thread Lukas Fleischer via arch-commits
Date: Friday, April 15, 2022 @ 17:53:50
  Author: lfleischer
Revision: 442708

archrelease: copy trunk to extra-x86_64

Added:
  libbsd/repos/extra-x86_64/PKGBUILD
(from rev 442707, libbsd/trunk/PKGBUILD)
Deleted:
  libbsd/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 17:53:34 UTC (rev 442707)
+++ PKGBUILD2022-04-15 17:53:50 UTC (rev 442708)
@@ -1,40 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Gerardo Exequiel Pozzi 
-
-pkgname=libbsd
-pkgver=0.11.5
-pkgrel=1
-pkgdesc='Provides useful functions commonly found on BSD systems like 
strlcpy()'
-arch=('x86_64')
-url="https://libbsd.freedesktop.org;
-license=('custom')
-depends=('glibc' 'libmd')
-options=('staticlibs')
-source=("https://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.asc})
-sha512sums=('c52c19eddd53630aca14f9f6221f7b84aa9cc798b4bb91e867822b161793313aab872ac1c0350d29312a72fee6e2061f3910ff918b724ec171d8c9de5837c841'
-'SKIP')
-validpgpkeys=('4F3E74F436050C10F5696574B972BF3EA4AE57A3') # Guillem Jover
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  make check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  rm "${pkgdir}"/usr/lib/libbsd.a
-  install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # included now in man-pages, FS#53351
-  rm -f "${pkgdir}"/usr/share/man/man3/explicit_bzero.3
-}

Copied: libbsd/repos/extra-x86_64/PKGBUILD (from rev 442707, 
libbsd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 17:53:50 UTC (rev 442708)
@@ -0,0 +1,40 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Gerardo Exequiel Pozzi 
+
+pkgname=libbsd
+pkgver=0.11.6
+pkgrel=1
+pkgdesc='Provides useful functions commonly found on BSD systems like 
strlcpy()'
+arch=('x86_64')
+url="https://libbsd.freedesktop.org;
+license=('custom')
+depends=('glibc' 'libmd')
+options=('staticlibs')
+source=("https://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.asc})
+sha512sums=('9dbbfb84340fc69f59667241701d81d176439ce168f123344805898a269f7bd0e98abf8c7fc12d9bf539d1effb19424d93b647cc9120f693327e736d339e6075'
+'SKIP')
+validpgpkeys=('4F3E74F436050C10F5696574B972BF3EA4AE57A3') # Guillem Jover
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  rm "${pkgdir}"/usr/lib/libbsd.a
+  install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # included now in man-pages, FS#53351
+  rm -f "${pkgdir}"/usr/share/man/man3/explicit_bzero.3
+}



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

2022-04-15 Thread Lukas Fleischer via arch-commits
Date: Friday, April 15, 2022 @ 17:53:34
  Author: lfleischer
Revision: 442707

upgpkg: libbsd 0.11.6-1: upstream update

Modified:
  libbsd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 14:42:08 UTC (rev 442706)
+++ PKGBUILD2022-04-15 17:53:34 UTC (rev 442707)
@@ -3,7 +3,7 @@
 # Contributor: Gerardo Exequiel Pozzi 
 
 pkgname=libbsd
-pkgver=0.11.5
+pkgver=0.11.6
 pkgrel=1
 pkgdesc='Provides useful functions commonly found on BSD systems like 
strlcpy()'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('glibc' 'libmd')
 options=('staticlibs')
 
source=("https://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.asc})
-sha512sums=('c52c19eddd53630aca14f9f6221f7b84aa9cc798b4bb91e867822b161793313aab872ac1c0350d29312a72fee6e2061f3910ff918b724ec171d8c9de5837c841'
+sha512sums=('9dbbfb84340fc69f59667241701d81d176439ce168f123344805898a269f7bd0e98abf8c7fc12d9bf539d1effb19424d93b647cc9120f693327e736d339e6075'
 'SKIP')
 validpgpkeys=('4F3E74F436050C10F5696574B972BF3EA4AE57A3') # Guillem Jover
 



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

2022-04-15 Thread Ike Devolder via arch-commits
Date: Friday, April 15, 2022 @ 17:22:49
  Author: idevolder
Revision: 1186606

archrelease: copy trunk to community-x86_64

Added:
  vivaldi/repos/community-x86_64/0001-add-support-for-user-flags.patch
(from rev 1186605, vivaldi/trunk/0001-add-support-for-user-flags.patch)
  vivaldi/repos/community-x86_64/PKGBUILD
(from rev 1186605, vivaldi/trunk/PKGBUILD)
  vivaldi/repos/community-x86_64/eula.txt
(from rev 1186605, vivaldi/trunk/eula.txt)
Deleted:
  vivaldi/repos/community-x86_64/0001-add-support-for-user-flags.patch
  vivaldi/repos/community-x86_64/PKGBUILD
  vivaldi/repos/community-x86_64/eula.txt

---+
 0001-add-support-for-user-flags.patch |   74 ++--
 PKGBUILD  |  112 +-
 eula.txt  |  192 
 3 files changed, 189 insertions(+), 189 deletions(-)

Deleted: 0001-add-support-for-user-flags.patch
===
--- 0001-add-support-for-user-flags.patch   2022-04-15 17:22:43 UTC (rev 
1186605)
+++ 0001-add-support-for-user-flags.patch   2022-04-15 17:22:49 UTC (rev 
1186606)
@@ -1,37 +0,0 @@
-From 68c2dec905a7c88895c458dd40708ab9989385cf Mon Sep 17 00:00:00 2001
-From: BlackEagle 
-Date: Wed, 19 Jan 2022 20:57:58 +0100
-Subject: [PATCH] add support for user flags
-
-Signed-off-by: BlackEagle 

- vivaldi-stable | 9 -
- 1 file changed, 8 insertions(+), 1 deletion(-)
-
-diff --git a/vivaldi-stable b/vivaldi-stable
-index 5b5f1bf..8e95859 100755
 a/vivaldi-stable
-+++ b/vivaldi-stable
-@@ -53,6 +53,13 @@ export CHROME_VERSION_EXTRA="stable"
- # We don't want bug-buddy intercepting our crashes. http://crbug.com/24120
- export GNOME_DISABLE_CRASH_DIALOG=SET_BY_GOOGLE_CHROME
- 
-+# Allow users to override command-line options
-+XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-$HOME/.config}
-+VIVALDI_USER_FLAGS=""
-+if [[ -f "$XDG_CONFIG_HOME/vivaldi-$CHROME_VERSION_EXTRA.conf" ]]; then
-+   VIVALDI_USER_FLAGS="$(cat 
"$XDG_CONFIG_HOME/vivaldi-$CHROME_VERSION_EXTRA.conf")"
-+fi
-+
- # Sanitize std{in,out,err} because they'll be shared with untrusted child
- # processes (http://crbug.com/376567).
- exec < /dev/null
-@@ -60,4 +67,4 @@ exec > >(exec cat)
- exec 2> >(exec cat >&2)
- 
- # Note: exec -a below is a bashism.
--exec -a "$0" "$HERE/vivaldi-bin" "$@"
-+exec -a "$0" "$HERE/vivaldi-bin" $VIVALDI_USER_FLAGS "$@"
--- 
-2.34.1
-

Copied: vivaldi/repos/community-x86_64/0001-add-support-for-user-flags.patch 
(from rev 1186605, vivaldi/trunk/0001-add-support-for-user-flags.patch)
===
--- 0001-add-support-for-user-flags.patch   (rev 0)
+++ 0001-add-support-for-user-flags.patch   2022-04-15 17:22:49 UTC (rev 
1186606)
@@ -0,0 +1,37 @@
+From 68c2dec905a7c88895c458dd40708ab9989385cf Mon Sep 17 00:00:00 2001
+From: BlackEagle 
+Date: Wed, 19 Jan 2022 20:57:58 +0100
+Subject: [PATCH] add support for user flags
+
+Signed-off-by: BlackEagle 
+---
+ vivaldi-stable | 9 -
+ 1 file changed, 8 insertions(+), 1 deletion(-)
+
+diff --git a/vivaldi-stable b/vivaldi-stable
+index 5b5f1bf..8e95859 100755
+--- a/vivaldi-stable
 b/vivaldi-stable
+@@ -53,6 +53,13 @@ export CHROME_VERSION_EXTRA="stable"
+ # We don't want bug-buddy intercepting our crashes. http://crbug.com/24120
+ export GNOME_DISABLE_CRASH_DIALOG=SET_BY_GOOGLE_CHROME
+ 
++# Allow users to override command-line options
++XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-$HOME/.config}
++VIVALDI_USER_FLAGS=""
++if [[ -f "$XDG_CONFIG_HOME/vivaldi-$CHROME_VERSION_EXTRA.conf" ]]; then
++   VIVALDI_USER_FLAGS="$(cat 
"$XDG_CONFIG_HOME/vivaldi-$CHROME_VERSION_EXTRA.conf")"
++fi
++
+ # Sanitize std{in,out,err} because they'll be shared with untrusted child
+ # processes (http://crbug.com/376567).
+ exec < /dev/null
+@@ -60,4 +67,4 @@ exec > >(exec cat)
+ exec 2> >(exec cat >&2)
+ 
+ # Note: exec -a below is a bashism.
+-exec -a "$0" "$HERE/vivaldi-bin" "$@"
++exec -a "$0" "$HERE/vivaldi-bin" $VIVALDI_USER_FLAGS "$@"
+-- 
+2.34.1
+

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 17:22:43 UTC (rev 1186605)
+++ PKGBUILD2022-04-15 17:22:49 UTC (rev 1186606)
@@ -1,56 +0,0 @@
-# Maintainer: BlackIkeEagle 
-# Contributor: TZ86
-
-pkgname=vivaldi
-_rpmversion=5.2.2623.36-1
-pkgver=5.2.2623.36
-pkgrel=1
-pkgdesc='An advanced browser made with the power user in mind.'
-url="https://vivaldi.com;
-options=(!strip !zipman)
-license=('custom')
-arch=('x86_64')
-depends=('gtk3' 'libcups' 'nss' 'alsa-lib' 'libxss' 'ttf-font' 
'desktop-file-utils' 'shared-mime-info' 'hicolor-icon-theme')
-makedepends=('w3m')
-optdepends=(
-'vivaldi-ffmpeg-codecs: playback of proprietary video/audio'
-'libnotify: native notifications'
-)

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

2022-04-15 Thread Ike Devolder via arch-commits
Date: Friday, April 15, 2022 @ 17:22:43
  Author: idevolder
Revision: 1186605

upgpkg: vivaldi 5.2.2623.39-1

Modified:
  vivaldi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 16:30:22 UTC (rev 1186604)
+++ PKGBUILD2022-04-15 17:22:43 UTC (rev 1186605)
@@ -2,8 +2,8 @@
 # Contributor: TZ86
 
 pkgname=vivaldi
-_rpmversion=5.2.2623.36-1
-pkgver=5.2.2623.36
+_rpmversion=5.2.2623.39-1
+pkgver=5.2.2623.39
 pkgrel=1
 pkgdesc='An advanced browser made with the power user in mind.'
 url="https://vivaldi.com;
@@ -18,7 +18,7 @@
 )
 
source=("https://downloads.vivaldi.com/stable/vivaldi-stable-${_rpmversion}.x86_64.rpm;
 '0001-add-support-for-user-flags.patch')
-sha512sums=('def7accf1a91cdc2776cefcfce72e1b69fed91761414b8359a25e004a6ab69278b094b3cbd33f5df2d9d4c3b9e614db9a881ea343ac600b09b52dd0124ff7edd'
+sha512sums=('8b05e1af69b31da34327a93c784bdfc2376397d6744e72f05293c5cd0aac3a55f91ec270bfd8256922f91dcbbe2860a8ed002cb4ebdf3d85755d3e2eefa6'
 
'334db2056114fdbf07407b1cee24284f019df7a15acd711ed016bab1a1ab211abf3884ed848f3496486e7c78056108ccf1e88547e22b787bc4f548c6785f64d2')
 
 package() {



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

2022-04-15 Thread Massimiliano Torromeo via arch-commits
Date: Friday, April 15, 2022 @ 16:30:22
  Author: mtorromeo
Revision: 1186604

archrelease: copy trunk to community-x86_64

Added:
  grpc/repos/community-x86_64/PKGBUILD
(from rev 1186603, grpc/trunk/PKGBUILD)
  grpc/repos/community-x86_64/python-grpcio-use-system-abseil.patch
(from rev 1186603, grpc/trunk/python-grpcio-use-system-abseil.patch)
Deleted:
  grpc/repos/community-x86_64/PKGBUILD
  grpc/repos/community-x86_64/python-grpcio-use-system-abseil.patch

---+
 PKGBUILD  |  356 
 python-grpcio-use-system-abseil.patch |   92 
 2 files changed, 224 insertions(+), 224 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 16:30:14 UTC (rev 1186603)
+++ PKGBUILD2022-04-15 16:30:22 UTC (rev 1186604)
@@ -1,178 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Aleksey Filippov 
-# Contributor: Victor Aurélio Santos 
-
-pkgbase='grpc'
-pkgname=('grpc' 'python-grpcio' 'php-grpc' 'php7-grpc' 'grpc-cli')
-pkgver=1.45.1
-_gtestver=0e402173c97aea7a00749e825b194bfede4f2e45
-pkgrel=1
-pkgdesc="High performance, open source, general RPC framework that puts mobile 
and HTTP/2 first."
-arch=('x86_64')
-url='https://grpc.io'
-license=('BSD')
-makedepends=('re2' 're2c' 'protobuf' 'php' 'php7' 'c-ares' 'openssl' 'chrpath' 
'cython'
- 'cmake' 'benchmark' 'python-setuptools' 'abseil-cpp' 'ninja')
-options=('debug')
-checkdepends=('python-six')
-source=("https://github.com/grpc/grpc/archive/v$pkgver/$pkgbase-$pkgver.tar.gz;
-
"https://github.com/google/googletest/archive/$_gtestver/googletest-$_gtestver.tar.gz;
-"python-grpcio-use-system-abseil.patch")
-sha256sums=('46ee3d12c6d42a4ded46ba025c8ba09850425312c710c6ee6e084bd808ebc1e8'
-'c8de6c60e12ad014a28225c5247ee735861d85cf906df617f6a29954ca05f547'
-'3cfb289266f9d2697b917e4400f18a6592f95a99e658e401c1332870b219358b')
-
-prepare() {
-  cd "$srcdir/$pkgbase-$pkgver"
-  patch -Np1 -i ../python-grpcio-use-system-abseil.patch
-
-  ln -sf "$srcdir/googletest-$_gtestver/"{googlemock,googletest} \
-third_party/googletest
-
-  cp -a src/php{,7}
-
-  cmake -Bbuild \
--DCMAKE_BUILD_TYPE=None \
--DCMAKE_CXX_FLAGS="${CXXFLAGS} -DNDEBUG" \
--DgRPC_INSTALL=ON \
--DBUILD_SHARED_LIBS=ON \
--DCMAKE_CXX_STANDARD=17 \
--DCMAKE_SKIP_INSTALL_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DgRPC_BUILD_TESTS=ON \
--DgRPC_BUILD_CODEGEN=ON \
--DgRPC_BUILD_CSHARP_EXT=ON \
--DgRPC_BACKWARDS_COMPATIBILITY_MODE=OFF \
--DgRPC_ZLIB_PROVIDER='package' \
--DgRPC_CARES_PROVIDER='package' \
--DgRPC_RE2_PROVIDER='package' \
--DgRPC_SSL_PROVIDER='package' \
--DgRPC_PROTOBUF_PROVIDER='package' \
--DgRPC_PROTOBUF_PACKAGE_TYPE='MODULE' \
--DgRPC_BENCHMARK_PROVIDER:STRING='package' \
--DgRPC_ABSL_PROVIDER:STRING='package' \
--DgRPC_USE_PROTO_LITE=OFF \
--DgRPC_BUILD_GRPC_CPP_PLUGIN=ON \
--DgRPC_BUILD_GRPC_CSHARP_PLUGIN=ON \
--DgRPC_BUILD_GRPC_NODE_PLUGIN=ON \
--DgRPC_BUILD_GRPC_OBJECTIVE_C_PLUGIN=ON \
--DgRPC_BUILD_GRPC_PHP_PLUGIN=ON \
--DgRPC_BUILD_GRPC_PYTHON_PLUGIN=ON \
--DgRPC_BUILD_GRPC_RUBY_PLUGIN=ON \
--GNinja
-}
-
-build() {
-  cd "$srcdir/$pkgbase-$pkgver/build"
-
-  cmake --build .
-  export LDFLAGS="$LDFLAGS -L$PWD"
-
-  # PHP
-  cd "$srcdir/$pkgbase-$pkgver/src/php/ext/$pkgbase"
-  phpize
-  ./configure --enable-grpc="$srcdir/$pkgbase-$pkgver"
-  make
-
-  # PHP7
-  cd "$srcdir/$pkgbase-$pkgver/src/php7/ext/$pkgbase"
-  phpize7
-  ./configure --enable-grpc="$srcdir/$pkgbase-$pkgver"
-  make
-
-  # Python
-  cd "$srcdir/$pkgbase-$pkgver"
-  GRPC_PYTHON_CFLAGS="-fvisibility=hidden -fno-wrapv -fno-exceptions 
$(pkg-config --cflags protobuf) -std=c++17" \
-  GRPC_PYTHON_LDFLAGS="$(pkg-config --libs protobuf)" \
-  GRPC_PYTHON_BUILD_WITH_CYTHON=1 \
-  GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1 \
-  GRPC_PYTHON_BUILD_SYSTEM_ZLIB=1 \
-  GRPC_PYTHON_BUILD_SYSTEM_CARES=1 \
-  GRPC_PYTHON_BUILD_SYSTEM_RE2=1 \
-  GRPC_PYTHON_BUILD_SYSTEM_ABSL=1 \
-  GRPC_BUILD_WITH_BORING_SSL_ASM=0 \
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir/$pkgbase-$pkgver"
-  local _pyver=$(python -c "import sys; 
print('{0}.{1}'.format(*sys.version_info[:2]))")
-  PYTHONPATH="python_build/lib.linux-$CARCH-$_pyver" python -c 'import grpc'
-}
-
-package_grpc() {
-  depends=('c-ares' 'protobuf' 'openssl' 're2' 'abseil-cpp')
-  provides=(
-'libupb.so'
-'libgrpcpp_channelz.so'
-'libgrpc_unsecure.so'
-'libgrpc_plugin_support.so'
-'libgrpc.so'
-'libgrpc++_unsecure.so'
-'libgrpc++_reflection.so'
-'libgrpc++_error_details.so'
-'libgrpc++_alts.so'
-'libgrpc++.so'
-'libgpr.so'
-'libaddress_sorting.so'
-  )
-
-  cd "$srcdir/$pkgbase-$pkgver/build"
-  DESTDIR="$pkgdir" cmake --install .
-  install -Dm644 ../LICENSE 

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

2022-04-15 Thread Massimiliano Torromeo via arch-commits
Date: Friday, April 15, 2022 @ 16:30:14
  Author: mtorromeo
Revision: 1186603

upgpkg: grpc 1.45.2-1

Modified:
  grpc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 16:12:41 UTC (rev 1186602)
+++ PKGBUILD2022-04-15 16:30:14 UTC (rev 1186603)
@@ -4,7 +4,7 @@
 
 pkgbase='grpc'
 pkgname=('grpc' 'python-grpcio' 'php-grpc' 'php7-grpc' 'grpc-cli')
-pkgver=1.45.1
+pkgver=1.45.2
 _gtestver=0e402173c97aea7a00749e825b194bfede4f2e45
 pkgrel=1
 pkgdesc="High performance, open source, general RPC framework that puts mobile 
and HTTP/2 first."
@@ -18,7 +18,7 @@
 source=("https://github.com/grpc/grpc/archive/v$pkgver/$pkgbase-$pkgver.tar.gz;
 
"https://github.com/google/googletest/archive/$_gtestver/googletest-$_gtestver.tar.gz;
 "python-grpcio-use-system-abseil.patch")
-sha256sums=('46ee3d12c6d42a4ded46ba025c8ba09850425312c710c6ee6e084bd808ebc1e8'
+sha256sums=('e18b16f7976aab9a36c14c38180f042bb0fd196b75c9fd6a20a2b5f934876ad6'
 'c8de6c60e12ad014a28225c5247ee735861d85cf906df617f6a29954ca05f547'
 '3cfb289266f9d2697b917e4400f18a6592f95a99e658e401c1332870b219358b')
 



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:12:41
  Author: wild
Revision: 1186602

archrelease: copy trunk to community-x86_64

Added:
  appstream-generator/repos/community-x86_64/PKGBUILD
(from rev 1186601, appstream-generator/trunk/PKGBUILD)
  appstream-generator/repos/community-x86_64/stack-size.diff
(from rev 1186601, appstream-generator/trunk/stack-size.diff)
Deleted:
  appstream-generator/repos/community-x86_64/PKGBUILD
  appstream-generator/repos/community-x86_64/stack-size.diff

-+
 PKGBUILD|   68 +++---
 stack-size.diff |   24 +--
 2 files changed, 46 insertions(+), 46 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 16:12:36 UTC (rev 1186601)
+++ PKGBUILD2022-04-15 16:12:41 UTC (rev 1186602)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=appstream-generator
-pkgver=0.8.7
-pkgrel=2
-pkgdesc='A fast AppStream metadata generator'
-arch=(x86_64)
-url='https://github.com/ximion/appstream-generator'
-license=(GPL3)
-depends=(appstream libarchive librsvg optipng glibd lmdb)
-makedepends=(ldc meson ninja mustache-d curl gir-to-d gobject-introspection 
docbook-xsl)
-options=(debug)
-source=(https://github.com/ximion/appstream-generator/archive/v$pkgver/$pkgname-$pkgver.tar.gz
-stack-size.diff)
-sha256sums=('0e8432549e55b653ebd971421aac208956ec8e197dc23c5533a6c1932f125793'
-'73f68b4b85611ddabbcac7189266e49af4bc012d4fb610fb6fc87bae57970c2a')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Fix crash due to stack exhaustion trying to initialize iconv in a 
Generator fiber
-  # https://github.com/ximion/appstream-generator/issues/101
-  patch -Np1 -i ../stack-size.diff
-}
-
-build() {
-  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
-  arch-meson $pkgname-$pkgver build -D download-js=false
-  meson compile -C build
-}
-
-package() {
-  meson install -C build --destdir="$pkgdir"
-}

Copied: appstream-generator/repos/community-x86_64/PKGBUILD (from rev 1186601, 
appstream-generator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 16:12:41 UTC (rev 1186602)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=appstream-generator
+pkgver=0.8.7
+pkgrel=3
+pkgdesc='A fast AppStream metadata generator'
+arch=(x86_64)
+url='https://github.com/ximion/appstream-generator'
+license=(GPL3)
+depends=(appstream libarchive librsvg optipng glibd lmdb)
+makedepends=(ldc meson ninja mustache-d curl gir-to-d gobject-introspection 
docbook-xsl)
+options=(debug)
+source=(https://github.com/ximion/appstream-generator/archive/v$pkgver/$pkgname-$pkgver.tar.gz
+stack-size.diff)
+sha256sums=('0e8432549e55b653ebd971421aac208956ec8e197dc23c5533a6c1932f125793'
+'73f68b4b85611ddabbcac7189266e49af4bc012d4fb610fb6fc87bae57970c2a')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Fix crash due to stack exhaustion trying to initialize iconv in a 
Generator fiber
+  # https://github.com/ximion/appstream-generator/issues/101
+  patch -Np1 -i ../stack-size.diff
+}
+
+build() {
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
+  arch-meson $pkgname-$pkgver build -D download-js=false
+  meson compile -C build
+}
+
+package() {
+  meson install -C build --destdir="$pkgdir"
+}

Deleted: stack-size.diff
===
--- stack-size.diff 2022-04-15 16:12:36 UTC (rev 1186601)
+++ stack-size.diff 2022-04-15 16:12:41 UTC (rev 1186602)
@@ -1,12 +0,0 @@
-diff -u -r a/src/asgen/zarchive.d a2/src/asgen/zarchive.d
 a/src/asgen/zarchive.d 2022-02-22 18:16:54.0 +0100
-+++ a2/src/asgen/zarchive.d2022-03-27 20:51:22.390736900 +0200
-@@ -436,7 +436,7 @@
- aentry.data = this.readEntry (ar);
- yield (aentry);
- }
--});
-+}, 65536);
- 
- return gen;
- }

Copied: appstream-generator/repos/community-x86_64/stack-size.diff (from rev 
1186601, appstream-generator/trunk/stack-size.diff)
===
--- stack-size.diff (rev 0)
+++ stack-size.diff 2022-04-15 16:12:41 UTC (rev 1186602)
@@ -0,0 +1,12 @@
+diff -u -r a/src/asgen/zarchive.d a2/src/asgen/zarchive.d
+--- a/src/asgen/zarchive.d 2022-02-22 18:16:54.0 +0100
 a2/src/asgen/zarchive.d2022-03-27 20:51:22.390736900 +0200
+@@ -436,7 +436,7 @@
+ aentry.data = this.readEntry (ar);
+ yield (aentry);
+ }
+-});
++}, 65536);
+ 
+ return gen;
+ }



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:12:36
  Author: wild
Revision: 1186601

upgpkg: appstream-generator 0.8.7-3: Rebuilt against new ldc

Modified:
  appstream-generator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 16:11:44 UTC (rev 1186600)
+++ PKGBUILD2022-04-15 16:12:36 UTC (rev 1186601)
@@ -2,7 +2,7 @@
 
 pkgname=appstream-generator
 pkgver=0.8.7
-pkgrel=2
+pkgrel=3
 pkgdesc='A fast AppStream metadata generator'
 arch=(x86_64)
 url='https://github.com/ximion/appstream-generator'



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:11:44
  Author: wild
Revision: 1186600

archrelease: copy trunk to community-x86_64

Added:
  d-containers/repos/community-x86_64/PKGBUILD
(from rev 1186599, d-containers/trunk/PKGBUILD)
Deleted:
  d-containers/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 16:11:39 UTC (rev 1186599)
+++ PKGBUILD2022-04-15 16:11:44 UTC (rev 1186600)
@@ -1,40 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=d-containers
-_pkgname=containers
-_pkgver=0.8.0
-pkgver=${_pkgver/-/}
-pkgrel=6
-pkgdesc='Containers for D backed by std.experimental.allocator'
-arch=('x86_64')
-url='https://github.com/dlang-community/containers'
-license=('Boost')
-depends=('liblphobos')
-makedepends=('meson' 'ldc' 'd-stdx-allocator')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$_pkgver.tar.gz")
-sha512sums=('cb3d5a02251922f920a32033bc5cca6d82b07e2a073d85bf729e71d6a3050deaf6c31b93b443c6287ad0ceb01ab5b3bc50b4d9c5df6066292175ceaf234f4c5c')
-
-build() {
-  mkdir -p $_pkgname-$_pkgver/build
-  cd $_pkgname-$_pkgver/build
-
-  # Force build with LDC
-  export DC=ldc
-  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto/--flto=full/')"
-
-  arch-meson ..
-
-  ninja
-}
-
-check() {
-  cd $_pkgname-$_pkgver/build
-
-  ninja test
-}
-
-package() {
-  cd $_pkgname-$_pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: d-containers/repos/community-x86_64/PKGBUILD (from rev 1186599, 
d-containers/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 16:11:44 UTC (rev 1186600)
@@ -0,0 +1,40 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=d-containers
+_pkgname=containers
+_pkgver=0.8.0
+pkgver=${_pkgver/-/}
+pkgrel=7
+pkgdesc='Containers for D backed by std.experimental.allocator'
+arch=('x86_64')
+url='https://github.com/dlang-community/containers'
+license=('Boost')
+depends=('liblphobos')
+makedepends=('meson' 'ldc' 'd-stdx-allocator')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$_pkgver.tar.gz")
+sha512sums=('cb3d5a02251922f920a32033bc5cca6d82b07e2a073d85bf729e71d6a3050deaf6c31b93b443c6287ad0ceb01ab5b3bc50b4d9c5df6066292175ceaf234f4c5c')
+
+build() {
+  mkdir -p $_pkgname-$_pkgver/build
+  cd $_pkgname-$_pkgver/build
+
+  # Force build with LDC
+  export DC=ldc
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
+
+  arch-meson ..
+
+  ninja
+}
+
+check() {
+  cd $_pkgname-$_pkgver/build
+
+  ninja test
+}
+
+package() {
+  cd $_pkgname-$_pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:11:39
  Author: wild
Revision: 1186599

upgpkg: d-containers 0.8.0-7: Rebuilt against new ldc

Modified:
  d-containers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 16:10:41 UTC (rev 1186598)
+++ PKGBUILD2022-04-15 16:11:39 UTC (rev 1186599)
@@ -4,7 +4,7 @@
 _pkgname=containers
 _pkgver=0.8.0
 pkgver=${_pkgver/-/}
-pkgrel=6
+pkgrel=7
 pkgdesc='Containers for D backed by std.experimental.allocator'
 arch=('x86_64')
 url='https://github.com/dlang-community/containers'
@@ -20,7 +20,7 @@
 
   # Force build with LDC
   export DC=ldc
-  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto/--flto=full/')"
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
 
   arch-meson ..
 



[arch-commits] Commit in d-stdx-allocator/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:10:41
  Author: wild
Revision: 1186598

archrelease: copy trunk to community-x86_64

Added:
  d-stdx-allocator/repos/community-x86_64/PKGBUILD
(from rev 1186597, d-stdx-allocator/trunk/PKGBUILD)
Deleted:
  d-stdx-allocator/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 16:10:36 UTC (rev 1186597)
+++ PKGBUILD2022-04-15 16:10:41 UTC (rev 1186598)
@@ -1,46 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=d-stdx-allocator
-_pkgname=stdx-allocator
-pkgver=3.0.2
-pkgrel=18
-pkgdesc='Extracted std.experimental.allocator'
-arch=('x86_64')
-url='https://github.com/dlang-community/stdx-allocator'
-license=('Boost')
-depends=('liblphobos' 'd-mir-core')
-makedepends=('meson' 'ldc')
-source=("$_pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
-
"add-dependency.patch::https://github.com/dlang-community/stdx-allocator/commit/676b4c782ba9c484864075508c27ef44399396f7.patch;)
-sha512sums=('f4dc887225926cc4530314976e5e236c696a54c6e2ccdb48271b97b0c0a70882b70e92768c94c2932ccc9bd2282c3e953b27cf72088904458f7fc15234dca4be'
-
'13d52d3bb4d90e7b5fb3163f1761c20a57a59be1306ac665fea0eb9331864821d77e790f8ca6027b1936a6930085d2ccca7a1d49d4bd139a939e2c58f03bd47a')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  patch -p1 < ../add-dependency.patch
-}
-
-build() {
-  mkdir $_pkgname-$pkgver/build
-  cd $_pkgname-$pkgver/build
-
-  export DC=ldc
-  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto/--flto=full/')"
-
-  arch-meson ..
-
-  ninja
-}
-
-check() {
-  cd $_pkgname-$pkgver/build
-
-  meson test
-}
-
-package() {
-  cd $_pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: d-stdx-allocator/repos/community-x86_64/PKGBUILD (from rev 1186597, 
d-stdx-allocator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 16:10:41 UTC (rev 1186598)
@@ -0,0 +1,46 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=d-stdx-allocator
+_pkgname=stdx-allocator
+pkgver=3.0.2
+pkgrel=19
+pkgdesc='Extracted std.experimental.allocator'
+arch=('x86_64')
+url='https://github.com/dlang-community/stdx-allocator'
+license=('Boost')
+depends=('liblphobos' 'd-mir-core')
+makedepends=('meson' 'ldc')
+source=("$_pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+
"add-dependency.patch::https://github.com/dlang-community/stdx-allocator/commit/676b4c782ba9c484864075508c27ef44399396f7.patch;)
+sha512sums=('f4dc887225926cc4530314976e5e236c696a54c6e2ccdb48271b97b0c0a70882b70e92768c94c2932ccc9bd2282c3e953b27cf72088904458f7fc15234dca4be'
+
'13d52d3bb4d90e7b5fb3163f1761c20a57a59be1306ac665fea0eb9331864821d77e790f8ca6027b1936a6930085d2ccca7a1d49d4bd139a939e2c58f03bd47a')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  patch -p1 < ../add-dependency.patch
+}
+
+build() {
+  mkdir $_pkgname-$pkgver/build
+  cd $_pkgname-$pkgver/build
+
+  export DC=ldc
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
+
+  arch-meson ..
+
+  ninja
+}
+
+check() {
+  cd $_pkgname-$pkgver/build
+
+  meson test
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}



[arch-commits] Commit in d-stdx-allocator/trunk (PKGBUILD)

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:10:36
  Author: wild
Revision: 1186597

upgpkg: d-stdx-allocator 3.0.2-19: Rebuilt against new ldc

Modified:
  d-stdx-allocator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 16:09:52 UTC (rev 1186596)
+++ PKGBUILD2022-04-15 16:10:36 UTC (rev 1186597)
@@ -3,7 +3,7 @@
 pkgname=d-stdx-allocator
 _pkgname=stdx-allocator
 pkgver=3.0.2
-pkgrel=18
+pkgrel=19
 pkgdesc='Extracted std.experimental.allocator'
 arch=('x86_64')
 url='https://github.com/dlang-community/stdx-allocator'
@@ -26,7 +26,7 @@
   cd $_pkgname-$pkgver/build
 
   export DC=ldc
-  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto/--flto=full/')"
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
 
   arch-meson ..
 



[arch-commits] Commit in d-mir-core/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:09:52
  Author: wild
Revision: 1186596

archrelease: copy trunk to community-x86_64

Added:
  d-mir-core/repos/community-x86_64/PKGBUILD
(from rev 1186595, d-mir-core/trunk/PKGBUILD)
Deleted:
  d-mir-core/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 16:09:47 UTC (rev 1186595)
+++ PKGBUILD2022-04-15 16:09:52 UTC (rev 1186596)
@@ -1,47 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-_pkgname=mir-core
-pkgname=d-$_pkgname
-pkgver=1.1.14
-pkgrel=8
-pkgdesc='Base software building blocks and conventions for libmir'
-arch=('x86_64')
-url='https://github.com/libmir/mir-core'
-license=('custom:BSL')
-depends=('liblphobos')
-makedepends=('meson' 'ldc')
-source=("$_pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('393ee409d50c7c825407b19fb860cce21907eb12ae5575eb5cd223bf0d4c3186bf6f0a61d4f3c7d07c6741c9d1d8f9a3421f7735520bba6e4bb52a5c18cb55f1')
-
-prepare() {
-  cd $_pkgname-$pkgver
-
-  # Fix version in buildfile
-  sed -i "s/1.1.1/$pkgver/" meson.build
-}
-
-build() {
-  mkdir $_pkgname-$pkgver/build
-  cd $_pkgname-$pkgver/build
-
-  export DC=ldc
-  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto/--flto=full/')"
-
-  arch-meson ..
-
-  ninja
-}
-
-check() {
-  cd $_pkgname-$pkgver/build
-
-  meson test
-}
-
-package() {
-  cd $_pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-
-  install -Dm 644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: d-mir-core/repos/community-x86_64/PKGBUILD (from rev 1186595, 
d-mir-core/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 16:09:52 UTC (rev 1186596)
@@ -0,0 +1,47 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+_pkgname=mir-core
+pkgname=d-$_pkgname
+pkgver=1.1.14
+pkgrel=9
+pkgdesc='Base software building blocks and conventions for libmir'
+arch=('x86_64')
+url='https://github.com/libmir/mir-core'
+license=('custom:BSL')
+depends=('liblphobos')
+makedepends=('meson' 'ldc')
+source=("$_pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('393ee409d50c7c825407b19fb860cce21907eb12ae5575eb5cd223bf0d4c3186bf6f0a61d4f3c7d07c6741c9d1d8f9a3421f7735520bba6e4bb52a5c18cb55f1')
+
+prepare() {
+  cd $_pkgname-$pkgver
+
+  # Fix version in buildfile
+  sed -i "s/1.1.1/$pkgver/" meson.build
+}
+
+build() {
+  mkdir $_pkgname-$pkgver/build
+  cd $_pkgname-$pkgver/build
+
+  export DC=ldc
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
+
+  arch-meson ..
+
+  ninja
+}
+
+check() {
+  cd $_pkgname-$pkgver/build
+
+  meson test
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+
+  install -Dm 644 ../LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



[arch-commits] Commit in d-mir-core/trunk (PKGBUILD)

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:09:47
  Author: wild
Revision: 1186595

upgpkg: d-mir-core 1.1.14-9: Rebuilt against new ldc

Modified:
  d-mir-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 16:09:09 UTC (rev 1186594)
+++ PKGBUILD2022-04-15 16:09:47 UTC (rev 1186595)
@@ -3,7 +3,7 @@
 _pkgname=mir-core
 pkgname=d-$_pkgname
 pkgver=1.1.14
-pkgrel=8
+pkgrel=9
 pkgdesc='Base software building blocks and conventions for libmir'
 arch=('x86_64')
 url='https://github.com/libmir/mir-core'
@@ -25,7 +25,7 @@
   cd $_pkgname-$pkgver/build
 
   export DC=ldc
-  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto/--flto=full/')"
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
 
   arch-meson ..
 



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:09:09
  Author: wild
Revision: 1186594

archrelease: copy trunk to community-x86_64

Added:
  glibd/repos/community-x86_64/PKGBUILD
(from rev 1186593, glibd/trunk/PKGBUILD)
Deleted:
  glibd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 16:09:04 UTC (rev 1186593)
+++ PKGBUILD2022-04-15 16:09:09 UTC (rev 1186594)
@@ -1,43 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Antonio Rojas 
-
-pkgname=glibd
-_pkgname=GlibD
-pkgver=2.3.0
-pkgrel=5
-pkgdesc='D bindings for the GLib C Utility Library'
-arch=('x86_64')
-url='https://github.com/gtkd-developers/GlibD'
-license=('LGPL3')
-depends=('glib2' 'liblphobos')
-makedepends=('meson' 'ldc' 'gobject-introspection' 'gir-to-d')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
-
"FixBuildingGlib2.68.patch::https://github.com/gtkd-developers/GlibD/commit/b22a87ee6f42806aff5f9173a24cd05995db6cb0.patch;
-
"FixBuildingGlib2.70.patch::https://github.com/gtkd-developers/GlibD/commit/31cc330d1502084f25b207ba0f6c9a26126b5f20.patch;)
-sha512sums=('3312eb81f6a586be4755942c23f46b23144c7ca5239a187eb30917f8e1c6726a63ecdfbe408276502f688f39dfb0f281248905a88692ec7d79875af53f893455'
-
'39e4eaba9fe01ae072e9c179b3e132bd241c94339ca31a47e64cda460aa9cd2ba2b59c8c25e0fb095386b10d83a033b1860afe8ca82e4a2076934a96a4a94012'
-
'f4efb17d38e06ed78a0dbd9e565ba987717ff40f9443f55cc7120ff721d9b3ed1fc23b249afac475fd5ed044001fb6b20e4cbd5864ab7f2a9c5c39f70cb51b3e')
-
-prepare() {
-  patch -d $_pkgname-$pkgver -p1 -i "$srcdir"/FixBuildingGlib2.68.patch
-  patch -d $_pkgname-$pkgver -p1 -i "$srcdir"/FixBuildingGlib2.70.patch
-}
-
-build() {
-  mkdir -p $_pkgname-$pkgver/build
-  cd $_pkgname-$pkgver/build
-
-  # Force build with LDC
-  export DC=ldc
-  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto/--flto=full/')"
-
-  arch-meson ..
-
-  ninja
-}
-
-package() {
-  cd $_pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: glibd/repos/community-x86_64/PKGBUILD (from rev 1186593, 
glibd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 16:09:09 UTC (rev 1186594)
@@ -0,0 +1,46 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Antonio Rojas 
+
+pkgname=glibd
+_pkgname=GlibD
+pkgver=2.3.0
+pkgrel=6
+pkgdesc='D bindings for the GLib C Utility Library'
+arch=('x86_64')
+url='https://github.com/gtkd-developers/GlibD'
+license=('LGPL3')
+depends=('glib2' 'liblphobos')
+makedepends=('meson' 'ldc' 'gobject-introspection' 'gir-to-d')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+
"FixBuildingGlib2.68.patch::https://github.com/gtkd-developers/GlibD/commit/b22a87ee6f42806aff5f9173a24cd05995db6cb0.patch;
+
"FixBuildingGlib2.70.patch::https://github.com/gtkd-developers/GlibD/commit/31cc330d1502084f25b207ba0f6c9a26126b5f20.patch;
+
"FixBuildingGlib2.72.patch::https://github.com/gtkd-developers/GlibD/commit/ff1daa7c1206c632ef4cba1dc92f35e4c4fdc440.patch;)
+sha512sums=('3312eb81f6a586be4755942c23f46b23144c7ca5239a187eb30917f8e1c6726a63ecdfbe408276502f688f39dfb0f281248905a88692ec7d79875af53f893455'
+
'39e4eaba9fe01ae072e9c179b3e132bd241c94339ca31a47e64cda460aa9cd2ba2b59c8c25e0fb095386b10d83a033b1860afe8ca82e4a2076934a96a4a94012'
+
'f4efb17d38e06ed78a0dbd9e565ba987717ff40f9443f55cc7120ff721d9b3ed1fc23b249afac475fd5ed044001fb6b20e4cbd5864ab7f2a9c5c39f70cb51b3e'
+
'73d9c6a33a561dd9ff817830bca81e51cd1999b6c44bf516afb9e72d0a7e2e9091c4aa4814a315fd4ba304898082a55c35ef8e8376a99452bdf304f7289291c9')
+
+prepare() {
+  patch -d $_pkgname-$pkgver -p1 -i "$srcdir"/FixBuildingGlib2.68.patch
+  patch -d $_pkgname-$pkgver -p1 -i "$srcdir"/FixBuildingGlib2.70.patch
+  patch -d $_pkgname-$pkgver -p1 -i "$srcdir"/FixBuildingGlib2.72.patch
+}
+
+build() {
+  mkdir -p $_pkgname-$pkgver/build
+  cd $_pkgname-$pkgver/build
+
+  # Force build with LDC
+  export DC=ldc
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
+
+  arch-meson ..
+
+  ninja
+}
+
+package() {
+  cd $_pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:09:04
  Author: wild
Revision: 1186593

upgpkg: glibd 2.3.0-6: Rebuilt against new ldc

Modified:
  glibd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 16:08:09 UTC (rev 1186592)
+++ PKGBUILD2022-04-15 16:09:04 UTC (rev 1186593)
@@ -4,7 +4,7 @@
 pkgname=glibd
 _pkgname=GlibD
 pkgver=2.3.0
-pkgrel=5
+pkgrel=6
 pkgdesc='D bindings for the GLib C Utility Library'
 arch=('x86_64')
 url='https://github.com/gtkd-developers/GlibD'
@@ -13,14 +13,17 @@
 makedepends=('meson' 'ldc' 'gobject-introspection' 'gir-to-d')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
 
"FixBuildingGlib2.68.patch::https://github.com/gtkd-developers/GlibD/commit/b22a87ee6f42806aff5f9173a24cd05995db6cb0.patch;
-
"FixBuildingGlib2.70.patch::https://github.com/gtkd-developers/GlibD/commit/31cc330d1502084f25b207ba0f6c9a26126b5f20.patch;)
+
"FixBuildingGlib2.70.patch::https://github.com/gtkd-developers/GlibD/commit/31cc330d1502084f25b207ba0f6c9a26126b5f20.patch;
+
"FixBuildingGlib2.72.patch::https://github.com/gtkd-developers/GlibD/commit/ff1daa7c1206c632ef4cba1dc92f35e4c4fdc440.patch;)
 
sha512sums=('3312eb81f6a586be4755942c23f46b23144c7ca5239a187eb30917f8e1c6726a63ecdfbe408276502f688f39dfb0f281248905a88692ec7d79875af53f893455'
 
'39e4eaba9fe01ae072e9c179b3e132bd241c94339ca31a47e64cda460aa9cd2ba2b59c8c25e0fb095386b10d83a033b1860afe8ca82e4a2076934a96a4a94012'
-
'f4efb17d38e06ed78a0dbd9e565ba987717ff40f9443f55cc7120ff721d9b3ed1fc23b249afac475fd5ed044001fb6b20e4cbd5864ab7f2a9c5c39f70cb51b3e')
+
'f4efb17d38e06ed78a0dbd9e565ba987717ff40f9443f55cc7120ff721d9b3ed1fc23b249afac475fd5ed044001fb6b20e4cbd5864ab7f2a9c5c39f70cb51b3e'
+
'73d9c6a33a561dd9ff817830bca81e51cd1999b6c44bf516afb9e72d0a7e2e9091c4aa4814a315fd4ba304898082a55c35ef8e8376a99452bdf304f7289291c9')
 
 prepare() {
   patch -d $_pkgname-$pkgver -p1 -i "$srcdir"/FixBuildingGlib2.68.patch
   patch -d $_pkgname-$pkgver -p1 -i "$srcdir"/FixBuildingGlib2.70.patch
+  patch -d $_pkgname-$pkgver -p1 -i "$srcdir"/FixBuildingGlib2.72.patch
 }
 
 build() {
@@ -29,7 +32,7 @@
 
   # Force build with LDC
   export DC=ldc
-  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto/--flto=full/')"
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
 
   arch-meson ..
 



[arch-commits] Commit in gir-to-d/repos/community-x86_64 (PKGBUILD PKGBUILD)

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:08:09
  Author: wild
Revision: 1186592

archrelease: copy trunk to community-x86_64

Added:
  gir-to-d/repos/community-x86_64/PKGBUILD
(from rev 1186591, gir-to-d/trunk/PKGBUILD)
Deleted:
  gir-to-d/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 16:08:04 UTC (rev 1186591)
+++ PKGBUILD2022-04-15 16:08:09 UTC (rev 1186592)
@@ -1,31 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=gir-to-d
-pkgver=0.22.0
-pkgrel=6
-pkgdesc='Create D bindings from GObject introspection files'
-arch=('x86_64')
-url='https://github.com/gtkd-developers/gir-to-d'
-license=('LGPL3')
-depends=('gcc-libs' 'liblphobos')
-makedepends=('meson' 'ldc')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('18a06884153c4ec7c028a2ad492bf272500e3e4079ae7c3eba6188f7681377edde2fe0cbcacedaa757aa6ed5bcf5f1ba2d201093d6f3692a0162b44c77d6')
-
-build() {
-  mkdir -p $pkgname-$pkgver/build
-  cd $pkgname-$pkgver/build
-
-  export DC=ldc
-  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto/--flto=full/')"
-
-  arch-meson ..
-
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: gir-to-d/repos/community-x86_64/PKGBUILD (from rev 1186591, 
gir-to-d/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 16:08:09 UTC (rev 1186592)
@@ -0,0 +1,40 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=gir-to-d
+pkgver=0.22.0
+pkgrel=7
+pkgdesc='Create D bindings from GObject introspection files'
+arch=('x86_64')
+url='https://github.com/gtkd-developers/gir-to-d'
+license=('LGPL3')
+depends=('gcc-libs' 'liblphobos')
+makedepends=('meson' 'ldc')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+
"FixSegfault.patch::https://github.com/gtkd-developers/gir-to-d/commit/f4dfc8cfb130280291db458629ab11b6904e5191.patch;)
+sha512sums=('18a06884153c4ec7c028a2ad492bf272500e3e4079ae7c3eba6188f7681377edde2fe0cbcacedaa757aa6ed5bcf5f1ba2d201093d6f3692a0162b44c77d6'
+
'c4787554476a2328d10c2db78053241173bf2a0a4c55db092eca1da77012e0bf7e8fbec395aef64efb9b04c81e299ba9c6126e010e318f153d8e80abacb8a354')
+
+prepare() {
+  patch -d $pkgname-$pkgver -p1 -i "$srcdir"/FixSegfault.patch
+}
+
+build() {
+  mkdir -p $pkgname-$pkgver/build
+  cd $pkgname-$pkgver/build
+
+  export DC=ldc
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
+  # Instanciate all templates. Fixes:
+  # undefined reference to 
`_D6object__T8opEqualsTxC3gtd11GirFunctionQnTxQwZQBkFxQBexQBiZb'
+  export DFLAGS="--allinst"
+
+  arch-meson ..
+
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver/build
+
+  DESTDIR="$pkgdir" ninja install
+}



[arch-commits] Commit in gir-to-d/trunk (PKGBUILD)

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:08:04
  Author: wild
Revision: 1186591

upgpkg: gir-to-d 0.22.0-7: Rebuilt against new ldc

Modified:
  gir-to-d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 16:06:52 UTC (rev 1186590)
+++ PKGBUILD2022-04-15 16:08:04 UTC (rev 1186591)
@@ -2,7 +2,7 @@
 
 pkgname=gir-to-d
 pkgver=0.22.0
-pkgrel=6
+pkgrel=7
 pkgdesc='Create D bindings from GObject introspection files'
 arch=('x86_64')
 url='https://github.com/gtkd-developers/gir-to-d'
@@ -9,15 +9,24 @@
 license=('LGPL3')
 depends=('gcc-libs' 'liblphobos')
 makedepends=('meson' 'ldc')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('18a06884153c4ec7c028a2ad492bf272500e3e4079ae7c3eba6188f7681377edde2fe0cbcacedaa757aa6ed5bcf5f1ba2d201093d6f3692a0162b44c77d6')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+
"FixSegfault.patch::https://github.com/gtkd-developers/gir-to-d/commit/f4dfc8cfb130280291db458629ab11b6904e5191.patch;)
+sha512sums=('18a06884153c4ec7c028a2ad492bf272500e3e4079ae7c3eba6188f7681377edde2fe0cbcacedaa757aa6ed5bcf5f1ba2d201093d6f3692a0162b44c77d6'
+
'c4787554476a2328d10c2db78053241173bf2a0a4c55db092eca1da77012e0bf7e8fbec395aef64efb9b04c81e299ba9c6126e010e318f153d8e80abacb8a354')
 
+prepare() {
+  patch -d $pkgname-$pkgver -p1 -i "$srcdir"/FixSegfault.patch
+}
+
 build() {
   mkdir -p $pkgname-$pkgver/build
   cd $pkgname-$pkgver/build
 
   export DC=ldc
-  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto/--flto=full/')"
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
+  # Instanciate all templates. Fixes:
+  # undefined reference to 
`_D6object__T8opEqualsTxC3gtd11GirFunctionQnTxQwZQBkFxQBexQBiZb'
+  export DFLAGS="--allinst"
 
   arch-meson ..
 



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:06:52
  Author: wild
Revision: 1186590

archrelease: copy trunk to community-x86_64

Added:
  mustache-d/repos/community-x86_64/PKGBUILD
(from rev 1186589, mustache-d/trunk/PKGBUILD)
Deleted:
  mustache-d/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 16:06:47 UTC (rev 1186589)
+++ PKGBUILD2022-04-15 16:06:52 UTC (rev 1186590)
@@ -1,37 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=mustache-d
-pkgver=0.1.5
-pkgrel=5
-pkgdesc='Moustache template engine for D'
-arch=('x86_64')
-url='https://github.com/repeatedly/mustache-d'
-license=('Boost')
-makedepends=('meson' 'ldc' 'liblphobos')
-source=("$pkgname-$pkgver::https://github.com/repeatedly/mustache-d/archive/v$pkgver.tar.gz;)
-sha512sums=('f6a84e69c5345ebe1c8aae3e6a214fd0b57055180f8c689468decab9d4e3cb92d88b1ca51b918eaec2134e2f7f86a17a69b07dfa58783286a66286fefa206eec')
-
-prepare() {
-  mkdir -p build
-
-  cd "$srcdir"/$pkgname-$pkgver
-  # Fixes 'ERROR: Got unknown keyword arguments "soversion", "version"'
-  sed -i "/install: true/{n;N;d}" meson.build
-}
-
-build() {
-  cd build
-
-  # Build with LDC
-  export DC=ldc
-
-  arch-meson ../$pkgname-$pkgver
-
-  ninja
-}
-
-package() {
-  cd build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: mustache-d/repos/community-x86_64/PKGBUILD (from rev 1186589, 
mustache-d/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 16:06:52 UTC (rev 1186590)
@@ -0,0 +1,37 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=mustache-d
+pkgver=0.1.5
+pkgrel=6
+pkgdesc='Moustache template engine for D'
+arch=('x86_64')
+url='https://github.com/repeatedly/mustache-d'
+license=('Boost')
+makedepends=('meson' 'ldc' 'liblphobos')
+source=("$pkgname-$pkgver::https://github.com/repeatedly/mustache-d/archive/v$pkgver.tar.gz;)
+sha512sums=('f6a84e69c5345ebe1c8aae3e6a214fd0b57055180f8c689468decab9d4e3cb92d88b1ca51b918eaec2134e2f7f86a17a69b07dfa58783286a66286fefa206eec')
+
+prepare() {
+  mkdir -p build
+
+  cd "$srcdir"/$pkgname-$pkgver
+  # Fixes 'ERROR: Got unknown keyword arguments "soversion", "version"'
+  sed -i "/install: true/{n;N;d}" meson.build
+}
+
+build() {
+  cd build
+
+  # Build with LDC
+  export DC=ldc
+
+  arch-meson ../$pkgname-$pkgver
+
+  ninja
+}
+
+package() {
+  cd build
+
+  DESTDIR="$pkgdir" ninja install
+}



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:06:47
  Author: wild
Revision: 1186589

upgpkg: mustache-d 0.1.5-6: Rebuilt against new ldc

Modified:
  mustache-d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 16:05:57 UTC (rev 1186588)
+++ PKGBUILD2022-04-15 16:06:47 UTC (rev 1186589)
@@ -2,7 +2,7 @@
 
 pkgname=mustache-d
 pkgver=0.1.5
-pkgrel=5
+pkgrel=6
 pkgdesc='Moustache template engine for D'
 arch=('x86_64')
 url='https://github.com/repeatedly/mustache-d'



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:05:57
  Author: wild
Revision: 1186588

archrelease: copy trunk to community-x86_64

Added:
  tilix/repos/community-x86_64/PKGBUILD
(from rev 1186587, tilix/trunk/PKGBUILD)
Deleted:
  tilix/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 16:05:52 UTC (rev 1186587)
+++ PKGBUILD2022-04-15 16:05:57 UTC (rev 1186588)
@@ -1,40 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: dsboger 
-# Contributor: Carl George < arch at cgtx dot us >
-
-pkgname=tilix
-pkgver=1.9.5
-pkgrel=1
-pkgdesc="A tiling terminal emulator for Linux using GTK+ 3"
-arch=('x86_64')
-url="https://github.com/gnunn1/tilix;
-license=('MPL')
-depends=('libx11' 'gtkd' 'vte3' 'dconf' 'gsettings-desktop-schemas')
-makedepends=('ldc' 'po4a' 'meson' 'appstream')
-optdepends=('python-nautilus: for "Open Tilix Here" support in nautilus'
-'libsecret: for the password manager')
-source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-sha256sums=('e25335a3f7ab06779b957d08ffaf7698c966c3b5179d002f82ce41c692fc0b89')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  # Build with LDC
-  export DC=ldc
-  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto/--flto=full/')"
-
-  arch-meson ../$pkgname-$pkgver
-
-  ninja
-}
-
-package() {
-  cd build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: tilix/repos/community-x86_64/PKGBUILD (from rev 1186587, 
tilix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 16:05:57 UTC (rev 1186588)
@@ -0,0 +1,40 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: dsboger 
+# Contributor: Carl George < arch at cgtx dot us >
+
+pkgname=tilix
+pkgver=1.9.5
+pkgrel=2
+pkgdesc="A tiling terminal emulator for Linux using GTK+ 3"
+arch=('x86_64')
+url="https://github.com/gnunn1/tilix;
+license=('MPL')
+depends=('libx11' 'gtkd' 'vte3' 'dconf' 'gsettings-desktop-schemas')
+makedepends=('ldc' 'po4a' 'meson' 'appstream')
+optdepends=('python-nautilus: for "Open Tilix Here" support in nautilus'
+'libsecret: for the password manager')
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+sha256sums=('e25335a3f7ab06779b957d08ffaf7698c966c3b5179d002f82ce41c692fc0b89')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  # Build with LDC
+  export DC=ldc
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
+
+  arch-meson ../$pkgname-$pkgver
+
+  ninja
+}
+
+package() {
+  cd build
+
+  DESTDIR="$pkgdir" ninja install
+}



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:05:52
  Author: wild
Revision: 1186587

upgpkg: tilix 1.9.5-2: Rebuilt against new ldc

Modified:
  tilix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 16:04:38 UTC (rev 1186586)
+++ PKGBUILD2022-04-15 16:05:52 UTC (rev 1186587)
@@ -5,7 +5,7 @@
 
 pkgname=tilix
 pkgver=1.9.5
-pkgrel=1
+pkgrel=2
 pkgdesc="A tiling terminal emulator for Linux using GTK+ 3"
 arch=('x86_64')
 url="https://github.com/gnunn1/tilix;
@@ -26,7 +26,7 @@
 
   # Build with LDC
   export DC=ldc
-  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto/--flto=full/')"
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
 
   arch-meson ../$pkgname-$pkgver
 



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:04:38
  Author: wild
Revision: 1186586

archrelease: copy trunk to community-x86_64

Added:
  gtkd/repos/community-x86_64/PKGBUILD
(from rev 1186585, gtkd/trunk/PKGBUILD)
Deleted:
  gtkd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 16:04:32 UTC (rev 1186585)
+++ PKGBUILD2022-04-15 16:04:38 UTC (rev 1186586)
@@ -1,45 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Severen Redwood 
-# Contributor: Robert Welin 
-# Contributorr: dsboger 
-
-pkgname=gtkd
-pkgver=3.10.0
-pkgrel=2
-pkgdesc='D bindings for GTK+ and related libraries.'
-arch=('x86_64')
-url='https://gtkd.org'
-license=('LGPL')
-depends=('liblphobos' 'gtk3')
-makedepends=('ldc')
-optdepends=('pango' 'atk' 'gdk-pixbuf2' 'gtksourceview3' 'gstreamer' 'vte3' 
'libpeas')
-source=("GtkD-$pkgver.tar.gz::https://github.com/gtkd-developers/GtkD/archive/v$pkgver.tar.gz;)
-sha512sums=('1e75d6cbd278a065ce26b33320fe06cc7a30af8bd884c3c87abe799afaf9da8339d3c4470163b62ec8b70e8c540285b8c2c409c7b77423142a301f23ba37ff2e')
-
-build() {
-cd GtkD-$pkgver
-   export _ldFlags="$(echo -ne $LDFLAGS | sed -e 's/ /,/g')"
-
-make \
-   DC='ldc' \
-   LDFLAGS="-L=\"$_ldFlags\"" \
-   libdir='lib/' \
-shared-{gtkd,gtkdgl,sv,gstreamer,vte,peas}
-}
-
-check() {
-cd GtkD-$pkgver
-
-make LDFLAGS='' test
-}
-
-package() {
-cd GtkD-$pkgver
-
-make \
-   prefix='/usr' \
-   libdir='lib/' \
-   DESTDIR="$pkgdir" \
-   
install-{shared,headers}-{gtkd,gtkdgl,gtkdsv,gstreamer,vte,peas}
-}

Copied: gtkd/repos/community-x86_64/PKGBUILD (from rev 1186585, 
gtkd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 16:04:38 UTC (rev 1186586)
@@ -0,0 +1,45 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Severen Redwood 
+# Contributor: Robert Welin 
+# Contributorr: dsboger 
+
+pkgname=gtkd
+pkgver=3.10.0
+pkgrel=3
+pkgdesc='D bindings for GTK+ and related libraries.'
+arch=('x86_64')
+url='https://gtkd.org'
+license=('LGPL')
+depends=('liblphobos' 'gtk3')
+makedepends=('ldc')
+optdepends=('pango' 'atk' 'gdk-pixbuf2' 'gtksourceview3' 'gstreamer' 'vte3' 
'libpeas')
+source=("GtkD-$pkgver.tar.gz::https://github.com/gtkd-developers/GtkD/archive/v$pkgver.tar.gz;)
+sha512sums=('1e75d6cbd278a065ce26b33320fe06cc7a30af8bd884c3c87abe799afaf9da8339d3c4470163b62ec8b70e8c540285b8c2c409c7b77423142a301f23ba37ff2e')
+
+build() {
+cd GtkD-$pkgver
+   export _ldFlags="$(echo -ne $LDFLAGS | sed -e 's/ /,/g')"
+
+make \
+   DC='ldc' \
+   LDFLAGS="-L=\"$_ldFlags\"" \
+   libdir='lib/' \
+shared-{gtkd,gtkdgl,sv,gstreamer,vte,peas}
+}
+
+check() {
+cd GtkD-$pkgver
+
+make LDFLAGS='' test
+}
+
+package() {
+cd GtkD-$pkgver
+
+make \
+   prefix='/usr' \
+   libdir='lib/' \
+   DESTDIR="$pkgdir" \
+   
install-{shared,headers}-{gtkd,gtkdgl,gtkdsv,gstreamer,vte,peas}
+}



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:04:32
  Author: wild
Revision: 1186585

upgpkg: gtkd 3.10.0-3: Rebuilt against new ldc

Modified:
  gtkd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 16:02:27 UTC (rev 1186584)
+++ PKGBUILD2022-04-15 16:04:32 UTC (rev 1186585)
@@ -6,7 +6,7 @@
 
 pkgname=gtkd
 pkgver=3.10.0
-pkgrel=2
+pkgrel=3
 pkgdesc='D bindings for GTK+ and related libraries.'
 arch=('x86_64')
 url='https://gtkd.org'



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:02:27
  Author: wild
Revision: 1186584

archrelease: copy trunk to community-x86_64

Added:
  adrdox/repos/community-x86_64/PKGBUILD
(from rev 1186583, adrdox/trunk/PKGBUILD)
Deleted:
  adrdox/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 16:02:22 UTC (rev 1186583)
+++ PKGBUILD2022-04-15 16:02:27 UTC (rev 1186584)
@@ -1,30 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-
-pkgname=adrdox
-pkgver=2.5.2
-pkgrel=1
-pkgdesc='Documentation generator for D'
-arch=('x86_64')
-url='https://github.com/adamdruppe/adrdox'
-license=('Boost')
-depends=('liblphobos' 'postgresql-libs')
-makedepends=('ldc')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('ccf53adc48f730b3f1e7e05fe6a88a53e2ef086609d3b10f85d1dacd6b2b983d81e90bd7124e7c6a10459ea374f63f580414cffa5a95bec07831f648e097c138')
-
-prepare() {
-cd $pkgname-$pkgver
-sed -i "s/-g/-g -L=\"$LDFLAGS\"/g" Makefile
-}
-
-build() {
-cd $pkgname-$pkgver
-
-make ldc
-}
-
-package() {
-cd $pkgname-$pkgver
-
-install -Dm 755 $pkgname.main "$pkgdir"/usr/bin/$pkgname
-}

Copied: adrdox/repos/community-x86_64/PKGBUILD (from rev 1186583, 
adrdox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 16:02:27 UTC (rev 1186584)
@@ -0,0 +1,30 @@
+# Maintainer: Filipe Laíns (FFY00) 
+
+pkgname=adrdox
+pkgver=2.5.2
+pkgrel=2
+pkgdesc='Documentation generator for D'
+arch=('x86_64')
+url='https://github.com/adamdruppe/adrdox'
+license=('Boost')
+depends=('liblphobos' 'postgresql-libs')
+makedepends=('ldc')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('ccf53adc48f730b3f1e7e05fe6a88a53e2ef086609d3b10f85d1dacd6b2b983d81e90bd7124e7c6a10459ea374f63f580414cffa5a95bec07831f648e097c138')
+
+prepare() {
+cd $pkgname-$pkgver
+sed -i "s/-g/-g -L=\"$LDFLAGS\"/g" Makefile
+}
+
+build() {
+cd $pkgname-$pkgver
+
+make ldc
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -Dm 755 $pkgname.main "$pkgdir"/usr/bin/$pkgname
+}



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:02:22
  Author: wild
Revision: 1186583

upgpkg: adrdox 2.5.2-2: Rebuilt against new ldc

Modified:
  adrdox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 16:00:10 UTC (rev 1186582)
+++ PKGBUILD2022-04-15 16:02:22 UTC (rev 1186583)
@@ -2,7 +2,7 @@
 
 pkgname=adrdox
 pkgver=2.5.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Documentation generator for D'
 arch=('x86_64')
 url='https://github.com/adamdruppe/adrdox'



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:00:10
  Author: wild
Revision: 1186582

archrelease: copy trunk to community-x86_64

Added:
  dtools/repos/community-x86_64/PKGBUILD
(from rev 1186581, dtools/trunk/PKGBUILD)
Deleted:
  dtools/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 16:00:05 UTC (rev 1186581)
+++ PKGBUILD2022-04-15 16:00:10 UTC (rev 1186582)
@@ -1,47 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Mihails Strasunse 
-
-pkgname=dtools
-pkgver=2.099.0
-pkgrel=1
-pkgdesc='Ancilliary tools for the D programming language'
-license=('Boost')
-groups=('dlang')
-arch=('x86_64')
-url='https://www.dlang.org'
-makedepends=('dmd' 'libphobos')
-provides=('ddemangle' 'dustmite' 'rdmd')
-conflicts=('ddemangle' 'dustmite' 'rdmd')
-depends=('curl')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/tools/archive/v$pkgver.tar.gz;)
-sha512sums=('0c92fa2974d92dd741f0cfcc2a7f3320917d2c5220af087d544a08f8cc713e84fa5ad46db40f32c883da4c450e27bfc046ac237c20169f9d405549756941')
-
-build() {
-DMD=dmd
-
-# Add $LDFLAGS to the compilation, and remove -flto
-_linkflags=$(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed -e "s/,/ 
-L=/g" -e "s/-flto=auto//")
-
-cd tools-$pkgver
-# rdmd is used to build others
-$DMD -od. -ofdtools-rdmd -L--build-id $_linkflags rdmd.d
-
-for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
-./dtools-rdmd --compiler=$DMD --build-only -od. -ofdtools-`basename 
$tool` $_linkflags $tool.d
-done
-}
-
-package() {
-cd tools-$pkgver
-
-mkdir -p "$pkgdir/usr/bin"
-for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
-install -m755 -t "$pkgdir/usr/bin" $pkgname-$tool
-done
-
-cd "$pkgdir"
-ln -s dtools-rdmd usr/bin/rdmd
-ln -s dtools-dustmite usr/bin/dustmite
-ln -s dtools-ddemangle usr/bin/ddemangle
-}

Copied: dtools/repos/community-x86_64/PKGBUILD (from rev 1186581, 
dtools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 16:00:10 UTC (rev 1186582)
@@ -0,0 +1,47 @@
+# Maintainer: Dan Printzell 
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Mihails Strasunse 
+
+pkgname=dtools
+pkgver=2.099.1
+pkgrel=1
+pkgdesc='Ancilliary tools for the D programming language'
+license=('Boost')
+groups=('dlang')
+arch=('x86_64')
+url='https://www.dlang.org'
+makedepends=('dmd' 'libphobos')
+provides=('ddemangle' 'dustmite' 'rdmd')
+conflicts=('ddemangle' 'dustmite' 'rdmd')
+depends=('curl')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/tools/archive/v$pkgver.tar.gz;)
+sha512sums=('68cde8853bac2f3c92a2fbbe3f658e29b475bea2aeb5f5ffb96f2b3e85aca693b1d14c8fa248bad882461e55957c1de5cba9ac7a02b3a28be070e4869b6a4171')
+
+build() {
+DMD=dmd
+
+# Add $LDFLAGS to the compilation, and remove -flto
+_linkflags=$(echo -ne $LDFLAGS | cut -d\" -f2 | tail -c+4 | sed -e "s/,/ 
-L=/g" -e "s/-flto=auto//")
+
+cd tools-$pkgver
+# rdmd is used to build others
+$DMD -od. -ofdtools-rdmd -L--build-id $_linkflags rdmd.d
+
+for tool in DustMite/dustmite ddemangle catdoc detab tolf dget; do
+./dtools-rdmd --compiler=$DMD --build-only -od. -ofdtools-`basename 
$tool` $_linkflags $tool.d
+done
+}
+
+package() {
+cd tools-$pkgver
+
+mkdir -p "$pkgdir/usr/bin"
+for tool in rdmd ddemangle catdoc detab tolf dget dustmite; do
+install -m755 -t "$pkgdir/usr/bin" $pkgname-$tool
+done
+
+cd "$pkgdir"
+ln -s dtools-rdmd usr/bin/rdmd
+ln -s dtools-dustmite usr/bin/dustmite
+ln -s dtools-ddemangle usr/bin/ddemangle
+}



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 16:00:05
  Author: wild
Revision: 1186581

upgpkg: dtools 2.099.1-1: Updated to 2.099.1

Modified:
  dtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 15:58:47 UTC (rev 1186580)
+++ PKGBUILD2022-04-15 16:00:05 UTC (rev 1186581)
@@ -3,7 +3,7 @@
 # Contributor: Mihails Strasunse 
 
 pkgname=dtools
-pkgver=2.099.0
+pkgver=2.099.1
 pkgrel=1
 pkgdesc='Ancilliary tools for the D programming language'
 license=('Boost')
@@ -15,7 +15,7 @@
 conflicts=('ddemangle' 'dustmite' 'rdmd')
 depends=('curl')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/dlang/tools/archive/v$pkgver.tar.gz;)
-sha512sums=('0c92fa2974d92dd741f0cfcc2a7f3320917d2c5220af087d544a08f8cc713e84fa5ad46db40f32c883da4c450e27bfc046ac237c20169f9d405549756941')
+sha512sums=('68cde8853bac2f3c92a2fbbe3f658e29b475bea2aeb5f5ffb96f2b3e85aca693b1d14c8fa248bad882461e55957c1de5cba9ac7a02b3a28be070e4869b6a4171')
 
 build() {
 DMD=dmd



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 15:58:47
  Author: wild
Revision: 1186580

archrelease: copy trunk to community-x86_64

Added:
  dmd/repos/community-x86_64/PKGBUILD
(from rev 1186579, dmd/trunk/PKGBUILD)
  dmd/repos/community-x86_64/dmd-doc.desktop
(from rev 1186579, dmd/trunk/dmd-doc.desktop)
  dmd/repos/community-x86_64/dmd.conf
(from rev 1186579, dmd/trunk/dmd.conf)
Deleted:
  dmd/repos/community-x86_64/PKGBUILD
  dmd/repos/community-x86_64/dmd-doc.desktop
  dmd/repos/community-x86_64/dmd.conf

-+
 PKGBUILD|  274 +++---
 dmd-doc.desktop |   14 +-
 dmd.conf|   10 -
 3 files changed, 149 insertions(+), 149 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 15:58:41 UTC (rev 1186579)
+++ PKGBUILD2022-04-15 15:58:47 UTC (rev 1186580)
@@ -1,137 +0,0 @@
-# Maintainer: Dan Printzell 
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Mihails Strasunse 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Chris Brannon 
-# Contributor: Andrea Scarpino 
-# Contributor: Anders Bergh 
-# Contributor: Alexander Fehr 
-
-pkgname=('dmd' 'dmd-docs' 'libphobos')
-pkgdesc='D programming language compiler and standard library'
-groups=('dlang' 'dlang-dmd')
-pkgbase=dmd
-pkgver=2.099.0
-pkgrel=1
-epoch=1
-arch=('x86_64')
-url='https://www.dlang.org'
-makedepends=('git' 'ldc')
-source=("git+https://github.com/dlang/dmd.git#tag=v$pkgver;
-"git+https://github.com/dlang/druntime.git#tag=v$pkgver;
-"git+https://github.com/dlang/phobos.git#tag=v$pkgver;
-
"http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz;
-
"http://downloads.dlang.org/releases/2.x/$pkgver/dmd.$pkgver.linux.tar.xz.sig;
-'dmd.conf'
-'dmd-doc.desktop')
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'d4c0fced16bbc3abfe158d3f24536a6272fa3d0c2091687b3bb1e9333d03b5a6'
-'SKIP'
-'3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
-'4b7b8722b3fa11082f0f332397b1b66c85b30ce773c43c3fedcba5768a1484b1')
-# Key from https://dlang.org/gpg_keys.html
-validpgpkeys=('F46A10D0AB44C3D15DD65797BCDD73FFC3EB6146') # Martin Nowak 

-noextract=("dmd.$pkgver.linux.tar.xz")
-
-prepare() {
-# We only want to extract the docs & samples, not the prebuild executables
-tar xfJ "dmd.$pkgver.linux.tar.xz" dmd2/html
-
-# Make sure the version is not -dirty
-sed -i "s/\.git/.nope/" "$srcdir"/dmd/src/build.d
-}
-
-build() {
-export DFLAGS="-link-defaultlib-shared=false $(echo -ne $LDFLAGS | cut 
-d\" -f2 | tail -c+4 | sed -e "s/,/ -L=/g" -e "s/-flto=auto/--flto=full/")"
-export HOST_DMD=ldmd2
-
-cd "$srcdir"/dmd
-# Make the build tool. Instructions from src/posix.mak
-mkdir generated
-$HOST_DMD -ofgenerated/build -g src/build.d -release -O
-# Actually build dmd
-generated/build BUILD=release HOST_DMD="$HOST_DMD" CXX="c++" 
ENABLE_RELEASE=1 DFLAGS="$DFLAGS" dmd -v $MAKEFLAGS
-
-cd "$srcdir"/druntime
-make -f posix.mak DMD="$srcdir"/dmd/generated/linux/release/*/dmd 
BUILD=release ENABLE_RELEASE=1 PIC=1
-
-cd "$srcdir"/phobos
-make -f posix.mak DMD="$srcdir"/dmd/generated/linux/release/*/dmd 
BUILD=release ENABLE_RELEASE=1 PIC=1
-
-# This requires object.d to compile, thus need to be after druntime is 
built
-cd "$srcdir"/dmd
-make -C docs DMD=$HOST_DMD
-}
-
-package_dmd() {
-pkgdesc="The D programming language reference compiler"
-backup=('etc/dmd.conf')
-depends=('gcc' 'libphobos')
-optdepends=(
-'dtools: collection of useful utilities for development in D'
-'gcc-multilib: to cross-compile 32-bit applications'
-'dmd-docs: documentation and sample code for D'
-)
-provides=("d-compiler=$pkgver")
-license=('Boost')
-
-cd "$srcdir"/dmd
-
-install -Dm755 "$srcdir"/dmd/generated/linux/release/*/dmd 
"$pkgdir"/usr/bin/dmd
-
-mkdir -p "$pkgdir"/etc
-install -Dm644 "$srcdir"/dmd.conf "$pkgdir"/etc/dmd.conf
-
-mkdir -p "$pkgdir"/usr/share/man/man1
-mkdir -p "$pkgdir"/usr/share/man/man5
-cp generated/docs/man/man1/dmd.1 "$pkgdir"/usr/share/man/man1/
-cp -r generated/docs/man/man5/* "$pkgdir"/usr/share/man/man5/
-
-install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-find "$pkgdir"/usr -type f | xargs chmod 0644
-chmod 755 "$pkgdir"/usr/bin/*
-}
-
-package_dmd-docs() {
-pkgdesc="Documentation and sample code for D programming language"
-depends=('dmd')
-license=('Boost')
-
-cd "$srcdir"/dmd
-
-mkdir -p "$pkgdir"/usr/share/applications
-install -Dm644 "$srcdir"/dmd-doc.desktop 
"$pkgdir"/usr/share/applications/dmd-doc.desktop
-
-mkdir -p "$pkgdir"/usr/share/d/samples/
-cp -r samples/* "$pkgdir"/usr/share/d/samples/
-
-mkdir -p "$pkgdir"/usr/share/d/html
-cp -r 

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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 15:58:41
  Author: wild
Revision: 1186579

upgpkg: dmd 1:2.099.1-1: Updated to 2.099.1

Modified:
  dmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 15:55:55 UTC (rev 1186578)
+++ PKGBUILD2022-04-15 15:58:41 UTC (rev 1186579)
@@ -11,7 +11,7 @@
 pkgdesc='D programming language compiler and standard library'
 groups=('dlang' 'dlang-dmd')
 pkgbase=dmd
-pkgver=2.099.0
+pkgver=2.099.1
 pkgrel=1
 epoch=1
 arch=('x86_64')
@@ -27,12 +27,12 @@
 sha256sums=('SKIP'
 'SKIP'
 'SKIP'
-'d4c0fced16bbc3abfe158d3f24536a6272fa3d0c2091687b3bb1e9333d03b5a6'
+'1ceb799d2b0eb87929ecc63e1cfbb59a1d16c217ffe446779eead4096524'
 'SKIP'
 '3d639e89528fed1da90006f4dfb2b0fdc41308da5a96d953381ff4ccf257c035'
 '4b7b8722b3fa11082f0f332397b1b66c85b30ce773c43c3fedcba5768a1484b1')
 # Key from https://dlang.org/gpg_keys.html
-validpgpkeys=('F46A10D0AB44C3D15DD65797BCDD73FFC3EB6146') # Martin Nowak 

+validpgpkeys=('F8A26D5D7572ECA06EC7973182C52E37A8BC8393') # Martin Nowak 

 noextract=("dmd.$pkgver.linux.tar.xz")
 
 prepare() {



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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 15:55:55
  Author: wild
Revision: 1186578

archrelease: copy trunk to community-x86_64

Added:
  ldc/repos/community-x86_64/PKGBUILD
(from rev 1186577, ldc/trunk/PKGBUILD)
  
ldc/repos/community-x86_64/keep-default-alignment-for-atomic-instructions.patch
(from rev 1186577, 
ldc/trunk/keep-default-alignment-for-atomic-instructions.patch)
Deleted:
  ldc/repos/community-x86_64/PKGBUILD
  
ldc/repos/community-x86_64/keep-default-alignment-for-atomic-instructions.patch

--+
 PKGBUILD |  220 -
 keep-default-alignment-for-atomic-instructions.patch |   64 ++--
 2 files changed, 142 insertions(+), 142 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 15:55:37 UTC (rev 1186577)
+++ PKGBUILD2022-04-15 15:55:55 UTC (rev 1186578)
@@ -1,110 +0,0 @@
-# Maintainer: Dan Printzell 
-# Contributor: Mihails Strasuns 
-# Contributor: Sven-Hendrik Haase 
-
-pkgname=('ldc' 'liblphobos')
-groups=('dlang' 'dlang-ldc')
-pkgver=1.28.1
-_pkgcommit=34afd6a43abf62b2050a5b0b2c20202080b1163b
-_dversion=2.098.1
-_clangversion=13.0.1 # related to where ldc2 looks for compiler-rt sanitizers
-epoch=3
-pkgrel=2
-pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2"
-arch=('x86_64')
-url="https://github.com/ldc-developers/ldc;
-license=('BSD')
-makedepends=('git' 'cmake' 'llvm' 'ldc' 'ninja')
-# Disable lto as linking the ldc2 binary fails
-options=(!lto)
-
-source=(
-"git+https://github.com/ldc-developers/ldc#commit=$_pkgcommit;
-"ldc-druntime::git+https://github.com/ldc-developers/druntime.git;
-"ldc-phobos::git+https://github.com/ldc-developers/phobos.git;
-"ldc-testsuite::git+https://github.com/ldc-developers/dmd-testsuite.git;
-)
-
-sha256sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-cd "$srcdir/ldc"
-
-git submodule init
-git config submodule.druntime.url "$srcdir/ldc-druntime"
-git config submodule.phobos.url "$srcdir/ldc-phobos"
-git config submodule.tests/d2/dmd-testsuite.url "$srcdir/ldc-testsuite"
-git submodule update
-
-# Set version used for path construction in getFullClangCompilerRTLibPath()
-sed -i "s/ldc::llvm_version_base/\"$_clangversion\"/" driver/linker-gcc.cpp
-}
-
-build() {
-cd "$srcdir/ldc"
-
-mkdir -p build && cd build
-
-cmake -GNinja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DINCLUDE_INSTALL_DIR=/usr/include/dlang/ldc \
--DBUILD_SHARED_LIBS=BOTH \
--DBUILD_LTO_LIBS=ON \
--DLDC_WITH_LLD=OFF \
--DD_COMPILER_FLAGS="-link-defaultlib-shared=false -linker=gold 
--flto=thin" \
--DADDITIONAL_DEFAULT_LDC_SWITCHES="\"-link-defaultlib-shared\"" \
-..
-ninja
-}
-
-check() {
-cd "$srcdir/ldc/build"
-ninja all-test-runners
-}
-
-package_ldc() {
-depends=('liblphobos' 'llvm-libs' 'gcc' 'compiler-rt')
-backup=('etc/ldc2.conf')
-provides=("d-compiler=$_dversion")
-
-cd "$srcdir/ldc/build"
-DESTDIR="$pkgdir" ninja install
-
-# move bash-completion
-mkdir -p "$pkgdir/usr/share/bash-completion/completions/"
-mv "$pkgdir/etc/bash_completion.d/ldc2" 
"$pkgdir/usr/share/bash-completion/completions/"
-rm -rf "$pkgdir/etc/bash_completion.d"
-
-# remove liblphobos files
-rm -rf "$pkgdir/usr/include"
-rm -rf "$pkgdir/usr/lib"
-
-# symlinks
-ln -s /usr/share/bash-completion/completions/ldc2 
"$pkgdir/usr/share/bash-completion/completions/ldc"
-ln -s /usr/bin/ldc2 "$pkgdir/usr/bin/ldc"
-ln -s /usr/bin/ldmd2 "$pkgdir/usr/bin/ldmd"
-
-# licenses
-install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_liblphobos() {
-provides=('d-runtime' 'd-stdlib')
-depends=('curl')
-options=('staticlibs' '!strip')
-
-cd "$srcdir/ldc/build"
-DESTDIR="$pkgdir" ninja install
-
-# remove ldc files
-rm -rf "$pkgdir/usr/bin/"
-rm -rf "$pkgdir/etc/"
-
-# licenses
-install -D -m644 "$srcdir/ldc/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: ldc/repos/community-x86_64/PKGBUILD (from rev 1186577, 
ldc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 15:55:55 UTC (rev 1186578)
@@ -0,0 +1,110 @@
+# Maintainer: Dan Printzell 
+# Contributor: Mihails Strasuns 
+# Contributor: Sven-Hendrik Haase 
+
+pkgname=('ldc' 'liblphobos')
+groups=('dlang' 'dlang-ldc')
+pkgver=1.29.0
+_pkgcommit=6aa350a1cf000db263db36a2bc5624935adfde71
+_dversion=2.099.1
+_clangversion=13.0.1 # related to where ldc2 looks for compiler-rt sanitizers
+epoch=3
+pkgrel=1
+pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 

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

2022-04-15 Thread Dan Printzell via arch-commits
Date: Friday, April 15, 2022 @ 15:55:37
  Author: wild
Revision: 1186577

upgpkg: ldc 3:1.29.0-1: Updated to 1.29.0

Modified:
  ldc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 15:46:25 UTC (rev 1186576)
+++ PKGBUILD2022-04-15 15:55:37 UTC (rev 1186577)
@@ -4,12 +4,12 @@
 
 pkgname=('ldc' 'liblphobos')
 groups=('dlang' 'dlang-ldc')
-pkgver=1.28.1
-_pkgcommit=34afd6a43abf62b2050a5b0b2c20202080b1163b
-_dversion=2.098.1
+pkgver=1.29.0
+_pkgcommit=6aa350a1cf000db263db36a2bc5624935adfde71
+_dversion=2.099.1
 _clangversion=13.0.1 # related to where ldc2 looks for compiler-rt sanitizers
 epoch=3
-pkgrel=2
+pkgrel=1
 pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D 
runtime and libphobos2"
 arch=('x86_64')
 url="https://github.com/ldc-developers/ldc;



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

2022-04-15 Thread Santiago Torres-Arias via arch-commits
Date: Friday, April 15, 2022 @ 15:46:25
  Author: sangy
Revision: 1186576

archrelease: copy trunk to community-x86_64

Added:
  notcurses/repos/community-x86_64/PKGBUILD
(from rev 1186575, notcurses/trunk/PKGBUILD)
Deleted:
  notcurses/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 15:45:52 UTC (rev 1186575)
+++ PKGBUILD2022-04-15 15:46:25 UTC (rev 1186576)
@@ -1,40 +0,0 @@
-# Maintainer: Santiago Torres-Arias  a.o >
-# Maintainer: Nick Black 
-
-pkgname=notcurses
-pkgver=3.0.7
-pkgrel=1
-pkgdesc="Blingful TUI/character graphics library"
-url="https://nick-black.com/dankwiki/index.php/Notcurses;
-license=('Apache')
-arch=('x86_64')
-# qrcodegen is currently shipped as a static archive on Arch, rather than a
-# dynamic library. Should the .so be shipped in the future, promote qrcodegen
-# from a makedepends to a true depends, and use that dynamic library.
-depends=('ncurses' 'ffmpeg' 'libunistring' 'gpm')
-makedepends=('libdeflate' 'cmake' 'pandoc' 'python-pip' 'python-pypandoc' 
'python-cffi' 'python-setuptools' 'readline' 'ninja' 'zlib' 'gpm' 'doctest')
-source=("https://github.com/dankamongmen/notcurses/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('db461c6ba07a8e3735a51a1d2e706d249ae30436519f543fa5931d414019c770')
-
-prepare() {
-  mkdir -p "${pkgname}-${pkgver}/build"
-  cd "${pkgname}-${pkgver}/build"
-  cmake .. -GNinja -DCMAKE_INSTALL_PREFIX="/usr" 
-DCMAKE_BUILD_TYPE=RelWithDebInfo -DUSE_QRCODEGEN=off -DUSE_GPM=on
-}
-
-build() {
-  cd "${pkgname}-${pkgver}/build"
-  ninja
-}
-
-check() {
-  cd "${pkgname}-${pkgver}/build"
-  ninja test 
-}
-
-package() {
-  cd "${pkgname}-${pkgver}/build"
-  DESTDIR="$pkgdir" ninja install
-  cd ../cffi
-  env CFLAGS="-I$pkgdir/usr/include -L../build" python setup.py install 
--root="$pkgdir" --optimize=1
-}

Copied: notcurses/repos/community-x86_64/PKGBUILD (from rev 1186575, 
notcurses/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 15:46:25 UTC (rev 1186576)
@@ -0,0 +1,40 @@
+# Maintainer: Santiago Torres-Arias  a.o >
+# Maintainer: Nick Black 
+
+pkgname=notcurses
+pkgver=3.0.8
+pkgrel=1
+pkgdesc="Blingful TUI/character graphics library"
+url="https://nick-black.com/dankwiki/index.php/Notcurses;
+license=('Apache')
+arch=('x86_64')
+# qrcodegen is currently shipped as a static archive on Arch, rather than a
+# dynamic library. Should the .so be shipped in the future, promote qrcodegen
+# from a makedepends to a true depends, and use that dynamic library.
+depends=('ncurses' 'ffmpeg' 'libunistring' 'gpm')
+makedepends=('libdeflate' 'cmake' 'pandoc' 'python-pip' 'python-pypandoc' 
'python-cffi' 'python-setuptools' 'readline' 'ninja' 'zlib' 'gpm' 'doctest')
+source=("https://github.com/dankamongmen/notcurses/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('56c33ffe2a2bc4d0b6e3ac14bdf620cf41e3293789135f76825057d0166974fd')
+
+prepare() {
+  mkdir -p "${pkgname}-${pkgver}/build"
+  cd "${pkgname}-${pkgver}/build"
+  cmake .. -GNinja -DCMAKE_INSTALL_PREFIX="/usr" 
-DCMAKE_BUILD_TYPE=RelWithDebInfo -DUSE_QRCODEGEN=off -DUSE_GPM=on
+}
+
+build() {
+  cd "${pkgname}-${pkgver}/build"
+  ninja
+}
+
+check() {
+  cd "${pkgname}-${pkgver}/build"
+  ninja test 
+}
+
+package() {
+  cd "${pkgname}-${pkgver}/build"
+  DESTDIR="$pkgdir" ninja install
+  cd ../cffi
+  env CFLAGS="-I$pkgdir/usr/include -L../build" python setup.py install 
--root="$pkgdir" --optimize=1
+}



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

2022-04-15 Thread Santiago Torres-Arias via arch-commits
Date: Friday, April 15, 2022 @ 15:45:52
  Author: sangy
Revision: 1186575

upgpkg: notcurses 3.0.8-1

Modified:
  notcurses/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 15:21:19 UTC (rev 1186574)
+++ PKGBUILD2022-04-15 15:45:52 UTC (rev 1186575)
@@ -2,7 +2,7 @@
 # Maintainer: Nick Black 
 
 pkgname=notcurses
-pkgver=3.0.7
+pkgver=3.0.8
 pkgrel=1
 pkgdesc="Blingful TUI/character graphics library"
 url="https://nick-black.com/dankwiki/index.php/Notcurses;
@@ -14,7 +14,7 @@
 depends=('ncurses' 'ffmpeg' 'libunistring' 'gpm')
 makedepends=('libdeflate' 'cmake' 'pandoc' 'python-pip' 'python-pypandoc' 
'python-cffi' 'python-setuptools' 'readline' 'ninja' 'zlib' 'gpm' 'doctest')
 
source=("https://github.com/dankamongmen/notcurses/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('db461c6ba07a8e3735a51a1d2e706d249ae30436519f543fa5931d414019c770')
+sha256sums=('56c33ffe2a2bc4d0b6e3ac14bdf620cf41e3293789135f76825057d0166974fd')
 
 prepare() {
   mkdir -p "${pkgname}-${pkgver}/build"



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

2022-04-15 Thread Morten Linderud via arch-commits
Date: Friday, April 15, 2022 @ 15:21:19
  Author: foxboron
Revision: 1186574

archrelease: copy trunk to community-any

Added:
  python-google-api-python-client/repos/community-any/PKGBUILD
(from rev 1186573, python-google-api-python-client/trunk/PKGBUILD)
Deleted:
  python-google-api-python-client/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 15:21:14 UTC (rev 1186573)
+++ PKGBUILD2022-04-15 15:21:19 UTC (rev 1186574)
@@ -1,30 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Maintainer: Morten Linderud 
-# Contributor: shadyabhi 
-
-pkgname=python-google-api-python-client
-pkgver=2.43.0
-pkgrel=1
-pkgdesc="Google API Client Library for Python"
-arch=('any')
-url="https://github.com/google/google-api-python-client;
-license=('Apache')
-depends=('python-google-auth-httplib2' 'python-uritemplate' 
'python-google-api-core')
-optdepends=('python-oauth2client: optional backend')
-makedepends=('python-setuptools')
-source=("google-api-python-client-${pkgver}.tar.gz::https://github.com/google/google-api-python-client/archive/v${pkgver}.tar.gz;)
-sha256sums=('6c17087bfa8245325293e64d370e5f774b109f7bb49a5c6368f896b735925069')
-
-build() {
-  cd "google-api-python-client-${pkgver}"
-  python setup.py build
-}
- 
-package() {
-  cd "google-api-python-client-$pkgver"
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-
-  # Workaround for FS#47243
-  _site_packages=`python -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
-  chmod -R a+r "$pkgdir$_site_packages"
-}

Copied: python-google-api-python-client/repos/community-any/PKGBUILD (from rev 
1186573, python-google-api-python-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 15:21:19 UTC (rev 1186574)
@@ -0,0 +1,30 @@
+# Maintainer: Andrzej Giniewicz 
+# Maintainer: Morten Linderud 
+# Contributor: shadyabhi 
+
+pkgname=python-google-api-python-client
+pkgver=2.44.0
+pkgrel=1
+pkgdesc="Google API Client Library for Python"
+arch=('any')
+url="https://github.com/google/google-api-python-client;
+license=('Apache')
+depends=('python-google-auth-httplib2' 'python-uritemplate' 
'python-google-api-core')
+optdepends=('python-oauth2client: optional backend')
+makedepends=('python-setuptools')
+source=("google-api-python-client-${pkgver}.tar.gz::https://github.com/google/google-api-python-client/archive/v${pkgver}.tar.gz;)
+sha256sums=('56cca24cb8a79bd5ecfc28e94bf1c28521f17f69f73c5563c9483da44438aecf')
+
+build() {
+  cd "google-api-python-client-${pkgver}"
+  python setup.py build
+}
+ 
+package() {
+  cd "google-api-python-client-$pkgver"
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+
+  # Workaround for FS#47243
+  _site_packages=`python -c "from distutils.sysconfig import get_python_lib; 
print(get_python_lib())"`
+  chmod -R a+r "$pkgdir$_site_packages"
+}



[arch-commits] Commit in python-google-api-python-client/trunk (PKGBUILD)

2022-04-15 Thread Morten Linderud via arch-commits
Date: Friday, April 15, 2022 @ 15:21:14
  Author: foxboron
Revision: 1186573

upgpkg: python-google-api-python-client 2.44.0-1: upgpkg: 
python-google-api-python-client 2.44.0-1

Modified:
  python-google-api-python-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 15:19:26 UTC (rev 1186572)
+++ PKGBUILD2022-04-15 15:21:14 UTC (rev 1186573)
@@ -3,7 +3,7 @@
 # Contributor: shadyabhi 
 
 pkgname=python-google-api-python-client
-pkgver=2.43.0
+pkgver=2.44.0
 pkgrel=1
 pkgdesc="Google API Client Library for Python"
 arch=('any')
@@ -13,7 +13,7 @@
 optdepends=('python-oauth2client: optional backend')
 makedepends=('python-setuptools')
 
source=("google-api-python-client-${pkgver}.tar.gz::https://github.com/google/google-api-python-client/archive/v${pkgver}.tar.gz;)
-sha256sums=('6c17087bfa8245325293e64d370e5f774b109f7bb49a5c6368f896b735925069')
+sha256sums=('56cca24cb8a79bd5ecfc28e94bf1c28521f17f69f73c5563c9483da44438aecf')
 
 build() {
   cd "google-api-python-client-${pkgver}"



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

2022-04-15 Thread Morten Linderud via arch-commits
Date: Friday, April 15, 2022 @ 15:19:26
  Author: foxboron
Revision: 1186572

archrelease: copy trunk to community-any

Added:
  python-google-api-core/repos/community-any/PKGBUILD
(from rev 1186571, python-google-api-core/trunk/PKGBUILD)
Deleted:
  python-google-api-core/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 15:19:21 UTC (rev 1186571)
+++ PKGBUILD2022-04-15 15:19:26 UTC (rev 1186572)
@@ -1,27 +0,0 @@
-# Maintainer: Andrzej Giniewicz 
-# Maintainer: Morten Linderud 
-# Contributor: Kaizhao Zhang 
-
-pkgname=python-google-api-core
-pkgver=2.7.1
-pkgrel=1
-pkgdesc="Google API client core library"
-arch=('any')
-url="https://github.com/googleapis/googleapis;
-license=('Apache')
-depends=('python-pytz' 'python-requests' 'python-googleapis-common-protos' 
'python-google-auth')
-makedepends=('python-setuptools')
-optdepends=('python-grpcio: for grpc support')
-source=("https://files.pythonhosted.org/packages/source/g/google-api-core/google-api-core-${pkgver}.tar.gz;)
-sha256sums=('b0fa577e512f0c8e063386b974718b8614586a798c5894ed34bedf256d9dae24')
-
-build() {
-  cd "google-api-core-${pkgver}"
-  python setup.py build
-}
-
-package() {
-  cd "google-api-core-${pkgver}"
-  python setup.py install --root="$pkgdir" --optimize=1
-  chmod -R a+r 
"$pkgdir"/usr/lib/python*/site-packages/google_api_core*.egg-info/
-}

Copied: python-google-api-core/repos/community-any/PKGBUILD (from rev 1186571, 
python-google-api-core/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 15:19:26 UTC (rev 1186572)
@@ -0,0 +1,27 @@
+# Maintainer: Andrzej Giniewicz 
+# Maintainer: Morten Linderud 
+# Contributor: Kaizhao Zhang 
+
+pkgname=python-google-api-core
+pkgver=2.7.2
+pkgrel=1
+pkgdesc="Google API client core library"
+arch=('any')
+url="https://github.com/googleapis/googleapis;
+license=('Apache')
+depends=('python-pytz' 'python-requests' 'python-googleapis-common-protos' 
'python-google-auth')
+makedepends=('python-setuptools')
+optdepends=('python-grpcio: for grpc support')
+source=("https://files.pythonhosted.org/packages/source/g/google-api-core/google-api-core-${pkgver}.tar.gz;)
+sha256sums=('65480309a7437f739e4476da037af02a3ec8263f1d1f89f72bbdc8f54fe402d2')
+
+build() {
+  cd "google-api-core-${pkgver}"
+  python setup.py build
+}
+
+package() {
+  cd "google-api-core-${pkgver}"
+  python setup.py install --root="$pkgdir" --optimize=1
+  chmod -R a+r 
"$pkgdir"/usr/lib/python*/site-packages/google_api_core*.egg-info/
+}



[arch-commits] Commit in python-google-api-core/trunk (PKGBUILD)

2022-04-15 Thread Morten Linderud via arch-commits
Date: Friday, April 15, 2022 @ 15:19:21
  Author: foxboron
Revision: 1186571

upgpkg: python-google-api-core 2.7.2-1: upgpkg: python-google-api-core 2.7.2-1

Modified:
  python-google-api-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 15:18:39 UTC (rev 1186570)
+++ PKGBUILD2022-04-15 15:19:21 UTC (rev 1186571)
@@ -3,7 +3,7 @@
 # Contributor: Kaizhao Zhang 
 
 pkgname=python-google-api-core
-pkgver=2.7.1
+pkgver=2.7.2
 pkgrel=1
 pkgdesc="Google API client core library"
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools')
 optdepends=('python-grpcio: for grpc support')
 
source=("https://files.pythonhosted.org/packages/source/g/google-api-core/google-api-core-${pkgver}.tar.gz;)
-sha256sums=('b0fa577e512f0c8e063386b974718b8614586a798c5894ed34bedf256d9dae24')
+sha256sums=('65480309a7437f739e4476da037af02a3ec8263f1d1f89f72bbdc8f54fe402d2')
 
 build() {
   cd "google-api-core-${pkgver}"



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

2022-04-15 Thread Morten Linderud via arch-commits
Date: Friday, April 15, 2022 @ 15:18:39
  Author: foxboron
Revision: 1186570

archrelease: copy trunk to community-x86_64

Added:
  helm/repos/community-x86_64/PKGBUILD
(from rev 1186569, helm/trunk/PKGBUILD)
Deleted:
  helm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 15:18:35 UTC (rev 1186569)
+++ PKGBUILD2022-04-15 15:18:39 UTC (rev 1186570)
@@ -1,58 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Lukas Grossar 
-# Contributor: Ivan Shapovalov 
-# Contributor: Wayne Cheng 
-# Contributor: Matthias Lisin 
-
-pkgname=helm
-pkgver=3.8.1
-pkgrel=1
-pkgdesc="The Kubernetes Package Manager"
-arch=("x86_64")
-url="https://helm.sh/;
-license=("Apache")
-depends=('glibc')
-makedepends=("go" "git")
-options=("!lto")
-_commit=5cb9af4b1b271d11d7a97a71df3ac337dd94ad37   #refs/tags/v3.8.1^{}
-source=("git+https://github.com/helm/helm.git#commit=${_commit}?signed;)
-#source=("git+https://github.com/helm/helm.git#tag=v${pkgver}?signed;)
-validpgpkeys=('672C657BE06B4B30969C4A57461449C25E36B98E'
-  'CABAA8D44DFACA14791FBE9892C44A3D421FF7F9'
-  '967F8AC5E2216F9F4FD270AD92AA783CBAAE8E3B')
-sha256sums=('SKIP')
-
-pkgver() {
-  cd "${pkgname}"
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd "${pkgname}"
-  go mod tidy
-}
-
-build() {
-cd "${pkgname}"
-export CGO_LDFLAGS="$LDFLAGS"
-export CGO_CFLAGS="$CFLAGS"
-export CGO_CXXFLAGS="$CXXFLAGS"
-export CGO_CPPFLAGS="$CPPFLAGS"
-make EXT_LDFLAGS="-linkmode external" GOFLAGS="-buildmode=pie -trimpath"
-}
-
-check(){
-cd "${pkgname}"
-export CGO_LDFLAGS="$LDFLAGS"
-export CGO_CFLAGS="$CFLAGS"
-export CGO_CXXFLAGS="$CXXFLAGS"
-export CGO_CPPFLAGS="$CPPFLAGS"
-make LDFLAGS="-s -w -linkmode external" GOFLAGS="-buildmode=pie -trimpath" 
test-unit
-}
-
-package(){
-cd "${pkgname}"
-install -Dm755 bin/helm -t "$pkgdir/usr/bin"
-bin/helm completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/helm"
-bin/helm completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_helm"
-}

Copied: helm/repos/community-x86_64/PKGBUILD (from rev 1186569, 
helm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 15:18:39 UTC (rev 1186570)
@@ -0,0 +1,58 @@
+# Maintainer: Morten Linderud 
+# Contributor: Lukas Grossar 
+# Contributor: Ivan Shapovalov 
+# Contributor: Wayne Cheng 
+# Contributor: Matthias Lisin 
+
+pkgname=helm
+pkgver=3.8.2
+pkgrel=1
+pkgdesc="The Kubernetes Package Manager"
+arch=("x86_64")
+url="https://helm.sh/;
+license=("Apache")
+depends=('glibc')
+makedepends=("go" "git")
+options=("!lto")
+_commit=6e3701edea09e5d55a8ca2aae03a68917630e91b   #refs/tags/v3.8.2^{}
+source=("git+https://github.com/helm/helm.git#commit=${_commit}?signed;)
+#source=("git+https://github.com/helm/helm.git#tag=v${pkgver}?signed;)
+validpgpkeys=('672C657BE06B4B30969C4A57461449C25E36B98E'
+  'CABAA8D44DFACA14791FBE9892C44A3D421FF7F9'
+  '967F8AC5E2216F9F4FD270AD92AA783CBAAE8E3B')
+sha256sums=('SKIP')
+
+pkgver() {
+  cd "${pkgname}"
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd "${pkgname}"
+  go mod tidy
+}
+
+build() {
+cd "${pkgname}"
+export CGO_LDFLAGS="$LDFLAGS"
+export CGO_CFLAGS="$CFLAGS"
+export CGO_CXXFLAGS="$CXXFLAGS"
+export CGO_CPPFLAGS="$CPPFLAGS"
+make EXT_LDFLAGS="-linkmode external" GOFLAGS="-buildmode=pie -trimpath"
+}
+
+check(){
+cd "${pkgname}"
+export CGO_LDFLAGS="$LDFLAGS"
+export CGO_CFLAGS="$CFLAGS"
+export CGO_CXXFLAGS="$CXXFLAGS"
+export CGO_CPPFLAGS="$CPPFLAGS"
+make LDFLAGS="-s -w -linkmode external" GOFLAGS="-buildmode=pie -trimpath" 
test-unit
+}
+
+package(){
+cd "${pkgname}"
+install -Dm755 bin/helm -t "$pkgdir/usr/bin"
+bin/helm completion bash | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/bash-completion/completions/helm"
+bin/helm completion zsh | install -Dm644 /dev/stdin 
"$pkgdir/usr/share/zsh/site-functions/_helm"
+}



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

2022-04-15 Thread Morten Linderud via arch-commits
Date: Friday, April 15, 2022 @ 15:18:35
  Author: foxboron
Revision: 1186569

upgpkg: helm 3.8.2-1: upgpkg: helm 3.8.2-1

Modified:
  helm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 15:15:36 UTC (rev 1186568)
+++ PKGBUILD2022-04-15 15:18:35 UTC (rev 1186569)
@@ -5,7 +5,7 @@
 # Contributor: Matthias Lisin 
 
 pkgname=helm
-pkgver=3.8.1
+pkgver=3.8.2
 pkgrel=1
 pkgdesc="The Kubernetes Package Manager"
 arch=("x86_64")
@@ -14,7 +14,7 @@
 depends=('glibc')
 makedepends=("go" "git")
 options=("!lto")
-_commit=5cb9af4b1b271d11d7a97a71df3ac337dd94ad37   #refs/tags/v3.8.1^{}
+_commit=6e3701edea09e5d55a8ca2aae03a68917630e91b   #refs/tags/v3.8.2^{}
 source=("git+https://github.com/helm/helm.git#commit=${_commit}?signed;)
 #source=("git+https://github.com/helm/helm.git#tag=v${pkgver}?signed;)
 validpgpkeys=('672C657BE06B4B30969C4A57461449C25E36B98E'



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

2022-04-15 Thread Morten Linderud via arch-commits
Date: Friday, April 15, 2022 @ 15:15:36
  Author: foxboron
Revision: 1186568

archrelease: copy trunk to community-x86_64

Added:
  dqlite/repos/community-x86_64/PKGBUILD
(from rev 1186567, dqlite/trunk/PKGBUILD)
Deleted:
  dqlite/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 15:15:31 UTC (rev 1186567)
+++ PKGBUILD2022-04-15 15:15:36 UTC (rev 1186568)
@@ -1,34 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Thomas Hipp 
-
-pkgname=dqlite
-pkgver=1.9.1
-pkgrel=2
-pkgdesc="Distributed SQLite"
-arch=('x86_64')
-url="https://github.com/CanonicalLtd/dqlite;
-license=('LGPL3')
-depends=('libuv' 'raft' 'sqlite')
-makedepends=('tcl' 'readline' 'zlib')
-options=(debug strip)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('fd3a50f2bc14c0a03163bbed3bc5ca6943df144c502de5b497d3b323c24a6489')
-
-build() {
-   cd "$pkgname-$pkgver"
-   autoreconf -i 
-   #PKG_CONFIG_PATH="/usr/lib/sqlite-replication/pkgconfig" ./configure 
--prefix=/usr
-   ./configure --prefix=/usr
-   make
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   make check || true
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir/" install
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: dqlite/repos/community-x86_64/PKGBUILD (from rev 1186567, 
dqlite/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 15:15:36 UTC (rev 1186568)
@@ -0,0 +1,34 @@
+# Maintainer: Morten Linderud 
+# Contributor: Thomas Hipp 
+
+pkgname=dqlite
+pkgver=1.10.0
+pkgrel=1
+pkgdesc="Distributed SQLite"
+arch=('x86_64')
+url="https://github.com/CanonicalLtd/dqlite;
+license=('LGPL3')
+depends=('libuv' 'raft' 'sqlite')
+makedepends=('tcl' 'readline' 'zlib')
+options=(debug strip)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha256sums=('46f57036bd5ac4c67b76c07ef3ce58b674458eb1564131c80f11a2d5ec7db962')
+
+build() {
+   cd "$pkgname-$pkgver"
+   autoreconf -i 
+   #PKG_CONFIG_PATH="/usr/lib/sqlite-replication/pkgconfig" ./configure 
--prefix=/usr
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   make check || true
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir/" install
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



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

2022-04-15 Thread Morten Linderud via arch-commits
Date: Friday, April 15, 2022 @ 15:15:31
  Author: foxboron
Revision: 1186567

upgpkg: dqlite 1.10.0-1: upgpkg: dqlite 1.10.0-1

Modified:
  dqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 15:14:15 UTC (rev 1186566)
+++ PKGBUILD2022-04-15 15:15:31 UTC (rev 1186567)
@@ -2,8 +2,8 @@
 # Contributor: Thomas Hipp 
 
 pkgname=dqlite
-pkgver=1.9.1
-pkgrel=2
+pkgver=1.10.0
+pkgrel=1
 pkgdesc="Distributed SQLite"
 arch=('x86_64')
 url="https://github.com/CanonicalLtd/dqlite;
@@ -12,7 +12,7 @@
 makedepends=('tcl' 'readline' 'zlib')
 options=(debug strip)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/canonical/${pkgname}/archive/v${pkgver}.tar.gz;)
-sha256sums=('fd3a50f2bc14c0a03163bbed3bc5ca6943df144c502de5b497d3b323c24a6489')
+sha256sums=('46f57036bd5ac4c67b76c07ef3ce58b674458eb1564131c80f11a2d5ec7db962')
 
 build() {
cd "$pkgname-$pkgver"



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

2022-04-15 Thread Morten Linderud via arch-commits
Date: Friday, April 15, 2022 @ 15:14:15
  Author: foxboron
Revision: 1186566

archrelease: copy trunk to community-x86_64

Added:
  gopls/repos/community-x86_64/PKGBUILD
(from rev 1186565, gopls/trunk/PKGBUILD)
Deleted:
  gopls/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 15:14:10 UTC (rev 1186565)
+++ PKGBUILD2022-04-15 15:14:15 UTC (rev 1186566)
@@ -1,33 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Chad Kunde 
-
-pkgname=gopls
-pkgver=0.8.2
-pkgrel=1
-pkgdesc='Language server for Go programming language'
-arch=(x86_64 aarch64 armv7h armv7l)
-url='https://github.com/golang/tools/tree/master/gopls'
-license=(BSD)
-depends=(glibc)
-makedepends=('git' 'go')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/golang/tools/archive/gopls/v${pkgver}.tar.gz;)
-sha256sums=('761aa768e82a958e6f803db39215c995fe0f263df825ed1cbb9f6b2989f0cd00')
-
-build() {
-  cd "tools-${pkgname}-v${pkgver}/${pkgname}"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
-  go build -o "${pkgname}"
-}
-
-package() {
-  cd "tools-${pkgname}-v${pkgver}"
-  install -Dm755 "${pkgname}/${pkgname}" -t "${pkgdir}"/usr/bin/
-  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-}
-
-# vim: ts=2 sw=2 et:

Copied: gopls/repos/community-x86_64/PKGBUILD (from rev 1186565, 
gopls/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 15:14:15 UTC (rev 1186566)
@@ -0,0 +1,33 @@
+# Maintainer: Morten Linderud 
+# Contributor: Chad Kunde 
+
+pkgname=gopls
+pkgver=0.8.3
+pkgrel=1
+pkgdesc='Language server for Go programming language'
+arch=(x86_64 aarch64 armv7h armv7l)
+url='https://github.com/golang/tools/tree/master/gopls'
+license=(BSD)
+depends=(glibc)
+makedepends=('git' 'go')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/golang/tools/archive/gopls/v${pkgver}.tar.gz;)
+sha256sums=('a3128372f8bbd84b254a1e1ff6e417feba0d4b5ae01dfb640556331d7bed025e')
+
+build() {
+  cd "tools-${pkgname}-v${pkgver}/${pkgname}"
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+  go build -o "${pkgname}"
+}
+
+package() {
+  cd "tools-${pkgname}-v${pkgver}"
+  install -Dm755 "${pkgname}/${pkgname}" -t "${pkgdir}"/usr/bin/
+  install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-04-15 Thread Morten Linderud via arch-commits
Date: Friday, April 15, 2022 @ 15:14:10
  Author: foxboron
Revision: 1186565

upgpkg: gopls 0.8.3-1: upgpkg: gopls 0.8.3-1

Modified:
  gopls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 14:43:11 UTC (rev 1186564)
+++ PKGBUILD2022-04-15 15:14:10 UTC (rev 1186565)
@@ -2,7 +2,7 @@
 # Contributor: Chad Kunde 
 
 pkgname=gopls
-pkgver=0.8.2
+pkgver=0.8.3
 pkgrel=1
 pkgdesc='Language server for Go programming language'
 arch=(x86_64 aarch64 armv7h armv7l)
@@ -11,7 +11,7 @@
 depends=(glibc)
 makedepends=('git' 'go')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/golang/tools/archive/gopls/v${pkgver}.tar.gz;)
-sha256sums=('761aa768e82a958e6f803db39215c995fe0f263df825ed1cbb9f6b2989f0cd00')
+sha256sums=('a3128372f8bbd84b254a1e1ff6e417feba0d4b5ae01dfb640556331d7bed025e')
 
 build() {
   cd "tools-${pkgname}-v${pkgver}/${pkgname}"



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 14:41:43
  Author: dvzrv
Revision: 1186560

archrelease: copy trunk to community-x86_64

Added:
  libcalfbox-lss/repos/community-x86_64/PKGBUILD
(from rev 1186559, libcalfbox-lss/trunk/PKGBUILD)
Deleted:
  libcalfbox-lss/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 14:41:32 UTC (rev 1186559)
+++ PKGBUILD2022-04-15 14:41:43 UTC (rev 1186560)
@@ -1,33 +0,0 @@
-# Maintainer: David Runge 
-
-pkgname=libcalfbox-lss
-pkgver=1.0.0
-pkgrel=1
-pkgdesc="Library for real time midi sequencing and loading of various sampler 
formats"
-arch=(x86_64)
-url="https://laborejo.org/downloads/libcalfbox-lss-1.0.0.tar.xz;
-license=(GPL3)
-depends=(glibc)
-makedepends=(fluidsynth glib2 jack libsndfile meson util-linux)
-options=(debug)
-source=(https://laborejo.org/downloads/$pkgname-$pkgver.tar.xz{,.sig})
-sha512sums=('b81b09d61c5478baf390d533fc5a257f9cf815a21e8eda17513da212505ec986b4af6ac74189b951169dbc3bd4b942796ec4b53285c6571a67cb91cf397628a1'
-'SKIP')
-b2sums=('7131202602dce92d638946801829e95a2b997193be582ed6ba9a6cea3a7ca8634ca71e119f58bc1d94f219d8bd3abd609c3543627c8088fab1327162422caa6b'
-'SKIP')
-validpgpkeys=('45D952EF384ADFBB00913E3428C6A306F2909FEE') # Nils Hilbricht 

-
-build() {
-  arch-meson build $pkgname-$pkgver
-  ninja -vC build
-}
-
-check() {
-  ninja test -vC build
-}
-
-package() {
-  depends+=(libfluidsynth.so libglib-2.0.so libjack.so libsndfile.so 
libuuid.so)
-
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: libcalfbox-lss/repos/community-x86_64/PKGBUILD (from rev 1186559, 
libcalfbox-lss/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 14:41:43 UTC (rev 1186560)
@@ -0,0 +1,33 @@
+# Maintainer: David Runge 
+
+pkgname=libcalfbox-lss
+pkgver=1.0.0
+pkgrel=2
+pkgdesc="Library for real time midi sequencing and loading of various sampler 
formats"
+arch=(x86_64)
+url="https://git.laborejo.org/lss/libcalfbox-lss;
+license=(GPL3)
+depends=(glibc)
+makedepends=(fluidsynth glib2 jack libsndfile meson util-linux)
+options=(debug)
+source=(https://laborejo.org/downloads/$pkgname-$pkgver.tar.xz{,.sig})
+sha512sums=('b81b09d61c5478baf390d533fc5a257f9cf815a21e8eda17513da212505ec986b4af6ac74189b951169dbc3bd4b942796ec4b53285c6571a67cb91cf397628a1'
+'SKIP')
+b2sums=('7131202602dce92d638946801829e95a2b997193be582ed6ba9a6cea3a7ca8634ca71e119f58bc1d94f219d8bd3abd609c3543627c8088fab1327162422caa6b'
+'SKIP')
+validpgpkeys=('45D952EF384ADFBB00913E3428C6A306F2909FEE') # Nils Hilbricht 

+
+build() {
+  arch-meson build $pkgname-$pkgver
+  ninja -vC build
+}
+
+check() {
+  ninja test -vC build
+}
+
+package() {
+  depends+=(libfluidsynth.so libglib-2.0.so libjack.so libsndfile.so 
libuuid.so)
+
+  DESTDIR="$pkgdir" meson install -C build
+}



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 14:41:32
  Author: dvzrv
Revision: 1186559

upgpkg: libcalfbox-lss 1.0.0-2: Rebuild to fix url.

Modified:
  libcalfbox-lss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 14:40:00 UTC (rev 1186558)
+++ PKGBUILD2022-04-15 14:41:32 UTC (rev 1186559)
@@ -2,10 +2,10 @@
 
 pkgname=libcalfbox-lss
 pkgver=1.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Library for real time midi sequencing and loading of various sampler 
formats"
 arch=(x86_64)
-url="https://laborejo.org/downloads/libcalfbox-lss-1.0.0.tar.xz;
+url="https://git.laborejo.org/lss/libcalfbox-lss;
 license=(GPL3)
 depends=(glibc)
 makedepends=(fluidsynth glib2 jack libsndfile meson util-linux)



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 14:39:23
  Author: dvzrv
Revision: 1186511

archrelease: copy trunk to community-x86_64

Added:
  libcalfbox-lss/repos/community-x86_64/
  libcalfbox-lss/repos/community-x86_64/PKGBUILD
(from rev 1186508, libcalfbox-lss/trunk/PKGBUILD)

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

Copied: libcalfbox-lss/repos/community-x86_64/PKGBUILD (from rev 1186508, 
libcalfbox-lss/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2022-04-15 14:39:23 UTC (rev 1186511)
@@ -0,0 +1,33 @@
+# Maintainer: David Runge 
+
+pkgname=libcalfbox-lss
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Library for real time midi sequencing and loading of various sampler 
formats"
+arch=(x86_64)
+url="https://laborejo.org/downloads/libcalfbox-lss-1.0.0.tar.xz;
+license=(GPL3)
+depends=(glibc)
+makedepends=(fluidsynth glib2 jack libsndfile meson util-linux)
+options=(debug)
+source=(https://laborejo.org/downloads/$pkgname-$pkgver.tar.xz{,.sig})
+sha512sums=('b81b09d61c5478baf390d533fc5a257f9cf815a21e8eda17513da212505ec986b4af6ac74189b951169dbc3bd4b942796ec4b53285c6571a67cb91cf397628a1'
+'SKIP')
+b2sums=('7131202602dce92d638946801829e95a2b997193be582ed6ba9a6cea3a7ca8634ca71e119f58bc1d94f219d8bd3abd609c3543627c8088fab1327162422caa6b'
+'SKIP')
+validpgpkeys=('45D952EF384ADFBB00913E3428C6A306F2909FEE') # Nils Hilbricht 

+
+build() {
+  arch-meson build $pkgname-$pkgver
+  ninja -vC build
+}
+
+check() {
+  ninja test -vC build
+}
+
+package() {
+  depends+=(libfluidsynth.so libglib-2.0.so libjack.so libsndfile.so 
libuuid.so)
+
+  DESTDIR="$pkgdir" meson install -C build
+}



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

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 14:39:13
  Author: dvzrv
Revision: 1186502

upgpkg: libcalfbox-lss 1.0.0-1: Add libcalfbox-lss 1.0.0.

Modified:
  libcalfbox-lss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 14:39:13 UTC (rev 1186501)
+++ PKGBUILD2022-04-15 14:39:13 UTC (rev 1186502)
@@ -7,9 +7,9 @@
 arch=(x86_64)
 url="https://laborejo.org/downloads/libcalfbox-lss-1.0.0.tar.xz;
 license=(GPL3)
-groups=()
 depends=(glibc)
 makedepends=(fluidsynth glib2 jack libsndfile meson util-linux)
+options=(debug)
 source=(https://laborejo.org/downloads/$pkgname-$pkgver.tar.xz{,.sig})
 
sha512sums=('b81b09d61c5478baf390d533fc5a257f9cf815a21e8eda17513da212505ec986b4af6ac74189b951169dbc3bd4b942796ec4b53285c6571a67cb91cf397628a1'
 'SKIP')



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

2022-04-15 Thread Evangelos Foutras via arch-commits
Date: Friday, April 15, 2022 @ 14:37:43
  Author: foutrelis
Revision: 1186484

archrelease: copy trunk to community-staging-x86_64

Added:
  tensorflow/repos/community-staging-x86_64/
  tensorflow/repos/community-staging-x86_64/PKGBUILD
(from rev 1186483, tensorflow/trunk/PKGBUILD)
  tensorflow/repos/community-staging-x86_64/fix-c++17-compat.patch
(from rev 1186483, tensorflow/trunk/fix-c++17-compat.patch)
  tensorflow/repos/community-staging-x86_64/test.py
(from rev 1186483, tensorflow/trunk/test.py)

+
 PKGBUILD   |  313 +++
 fix-c++17-compat.patch |   11 +
 test.py|   12 +
 3 files changed, 336 insertions(+)

Copied: tensorflow/repos/community-staging-x86_64/PKGBUILD (from rev 1186483, 
tensorflow/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-04-15 14:37:43 UTC (rev 1186484)
@@ -0,0 +1,313 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Konstantin Gizdov (kgizdov) 
+# Contributor: Adria Arrufat (archdria) 
+# Contributor: Thibault Lorrain (fredszaq) 
+
+pkgbase=tensorflow
+pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
+pkgver=2.8.0
+_pkgver=2.8.0
+pkgrel=5
+pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
+url="https://www.tensorflow.org/;
+license=('APACHE')
+arch=('x86_64')
+depends=('c-ares' 'intel-mkl' 'onednn' 'pybind11' 'openssl' 'lmdb' 'libpng' 
'curl' 'giflib' 'icu' 'libjpeg-turbo')
+makedepends=('bazel' 'python-numpy' 'cuda' 'nvidia-utils' 'nccl' 'git'
+ 'cudnn' 'python-pip' 'python-wheel' 'python-setuptools' 
'python-h5py'
+ 'python-keras-applications' 'python-keras-preprocessing'
+ 'cython')
+optdepends=('tensorboard: Tensorflow visualization toolkit')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/tensorflow/tensorflow/archive/v${_pkgver}.tar.gz;
+fix-c++17-compat.patch)
+sha512sums=('9cddb78c0392b7810e71917c3731f895e31c250822031ac7f498bf20435408c640b2fba4de439fa4a47c70dbff38b86e50fed2971df1f1916f23f9490241cfed'
+
'f682368bb47b2b022a51aa77345dfa30f3b0d7911c56515d428b8326ee3751242f375f4e715a37bb723ef20a86916dad9871c3c81b1b58da85e1ca202bc4901e')
+
+# consolidate common dependencies to prevent mishaps
+_common_py_depends=(python-termcolor python-astor python-gast03 python-numpy 
python-protobuf
+absl-py python-h5py python-keras python-keras-applications 
python-keras-preprocessing
+python-tensorflow-estimator python-opt_einsum 
python-astunparse python-pasta
+python-flatbuffers python-typing_extensions)
+
+get_pyver () {
+  python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
+}
+
+check_dir() {
+  # first make sure we do not break parsepkgbuild
+  if ! command -v cp &> /dev/null; then
+>&2 echo "'cp' command not found. PKGBUILD is probably being checked by 
parsepkgbuild."
+if ! command -v install &> /dev/null; then
+  >&2 echo "'install' command also not found. PKGBUILD must be getting 
checked by parsepkgbuild."
+  >&2 echo "Cannot check if directory '${1}' exists. Ignoring."
+  >&2 echo "If you are not running nacmap or parsepkgbuild, please make 
sure the PATH is correct and try again."
+  >&2 echo "PATH should not be '/dummy': PATH=$PATH"
+  return 0
+fi
+  fi
+  # if we are running normally, check the given path
+  if [ -d "${1}" ]; then
+return 0
+  else
+>&2 echo Directory "${1}" does not exist or is a file! Exiting...
+exit 1
+  fi
+}
+
+prepare() {
+  # Allow any bazel version
+  echo "*" > tensorflow-${_pkgver}/.bazelversion
+
+  # Get rid of hardcoded versions. Not like we ever cared about what upstream
+  # thinks about which versions should be used anyway. ;) (FS#68772)
+  sed -i -E "s/'([0-9a-z_-]+) .= [0-9].+[0-9]'/'\1'/" 
tensorflow-${_pkgver}/tensorflow/tools/pip_package/setup.py
+
+  cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-opt
+  cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-cuda
+  cp -r tensorflow-${_pkgver} tensorflow-${_pkgver}-opt-cuda
+
+  # These environment variables influence the behavior of the configure call 
below.
+  export PYTHON_BIN_PATH=/usr/bin/python
+  export USE_DEFAULT_PYTHON_LIB_PATH=1
+  export TF_NEED_JEMALLOC=1
+  export TF_NEED_KAFKA=1
+  export TF_NEED_OPENCL_SYCL=0
+  export TF_NEED_AWS=1
+  export TF_NEED_GCP=1
+  export TF_NEED_HDFS=1
+  export TF_NEED_S3=1
+  export TF_ENABLE_XLA=1
+  export TF_NEED_GDR=0
+  export TF_NEED_VERBS=0
+  export TF_NEED_OPENCL=0
+  export TF_NEED_MPI=0
+  export TF_NEED_TENSORRT=0
+  export TF_NEED_NGRAPH=0
+  export TF_NEED_IGNITE=0
+  export TF_NEED_ROCM=0
+  # See 

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

2022-04-15 Thread Evangelos Foutras via arch-commits
Date: Friday, April 15, 2022 @ 14:37:04
  Author: foutrelis
Revision: 1186483

upgpkg: tensorflow 2.8.0-5: icu 71.1 rebuild

Modified:
  tensorflow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 14:35:08 UTC (rev 1186482)
+++ PKGBUILD2022-04-15 14:37:04 UTC (rev 1186483)
@@ -7,7 +7,7 @@
 pkgname=(tensorflow tensorflow-opt tensorflow-cuda tensorflow-opt-cuda 
python-tensorflow python-tensorflow-opt python-tensorflow-cuda 
python-tensorflow-opt-cuda)
 pkgver=2.8.0
 _pkgver=2.8.0
-pkgrel=4
+pkgrel=5
 pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
 url="https://www.tensorflow.org/;
 license=('APACHE')



[arch-commits] Commit in (4 files)

2022-04-15 Thread David Runge via arch-commits
Date: Friday, April 15, 2022 @ 14:35:08
  Author: dvzrv
Revision: 1186482

Add libcalf-lss as upcoming dependency for agordejo, etc.

Added:
  libcalfbox-lss/
  libcalfbox-lss/repos/
  libcalfbox-lss/trunk/
  libcalfbox-lss/trunk/PKGBUILD

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

Added: libcalfbox-lss/trunk/PKGBUILD
===
--- libcalfbox-lss/trunk/PKGBUILD   (rev 0)
+++ libcalfbox-lss/trunk/PKGBUILD   2022-04-15 14:35:08 UTC (rev 1186482)
@@ -0,0 +1,33 @@
+# Maintainer: David Runge 
+
+pkgname=libcalfbox-lss
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="Library for real time midi sequencing and loading of various sampler 
formats"
+arch=(x86_64)
+url="https://laborejo.org/downloads/libcalfbox-lss-1.0.0.tar.xz;
+license=(GPL3)
+groups=()
+depends=(glibc)
+makedepends=(fluidsynth glib2 jack libsndfile meson util-linux)
+source=(https://laborejo.org/downloads/$pkgname-$pkgver.tar.xz{,.sig})
+sha512sums=('b81b09d61c5478baf390d533fc5a257f9cf815a21e8eda17513da212505ec986b4af6ac74189b951169dbc3bd4b942796ec4b53285c6571a67cb91cf397628a1'
+'SKIP')
+b2sums=('7131202602dce92d638946801829e95a2b997193be582ed6ba9a6cea3a7ca8634ca71e119f58bc1d94f219d8bd3abd609c3543627c8088fab1327162422caa6b'
+'SKIP')
+validpgpkeys=('45D952EF384ADFBB00913E3428C6A306F2909FEE') # Nils Hilbricht 

+
+build() {
+  arch-meson build $pkgname-$pkgver
+  ninja -vC build
+}
+
+check() {
+  ninja test -vC build
+}
+
+package() {
+  depends+=(libfluidsynth.so libglib-2.0.so libjack.so libsndfile.so 
libuuid.so)
+
+  DESTDIR="$pkgdir" meson install -C build
+}



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

2022-04-15 Thread Frederik Schwan via arch-commits
Date: Friday, April 15, 2022 @ 14:18:54
  Author: freswa
Revision: 1186481

archrelease: copy trunk to community-x86_64

Added:
  neomutt/repos/community-x86_64/PKGBUILD
(from rev 1186480, neomutt/trunk/PKGBUILD)
  neomutt/repos/community-x86_64/default-ca-certificates.patch
(from rev 1186480, neomutt/trunk/default-ca-certificates.patch)
Deleted:
  neomutt/repos/community-x86_64/PKGBUILD
  neomutt/repos/community-x86_64/default-ca-certificates.patch

---+
 PKGBUILD  |  134 
 default-ca-certificates.patch |   24 +++
 2 files changed, 79 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 14:18:52 UTC (rev 1186480)
+++ PKGBUILD2022-04-15 14:18:54 UTC (rev 1186481)
@@ -1,67 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Maintainer: Frederik Schwan 
-# Contributor: Alad Wenter 
-# Contributor: Jelle van der Waa 
-# Contributor: Chris Salzberg 
-# Contributor: Leonidas Spyropoulos 
-pkgname=neomutt
-pkgver=20220408
-pkgrel=1
-pkgdesc='A version of mutt with added features'
-url='https://neomutt.org/'
-license=('GPL')
-arch=('x86_64')
-depends=('glibc' 'gpgme' 'lua53' 'notmuch-runtime' 'krb5' 'gnutls' 'sqlite'
- 'libsasl' 'ncurses' 'libidn2' 'lmdb' 'gdbm' 'kyotocabinet'
- 'lz4' 'zlib' 'zstd' 'db')
-optdepends=('python: keybase.py'
-'perl: smime_keys'
-'ca-certificates: default CA certificates')
-makedepends=('git' 'gnupg' 'libxslt' 'docbook-xsl' 'w3m')
-_github='https://github.com/neomutt/neomutt'
-source=("$pkgname-$pkgver.tar.gz::$_github/archive/$pkgver.tar.gz"
-
"$pkgname-$pkgver.tar.gz.sig::$_github/releases/download/$pkgver/$pkgver.tar.gz.sig"
-"default-ca-certificates.patch")
-sha256sums=('bb138adb09b1f164fe690749e991a5505bf4f50b6ad478ffb085c609d5617cc7'
-'SKIP'
-'571716b8979e9b43328416c3c56eff228b6c58355d7c080b8987ea89c6360776')
-validpgpkeys=('86C2397270DD7A561263CA4E5FAF0A6EE7371805') # Richard Russon 
(flatcap) 
-options=('debug')
-
-prepare() {
-cd "$pkgname-$pkgver"
-patch -Np1 -i "$srcdir/default-ca-certificates.patch"
-}
-
-build() {
-cd "$pkgname-$pkgver"
-./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---gpgme \
---sqlite \
---autocrypt \
---lua \
---notmuch \
---gss \
---gnutls \
---sasl \
---with-ui=ncurses \
---with-idn2=/usr \
---disable-idn \
---idn2 \
---bdb \
---lmdb \
---kyotocabinet \
---gdbm \
---lz4 \
---zlib \
---zstd
-make
-}
-
-package() {
-cd "$pkgname-$pkgver"
-make DESTDIR="$pkgdir" install
-}

Copied: neomutt/repos/community-x86_64/PKGBUILD (from rev 1186480, 
neomutt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 14:18:54 UTC (rev 1186481)
@@ -0,0 +1,67 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Maintainer: Frederik Schwan 
+# Contributor: Alad Wenter 
+# Contributor: Jelle van der Waa 
+# Contributor: Chris Salzberg 
+# Contributor: Leonidas Spyropoulos 
+pkgname=neomutt
+pkgver=20220415
+pkgrel=1
+pkgdesc='A version of mutt with added features'
+url='https://neomutt.org/'
+license=('GPL')
+arch=('x86_64')
+depends=('glibc' 'gpgme' 'lua53' 'notmuch-runtime' 'krb5' 'gnutls' 'sqlite'
+ 'libsasl' 'ncurses' 'libidn2' 'lmdb' 'gdbm' 'kyotocabinet'
+ 'lz4' 'zlib' 'zstd' 'db')
+optdepends=('python: keybase.py'
+'perl: smime_keys'
+'ca-certificates: default CA certificates')
+makedepends=('git' 'gnupg' 'libxslt' 'docbook-xsl' 'w3m')
+_github='https://github.com/neomutt/neomutt'
+source=("$pkgname-$pkgver.tar.gz::$_github/archive/$pkgver.tar.gz"
+
"$pkgname-$pkgver.tar.gz.sig::$_github/releases/download/$pkgver/$pkgver.tar.gz.sig"
+"default-ca-certificates.patch")
+sha256sums=('84982cb4c2fed63e90d71fab45faa90738bfc58050430606135cbd8924d94682'
+'SKIP'
+'571716b8979e9b43328416c3c56eff228b6c58355d7c080b8987ea89c6360776')
+validpgpkeys=('86C2397270DD7A561263CA4E5FAF0A6EE7371805') # Richard Russon 
(flatcap) 
+options=('debug')
+
+prepare() {
+cd "$pkgname-$pkgver"
+patch -Np1 -i "$srcdir/default-ca-certificates.patch"
+}
+
+build() {
+cd "$pkgname-$pkgver"
+./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--gpgme \
+--sqlite \
+--autocrypt \
+--lua \
+--notmuch \
+--gss \
+--gnutls 

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

2022-04-15 Thread Frederik Schwan via arch-commits
Date: Friday, April 15, 2022 @ 14:18:52
  Author: freswa
Revision: 1186480

upgpkg: neomutt 20220415-1

Modified:
  neomutt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 12:51:11 UTC (rev 1186479)
+++ PKGBUILD2022-04-15 14:18:52 UTC (rev 1186480)
@@ -5,7 +5,7 @@
 # Contributor: Chris Salzberg 
 # Contributor: Leonidas Spyropoulos 
 pkgname=neomutt
-pkgver=20220408
+pkgver=20220415
 pkgrel=1
 pkgdesc='A version of mutt with added features'
 url='https://neomutt.org/'
@@ -22,7 +22,7 @@
 source=("$pkgname-$pkgver.tar.gz::$_github/archive/$pkgver.tar.gz"
 
"$pkgname-$pkgver.tar.gz.sig::$_github/releases/download/$pkgver/$pkgver.tar.gz.sig"
 "default-ca-certificates.patch")
-sha256sums=('bb138adb09b1f164fe690749e991a5505bf4f50b6ad478ffb085c609d5617cc7'
+sha256sums=('84982cb4c2fed63e90d71fab45faa90738bfc58050430606135cbd8924d94682'
 'SKIP'
 '571716b8979e9b43328416c3c56eff228b6c58355d7c080b8987ea89c6360776')
 validpgpkeys=('86C2397270DD7A561263CA4E5FAF0A6EE7371805') # Richard Russon 
(flatcap) 



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

2022-04-15 Thread Massimiliano Torromeo via arch-commits
Date: Friday, April 15, 2022 @ 12:51:11
  Author: mtorromeo
Revision: 1186479

archrelease: copy trunk to community-x86_64

Added:
  cockpit-machines/repos/community-x86_64/PKGBUILD
(from rev 1186478, cockpit-machines/trunk/PKGBUILD)
Deleted:
  cockpit-machines/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 12:51:03 UTC (rev 1186478)
+++ PKGBUILD2022-04-15 12:51:11 UTC (rev 1186479)
@@ -1,18 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=cockpit-machines
-pkgver=265
-pkgrel=1
-pkgdesc='Cockpit UI for virtual machines'
-arch=('x86_64')
-url='https://github.com/cockpit-project/cockpit-machines'
-license=(LGPL)
-depends=(cockpit libvirt-dbus)
-optdepends=("virt-install: create new virtual machines")
-source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('855ac1b0cc22bcf011e7f4fd57b5603b990392d6a3cd1bb55b59da02e9581335')
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: cockpit-machines/repos/community-x86_64/PKGBUILD (from rev 1186478, 
cockpit-machines/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-15 12:51:11 UTC (rev 1186479)
@@ -0,0 +1,18 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=cockpit-machines
+pkgver=266
+pkgrel=1
+pkgdesc='Cockpit UI for virtual machines'
+arch=('x86_64')
+url='https://github.com/cockpit-project/cockpit-machines'
+license=(LGPL)
+depends=(cockpit libvirt-dbus)
+optdepends=("virt-install: create new virtual machines")
+source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=('3cc819a099744bfcf369abaa05d3662dc91d3160fbaba917eb40a9fdcf09312e')
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}



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

2022-04-15 Thread Massimiliano Torromeo via arch-commits
Date: Friday, April 15, 2022 @ 12:51:03
  Author: mtorromeo
Revision: 1186478

upgpkg: cockpit-machines 266-1

Modified:
  cockpit-machines/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-15 12:50:57 UTC (rev 1186477)
+++ PKGBUILD2022-04-15 12:51:03 UTC (rev 1186478)
@@ -1,7 +1,7 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=cockpit-machines
-pkgver=265
+pkgver=266
 pkgrel=1
 pkgdesc='Cockpit UI for virtual machines'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=(cockpit libvirt-dbus)
 optdepends=("virt-install: create new virtual machines")
 
source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('855ac1b0cc22bcf011e7f4fd57b5603b990392d6a3cd1bb55b59da02e9581335')
+sha256sums=('3cc819a099744bfcf369abaa05d3662dc91d3160fbaba917eb40a9fdcf09312e')
 
 package() {
   cd $pkgname



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

2022-04-15 Thread Massimiliano Torromeo via arch-commits
Date: Friday, April 15, 2022 @ 12:50:57
  Author: mtorromeo
Revision: 1186477

archrelease: copy trunk to community-x86_64

Added:
  cockpit/repos/community-x86_64/PKGBUILD
(from rev 1186476, cockpit/trunk/PKGBUILD)
  cockpit/repos/community-x86_64/cockpit-ws.sysuser.conf
(from rev 1186476, cockpit/trunk/cockpit-ws.sysuser.conf)
  cockpit/repos/community-x86_64/cockpit-wsinstance.sysuser.conf
(from rev 1186476, cockpit/trunk/cockpit-wsinstance.sysuser.conf)
  cockpit/repos/community-x86_64/cockpit.pam
(from rev 1186476, cockpit/trunk/cockpit.pam)
Deleted:
  cockpit/repos/community-x86_64/PKGBUILD
  cockpit/repos/community-x86_64/cockpit-ws.sysuser.conf
  cockpit/repos/community-x86_64/cockpit-wsinstance.sysuser.conf
  cockpit/repos/community-x86_64/cockpit.pam

-+
 PKGBUILD|  244 +++---
 cockpit-ws.sysuser.conf |2 
 cockpit-wsinstance.sysuser.conf |2 
 cockpit.pam |   10 -
 4 files changed, 129 insertions(+), 129 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-15 12:50:47 UTC (rev 1186476)
+++ PKGBUILD2022-04-15 12:50:57 UTC (rev 1186477)
@@ -1,122 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Iwan Timmer 
-# Contributor: Mark Constable 
-# Contributor: Anatol Pomozov 
-
-pkgbase=cockpit
-pkgname=(cockpit cockpit-pcp)
-pkgver=266
-pkgrel=1
-pkgdesc='A systemd web based user interface for Linux servers'
-arch=('x86_64')
-url='https://cockpit-project.org/'
-license=(LGPL)
-makedepends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking
- git intltool gtk-doc gobject-introspection networkmanager 
libgsystem xmlto npm pcp
- gendesk)
-options=(debug)
-source=("https://github.com/cockpit-project/cockpit/releases/download/$pkgver/cockpit-$pkgver.tar.xz;
-"cockpit.pam"
-"cockpit-ws.sysuser.conf"
-"cockpit-wsinstance.sysuser.conf")
-sha256sums=('0abdb0c9dd631cfa7cd9b268452b4540c37cb2d74223d58a9a20033ace6e7d4f'
-'a979e236681c6a06906937cf0f012e976347af5d6d7e7ae04a11acb01cc2689d'
-'1ad9dad75858264778bd94799b60c651f7cc1c7f7fa1c54622174303e639287a'
-'46ee8ecad7bc97ba588ab9471dde76e41c00daf40658902425626c3a1938b438')
-
-prepare() {
-  cd cockpit-$pkgver
-  # disable buggy package-lock check
-  sed -r '/^cmd_make_package_lock_json\b/ a exit 0' -i tools/node-modules
-}
-
-build() {
-  cd cockpit-$pkgver
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---libexecdir=/usr/lib/$pkgname/ \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-dependency-tracking \
---disable-silent-rules \
---with-cockpit-user=cockpit-ws \
---with-cockpit-ws-instance-user=cockpit-wsinstance
-  make all
-
-  gendesk -n \
---name 'Cockpit Client' \
---comment 'Connect via ssh to servers running Cockpit' \
---exec '/usr/lib/cockpit/cockpit-desktop /' \
---categories 'Network;RemoteAccess' \
---custom 'DBusActivatable=true' \
---icon cockpit-client \
---pkgname cockpit
-}
-
-package_cockpit() {
-  depends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking
-   libpwquality openssl kexec-tools)
-  backup=('etc/pam.d/cockpit')
-  optdepends=("cockpit-pcp: reading performance metrics"
-  "cockpit-podman: user interface for managing podman containers"
-  "cockpit-machines: user interface for managing virtual machines"
-  "polkit: elevate privileges"
-  "sudo: elevate privileges"
-  "udisks2: manage hard disks"
-  "clevis: manage disk encryption"
-  "networkmanager: manage network connections"
-  "packagekit: manage packages"
-  "sssd: authentication"
-  "sscg: generate self-signed certificate")
-
-  cd cockpit-$pkgver
-  make DESTDIR="$pkgdir" install
-  rm -rf "$pkgdir"/usr/{src,lib/firewalld}
-  install -Dm644 "$srcdir"/cockpit.pam "$pkgdir"/etc/pam.d/cockpit
-  install -Dm644 "$srcdir"/cockpit-ws.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-ws.conf
-  install -Dm644 "$srcdir"/cockpit-wsinstance.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-wsinstance.conf
-
-  echo "z /usr/lib/cockpit/cockpit-session - - cockpit-wsinstance -" >> 
"$pkgdir"/usr/lib/tmpfiles.d/cockpit-tempfiles.conf
-
-  install -Dm644 cockpit.desktop 
"$pkgdir"/usr/share/applications/org.cockpit_project.CockpitClient.desktop
-
-  # remove unused plugins
-  rm -rf "$pkgdir"/usr/share/cockpit/{selinux,playground,sosreport} \
- 
"$pkgdir"/usr/share/metainfo/org.cockpit-project.cockpit-{selinux,sosreport}.metainfo.xml
-
-  # remove plugins packaged separately
-  rm -rf "$pkgdir"/usr/share/cockpit/pcp \
- "$pkgdir"/usr/lib/cockpit/cockpit-pcp \
- "$pkgdir"/var/lib/pcp
-}
-

  1   2   >