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

2021-12-04 Thread George Rawlinson via arch-commits
Date: Sunday, December 5, 2021 @ 07:16:22
  Author: grawlinson
Revision: 1065131

archrelease: copy trunk to community-testing-x86_64

Added:
  mediainfo/repos/community-testing-x86_64/
  mediainfo/repos/community-testing-x86_64/PKGBUILD
(from rev 1065130, mediainfo/trunk/PKGBUILD)

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

Copied: mediainfo/repos/community-testing-x86_64/PKGBUILD (from rev 1065130, 
mediainfo/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-12-05 07:16:22 UTC (rev 1065131)
@@ -0,0 +1,52 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Sergej Pupykin 
+# Contributor: hydro 
+
+pkgbase=mediainfo
+pkgname=(mediainfo mediainfo-gui)
+pkgver=21.09
+pkgrel=1
+
+pkgdesc="Supplies technical and tag information about a video or audio file"
+url="https://mediaarea.net/;
+arch=('x86_64')
+license=('BSD')
+
+depends=('libmediainfo')
+makedepends=('wxgtk3')
+
+source=(https://mediaarea.net/download/source/mediainfo/$pkgver/mediainfo_$pkgver.tar.xz)
+
+sha512sums=('81545c936ec5f17f94246b2cd5343afd105d0b0791f151689fbecdb084778dd4e84da79f47529f16b8383542894819af995ec608588fc6d9f45e9be38a4304db')
+b2sums=('8deb996c84ededd390a4fb91f77a4dd0ba60f3a165aefde2fe862720a7a315ba56f911533c347703e0a722f05b94edc5f649edef26031b519fc7bd4012cd')
+
+build() {
+  cd MediaInfo/Project/GNU/CLI
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+
+  cd "$srcdir/MediaInfo/Project/GNU/GUI"
+  ./autogen.sh
+  ./configure --prefix=/usr --with-wx-config=/usr/bin/wx-config-gtk3
+  make
+}
+
+package_mediainfo() {
+  pkgdesc+=" (CLI interface)"
+
+  cd MediaInfo/Project/GNU/CLI
+  make DESTDIR="$pkgdir" install
+
+  install -D -m 644 "$srcdir"/MediaInfo/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_mediainfo-gui() {
+  pkgdesc+=" (GUI interface)"
+  depends+=('wxgtk3' 'hicolor-icon-theme')
+
+  cd MediaInfo/Project/GNU/GUI
+  make DESTDIR="$pkgdir" install
+
+  install -D -m 644 "$srcdir"/MediaInfo/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-12-04 Thread George Rawlinson via arch-commits
Date: Sunday, December 5, 2021 @ 07:15:15
  Author: grawlinson
Revision: 1065130

archrelease: copy trunk to community-testing-x86_64

Added:
  libmediainfo/repos/community-testing-x86_64/
  libmediainfo/repos/community-testing-x86_64/PKGBUILD
(from rev 1065129, libmediainfo/trunk/PKGBUILD)

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

Copied: libmediainfo/repos/community-testing-x86_64/PKGBUILD (from rev 1065129, 
libmediainfo/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-12-05 07:15:15 UTC (rev 1065130)
@@ -0,0 +1,55 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Sergej Pupykin 
+# Contributor:  hydro 
+# Contributor: George Rawlinson 
+
+pkgname=libmediainfo
+pkgver=21.09
+pkgrel=1
+
+pkgdesc="shared library for mediainfo"
+url="https://mediaarea.net;
+arch=('x86_64')
+license=('BSD')
+
+depends=('curl' 'glib2' 'libmms' 'libzen' 'tinyxml2' 'graphviz')
+
+source=(
+  
"https://mediaarea.net/download/source/libmediainfo/$pkgver/libmediainfo_$pkgver.tar.xz;
+  
'fix_unresolved_symbols.patch::https://patch-diff.githubusercontent.com/raw/MediaArea/MediaInfoLib/pull/1434.patch'
+)
+
+sha512sums=('a0b5ea9c6fce3f5551176d411b8c227927f579c3f09442316f6c380926acc545ea346e044f808b66403b1f0aac6f88ed4413c8231e792256d3cd7676133ef3be'
+
'c374e1307ffb95ea9c23f803ddcd9be55a47600a60491a71f367c07c178225deaa83165b14f7eb2b2a6d3e5ebc923f527fec1f018537b9504943a55a29a79845')
+b2sums=('ac6b32a23a82f0c5f0901ef9b6a22b850a59efab80952fcc7cbcbd28951a43d0abb7065ca19adde4715e06f1798ac2992e3f3e82c16c9cf152ff95c42f15b27d'
+
'3d97e1024b6a1d5732d81ac2c9ca5d251f214a855a338c476baa2aeb98e4ebf1b932081a67fc0454a0ffacb7ab63f08deeaa0a894f5864c9eb81e332516ac411')
+
+prepare() {
+  cd MediaInfoLib
+
+  patch -p1 -i ../fix_unresolved_symbols.patch
+}
+
+build() {
+  cd MediaInfoLib/Project/GNU/Library
+
+  ./autogen.sh
+  ./configure \
+--prefix=/usr \
+--enable-shared \
+--disable-static \
+--with-libcurl \
+--with-libmms \
+--with-libtinyxml2 \
+--with-graphviz
+
+  make
+}
+
+package() {
+  cd MediaInfoLib/Project/GNU/Library
+
+  make DESTDIR="$pkgdir" install
+
+  install -D -m 644 "$srcdir"/MediaInfoLib/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-12-04 Thread George Rawlinson via arch-commits
Date: Sunday, December 5, 2021 @ 07:14:34
  Author: grawlinson
Revision: 1065129

upgpkg: mediainfo 21.09-1

New upstream release.

Modified:
  mediainfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-05 07:14:08 UTC (rev 1065128)
+++ PKGBUILD2021-12-05 07:14:34 UTC (rev 1065129)
@@ -4,7 +4,7 @@
 
 pkgbase=mediainfo
 pkgname=(mediainfo mediainfo-gui)
-pkgver=21.03
+pkgver=21.09
 pkgrel=1
 
 pkgdesc="Supplies technical and tag information about a video or audio file"
@@ -17,7 +17,8 @@
 
 
source=(https://mediaarea.net/download/source/mediainfo/$pkgver/mediainfo_$pkgver.tar.xz)
 
-sha256sums=('de50ca0b2c607b8999d3c9e542d27c97030a59f31859b612335315be6850021e')
+sha512sums=('81545c936ec5f17f94246b2cd5343afd105d0b0791f151689fbecdb084778dd4e84da79f47529f16b8383542894819af995ec608588fc6d9f45e9be38a4304db')
+b2sums=('8deb996c84ededd390a4fb91f77a4dd0ba60f3a165aefde2fe862720a7a315ba56f911533c347703e0a722f05b94edc5f649edef26031b519fc7bd4012cd')
 
 build() {
   cd MediaInfo/Project/GNU/CLI



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

2021-12-04 Thread George Rawlinson via arch-commits
Date: Sunday, December 5, 2021 @ 07:14:08
  Author: grawlinson
Revision: 1065128

upgpkg: libmediainfo 21.09-1

* New upstream release.
* Fix unresolved symbols with upstream patch.

Modified:
  libmediainfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-05 06:52:53 UTC (rev 1065127)
+++ PKGBUILD2021-12-05 07:14:08 UTC (rev 1065128)
@@ -4,7 +4,7 @@
 # Contributor: George Rawlinson 
 
 pkgname=libmediainfo
-pkgver=21.03
+pkgver=21.09
 pkgrel=1
 
 pkgdesc="shared library for mediainfo"
@@ -12,24 +12,36 @@
 arch=('x86_64')
 license=('BSD')
 
-depends=('curl' 'glib2' 'libmms' 'libzen' 'tinyxml2')
+depends=('curl' 'glib2' 'libmms' 'libzen' 'tinyxml2' 'graphviz')
 
 source=(
-  
https://mediaarea.net/download/source/libmediainfo/$pkgver/libmediainfo_$pkgver.tar.xz
+  
"https://mediaarea.net/download/source/libmediainfo/$pkgver/libmediainfo_$pkgver.tar.xz;
+  
'fix_unresolved_symbols.patch::https://patch-diff.githubusercontent.com/raw/MediaArea/MediaInfoLib/pull/1434.patch'
 )
 
-sha256sums=('56b7e9abf80cba48032165cd7a46fd8d43dd63e3af35765f66c3f134caaca4ca')
+sha512sums=('a0b5ea9c6fce3f5551176d411b8c227927f579c3f09442316f6c380926acc545ea346e044f808b66403b1f0aac6f88ed4413c8231e792256d3cd7676133ef3be'
+
'c374e1307ffb95ea9c23f803ddcd9be55a47600a60491a71f367c07c178225deaa83165b14f7eb2b2a6d3e5ebc923f527fec1f018537b9504943a55a29a79845')
+b2sums=('ac6b32a23a82f0c5f0901ef9b6a22b850a59efab80952fcc7cbcbd28951a43d0abb7065ca19adde4715e06f1798ac2992e3f3e82c16c9cf152ff95c42f15b27d'
+
'3d97e1024b6a1d5732d81ac2c9ca5d251f214a855a338c476baa2aeb98e4ebf1b932081a67fc0454a0ffacb7ab63f08deeaa0a894f5864c9eb81e332516ac411')
 
+prepare() {
+  cd MediaInfoLib
+
+  patch -p1 -i ../fix_unresolved_symbols.patch
+}
+
 build() {
   cd MediaInfoLib/Project/GNU/Library
 
   ./autogen.sh
-  ./configure --prefix=/usr \
-  --enable-shared \
-  --disable-static \
-  --with-libcurl \
-  --with-libmms \
-  --with-libtinyxml2
+  ./configure \
+--prefix=/usr \
+--enable-shared \
+--disable-static \
+--with-libcurl \
+--with-libmms \
+--with-libtinyxml2 \
+--with-graphviz
 
   make
 }



[arch-commits] Commit in (espeak)

2021-12-04 Thread Alexander Epaneshnikov via arch-commits
Date: Sunday, December 5, 2021 @ 06:52:53
  Author: alex19ep
Revision: 1065127

Deleting espeak superseded by espeak-ng

Deleted:
  espeak/



[arch-commits] Commit in sugar-activity-clock/repos/community-any (PKGBUILD PKGBUILD)

2021-12-04 Thread Alexander Epaneshnikov via arch-commits
Date: Sunday, December 5, 2021 @ 06:43:00
  Author: alex19ep
Revision: 1065125

archrelease: copy trunk to community-any

Added:
  sugar-activity-clock/repos/community-any/PKGBUILD
(from rev 1065124, sugar-activity-clock/trunk/PKGBUILD)
Deleted:
  sugar-activity-clock/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-05 06:42:48 UTC (rev 1065124)
+++ PKGBUILD2021-12-05 06:43:00 UTC (rev 1065125)
@@ -1,19 +0,0 @@
-# Maintainer: Balló György 
-
-pkgname=sugar-activity-clock
-_pkgname=Clock
-pkgver=22.1
-pkgrel=1
-pkgdesc="Clock for Sugar"
-arch=('any')
-url="https://wiki.sugarlabs.org/go/Activities/Clock;
-license=('GPL')
-groups=('sugar-fructose')
-depends=('espeak' 'sugar-toolkit-gtk3')
-source=(https://download.sugarlabs.org/sources/honey/$_pkgname/$_pkgname-$pkgver.tar.bz2)
-sha256sums=('33d3a2d525afe1ad7874474feb43436410c7720f2385bfae2f72a70c6151907d')
-
-package() {
-  cd $_pkgname-$pkgver
-  python setup.py install --prefix "$pkgdir/usr" --skip-install-desktop-file
-}

Copied: sugar-activity-clock/repos/community-any/PKGBUILD (from rev 1065124, 
sugar-activity-clock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-05 06:43:00 UTC (rev 1065125)
@@ -0,0 +1,19 @@
+# Maintainer: Balló György 
+
+pkgname=sugar-activity-clock
+_pkgname=Clock
+pkgver=22.1
+pkgrel=2
+pkgdesc="Clock for Sugar"
+arch=('any')
+url="https://wiki.sugarlabs.org/go/Activities/Clock;
+license=('GPL')
+groups=('sugar-fructose')
+depends=('espeak-ng-espeak' 'sugar-toolkit-gtk3')
+source=(https://download.sugarlabs.org/sources/honey/$_pkgname/$_pkgname-$pkgver.tar.bz2)
+sha256sums=('33d3a2d525afe1ad7874474feb43436410c7720f2385bfae2f72a70c6151907d')
+
+package() {
+  cd $_pkgname-$pkgver
+  python setup.py install --prefix "$pkgdir/usr" --skip-install-desktop-file
+}



[arch-commits] Commit in sugar-activity-clock/trunk (PKGBUILD)

2021-12-04 Thread Alexander Epaneshnikov via arch-commits
Date: Sunday, December 5, 2021 @ 06:42:48
  Author: alex19ep
Revision: 1065124

upgpkg: sugar-activity-clock 22.1-2 switch to espeak-ng

Modified:
  sugar-activity-clock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-05 06:36:59 UTC (rev 1065123)
+++ PKGBUILD2021-12-05 06:42:48 UTC (rev 1065124)
@@ -3,13 +3,13 @@
 pkgname=sugar-activity-clock
 _pkgname=Clock
 pkgver=22.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Clock for Sugar"
 arch=('any')
 url="https://wiki.sugarlabs.org/go/Activities/Clock;
 license=('GPL')
 groups=('sugar-fructose')
-depends=('espeak' 'sugar-toolkit-gtk3')
+depends=('espeak-ng-espeak' 'sugar-toolkit-gtk3')
 
source=(https://download.sugarlabs.org/sources/honey/$_pkgname/$_pkgname-$pkgver.tar.bz2)
 sha256sums=('33d3a2d525afe1ad7874474feb43436410c7720f2385bfae2f72a70c6151907d')
 



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

2021-12-04 Thread George Rawlinson via arch-commits
Date: Sunday, December 5, 2021 @ 06:36:59
  Author: grawlinson
Revision: 1065123

archrelease: copy trunk to community-x86_64

Added:
  git-delta/repos/community-x86_64/PKGBUILD
(from rev 1065122, git-delta/trunk/PKGBUILD)
Deleted:
  git-delta/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  110 ++---
 1 file changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-05 06:36:22 UTC (rev 1065122)
+++ PKGBUILD2021-12-05 06:36:59 UTC (rev 1065123)
@@ -1,55 +0,0 @@
-# Maintainer: George Rawlinson 
-# Maintainer: Caleb Maclennan 
-# Contributor:  Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
-# Contributor : ccorn
-
-pkgname=git-delta
-_pkgname=delta
-pkgver=0.10.2
-pkgrel=1
-pkgdesc='Syntax-highlighting pager for git and diff output'
-arch=('x86_64')
-url="https://github.com/dandavison/delta;
-license=('MIT')
-depends=('libgit2')
-makedepends=('rust')
-checkdepends=('git')
-options=('!lto')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-b2sums=('768a3320f238de483abf1b4d5360e368edd85c0e0e7367059ec787decfb16886471d66e38723d715a4de3c360063bae113b781cf40f7eaa8c1bfb300c4f251cb')
-
-prepare() {
-  cd "$_pkgname-$pkgver"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "$_pkgname-$pkgver"
-  cargo build --frozen --release --all-features
-}
-
-check() {
-  cd "$_pkgname-$pkgver"
-  # some tests hang for 60+ seconds, find out why
-  # took my machine ~ 470 seconds
-  cargo test --frozen --all-features
-}
-
-package() {
-  cd "$_pkgname-$pkgver"
-
-  # binary
-  install -vDm755 -t "$pkgdir/usr/bin" target/release/delta
-
-  # license
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-
-  # shell auto-completions
-  install -vDm644 etc/completion/completion.bash \
-"$pkgdir/usr/share/bash-completion/completions/$_pkgname"
-  install -vDm644 etc/completion/completion.zsh \
-"$pkgdir/usr/share/zsh/site-functions/_$_pkgname"
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-}

Copied: git-delta/repos/community-x86_64/PKGBUILD (from rev 1065122, 
git-delta/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-05 06:36:59 UTC (rev 1065123)
@@ -0,0 +1,55 @@
+# Maintainer: George Rawlinson 
+# Maintainer: Caleb Maclennan 
+# Contributor:  Kr1ss $(echo \|sed s/\+/./g\;s/\-/@/)
+# Contributor : ccorn
+
+pkgname=git-delta
+_pkgname=delta
+pkgver=0.10.3
+pkgrel=1
+pkgdesc='Syntax-highlighting pager for git and diff output'
+arch=('x86_64')
+url="https://github.com/dandavison/delta;
+license=('MIT')
+depends=('libgit2')
+makedepends=('rust')
+checkdepends=('git')
+options=('!lto')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+b2sums=('ef902e86bca4d496a75e49e0acd0791c08dbd0f6c196b7a362c6e3e9767ebf7fafb010d33c6513899618532c93af8bebe76918d64361b3c71016b7320e25')
+
+prepare() {
+  cd "$_pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$_pkgname-$pkgver"
+  cargo build --frozen --release --all-features
+}
+
+check() {
+  cd "$_pkgname-$pkgver"
+  # some tests hang for 60+ seconds, find out why
+  # took my machine ~ 470 seconds
+  cargo test --frozen --all-features
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" target/release/delta
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+
+  # shell auto-completions
+  install -vDm644 etc/completion/completion.bash \
+"$pkgdir/usr/share/bash-completion/completions/$_pkgname"
+  install -vDm644 etc/completion/completion.zsh \
+"$pkgdir/usr/share/zsh/site-functions/_$_pkgname"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+}



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

2021-12-04 Thread George Rawlinson via arch-commits
Date: Sunday, December 5, 2021 @ 06:36:22
  Author: grawlinson
Revision: 1065122

upgpkg: git-delta 0.10.3-1

New upstream release.

Modified:
  git-delta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-05 06:16:56 UTC (rev 1065121)
+++ PKGBUILD2021-12-05 06:36:22 UTC (rev 1065122)
@@ -5,7 +5,7 @@
 
 pkgname=git-delta
 _pkgname=delta
-pkgver=0.10.2
+pkgver=0.10.3
 pkgrel=1
 pkgdesc='Syntax-highlighting pager for git and diff output'
 arch=('x86_64')
@@ -16,7 +16,7 @@
 checkdepends=('git')
 options=('!lto')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-b2sums=('768a3320f238de483abf1b4d5360e368edd85c0e0e7367059ec787decfb16886471d66e38723d715a4de3c360063bae113b781cf40f7eaa8c1bfb300c4f251cb')
+b2sums=('ef902e86bca4d496a75e49e0acd0791c08dbd0f6c196b7a362c6e3e9767ebf7fafb010d33c6513899618532c93af8bebe76918d64361b3c71016b7320e25')
 
 prepare() {
   cd "$_pkgname-$pkgver"



[arch-commits] Commit in gst-plugins-espeak/repos/community-x86_64 (3 files)

2021-12-04 Thread Alexander Epaneshnikov via arch-commits
Date: Sunday, December 5, 2021 @ 06:16:56
  Author: alex19ep
Revision: 1065121

archrelease: copy trunk to community-x86_64

Added:
  gst-plugins-espeak/repos/community-x86_64/PKGBUILD
(from rev 1065120, gst-plugins-espeak/trunk/PKGBUILD)
Deleted:
  gst-plugins-espeak/repos/community-x86_64/PKGBUILD
  gst-plugins-espeak/repos/community-x86_64/fix-build.patch

-+
 PKGBUILD|   71 ++
 fix-build.patch |   26 ---
 2 files changed, 40 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-05 06:16:44 UTC (rev 1065120)
+++ PKGBUILD2021-12-05 06:16:56 UTC (rev 1065121)
@@ -1,31 +0,0 @@
-# Maintainer: Balló György 
-
-pkgname=gst-plugins-espeak
-pkgver=0.5.0
-pkgrel=3
-pkgdesc="Use espeak as a sound source for gstreamer"
-arch=('x86_64')
-url="https://wiki.sugarlabs.org/go/Activity_Team/gst-plugins-espeak;
-license=('LGPL')
-depends=('gst-plugins-base-libs' 'espeak')
-source=(https://download.sugarlabs.org/sources/honey/$pkgname/$pkgname-$pkgver.tar.gz
-fix-build.patch)
-sha256sums=('9696278924ef3ba6c4d8b579bd349c81ed42879554d45f0e2be230cf0a893704'
-'aea0d1df4753584925e864450bce2d6ce8a7f1d7108e164057140bc5d7bb63fc')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../fix-build.patch
-  autoreconf -fi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gst-plugins-espeak/repos/community-x86_64/PKGBUILD (from rev 1065120, 
gst-plugins-espeak/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-05 06:16:56 UTC (rev 1065121)
@@ -0,0 +1,40 @@
+# Maintainer: Balló György 
+
+pkgname=gst-plugins-espeak
+pkgver=0.5.0
+pkgrel=4
+pkgdesc="Use espeak as a sound source for gstreamer"
+arch=('x86_64')
+url="https://wiki.sugarlabs.org/go/Activity_Team/gst-plugins-espeak;
+license=('LGPL')
+depends=('gst-plugins-base-libs' 'espeak-ng')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sugarlabs/gst-plugins-espeak/archive/refs/tags/v$pkgver.tar.gz;
+
'fix-build.patch::https://github.com/sugarlabs/gst-plugins-espeak/commit/56a5a56a38cf460d9af4bef12327b39aef3bfa6e.patch'
+
'remove-0sugar.patch::https://github.com/sugarlabs/gst-plugins-espeak/commit/8f4765fab81e834b75a69956c17547be9391.patch'
+
'espeak-ng.patch::https://github.com/sugarlabs/gst-plugins-espeak/commit/643b4b11670198bcb73e2ccb523b2f3cfba639a0.patch'
+
'fix-espeak-ng-include.patch::https://github.com/sugarlabs/gst-plugins-espeak/commit/7f6e41274fb833a487a7ee8ac0c236f0821330cc.patch')
+sha256sums=('dbca65ae824d105d07b97e26a40a699b54989df21119e60cc12266727aa1b32b'
+'aea0d1df4753584925e864450bce2d6ce8a7f1d7108e164057140bc5d7bb63fc'
+'9ec323b67884b7a9a262e3b48c69f6f87493c24fea7d698711de3576d15a3213'
+'f143c400f387ecb71e81db9922232a08e4e11ebade45727334f2e28008fa3c5c'
+'a225ee7bac231916db8a0a3fa02609eab8f04b63a3dcc5cbd94c8c505c26b4a8')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../fix-build.patch
+  patch -Np1 -i ../remove-0sugar.patch
+  patch -Np1 -i ../espeak-ng.patch
+  patch -Np1 -i ../fix-espeak-ng-include.patch
+  autoreconf -fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: fix-build.patch
===
--- fix-build.patch 2021-12-05 06:16:44 UTC (rev 1065120)
+++ fix-build.patch 2021-12-05 06:16:56 UTC (rev 1065121)
@@ -1,26 +0,0 @@
-From 56a5a56a38cf460d9af4bef12327b39aef3bfa6e Mon Sep 17 00:00:00 2001
-From: Adrian Bunk 
-Date: Sat, 28 Apr 2018 20:07:31 +0300
-Subject: [PATCH] Stop using -export-symbols-regex
-
-The old regex is no longer correct for GStreamer 1.14.
-
-Bug-Debian: https://bugs.debian.org/894642
-Signed-off-by: James Cameron 

- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index c6eda69..1b69262 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -42,7 +42,7 @@ GST_ALL_LDFLAGS="-no-undefined"
- AC_SUBST(GST_ALL_LDFLAGS)
- 
- dnl set proper LDFLAGS for plugins
--GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex 
'^_*gst_plugin_desc\$\$' $GST_ALL_LDFLAGS"
-+GST_PLUGIN_LDFLAGS="-module -avoid-version $GST_ALL_LDFLAGS"
- AC_SUBST(GST_PLUGIN_LDFLAGS)
- 
- AC_OUTPUT(Makefile m4/Makefile src/Makefile)



[arch-commits] Commit in gst-plugins-espeak/trunk (PKGBUILD fix-build.patch)

2021-12-04 Thread Alexander Epaneshnikov via arch-commits
Date: Sunday, December 5, 2021 @ 06:16:44
  Author: alex19ep
Revision: 1065120

upgpkg: gst-plugins-espeak 0.5.0-4 switch to espeak-ng

Modified:
  gst-plugins-espeak/trunk/PKGBUILD
Deleted:
  gst-plugins-espeak/trunk/fix-build.patch

-+
 PKGBUILD|   21 +++--
 fix-build.patch |   26 --
 2 files changed, 15 insertions(+), 32 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-05 05:27:38 UTC (rev 1065119)
+++ PKGBUILD2021-12-05 06:16:44 UTC (rev 1065120)
@@ -2,20 +2,29 @@
 
 pkgname=gst-plugins-espeak
 pkgver=0.5.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Use espeak as a sound source for gstreamer"
 arch=('x86_64')
 url="https://wiki.sugarlabs.org/go/Activity_Team/gst-plugins-espeak;
 license=('LGPL')
-depends=('gst-plugins-base-libs' 'espeak')
-source=(https://download.sugarlabs.org/sources/honey/$pkgname/$pkgname-$pkgver.tar.gz
-fix-build.patch)
-sha256sums=('9696278924ef3ba6c4d8b579bd349c81ed42879554d45f0e2be230cf0a893704'
-'aea0d1df4753584925e864450bce2d6ce8a7f1d7108e164057140bc5d7bb63fc')
+depends=('gst-plugins-base-libs' 'espeak-ng')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/sugarlabs/gst-plugins-espeak/archive/refs/tags/v$pkgver.tar.gz;
+
'fix-build.patch::https://github.com/sugarlabs/gst-plugins-espeak/commit/56a5a56a38cf460d9af4bef12327b39aef3bfa6e.patch'
+
'remove-0sugar.patch::https://github.com/sugarlabs/gst-plugins-espeak/commit/8f4765fab81e834b75a69956c17547be9391.patch'
+
'espeak-ng.patch::https://github.com/sugarlabs/gst-plugins-espeak/commit/643b4b11670198bcb73e2ccb523b2f3cfba639a0.patch'
+
'fix-espeak-ng-include.patch::https://github.com/sugarlabs/gst-plugins-espeak/commit/7f6e41274fb833a487a7ee8ac0c236f0821330cc.patch')
+sha256sums=('dbca65ae824d105d07b97e26a40a699b54989df21119e60cc12266727aa1b32b'
+'aea0d1df4753584925e864450bce2d6ce8a7f1d7108e164057140bc5d7bb63fc'
+'9ec323b67884b7a9a262e3b48c69f6f87493c24fea7d698711de3576d15a3213'
+'f143c400f387ecb71e81db9922232a08e4e11ebade45727334f2e28008fa3c5c'
+'a225ee7bac231916db8a0a3fa02609eab8f04b63a3dcc5cbd94c8c505c26b4a8')
 
 prepare() {
   cd $pkgname-$pkgver
   patch -Np1 -i ../fix-build.patch
+  patch -Np1 -i ../remove-0sugar.patch
+  patch -Np1 -i ../espeak-ng.patch
+  patch -Np1 -i ../fix-espeak-ng-include.patch
   autoreconf -fi
 }
 

Deleted: fix-build.patch
===
--- fix-build.patch 2021-12-05 05:27:38 UTC (rev 1065119)
+++ fix-build.patch 2021-12-05 06:16:44 UTC (rev 1065120)
@@ -1,26 +0,0 @@
-From 56a5a56a38cf460d9af4bef12327b39aef3bfa6e Mon Sep 17 00:00:00 2001
-From: Adrian Bunk 
-Date: Sat, 28 Apr 2018 20:07:31 +0300
-Subject: [PATCH] Stop using -export-symbols-regex
-
-The old regex is no longer correct for GStreamer 1.14.
-
-Bug-Debian: https://bugs.debian.org/894642
-Signed-off-by: James Cameron 

- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index c6eda69..1b69262 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -42,7 +42,7 @@ GST_ALL_LDFLAGS="-no-undefined"
- AC_SUBST(GST_ALL_LDFLAGS)
- 
- dnl set proper LDFLAGS for plugins
--GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex 
'^_*gst_plugin_desc\$\$' $GST_ALL_LDFLAGS"
-+GST_PLUGIN_LDFLAGS="-module -avoid-version $GST_ALL_LDFLAGS"
- AC_SUBST(GST_PLUGIN_LDFLAGS)
- 
- AC_OUTPUT(Makefile m4/Makefile src/Makefile)



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

2021-12-04 Thread Alexander Epaneshnikov via arch-commits
Date: Sunday, December 5, 2021 @ 05:27:38
  Author: alex19ep
Revision: 1065119

archrelease: copy trunk to community-x86_64

Added:
  freedroidrpg/repos/community-x86_64/PKGBUILD
(from rev 1065118, freedroidrpg/trunk/PKGBUILD)
Deleted:
  freedroidrpg/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-05 05:27:25 UTC (rev 1065118)
+++ PKGBUILD2021-12-05 05:27:38 UTC (rev 1065119)
@@ -1,28 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Sergej Pupykin 
-# Contributor: nut543 
-
-pkgname='freedroidrpg'
-pkgdesc="Isometric 3D role playing game taking place in the future, on Earth"
-pkgver=1.0rc2
-pkgrel=1
-arch=('x86_64')
-url="https://gitlab.com/freedroid/freedroid-src;
-license=('GPL')
-depends=('sdl_mixer' 'sdl_image' 'sdl_gfx' 'libogg' 'libvorbis' 'libgl' 'glu' 
'glew')
-makedepends=('mesa' 'python')
-optdepends=('python' 'espeak')
-source=(https://ftp.osuosl.org/pub/freedroid/freedroidRPG-1.0/freedroidRPG-$pkgver.tar.gz)
-sha256sums=('feb3e8118422ce4a1c4a5b2b0b3095bee08ca8bdbb4ba25791095ed194b25382')
-
-build() {
-  cd $pkgname-${pkgver^^}
-  export CPPFLAGS="$CPPFLAGS -fcommon -fPIE"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-${pkgver^^}
-  make DESTDIR="${pkgdir}" install
-}

Copied: freedroidrpg/repos/community-x86_64/PKGBUILD (from rev 1065118, 
freedroidrpg/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-05 05:27:38 UTC (rev 1065119)
@@ -0,0 +1,28 @@
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Sergej Pupykin 
+# Contributor: nut543 
+
+pkgname='freedroidrpg'
+pkgdesc="Isometric 3D role playing game taking place in the future, on Earth"
+pkgver=1.0rc2
+pkgrel=2
+arch=('x86_64')
+url="https://gitlab.com/freedroid/freedroid-src;
+license=('GPL')
+depends=('sdl_mixer' 'sdl_image' 'sdl_gfx' 'libogg' 'libvorbis' 'libgl' 'glu' 
'glew' 'hicolor-icon-theme')
+makedepends=('mesa' 'python')
+optdepends=('python' 'espeak-ng-espeak')
+source=(https://ftp.osuosl.org/pub/freedroid/freedroidRPG-1.0/freedroidRPG-$pkgver.tar.gz)
+sha256sums=('feb3e8118422ce4a1c4a5b2b0b3095bee08ca8bdbb4ba25791095ed194b25382')
+
+build() {
+  cd $pkgname-${pkgver^^}
+  export CPPFLAGS="$CPPFLAGS -fcommon -fPIE"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-${pkgver^^}
+  make DESTDIR="${pkgdir}" install
+}



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

2021-12-04 Thread Alexander Epaneshnikov via arch-commits
Date: Sunday, December 5, 2021 @ 05:27:25
  Author: alex19ep
Revision: 1065118

upgpkg: freedroidrpg 1.0rc2-2 switch to espeak-ng

Modified:
  freedroidrpg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-05 04:12:30 UTC (rev 1065117)
+++ PKGBUILD2021-12-05 05:27:25 UTC (rev 1065118)
@@ -5,13 +5,13 @@
 pkgname='freedroidrpg'
 pkgdesc="Isometric 3D role playing game taking place in the future, on Earth"
 pkgver=1.0rc2
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url="https://gitlab.com/freedroid/freedroid-src;
 license=('GPL')
-depends=('sdl_mixer' 'sdl_image' 'sdl_gfx' 'libogg' 'libvorbis' 'libgl' 'glu' 
'glew')
+depends=('sdl_mixer' 'sdl_image' 'sdl_gfx' 'libogg' 'libvorbis' 'libgl' 'glu' 
'glew' 'hicolor-icon-theme')
 makedepends=('mesa' 'python')
-optdepends=('python' 'espeak')
+optdepends=('python' 'espeak-ng-espeak')
 
source=(https://ftp.osuosl.org/pub/freedroid/freedroidRPG-1.0/freedroidRPG-$pkgver.tar.gz)
 sha256sums=('feb3e8118422ce4a1c4a5b2b0b3095bee08ca8bdbb4ba25791095ed194b25382')
 



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 5, 2021 @ 04:12:30
  Author: svenstaro
Revision: 1065117

archrelease: copy trunk to community-staging-x86_64

Added:
  tensorboard/repos/community-staging-x86_64/
  tensorboard/repos/community-staging-x86_64/PKGBUILD
(from rev 1065116, tensorboard/trunk/PKGBUILD)

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

Copied: tensorboard/repos/community-staging-x86_64/PKGBUILD (from rev 1065116, 
tensorboard/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-05 04:12:30 UTC (rev 1065117)
@@ -0,0 +1,55 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Konstantin Gizdov 
+
+pkgname=tensorboard
+pkgver=2.7.0
+pkgrel=2
+pkgdesc="TensorFlow's Visualization Toolkit"
+url='https://github.com/tensorflow/tensorboard'
+arch=('x86_64')
+license=('APACHE')
+depends=('python' 'python-werkzeug' 'python-numpy' 'python-bleach' 
'python-wheel' 'python-markdown'
+ 'python-html5lib' 'python-protobuf' 'python-grpcio' 
'python-google-auth-oauthlib'
+ 'python-tensorboard_plugin_wit' 'absl-py')
+makedepends=('bazel' 'python-setuptools' 'tree' 'rust' 'python-pip')
+optdepends=('python-tensorflow: advanced features for TensorBoard')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tensorflow/tensorboard/archive/${pkgver}.tar.gz;)
+sha512sums=('ede5aea29a7e2a373d027a67bc4bc1ec4d175e16df075430782da39a80f06110b4c648c0eee14840ce6f2027d26780cee8cb830505c6eb74f1d769cf01f74382')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  PYTHONWARNINGS=ignore bazel build //tensorboard
+  bazel build //tensorboard/pip_package:build_pip_package
+
+  cd tensorboard/data/server
+  cargo build --release
+  python pip_package/build.py --server-binary target/release/rustboard 
--out-dir /tmp
+  cd "$srcdir/$pkgname-$pkgver"
+
+  mkdir pypackage
+  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/external
 pypackage
+  cp -R 
bazel-bin/tensorboard/pip_package/build_pip_package.runfiles/org_tensorflow_tensorboard/tensorboard
 pypackage
+  cp 
tensorboard/pip_package/{README.rst,MANIFEST.in,setup.py,requirements.txt} 
pypackage
+  cp README.md pypackage
+  cd pypackage
+  python setup.py build
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  pip install --ignore-installed --root "$pkgdir" /tmp/*.whl
+
+  cd pypackage
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  rm -r "$pkgdir"/usr/lib/python3.10/site-packages/external/
+
+  
_requires="$pkgdir"/usr/lib/python3.10/site-packages/tensorboard-${pkgver}-py3.10.egg-info/requires.txt
+  sed -i 's/tensorboard-data-server.*/tensorboard-data-server/' ${_requires}
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 5, 2021 @ 04:12:21
  Author: svenstaro
Revision: 1065116

upgpkg: tensorboard 2.7.0-2: python 3.10 rebuild

Modified:
  tensorboard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-05 02:57:51 UTC (rev 1065115)
+++ PKGBUILD2021-12-05 04:12:21 UTC (rev 1065116)
@@ -1,9 +1,9 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: Konstantin Gizdov 
 
 pkgname=tensorboard
 pkgver=2.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc="TensorFlow's Visualization Toolkit"
 url='https://github.com/tensorflow/tensorboard'
 arch=('x86_64')
@@ -19,7 +19,7 @@
 build() {
   cd "$pkgname-$pkgver"
 
-  bazel build //tensorboard
+  PYTHONWARNINGS=ignore bazel build //tensorboard
   bazel build //tensorboard/pip_package:build_pip_package
 
   cd tensorboard/data/server
@@ -48,7 +48,7 @@
 
   rm -r "$pkgdir"/usr/lib/python3.10/site-packages/external/
 
-  
_requires="$pkgdir"/usr/lib/python3.10/site-packages/tensorboard-${pkgver}-py3.9.egg-info/requires.txt
+  
_requires="$pkgdir"/usr/lib/python3.10/site-packages/tensorboard-${pkgver}-py3.10.egg-info/requires.txt
   sed -i 's/tensorboard-data-server.*/tensorboard-data-server/' ${_requires}
 }
 



[arch-commits] Commit in python-tensorflow-serving-api/repos (2 files)

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 5, 2021 @ 02:57:51
  Author: svenstaro
Revision: 1065115

archrelease: copy trunk to community-staging-any

Added:
  python-tensorflow-serving-api/repos/community-staging-any/
  python-tensorflow-serving-api/repos/community-staging-any/PKGBUILD
(from rev 1065114, python-tensorflow-serving-api/trunk/PKGBUILD)

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

Copied: python-tensorflow-serving-api/repos/community-staging-any/PKGBUILD 
(from rev 1065114, python-tensorflow-serving-api/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-12-05 02:57:51 UTC (rev 1065115)
@@ -0,0 +1,27 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: getzze 
+pkgname=python-tensorflow-serving-api
+_name=tensorflow_serving_api
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="Serving system for machine learning models, designed for production 
environments"
+arch=(any)
+url="https://www.tensorflow.org/serving/;
+license=('Apache')
+depends=('python' 'python-grpcio' 'python-tensorflow' 'python-protobuf')
+makedepends=('bazel' 'git' 'python-wheel' 'python-pip')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/tensorflow/serving/archive/${pkgver}.tar.gz;)
+sha256sums=('22b29317016413600e3da28cc645e827d5c216e9ccc212ae218efe365a0453ba')
+
+build() {
+  cd serving-*
+  bazel build -c opt tensorflow_serving/tools/pip_package:build_pip_package
+  sed -i "s|bazel-genfiles/|bazel-out/k8-opt/bin/|g" 
tensorflow_serving/tools/pip_package/build_pip_package.sh
+  bazel-bin/tensorflow_serving/tools/pip_package/build_pip_package /tmp/pip
+}
+
+package() {
+  cd serving-*
+  pip install --ignore-installed --upgrade --root "${pkgdir}"/ 
/tmp/pip/tensorflow_serving*.whl --no-dependencies
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 5, 2021 @ 02:57:42
  Author: svenstaro
Revision: 1065114

upgpkg: python-tensorflow-serving-api 2.7.0-1: python 3.10 rebuild

Modified:
  python-tensorflow-serving-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-05 02:56:07 UTC (rev 1065113)
+++ PKGBUILD2021-12-05 02:57:42 UTC (rev 1065114)
@@ -1,8 +1,8 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: getzze 
 pkgname=python-tensorflow-serving-api
 _name=tensorflow_serving_api
-pkgver=2.6.0
+pkgver=2.7.0
 pkgrel=1
 pkgdesc="Serving system for machine learning models, designed for production 
environments"
 arch=(any)
@@ -11,7 +11,7 @@
 depends=('python' 'python-grpcio' 'python-tensorflow' 'python-protobuf')
 makedepends=('bazel' 'git' 'python-wheel' 'python-pip')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/tensorflow/serving/archive/${pkgver}.tar.gz;)
-sha256sums=('fdcef3631d1f2e889c394906b441908cbb90211d3095c8fa717640996a54fb3d')
+sha256sums=('22b29317016413600e3da28cc645e827d5c216e9ccc212ae218efe365a0453ba')
 
 build() {
   cd serving-*



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 5, 2021 @ 02:56:07
  Author: svenstaro
Revision: 1065113

archrelease: copy trunk to community-staging-any

Added:
  python-tensorflow-estimator/repos/community-staging-any/
  python-tensorflow-estimator/repos/community-staging-any/PKGBUILD
(from rev 1065112, python-tensorflow-estimator/trunk/PKGBUILD)

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

Copied: python-tensorflow-estimator/repos/community-staging-any/PKGBUILD (from 
rev 1065112, python-tensorflow-estimator/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-12-05 02:56:07 UTC (rev 1065113)
@@ -0,0 +1,36 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Konstantin Gizdov (kgizdov) 
+
+pkgname=python-tensorflow-estimator
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="A high-level TensorFlow API that greatly simplifies machine learning 
programming"
+url="https://github.com/tensorflow/estimator;
+license=('APACHE')
+arch=('any')
+depends=('python-wrapt')
+makedepends=('bazel' 'python-wheel' 'python-setuptools' 'python-pip' 
'python-tensorflow')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tensorflow/estimator/archive/v${pkgver}.tar.gz;)
+sha512sums=('e02ee93baf2e36f2e42dec71bd2e31486dc96a7ff25d813fbbe3aae1d0eb1fccdda2cfcad46a87c6cdcd143c1b88915b95bc158ac3240a36734b725b3f89bda3')
+
+build() {
+  cd estimator-${pkgver}
+
+  bazel build //tensorflow_estimator/tools/pip_package:build_pip_package
+  bazel-bin/tensorflow_estimator/tools/pip_package/build_pip_package 
${srcdir}/estimator_pip
+}
+
+check() {
+  cd estimator-${pkgver}
+
+  # Of course, upstream doesn't care about working tests...
+  # Revisit this at some point.
+  # bazel test //tensorflow_estimator/...
+}
+
+package() {
+  cd estimator-${pkgver}
+
+  WHEEL_PACKAGE=$(find "$srcdir"/estimator_pip -name "tensor*.whl")
+  pip install --ignore-installed --upgrade --root "$pkgdir"/ $WHEEL_PACKAGE 
--no-dependencies
+}



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 5, 2021 @ 02:55:58
  Author: svenstaro
Revision: 1065112

upgpkg: python-tensorflow-estimator 2.7.0-1: python 3.10 rebuild

Modified:
  python-tensorflow-estimator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-05 02:49:37 UTC (rev 1065111)
+++ PKGBUILD2021-12-05 02:55:58 UTC (rev 1065112)
@@ -1,8 +1,8 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Maintainer: Konstantin Gizdov (kgizdov) 
 
 pkgname=python-tensorflow-estimator
-pkgver=2.6.0
+pkgver=2.7.0
 pkgrel=1
 pkgdesc="A high-level TensorFlow API that greatly simplifies machine learning 
programming"
 url="https://github.com/tensorflow/estimator;
@@ -11,7 +11,7 @@
 depends=('python-wrapt')
 makedepends=('bazel' 'python-wheel' 'python-setuptools' 'python-pip' 
'python-tensorflow')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tensorflow/estimator/archive/v${pkgver}.tar.gz;)
-sha512sums=('2eb61e2442493406fda8db772a5ddd74e8072c768e7a28376254b3bc6f732dbc8e020d7633a6e6bcf2622fb3de7707460a6f9474ec2e281f02e724cfceec0d72')
+sha512sums=('e02ee93baf2e36f2e42dec71bd2e31486dc96a7ff25d813fbbe3aae1d0eb1fccdda2cfcad46a87c6cdcd143c1b88915b95bc158ac3240a36734b725b3f89bda3')
 
 build() {
   cd estimator-${pkgver}



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 5, 2021 @ 02:49:37
  Author: svenstaro
Revision: 1065111

Change email

Modified:
  tensorflow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-05 02:42:50 UTC (rev 1065110)
+++ PKGBUILD2021-12-05 02:49:37 UTC (rev 1065111)
@@ -1,4 +1,4 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Maintainer: Konstantin Gizdov (kgizdov) 
 # Contributor: Adria Arrufat (archdria) 
 # Contributor: Thibault Lorrain (fredszaq) 



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 5, 2021 @ 02:42:50
  Author: svenstaro
Revision: 1065110

archrelease: copy trunk to community-staging-x86_64

Added:
  tensorflow/repos/community-staging-x86_64/
  tensorflow/repos/community-staging-x86_64/48935.patch
(from rev 1065109, tensorflow/trunk/48935.patch)
  tensorflow/repos/community-staging-x86_64/PKGBUILD
(from rev 1065109, tensorflow/trunk/PKGBUILD)
  tensorflow/repos/community-staging-x86_64/build-against-actual-mkl.patch
(from rev 1065109, tensorflow/trunk/build-against-actual-mkl.patch)
  tensorflow/repos/community-staging-x86_64/fix-c++17-compat.patch
(from rev 1065109, tensorflow/trunk/fix-c++17-compat.patch)
  tensorflow/repos/community-staging-x86_64/openssl-1.1.patch
(from rev 1065109, tensorflow/trunk/openssl-1.1.patch)
  tensorflow/repos/community-staging-x86_64/test.py
(from rev 1065109, tensorflow/trunk/test.py)

+
 48935.patch|  926 +++
 PKGBUILD   |  315 +
 build-against-actual-mkl.patch |   37 +
 fix-c++17-compat.patch |   11 
 openssl-1.1.patch  |   24 +
 test.py|   12 
 6 files changed, 1325 insertions(+)

Copied: tensorflow/repos/community-staging-x86_64/48935.patch (from rev 
1065109, tensorflow/trunk/48935.patch)
===
--- community-staging-x86_64/48935.patch(rev 0)
+++ community-staging-x86_64/48935.patch2021-12-05 02:42:50 UTC (rev 
1065110)
@@ -0,0 +1,926 @@
+From 0f8fde42d09b199d02cf5d9d79fe76ebf1d260ef Mon Sep 17 00:00:00 2001
+From: Ben Greiner 
+Date: Thu, 6 May 2021 12:13:40 +0200
+Subject: [PATCH 01/14] Fix NumPy 1.20 error with np.prod()
+
+Reference: #47691, https://stackoverflow.com/questions/66373169
+---
+ tensorflow/python/ops/array_ops.py | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/tensorflow/python/ops/array_ops.py 
b/tensorflow/python/ops/array_ops.py
+index 519f2ef26fcef..d143ee96a2fc9 100644
+--- a/tensorflow/python/ops/array_ops.py
 b/tensorflow/python/ops/array_ops.py
+@@ -36,6 +36,7 @@
+ from tensorflow.python.framework.constant_op import constant
+ from tensorflow.python.ops import gen_array_ops
+ from tensorflow.python.ops import gen_math_ops
++from tensorflow.python.ops import math_ops
+ # go/tf-wildcard-import
+ # pylint: disable=wildcard-import
+ from tensorflow.python.ops.gen_array_ops import *
+@@ -2894,7 +2895,7 @@ def matrix_set_diag(
+ 
+ def _constant_if_small(value, shape, dtype, name):
+   try:
+-if np.prod(shape) < 1000:
++if math_ops.reduce_prod(shape) < 1000:
+   return constant(value, shape=shape, dtype=dtype, name=name)
+   except TypeError:
+ # Happens when shape is a Tensor, list with Tensor elements, etc.
+
+From 86cbf87703876330b5818b7f170489356d9d2c86 Mon Sep 17 00:00:00 2001
+From: Ben Greiner 
+Date: Thu, 6 May 2021 12:34:12 +0200
+Subject: [PATCH 02/14] relax upper bounds for NumPy and SciPy in pip installs
+
+---
+ .../tools/pip_package/setup_with_binary.py |  2 +-
+ .../install/install_centos_pip_packages.sh |  6 +++---
+ .../ci_build/install/install_pip_packages.sh   |  4 ++--
+ .../install/install_pip_packages_by_version.sh |  2 +-
+ .../install/install_python3.6_pip_packages.sh  |  2 +-
+ tensorflow/tools/ci_build/release/common.sh| 18 +-
+ tensorflow/tools/pip_package/setup.py  |  2 +-
+ 7 files changed, 18 insertions(+), 18 deletions(-)
+
+diff --git a/tensorflow/lite/tools/pip_package/setup_with_binary.py 
b/tensorflow/lite/tools/pip_package/setup_with_binary.py
+index 6b9fe534bb2b1..ae06df8245521 100644
+--- a/tensorflow/lite/tools/pip_package/setup_with_binary.py
 b/tensorflow/lite/tools/pip_package/setup_with_binary.py
+@@ -67,5 +67,5 @@
+ package_dir={'': '.'},
+ package_data={'': ['*.so', '*.pyd']},
+ install_requires=[
+-'numpy ~= 1.19.2',  # Higher versions have a compatibility issue.
++'numpy >= 1.19.2 , <1.21',
+ ])
+diff --git a/tensorflow/tools/ci_build/install/install_centos_pip_packages.sh 
b/tensorflow/tools/ci_build/install/install_centos_pip_packages.sh
+index b9906b9378c79..ab0a766bf22b0 100755
+--- a/tensorflow/tools/ci_build/install/install_centos_pip_packages.sh
 b/tensorflow/tools/ci_build/install/install_centos_pip_packages.sh
+@@ -55,17 +55,17 @@ pip2 install --upgrade protobuf==3.6.1
+ pip3 install --upgrade protobuf==3.6.1
+ 
+ pip2 install --upgrade numpy==1.14.5
+-pip3 install --upgrade numpy==1.14.5
++pip3 install --upgrade numpy>=1.14.5
+ 
+ pip2 install scipy==1.2.2
+-pip3 install scipy==1.4.1
++pip3 install scipy>=1.4.1
+ 
+ pip2 install scikit-learn==0.18.1
+ pip3 install scikit-learn==0.18.1
+ 
+ # pandas required by `inflow`
+ pip2 install pandas==0.19.2
+-pip3 install pandas==0.19.2
++pip3 install pandas>=0.19.2
+ 
+ # Benchmark tests require the 

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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 5, 2021 @ 02:41:49
  Author: svenstaro
Revision: 1065109

upgpkg: tensorflow 2.7.0-4: python 3.10 rebuild

Modified:
  tensorflow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-05 00:50:53 UTC (rev 1065108)
+++ PKGBUILD2021-12-05 02:41:49 UTC (rev 1065109)
@@ -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.7.0
 _pkgver=2.7.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Library for computation using data flow graphs for scalable machine 
learning"
 url="https://www.tensorflow.org/;
 license=('APACHE')
@@ -19,8 +19,10 @@
  'cython')
 optdepends=('tensorboard: Tensorflow visualization toolkit')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/tensorflow/tensorflow/archive/v${_pkgver}.tar.gz;
+
$pkgname-python310-protobuf.patch::https://github.com/tensorflow/tensorflow/commit/14966ee409b8.patch
 fix-c++17-compat.patch)
 
sha512sums=('f1e892583c7b3a73d4d39ec65dc135a5b02c789b357d57414ad2b6d05ad9fbfc8ef81918ba6410e314abd6928b76f764e6ef64c0b0c84b58b50796634be03f39'
+
'463a839c95a6b0f844cc7aa93bcbaa3294e951e47e965be32fc030124bf48ef3153a7c9ecc166abd4300d1e2ef2e164afd11920c8d30db11cc351ce6507e8b0f'
 
'f682368bb47b2b022a51aa77345dfa30f3b0d7911c56515d428b8326ee3751242f375f4e715a37bb723ef20a86916dad9871c3c81b1b58da85e1ca202bc4901e')
 
 # consolidate common dependencies to prevent mishaps
@@ -55,6 +57,9 @@
   # Allow any bazel version
   echo "*" > tensorflow-${_pkgver}/.bazelversion
 
+  # https://github.com/tensorflow/tensorflow/issues/51776
+  patch -Np1 -d tensorflow-${_pkgver} <${pkgname}-python310-protobuf.patch
+
   # 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



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

2021-12-04 Thread Kpcyrd via arch-commits
Date: Sunday, December 5, 2021 @ 00:50:53
  Author: kpcyrd
Revision: 1065108

archrelease: copy trunk to community-x86_64

Added:
  rebuilderd/repos/community-x86_64/PKGBUILD
(from rev 1065107, rebuilderd/trunk/PKGBUILD)
Deleted:
  rebuilderd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-05 00:50:41 UTC (rev 1065107)
+++ PKGBUILD2021-12-05 00:50:53 UTC (rev 1065108)
@@ -1,102 +0,0 @@
-# Maintainer: kpcyrd 
-
-pkgbase=rebuilderd
-pkgname=(rebuilderd rebuilderd-tools)
-pkgver=0.16.3
-pkgrel=1
-pkgdesc='Independent verification system of binary packages'
-url='https://github.com/kpcyrd/rebuilderd'
-arch=('x86_64')
-license=('GPL3')
-depends=('openssl' 'shared-mime-info' 'xz' 'libzstd.so')
-makedepends=('cargo' 'sqlite' 'scdoc')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/kpcyrd/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz
-
https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
-sha512sums=('37d3fb4ae6ba9b19c5610a77efcf19db79aaab7aa0d42d2a5c52e5591386e97e042a38d7339b6fd586fad492f91f2581822db43da8882c39cf714dab576345fa'
-'SKIP')
-b2sums=('dcf4c0d62d2015d1de6ec396bb50514b587560b748f603bc337a910ad5bfb02c3d9e7b2d2b29127162b1b642d724e5d0223b28d81f2daba59aa2170c057db730'
-'SKIP')
-
-validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  cargo build --frozen --release --workspace
-  make docs
-}
-
-check() {
-  cd ${pkgbase}-${pkgver}
-  cargo test --frozen --workspace
-}
-
-package_rebuilderd() {
-  pkgdesc='Independent verification system of binary packages (server package)'
-  depends=('rebuilderd-tools' 'sqlite' 'archlinux-repro')
-  backup=('etc/rebuilderd.conf'
-  'etc/rebuilderd-sync.conf'
-  'etc/rebuilderd-worker.conf')
-
-  cd ${pkgbase}-${pkgver}
-  install -Dm 755 -t "${pkgdir}/usr/bin" \
-target/release/rebuilderd \
-target/release/rebuilderd-worker
-
-  # install rebuilder scripts
-  install -Dm 755 -t "${pkgdir}/usr/libexec/rebuilderd" \
-worker/rebuilder-*.sh
-
-  # install config files
-  install -Dm 644 -t "${pkgdir}/etc" \
-contrib/confs/rebuilderd-sync.conf
-  install -Dm 640 -g 212 -t "${pkgdir}/etc" \
-contrib/confs/rebuilderd-worker.conf \
-contrib/confs/rebuilderd.conf
-
-  # install systemd configs
-  install -Dm 644 -t "${pkgdir}/usr/lib/systemd/system" \
-contrib/systemd/rebuilderd-sync@.service \
-contrib/systemd/rebuilderd-sync@.timer \
-contrib/systemd/rebuilderd-worker@.service \
-contrib/systemd/rebuilderd.service
-
-  install -Dm 644 contrib/systemd/rebuilderd.sysusers 
"${pkgdir}/usr/lib/sysusers.d/rebuilderd.conf"
-  install -Dm 644 contrib/systemd/rebuilderd.tmpfiles 
"${pkgdir}/usr/lib/tmpfiles.d/rebuilderd.conf"
-
-  # install docs
-  install -Dm 644 -t "${pkgdir}/usr/share/man/man1" \
-contrib/docs/rebuilderd.1 \
-contrib/docs/rebuilderd-worker.1
-  install -Dm 644 -t "${pkgdir}/usr/share/man/man5" \
-contrib/docs/rebuilderd.conf.5 \
-contrib/docs/rebuilderd-sync.conf.5 \
-contrib/docs/rebuilderd-worker.conf.5
-}
-
-package_rebuilderd-tools() {
-  pkgdesc='Independent verification system of binary packages (tools package)'
-
-  cd ${pkgbase}-${pkgver}
-  install -Dm 755 -t "${pkgdir}/usr/bin" \
-target/release/rebuildctl
-
-  # install completions
-  install -d "${pkgdir}/usr/share/bash-completion/completions" \
- "${pkgdir}/usr/share/zsh/site-functions" \
- "${pkgdir}/usr/share/fish/vendor_completions.d"
-  "${pkgdir}/usr/bin/rebuildctl" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/rebuildctl"
-  "${pkgdir}/usr/bin/rebuildctl" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_rebuildctl"
-  "${pkgdir}/usr/bin/rebuildctl" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/rebuildctl.fish"
-
-  # install docs
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgbase}"
-  install -Dm 644 -t "${pkgdir}/usr/share/man/man1" \
-contrib/docs/rebuildctl.1
-}
-
-# vim: ts=2 sw=2 et:

Copied: rebuilderd/repos/community-x86_64/PKGBUILD (from rev 1065107, 
rebuilderd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-05 00:50:53 UTC (rev 1065108)
@@ -0,0 +1,102 @@
+# Maintainer: kpcyrd 
+
+pkgbase=rebuilderd
+pkgname=(rebuilderd rebuilderd-tools)
+pkgver=0.16.5
+pkgrel=1
+pkgdesc='Independent verification system of binary packages'
+url='https://github.com/kpcyrd/rebuilderd'
+arch=('x86_64')
+license=('GPL3')
+depends=('openssl' 

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

2021-12-04 Thread Kpcyrd via arch-commits
Date: Sunday, December 5, 2021 @ 00:50:41
  Author: kpcyrd
Revision: 1065107

upgpkg: rebuilderd 0.16.5-1

Modified:
  rebuilderd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-05 00:48:53 UTC (rev 1065106)
+++ PKGBUILD2021-12-05 00:50:41 UTC (rev 1065107)
@@ -2,7 +2,7 @@
 
 pkgbase=rebuilderd
 pkgname=(rebuilderd rebuilderd-tools)
-pkgver=0.16.3
+pkgver=0.16.5
 pkgrel=1
 pkgdesc='Independent verification system of binary packages'
 url='https://github.com/kpcyrd/rebuilderd'
@@ -12,9 +12,9 @@
 makedepends=('cargo' 'sqlite' 'scdoc')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/kpcyrd/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz
 
https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
-sha512sums=('37d3fb4ae6ba9b19c5610a77efcf19db79aaab7aa0d42d2a5c52e5591386e97e042a38d7339b6fd586fad492f91f2581822db43da8882c39cf714dab576345fa'
+sha512sums=('109ad574c09fb360d9922cd8d8f791741f5334e5975382ead07948b6957017b0a58ba43bb08f9ae022cf4730337c37481ca0ac43bf39f69f6d678a8708ae6e7a'
 'SKIP')
-b2sums=('dcf4c0d62d2015d1de6ec396bb50514b587560b748f603bc337a910ad5bfb02c3d9e7b2d2b29127162b1b642d724e5d0223b28d81f2daba59aa2170c057db730'
+b2sums=('7c295026c9682def064d9b2f2f0d82a95304b148534314416d44401bd264932b9e7bfce053ed1d88ad4d2f20ee81e9195483f8bba765c96ce528335bff19f06a'
 'SKIP')
 
 validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")



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

2021-12-04 Thread Kpcyrd via arch-commits
Date: Sunday, December 5, 2021 @ 00:48:53
  Author: kpcyrd
Revision: 1065106

archrelease: copy trunk to community-x86_64

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

+
 PKGBUILD   |  114 +++
 sn0int.install |   18 
 2 files changed, 66 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-05 00:48:40 UTC (rev 1065105)
+++ PKGBUILD2021-12-05 00:48:53 UTC (rev 1065106)
@@ -1,57 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Santiago Torres-Arias 
-# Maintainer: kpcyrd 
-
-pkgname=sn0int
-pkgver=0.23.0
-pkgrel=1
-pkgdesc='Semi-automatic OSINT framework and package manager'
-url='https://github.com/kpcyrd/sn0int'
-arch=('x86_64')
-license=('GPL3')
-depends=('libcap' 'lua52' 'sqlite' 'libseccomp.so' 'libsodium' 
'geoip2-database' 'publicsuffix-list')
-makedepends=('cargo' 'python-sphinx')
-install=sn0int.install
-source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
-
https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
-sha512sums=('b795cb7cda32e57fc361267f10b12e86bc3c7d01b6fb139a4b75210669610cb3112fc7003577144864adfcc043330468dec67b336037460788636c3f5b9e8dd9'
-'SKIP')
-b2sums=('fe2babf3cde3483427c0207a7943b4f5e6be3bfcdf9847e331e4ffa18f75f4190da00619d0a1c2f521921c5b54d1249c106c81eecff8879f3e58fb5652bd2d95'
-'SKIP')
-
-validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")
-
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cargo build --frozen --release
-  make -C docs man
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  cargo test --frozen
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm 755 target/release/${pkgname} "${pkgdir}/usr/bin/${pkgname}"
-
-  install -d "${pkgdir}/usr/share/bash-completion/completions" \
- "${pkgdir}/usr/share/zsh/site-functions" \
- "${pkgdir}/usr/share/fish/vendor_completions.d"
-  "${pkgdir}/usr/bin/sn0int" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/sn0int"
-  "${pkgdir}/usr/bin/sn0int" completions zsh > 
"${pkgdir}/usr/share/zsh/site-functions/_sn0int"
-  "${pkgdir}/usr/bin/sn0int" completions fish > 
"${pkgdir}/usr/share/fish/vendor_completions.d/sn0int.fish"
-
-  install -Dm 644 docs/_build/man/sn0int.1 -t "${pkgdir}/usr/share/man/man1"
-  install -Dm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: sn0int/repos/community-x86_64/PKGBUILD (from rev 1065105, 
sn0int/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-05 00:48:53 UTC (rev 1065106)
@@ -0,0 +1,57 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Santiago Torres-Arias 
+# Maintainer: kpcyrd 
+
+pkgname=sn0int
+pkgver=0.24.0
+pkgrel=1
+pkgdesc='Semi-automatic OSINT framework and package manager'
+url='https://github.com/kpcyrd/sn0int'
+arch=('x86_64')
+license=('GPL3')
+depends=('libcap' 'lua52' 'sqlite' 'libseccomp.so' 'libsodium' 
'geoip2-database' 'publicsuffix-list')
+makedepends=('cargo' 'python-sphinx')
+install=sn0int.install
+source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
+
https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
+sha512sums=('ba3ee7b791756cf034fda3134a91d7d073529d98e6337bbd0bb15aa8c1c986c9f6149b91fa81dc7c21e830201b3b8f3707852fe8533ce70a138b0830158e120f'
+'SKIP')
+b2sums=('4712d1e9a54514b77abaffa517c839a52b989f3a318124b4d5a5e6dbbb38bd5dac88b676c7c7837b4b635538b2407e57d8faa8258b84be635e6ec5d08e0bcf0d'
+'SKIP')
+
+validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")
+
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cargo build --frozen --release
+  make -C docs man
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  cargo test --frozen
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm 755 target/release/${pkgname} "${pkgdir}/usr/bin/${pkgname}"
+
+  install -d "${pkgdir}/usr/share/bash-completion/completions" \
+ "${pkgdir}/usr/share/zsh/site-functions" \
+ "${pkgdir}/usr/share/fish/vendor_completions.d"
+  "${pkgdir}/usr/bin/sn0int" completions bash > 
"${pkgdir}/usr/share/bash-completion/completions/sn0int"
+  "${pkgdir}/usr/bin/sn0int" 

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

2021-12-04 Thread Kpcyrd via arch-commits
Date: Sunday, December 5, 2021 @ 00:48:40
  Author: kpcyrd
Revision: 1065105

upgpkg: sn0int 0.24.0-1

Modified:
  sn0int/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-05 00:22:40 UTC (rev 1065104)
+++ PKGBUILD2021-12-05 00:48:40 UTC (rev 1065105)
@@ -3,7 +3,7 @@
 # Maintainer: kpcyrd 
 
 pkgname=sn0int
-pkgver=0.23.0
+pkgver=0.24.0
 pkgrel=1
 pkgdesc='Semi-automatic OSINT framework and package manager'
 url='https://github.com/kpcyrd/sn0int'
@@ -14,9 +14,9 @@
 install=sn0int.install
 
source=(https://github.com/kpcyrd/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz
 
https://github.com/kpcyrd/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz.asc)
-sha512sums=('b795cb7cda32e57fc361267f10b12e86bc3c7d01b6fb139a4b75210669610cb3112fc7003577144864adfcc043330468dec67b336037460788636c3f5b9e8dd9'
+sha512sums=('ba3ee7b791756cf034fda3134a91d7d073529d98e6337bbd0bb15aa8c1c986c9f6149b91fa81dc7c21e830201b3b8f3707852fe8533ce70a138b0830158e120f'
 'SKIP')
-b2sums=('fe2babf3cde3483427c0207a7943b4f5e6be3bfcdf9847e331e4ffa18f75f4190da00619d0a1c2f521921c5b54d1249c106c81eecff8879f3e58fb5652bd2d95'
+b2sums=('4712d1e9a54514b77abaffa517c839a52b989f3a318124b4d5a5e6dbbb38bd5dac88b676c7c7837b4b635538b2407e57d8faa8258b84be635e6ec5d08e0bcf0d'
 'SKIP')
 
 validpgpkeys=("64B13F7117D6E07D661BBCE0FE763A64F5E54FD6")



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 5, 2021 @ 00:22:40
  Author: svenstaro
Revision: 1065104

archrelease: copy trunk to community-x86_64

Added:
  zram-generator/repos/community-x86_64/PKGBUILD
(from rev 1065103, zram-generator/trunk/PKGBUILD)
Deleted:
  zram-generator/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-05 00:20:54 UTC (rev 1065103)
+++ PKGBUILD2021-12-05 00:22:40 UTC (rev 1065104)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Sergey Shatunov 
-
-pkgname=zram-generator
-pkgver=0.3.2
-pkgrel=1
-pkgdesc="Systemd unit generator for zram devices"
-arch=("x86_64" "arm" "arv6h" "armv7h" "aarch64" "i686" "pentium4")
-url="https://github.com/systemd/zram-generator;
-license=('MIT')
-depends=("systemd")
-makedepends=('rust' 'ruby-ronn-ng')
-source=("https://github.com/systemd/zram-generator/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('9c014ca1d1c92a31dd827641ab3c413aa36672e48b39e105e195796b3b3ae40a')
-
-build() {
-  cd zram-generator-$pkgver
-  make CARGOFLAGS="--target-dir=target" build man
-}
-
-check() {
-  cd zram-generator-$pkgver
-  make CARGOFLAGS="--target-dir=target" check
-}
-
-package() {
-  cd zram-generator-$pkgver
-
-  make CARGOFLAGS="--target-dir=target" DESTDIR="$pkgdir" install
-  install -Dpm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: zram-generator/repos/community-x86_64/PKGBUILD (from rev 1065103, 
zram-generator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-05 00:22:40 UTC (rev 1065104)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+# Contributor: Sergey Shatunov 
+
+pkgname=zram-generator
+pkgver=1.1.1
+pkgrel=1
+pkgdesc="Systemd unit generator for zram devices"
+arch=("x86_64")
+url="https://github.com/systemd/zram-generator;
+license=('MIT')
+depends=("systemd")
+makedepends=('rust' 'ruby-ronn-ng')
+source=("https://github.com/systemd/zram-generator/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('7e411fe5ef4b4f0ba80c30eaaa1c3a0f01a50a95975354c170cc49ff7dbd2463')
+
+build() {
+  cd zram-generator-$pkgver
+  make CARGOFLAGS="--target-dir=target" build man
+}
+
+check() {
+  cd zram-generator-$pkgver
+  make CARGOFLAGS="--target-dir=target" check
+}
+
+package() {
+  cd zram-generator-$pkgver
+
+  make CARGOFLAGS="--target-dir=target" DESTDIR="$pkgdir" install
+  install -Dpm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, December 5, 2021 @ 00:20:54
  Author: svenstaro
Revision: 1065103

upgpkg: zram-generator 1.1.1-1

Modified:
  zram-generator/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 23:47:32 UTC (rev 1065102)
+++ PKGBUILD2021-12-05 00:20:54 UTC (rev 1065103)
@@ -2,7 +2,7 @@
 # Contributor: Sergey Shatunov 
 
 pkgname=zram-generator
-pkgver=0.3.2
+pkgver=1.1.1
 pkgrel=1
 pkgdesc="Systemd unit generator for zram devices"
 arch=("x86_64")
@@ -11,7 +11,7 @@
 depends=("systemd")
 makedepends=('rust' 'ruby-ronn-ng')
 
source=("https://github.com/systemd/zram-generator/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('9c014ca1d1c92a31dd827641ab3c413aa36672e48b39e105e195796b3b3ae40a')
+sha256sums=('7e411fe5ef4b4f0ba80c30eaaa1c3a0f01a50a95975354c170cc49ff7dbd2463')
 
 build() {
   cd zram-generator-$pkgver



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

2021-12-04 Thread Antonio Rojas via arch-commits
Date: Saturday, December 4, 2021 @ 23:47:32
  Author: arojas
Revision: 1065102

archrelease: copy trunk to community-staging-any

Added:
  python-argcomplete/repos/community-staging-any/PKGBUILD
(from rev 1065101, python-argcomplete/trunk/PKGBUILD)
Deleted:
  python-argcomplete/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 23:46:42 UTC (rev 1065101)
+++ PKGBUILD2021-12-04 23:47:32 UTC (rev 1065102)
@@ -1,40 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Andrey Mikhaylenko 
-
-pkgname=python-argcomplete
-_pyname=argcomplete
-pkgver=1.12.1
-_gitcommit=36bc3b3e4230caacb11de6e49c24bff1406f8c1d
-pkgrel=2
-pkgdesc='Easy, extensible command line tab completion of arguments for your 
Python script'
-url='https://github.com/kislyuk/argcomplete'
-arch=('any')
-license=('Apache')
-depends=('python')
-makedepends=('git' 'python-setuptools')
-checkdepends=('python-pexpect' 'tcsh' 'fish' 'python-pip')
-source=(${_pyname}::"git+https://github.com/kislyuk/${_pyname}#commit=${_gitcommit}?signed;)
-sha512sums=('SKIP')
-validpgpkeys=('29BCBADB4ECAAAC2382699388AFAFCD242818A52') # Andrey Kislyuk 

-
-pkgver() {
-  cd ${_pyname}
-  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-build() {
-  cd ${_pyname}
-  python setup.py build
-}
-
-check() {
-  cd ${_pyname}
-  LC_CTYPE=en_US.UTF-8 python test/test.py -v
-}
-
-package() {
-  cd ${_pyname}
-  python setup.py install -O1 --root="${pkgdir}" --skip-build
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-argcomplete/repos/community-staging-any/PKGBUILD (from rev 
1065101, python-argcomplete/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 23:47:32 UTC (rev 1065102)
@@ -0,0 +1,40 @@
+# Maintainer: Levente Polyak 
+# Contributor: Andrey Mikhaylenko 
+
+pkgname=python-argcomplete
+_pyname=argcomplete
+pkgver=1.12.3
+_gitcommit=ce54b6dfd51f9f01b4ef85bb8692a9f804a11771
+pkgrel=1
+pkgdesc='Easy, extensible command line tab completion of arguments for your 
Python script'
+url='https://github.com/kislyuk/argcomplete'
+arch=('any')
+license=('Apache')
+depends=('python')
+makedepends=('git' 'python-setuptools')
+checkdepends=('python-pexpect' 'tcsh' 'fish' 'python-pip')
+source=(${_pyname}::"git+https://github.com/kislyuk/${_pyname}#commit=${_gitcommit}?signed;)
+sha512sums=('SKIP')
+validpgpkeys=('29BCBADB4ECAAAC2382699388AFAFCD242818A52') # Andrey Kislyuk 

+
+pkgver() {
+  cd ${_pyname}
+  git describe --tags --match 'v*' | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+build() {
+  cd ${_pyname}
+  python setup.py build
+}
+
+check() {
+  cd ${_pyname}
+  LC_CTYPE=en_US.UTF-8 python test/test.py -v
+}
+
+package() {
+  cd ${_pyname}
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+}
+
+# vim: ts=2 sw=2 et:



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

2021-12-04 Thread Antonio Rojas via arch-commits
Date: Saturday, December 4, 2021 @ 23:46:42
  Author: arojas
Revision: 1065101

Update to 1.12.3, tcsh tests fail on build server but work locally

Modified:
  python-argcomplete/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 23:33:25 UTC (rev 1065100)
+++ PKGBUILD2021-12-04 23:46:42 UTC (rev 1065101)
@@ -3,9 +3,9 @@
 
 pkgname=python-argcomplete
 _pyname=argcomplete
-pkgver=1.12.1
-_gitcommit=36bc3b3e4230caacb11de6e49c24bff1406f8c1d
-pkgrel=2
+pkgver=1.12.3
+_gitcommit=ce54b6dfd51f9f01b4ef85bb8692a9f804a11771
+pkgrel=1
 pkgdesc='Easy, extensible command line tab completion of arguments for your 
Python script'
 url='https://github.com/kislyuk/argcomplete'
 arch=('any')



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

2021-12-04 Thread Christian Rebischke via arch-commits
Date: Saturday, December 4, 2021 @ 23:33:25
  Author: shibumi
Revision: 1065100

archrelease: copy trunk to community-x86_64

Added:
  istio/repos/community-x86_64/PKGBUILD
(from rev 1065099, istio/trunk/PKGBUILD)
Deleted:
  istio/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 23:33:19 UTC (rev 1065099)
+++ PKGBUILD2021-12-04 23:33:25 UTC (rev 1065100)
@@ -1,34 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Arturo Penen 
-
-pkgname=istio
-pkgver=1.11.4
-pkgrel=1
-pkgdesc='Istio configuration command line utility for service operators to 
debug and diagnose their Istio mesh.'
-arch=('x86_64')
-url='https://github.com/istio/istio'
-license=('Apache')
-makedepends=('go')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/istio/istio/archive/$pkgver.tar.gz;)
-sha512sums=('64e6448b830fe6e199758f0ba156115018e8a8cbb8ca43f8ba0777e2ee70a2334b939fa98068d4e7439177868f8264ff91cf9d19cc47a346e716ca04585bf828')
-b2sums=('02699f7bc878a3a88038e77e4fa65f16542ad175b12daa49f27d63a9a7a088fa96ef9c41ddd38eab2144f4150c07ddedef9d74ae29462756c2e5cc4e48f0f9dc')
-
-build() {
-  cd $pkgname-$pkgver
-  export VERSION=$pkgver
-  export TAG=$pkgver
-  export BUILD_WITH_CONTAINER=0
-  make build
-}
-
-package() {
-  install -Dm 755 "${srcdir}/$pkgname-$pkgver/out/linux_amd64/istioctl" 
"${pkgdir}/usr/bin/istioctl"
-
-  # Populate bash and zsh completions
-  install -dm 755 "${pkgdir}/usr/share/bash-completion/completions"
-  install -dm 755 "${pkgdir}/usr/share/zsh/site-functions"
-  "${pkgdir}/usr/bin/istioctl" collateral --bash
-  mv istioctl.bash "${pkgdir}/usr/share/bash-completion/completions/istioctl"
-  "${pkgdir}/usr/bin/istioctl" collateral --zsh
-  mv _istioctl  "${pkgdir}/usr/share/zsh/site-functions/_istioctl"
-}

Copied: istio/repos/community-x86_64/PKGBUILD (from rev 1065099, 
istio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 23:33:25 UTC (rev 1065100)
@@ -0,0 +1,34 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Arturo Penen 
+
+pkgname=istio
+pkgver=1.11.5
+pkgrel=1
+pkgdesc='Istio configuration command line utility for service operators to 
debug and diagnose their Istio mesh.'
+arch=('x86_64')
+url='https://github.com/istio/istio'
+license=('Apache')
+makedepends=('go')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/istio/istio/archive/$pkgver.tar.gz;)
+sha512sums=('86538b50cdb5453e995550407aa4378d01075e87d9f8089e4e02f74d4fc40a84d6961ecd19350fe1fbaa1a3cc7c5ac4b55a99e8a668118e87f6fb78353f8e1cf')
+b2sums=('36d176b6fc51b1edcb72fa66aea052ffd0e41b2c52f7cecdf5f5a272d074599d93bab2a0bde9882df84e743a2f12c5f7525f985ea3dba1a6d884c6ebb76606a6')
+
+build() {
+  cd $pkgname-$pkgver
+  export VERSION=$pkgver
+  export TAG=$pkgver
+  export BUILD_WITH_CONTAINER=0
+  make build
+}
+
+package() {
+  install -Dm 755 "${srcdir}/$pkgname-$pkgver/out/linux_amd64/istioctl" 
"${pkgdir}/usr/bin/istioctl"
+
+  # Populate bash and zsh completions
+  install -dm 755 "${pkgdir}/usr/share/bash-completion/completions"
+  install -dm 755 "${pkgdir}/usr/share/zsh/site-functions"
+  "${pkgdir}/usr/bin/istioctl" collateral --bash
+  mv istioctl.bash "${pkgdir}/usr/share/bash-completion/completions/istioctl"
+  "${pkgdir}/usr/bin/istioctl" collateral --zsh
+  mv _istioctl  "${pkgdir}/usr/share/zsh/site-functions/_istioctl"
+}



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

2021-12-04 Thread Christian Rebischke via arch-commits
Date: Saturday, December 4, 2021 @ 23:33:19
  Author: shibumi
Revision: 1065099

upgpkg: istio 1.11.5-1

Modified:
  istio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 23:28:48 UTC (rev 1065098)
+++ PKGBUILD2021-12-04 23:33:19 UTC (rev 1065099)
@@ -2,7 +2,7 @@
 # Contributor: Arturo Penen 
 
 pkgname=istio
-pkgver=1.11.4
+pkgver=1.11.5
 pkgrel=1
 pkgdesc='Istio configuration command line utility for service operators to 
debug and diagnose their Istio mesh.'
 arch=('x86_64')
@@ -10,8 +10,8 @@
 license=('Apache')
 makedepends=('go')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/istio/istio/archive/$pkgver.tar.gz;)
-sha512sums=('64e6448b830fe6e199758f0ba156115018e8a8cbb8ca43f8ba0777e2ee70a2334b939fa98068d4e7439177868f8264ff91cf9d19cc47a346e716ca04585bf828')
-b2sums=('02699f7bc878a3a88038e77e4fa65f16542ad175b12daa49f27d63a9a7a088fa96ef9c41ddd38eab2144f4150c07ddedef9d74ae29462756c2e5cc4e48f0f9dc')
+sha512sums=('86538b50cdb5453e995550407aa4378d01075e87d9f8089e4e02f74d4fc40a84d6961ecd19350fe1fbaa1a3cc7c5ac4b55a99e8a668118e87f6fb78353f8e1cf')
+b2sums=('36d176b6fc51b1edcb72fa66aea052ffd0e41b2c52f7cecdf5f5a272d074599d93bab2a0bde9882df84e743a2f12c5f7525f985ea3dba1a6d884c6ebb76606a6')
 
 build() {
   cd $pkgname-$pkgver



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

2021-12-04 Thread Christian Rebischke via arch-commits
Date: Saturday, December 4, 2021 @ 23:28:48
  Author: shibumi
Revision: 1065098

archrelease: copy trunk to community-any

Added:
  mkosi/repos/community-any/PKGBUILD
(from rev 1065097, mkosi/trunk/PKGBUILD)
Deleted:
  mkosi/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 23:28:42 UTC (rev 1065097)
+++ PKGBUILD2021-12-04 23:28:48 UTC (rev 1065098)
@@ -1,35 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Lucas Werkmeister 
-# Contributor: Dave Reisner 
-
-pkgname=mkosi
-pkgver=10
-pkgrel=1
-pkgdesc='Build Legacy-Free OS Images'
-arch=('any')
-url='https://github.com/systemd/mkosi'
-license=('LGPL2.1')
-depends=('python')
-makedepends=('python-setuptools')
-optdepends=('debootstrap: build Debian or Ubuntu images'
-'debian-archive-keyring: build Debian images'
-'ubuntu-keyring: build Ubuntu images'
-'arch-install-scripts: build Arch images'
-'gnupg: sign images'
-'xz: compress images with xz'
-'btrfs-progs: raw_btrfs and subvolume output formats'
-'dosfstools: build bootable images'
-'squashfs-tools: raw_squashfs output format'
-'tar: tar output format'
-'cryptsetup: add dm-verity partitions'
-'edk2-ovmf: run bootable images in QEMU'
-'qemu: run bootable images in QEMU'
-'sbsigntools: sign EFI binaries for UEFI SecureBoot')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/systemd/mkosi/archive/v$pkgver.tar.gz;)
-sha512sums=('0c90ea784678f39c50868fcbbc76e3e5a2a77da98afcbcca3da0115346df10c00f402dc2db0f02d6b3933960cff971d22c11d830b0f2e63b799942301d507379')
-
-package() {
-  cd "mkosi-$pkgver"
-  export PYTHONHASHSEED=0
-  python setup.py install --root="$pkgdir"
-}

Copied: mkosi/repos/community-any/PKGBUILD (from rev 1065097, 
mkosi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 23:28:48 UTC (rev 1065098)
@@ -0,0 +1,34 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Lucas Werkmeister 
+# Contributor: Dave Reisner 
+
+pkgname=mkosi
+pkgver=11
+pkgrel=1
+pkgdesc='Build Legacy-Free OS Images'
+arch=('any')
+url='https://github.com/systemd/mkosi'
+license=('LGPL2.1')
+depends=('python')
+makedepends=('python-setuptools')
+optdepends=('debootstrap: build Debian or Ubuntu images'
+'debian-archive-keyring: build Debian images'
+'ubuntu-keyring: build Ubuntu images'
+'arch-install-scripts: build Arch images'
+'gnupg: sign images'
+'xz: compress images with xz'
+'btrfs-progs: raw_btrfs and subvolume output formats'
+'dosfstools: build bootable images'
+'squashfs-tools: raw_squashfs output format'
+'tar: tar output format'
+'cryptsetup: add dm-verity partitions'
+'edk2-ovmf: run bootable images in QEMU'
+'qemu: run bootable images in QEMU'
+'sbsigntools: sign EFI binaries for UEFI SecureBoot')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/systemd/mkosi/archive/v$pkgver.tar.gz;)
+sha512sums=('c07b092e38e663100cfa00ce58c2b61d306292f69429835915310f9736e11ea1431ae2667e8fca02c2a145aa4f21bd199f956d2882913474c4cee394bb15a8f2')
+
+package() {
+  cd "mkosi-$pkgver"
+  python setup.py install --root="$pkgdir"
+}



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

2021-12-04 Thread Christian Rebischke via arch-commits
Date: Saturday, December 4, 2021 @ 23:28:42
  Author: shibumi
Revision: 1065097

upgpkg: mkosi 11-1

Modified:
  mkosi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 23:26:35 UTC (rev 1065096)
+++ PKGBUILD2021-12-04 23:28:42 UTC (rev 1065097)
@@ -3,8 +3,8 @@
 # Contributor: Dave Reisner 
 
 pkgname=mkosi
-pkgver=10
-pkgrel=2
+pkgver=11
+pkgrel=1
 pkgdesc='Build Legacy-Free OS Images'
 arch=('any')
 url='https://github.com/systemd/mkosi'
@@ -26,7 +26,7 @@
 'qemu: run bootable images in QEMU'
 'sbsigntools: sign EFI binaries for UEFI SecureBoot')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/systemd/mkosi/archive/v$pkgver.tar.gz;)
-sha512sums=('0c90ea784678f39c50868fcbbc76e3e5a2a77da98afcbcca3da0115346df10c00f402dc2db0f02d6b3933960cff971d22c11d830b0f2e63b799942301d507379')
+sha512sums=('c07b092e38e663100cfa00ce58c2b61d306292f69429835915310f9736e11ea1431ae2667e8fca02c2a145aa4f21bd199f956d2882913474c4cee394bb15a8f2')
 
 package() {
   cd "mkosi-$pkgver"



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

2021-12-04 Thread Christian Rebischke via arch-commits
Date: Saturday, December 4, 2021 @ 23:26:35
  Author: shibumi
Revision: 1065096

archrelease: copy trunk to community-x86_64

Added:
  pulumi/repos/community-x86_64/PKGBUILD
(from rev 1065095, pulumi/trunk/PKGBUILD)
Deleted:
  pulumi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 23:26:30 UTC (rev 1065095)
+++ PKGBUILD2021-12-04 23:26:35 UTC (rev 1065096)
@@ -1,75 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Contributor: Christoph Gysin 
-
-pkgname=pulumi
-pkgver=3.18.1
-pkgrel=1
-pkgdesc='Modern Infrastructure as Code'
-arch=('x86_64')
-url="https://github.com/$pkgname/$pkgname;
-license=('GPL')
-depends=('glibc')
-makedepends=('go')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('d37ca0c536ccc4fde78fd9bdf585c5eb238f056da01f043e93ce7e3fd83ec3d4')
-b2sums=('04b2ef741943fa8bd7863837ce28caae269f854a2c203c89bf8acb4c5f9bdb262d5793fe37359c135d5cbe5b5d16bfb00f94c23ed1c2b3ec311c42db333427d3')
-
-_plugins=(
-  "nodejs/cmd/pulumi-language-nodejs"
-  "python/cmd/pulumi-language-python"
-  "dotnet/cmd/pulumi-language-dotnet"
-  "go/pulumi-language-go"
-)
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-
-  # Build the `pulumi` executable
-  cd "${srcdir}/${pkgname}-${pkgver}/pkg"
-  go build \
--ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
--o "${srcdir}/${pkgname}-${pkgver}/bin/${pkgname}" \
-"./cmd/${pkgname}" \
-
-  # Build the plugins
-  cd "${srcdir}/${pkgname}-${pkgver}/sdk"
-  for plugin in "${_plugins[@]}"; do
-plugin_name=${plugin##*/}
-go build \
-  -ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
-  -o "${srcdir}/${pkgname}-${pkgver}/bin/${plugin_name}" \
-  "./${plugin}"
-
-# Add possible executor
-if [ -f "${plugin}-exec" ]; then
-  cp "${plugin}-exec" "${srcdir}/${pkgname}-${pkgver}/bin/"
-fi
-  done
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Install all executables
-  for f in ./bin/*; do
-install -D -m 755 "$f" "${pkgdir}/usr/bin/$(basename $f)"
-  done
-
-  # Generate Bash completion
-  install -D -m 644 \
-<("${pkgdir}/usr/bin/${pkgname}" gen-completion bash) \
-"${pkgdir}/etc/bash_completion.d/${pkgname}"
-
-  # Generate ZSH completion
-  install -D -m 644 \
-<("${pkgdir}/usr/bin/${pkgname}" gen-completion zsh) \
-"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pulumi/repos/community-x86_64/PKGBUILD (from rev 1065095, 
pulumi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 23:26:35 UTC (rev 1065096)
@@ -0,0 +1,75 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Christoph Gysin 
+
+pkgname=pulumi
+pkgver=3.19.0
+pkgrel=1
+pkgdesc='Modern Infrastructure as Code'
+arch=('x86_64')
+url="https://github.com/$pkgname/$pkgname;
+license=('GPL')
+depends=('glibc')
+makedepends=('go')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('e758e0053c7a80ff0e64252beb1b47a4434d584a3d4fe4964eac8720e3322e5b')
+b2sums=('30f45acc264b7ce44f25d57f494ba9e3a206c35fea651a0b583e889bb5d03a5b07b324775b25dbb0ba20a04ee4833bba9f444e45ef36f3cb59b90066565ed0d5')
+
+_plugins=(
+  "nodejs/cmd/pulumi-language-nodejs"
+  "python/cmd/pulumi-language-python"
+  "dotnet/cmd/pulumi-language-dotnet"
+  "go/pulumi-language-go"
+)
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+
+  # Build the `pulumi` executable
+  cd "${srcdir}/${pkgname}-${pkgver}/pkg"
+  go build \
+-ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
+-o "${srcdir}/${pkgname}-${pkgver}/bin/${pkgname}" \
+"./cmd/${pkgname}" \
+
+  # Build the plugins
+  cd "${srcdir}/${pkgname}-${pkgver}/sdk"
+  for plugin in "${_plugins[@]}"; do
+plugin_name=${plugin##*/}
+go build \
+  -ldflags "-X 
github.com/pulumi/pulumi/pkg/v${pkgver%%.*}/version.Version=${pkgver} 
-extldflags ${LDFLAGS}" \
+  -o "${srcdir}/${pkgname}-${pkgver}/bin/${plugin_name}" \
+  "./${plugin}"
+
+# Add possible executor
+if [ -f "${plugin}-exec" ]; then
+  cp "${plugin}-exec" 

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

2021-12-04 Thread Christian Rebischke via arch-commits
Date: Saturday, December 4, 2021 @ 23:26:30
  Author: shibumi
Revision: 1065095

upgpkg: pulumi 3.19.0-1

Modified:
  pulumi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 23:23:24 UTC (rev 1065094)
+++ PKGBUILD2021-12-04 23:26:30 UTC (rev 1065095)
@@ -11,8 +11,8 @@
 depends=('glibc')
 makedepends=('go')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('d37ca0c536ccc4fde78fd9bdf585c5eb238f056da01f043e93ce7e3fd83ec3d4')
-b2sums=('04b2ef741943fa8bd7863837ce28caae269f854a2c203c89bf8acb4c5f9bdb262d5793fe37359c135d5cbe5b5d16bfb00f94c23ed1c2b3ec311c42db333427d3')
+sha256sums=('e758e0053c7a80ff0e64252beb1b47a4434d584a3d4fe4964eac8720e3322e5b')
+b2sums=('30f45acc264b7ce44f25d57f494ba9e3a206c35fea651a0b583e889bb5d03a5b07b324775b25dbb0ba20a04ee4833bba9f444e45ef36f3cb59b90066565ed0d5')
 
 _plugins=(
   "nodejs/cmd/pulumi-language-nodejs"



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

2021-12-04 Thread Christian Rebischke via arch-commits
Date: Saturday, December 4, 2021 @ 23:23:24
  Author: shibumi
Revision: 1065094

upgpkg: pulumi 3.19.0-1

Modified:
  pulumi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 23:18:58 UTC (rev 1065093)
+++ PKGBUILD2021-12-04 23:23:24 UTC (rev 1065094)
@@ -2,7 +2,7 @@
 # Contributor: Christoph Gysin 
 
 pkgname=pulumi
-pkgver=3.18.1
+pkgver=3.19.0
 pkgrel=1
 pkgdesc='Modern Infrastructure as Code'
 arch=('x86_64')



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

2021-12-04 Thread Christian Rebischke via arch-commits
Date: Saturday, December 4, 2021 @ 23:18:58
  Author: shibumi
Revision: 1065093

archrelease: copy trunk to community-x86_64

Modified:
  aerc/repos/community-x86_64/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 23:18:53 UTC (rev 1065092)
+++ PKGBUILD2021-12-04 23:18:58 UTC (rev 1065093)
@@ -4,11 +4,11 @@
 # Contributor: Drew DeVault 
 
 pkgname=aerc
-pkgver=0.5.2
-pkgrel=2
+pkgver=0.6.0
+pkgrel=1
 pkgdesc='Email Client for your Terminal'
 arch=('x86_64')
-url='https://git.sr.ht/~sircmpwn/aerc'
+url='https://git.sr.ht/~rjarry/aerc'
 license=('MIT')
 depends=('notmuch')
 makedepends=('go' 'git' 'scdoc')
@@ -15,8 +15,8 @@
 optdepends=('w3m: html viewer support' 'dante: proxy support')
 provides=('aerc')
 conflicts=('aerc')
-source=("$pkgname-$pkgver.tar.gz::https://git.sr.ht/~sircmpwn/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('b5472f204ee2226dffaefb1a1554644711e030bac227cb708510fc4eec46ecb7ab48b7e82b1400024d8893ef2d4b880edffd98fd10339459015c0bb27956d452')
+source=("$pkgname-$pkgver.tar.gz::https://git.sr.ht/~rjarry/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('04c80d5c86cc1cf978ae2590a469f56241978253dab82dfa0a8b17860b496c2c9ee30ebf345953046968856da06beadebdced4bdee6e92d5faf85abe1ff5bcd3')
 
 build() {
 cd "$srcdir/$pkgname-$pkgver"



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

2021-12-04 Thread Christian Rebischke via arch-commits
Date: Saturday, December 4, 2021 @ 23:18:53
  Author: shibumi
Revision: 1065092

upgpkg: aerc 0.6.0-1

Modified:
  aerc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 22:42:25 UTC (rev 1065091)
+++ PKGBUILD2021-12-04 23:18:53 UTC (rev 1065092)
@@ -4,11 +4,11 @@
 # Contributor: Drew DeVault 
 
 pkgname=aerc
-pkgver=0.5.2
-pkgrel=2
+pkgver=0.6.0
+pkgrel=1
 pkgdesc='Email Client for your Terminal'
 arch=('x86_64')
-url='https://git.sr.ht/~sircmpwn/aerc'
+url='https://git.sr.ht/~rjarry/aerc'
 license=('MIT')
 depends=('notmuch')
 makedepends=('go' 'git' 'scdoc')
@@ -15,8 +15,8 @@
 optdepends=('w3m: html viewer support' 'dante: proxy support')
 provides=('aerc')
 conflicts=('aerc')
-source=("$pkgname-$pkgver.tar.gz::https://git.sr.ht/~sircmpwn/${pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('b5472f204ee2226dffaefb1a1554644711e030bac227cb708510fc4eec46ecb7ab48b7e82b1400024d8893ef2d4b880edffd98fd10339459015c0bb27956d452')
+source=("$pkgname-$pkgver.tar.gz::https://git.sr.ht/~rjarry/${pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('04c80d5c86cc1cf978ae2590a469f56241978253dab82dfa0a8b17860b496c2c9ee30ebf345953046968856da06beadebdced4bdee6e92d5faf85abe1ff5bcd3')
 
 build() {
 cd "$srcdir/$pkgname-$pkgver"



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

2021-12-04 Thread Felix Yan via arch-commits
Date: Saturday, December 4, 2021 @ 22:42:25
  Author: felixonmars
Revision: 1065091

archrelease: copy trunk to community-staging-any

Added:
  python-terminaltables/repos/community-staging-any/
  python-terminaltables/repos/community-staging-any/PKGBUILD
(from rev 1065090, python-terminaltables/trunk/PKGBUILD)
  python-terminaltables/repos/community-staging-any/python-3.8.patch
(from rev 1065090, python-terminaltables/trunk/python-3.8.patch)

--+
 PKGBUILD |   43 +++
 python-3.8.patch |   26 ++
 2 files changed, 69 insertions(+)

Copied: python-terminaltables/repos/community-staging-any/PKGBUILD (from rev 
1065090, python-terminaltables/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-12-04 22:42:25 UTC (rev 1065091)
@@ -0,0 +1,43 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Levente Polyak 
+
+pkgname=python-terminaltables
+_pyname=terminaltables
+pkgver=3.1.0
+pkgrel=9
+pkgdesc="Generate simple tables in terminals from a nested list of strings"
+arch=('any')
+url="https://github.com/Robpol86/terminaltables;
+license=('MIT')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-colorama' 'python-termcolor' 
'python-colorclass')
+source=("${_pyname}-${pkgver}.tar.gz::https://github.com/Robpol86/${_pyname}/archive/v${pkgver}.tar.gz;
+python-3.8.patch)
+sha512sums=('dc49458652fff8bc6094d316d84c9b8e9fca1a26e3230c0b668bc03ec8528793f4ef024e8032d4a56fbfabfdfd4a1142870f550f0b373ba6a42dd2e3ead3f501'
+
'9a33ef51cbd2854bf9acc247e2d966332229446158e7dae9cad25e03335eb9689d50b0a22234285aa56c707e6e93c12f950299efcfbe7e42ed527216090592f2')
+
+prepare() {
+  cd ${_pyname}-${pkgver}
+  patch -Np1 < ../python-3.8.patch
+}
+
+build() {
+  cd ${_pyname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pyname}-${pkgver}
+  py.test
+}
+
+package() {
+  cd ${_pyname}-${pkgver}
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 example*.py -t "${pkgdir}/usr/share/doc/${pkgname}/examples"
+}
+
+# vim:set et sw=2 ts=2 tw=79:

Copied: python-terminaltables/repos/community-staging-any/python-3.8.patch 
(from rev 1065090, python-terminaltables/trunk/python-3.8.patch)
===
--- community-staging-any/python-3.8.patch  (rev 0)
+++ community-staging-any/python-3.8.patch  2021-12-04 22:42:25 UTC (rev 
1065091)
@@ -0,0 +1,26 @@
+From dcd9ba5c1c35d986fabe1b3a529cf15d08875a33 Mon Sep 17 00:00:00 2001
+From: Carl Suster 
+Date: Tue, 12 Nov 2019 14:19:23 +1100
+Subject: [PATCH] Write bytes to underluing buffer of stdout
+
+This was adapted from an example in the python docs and solves test failures 
seen on the CI. We need to write to the underlying buffer object of the stream, 
but in case `sys.stdout` was replaced with a file-like object without a buffer 
there's a fallback to direct writing.
+---
+ terminaltables/terminal_io.py | 7 ++-
+ 1 file changed, 6 insertions(+), 1 deletion(-)
+
+diff --git a/terminaltables/terminal_io.py b/terminaltables/terminal_io.py
+index 8b8c10d..005da1b 100644
+--- a/terminaltables/terminal_io.py
 b/terminaltables/terminal_io.py
+@@ -94,5 +94,10 @@ def set_terminal_title(title, kernel32=None):
+ return kernel32.SetConsoleTitleW(title) != 0
+ 
+ # Linux/OSX.
+-sys.stdout.write(b'\033]0;' + title_bytes + b'\007')
++set_title = b'\033]0;' + title_bytes + b'\007'
++if hasattr(sys.stdout, 'buffer'):
++sys.stdout.buffer.write(set_title)
++else:
++text = set_title.decode(sys.stdout.encoding, 'strict')
++sys.stdout.write(text)
+ return True



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

2021-12-04 Thread Felix Yan via arch-commits
Date: Saturday, December 4, 2021 @ 22:42:16
  Author: felixonmars
Revision: 1065090

upgpkg: python-terminaltables 3.1.0-9: Python 3.10 rebuild

Modified:
  python-terminaltables/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 22:13:10 UTC (rev 1065089)
+++ PKGBUILD2021-12-04 22:42:16 UTC (rev 1065090)
@@ -4,7 +4,7 @@
 pkgname=python-terminaltables
 _pyname=terminaltables
 pkgver=3.1.0
-pkgrel=8
+pkgrel=9
 pkgdesc="Generate simple tables in terminals from a nested list of strings"
 arch=('any')
 url="https://github.com/Robpol86/terminaltables;



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

2021-12-04 Thread Antonio Rojas via arch-commits
Date: Saturday, December 4, 2021 @ 22:13:10
  Author: arojas
Revision: 1065089

archrelease: copy trunk to community-staging-any

Added:
  python-keyring/repos/community-staging-any/PKGBUILD
(from rev 1065088, python-keyring/trunk/PKGBUILD)
Deleted:
  python-keyring/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 22:12:59 UTC (rev 1065088)
+++ PKGBUILD2021-12-04 22:13:10 UTC (rev 1065089)
@@ -1,45 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Johannes Dewender  arch at JonnyJD dot net
-# Contributor: Ivan Sichmann Freitas 
-# Contributor: Brice Maron 
-# Contributor: Nuno Araujo 
-# Contributor: Steven Allen 
-
-pkgname=python-keyring
-_pkgname=keyring
-pkgver=23.0.1
-pkgrel=2
-pkgdesc='Store and access your passwords safely'
-arch=('any')
-url='https://github.com/jaraco/keyring'
-license=('PSF' 'MIT')
-depends=('python-entrypoints' 'python-secretstorage' 
'python-importlib-metadata')
-makedepends=('git' 'python-setuptools-scm')
-checkdepends=('python-pytest-flake8' 'python-pytest-runner' 
'python-pytest-black' 'python-pytest-cov' 'python-pytest-mypy' 
'python-keyrings-alt')
-optdepends=('python-keyrings-alt: Alternative backends'
-'python-dbus: kwallet backend')
-source=("git+$url#tag=v$pkgver")
-sha512sums=('SKIP')
-
-build() {
-  cd $_pkgname
-
-  python setup.py build
-}
-
-check() {
-  cd $_pkgname
-
-  python setup.py pytest
-}
-
-package() {
-  cd $_pkgname
-
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  rm -rf "$pkgdir"/usr/lib/python3.10/site-packages/keyring/tests
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-keyring/repos/community-staging-any/PKGBUILD (from rev 1065088, 
python-keyring/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 22:13:10 UTC (rev 1065089)
@@ -0,0 +1,45 @@
+# Maintainer: Filipe Laíns (FFY00) 
+# Contributor: Johannes Dewender  arch at JonnyJD dot net
+# Contributor: Ivan Sichmann Freitas 
+# Contributor: Brice Maron 
+# Contributor: Nuno Araujo 
+# Contributor: Steven Allen 
+
+pkgname=python-keyring
+_pkgname=keyring
+pkgver=23.4.0
+pkgrel=1 
+pkgdesc='Store and access your passwords safely'
+arch=('any')
+url='https://github.com/jaraco/keyring'
+license=('PSF' 'MIT')
+depends=('python-entrypoints' 'python-secretstorage' 
'python-importlib-metadata')
+makedepends=('git' 'python-setuptools-scm')
+checkdepends=('python-pytest-flake8' 'python-pytest-runner' 
'python-pytest-black' 'python-pytest-cov' 'python-pytest-mypy')
+optdepends=('python-keyrings-alt: Alternative backends'
+'python-dbus: kwallet backend')
+source=("git+$url#tag=v$pkgver")
+sha512sums=('SKIP')
+
+build() {
+  cd $_pkgname
+
+  python setup.py build
+}
+
+check() {
+  cd $_pkgname
+
+  python setup.py pytest
+}
+
+package() {
+  cd $_pkgname
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  rm -rf "$pkgdir"/usr/lib/python3.10/site-packages/keyring/tests
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-12-04 Thread Antonio Rojas via arch-commits
Date: Saturday, December 4, 2021 @ 22:12:59
  Author: arojas
Revision: 1065088

Update to 23.4.0, remove python-keyrings-alt from checkdepends, as it pulls the 
older keyring package and causes a test failure

Modified:
  python-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 21:57:30 UTC (rev 1065087)
+++ PKGBUILD2021-12-04 22:12:59 UTC (rev 1065088)
@@ -7,8 +7,8 @@
 
 pkgname=python-keyring
 _pkgname=keyring
-pkgver=23.0.1
-pkgrel=2
+pkgver=23.4.0
+pkgrel=1 
 pkgdesc='Store and access your passwords safely'
 arch=('any')
 url='https://github.com/jaraco/keyring'
@@ -15,7 +15,7 @@
 license=('PSF' 'MIT')
 depends=('python-entrypoints' 'python-secretstorage' 
'python-importlib-metadata')
 makedepends=('git' 'python-setuptools-scm')
-checkdepends=('python-pytest-flake8' 'python-pytest-runner' 
'python-pytest-black' 'python-pytest-cov' 'python-pytest-mypy' 
'python-keyrings-alt')
+checkdepends=('python-pytest-flake8' 'python-pytest-runner' 
'python-pytest-black' 'python-pytest-cov' 'python-pytest-mypy')
 optdepends=('python-keyrings-alt: Alternative backends'
 'python-dbus: kwallet backend')
 source=("git+$url#tag=v$pkgver")



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

2021-12-04 Thread Antonio Rojas via arch-commits
Date: Saturday, December 4, 2021 @ 21:57:30
  Author: arojas
Revision: 1065087

archrelease: copy trunk to community-staging-any

Added:
  python-softlayer/repos/community-staging-any/PKGBUILD
(from rev 1065086, python-softlayer/trunk/PKGBUILD)
Deleted:
  python-softlayer/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 21:57:18 UTC (rev 1065086)
+++ PKGBUILD2021-12-04 21:57:30 UTC (rev 1065087)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-softlayer
-pkgver=5.9.3
-pkgrel=2
-pkgdesc="A library for SoftLayer's API"
-arch=('any')
-license=('MIT')
-url='https://github.com/softlayer/softlayer-python'
-depends=('python-six' 'python-ptable' 'python-click' 'python-requests' 
'python-prompt_toolkit'
- 'python-pygments' 'python-urllib3')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'python-mock' 'python-testtools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/softlayer/softlayer-python/archive/v$pkgver.tar.gz;)
-sha512sums=('cfba38de3e10d92d91a41cc108e0fcb5be2d815077c72b80ed382eeb8c0822412aaef5436bd276d8c4b351358e14da7303a1d37a5ea46c31cf591150137dd8da')
-
-prepare() {
-  cd softlayer-python-$pkgver
-  sed -i 's/==/>=/' setup.py
-}
-
-build() {
-  cd softlayer-python-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd softlayer-python-$pkgver
-  python setup.py pytest --addopts '-k "not test_edit_perms_on_bad"'
-}
-
-package() {
-  cd softlayer-python-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  # It's only present when tests are enabled, so adding -f
-  rm -rf "$pkgdir"/usr/lib/python3.10/site-packages/tests
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-softlayer/repos/community-staging-any/PKGBUILD (from rev 
1065086, python-softlayer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 21:57:30 UTC (rev 1065087)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-softlayer
+pkgver=5.9.7
+pkgrel=1
+pkgdesc="A library for SoftLayer's API"
+arch=('any')
+license=('MIT')
+url='https://github.com/softlayer/softlayer-python'
+depends=('python-six' 'python-ptable' 'python-click' 'python-requests' 
'python-prompt_toolkit'
+ 'python-pygments' 'python-urllib3')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'python-mock' 'python-testtools' 'tk')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/softlayer/softlayer-python/archive/v$pkgver.tar.gz;
+ https://github.com/softlayer/softlayer-python/commit/34cad8a2.patch)
+sha512sums=('196748b608cf68a01eed145c8e5085974e40ed1b995055e63d349007445b431f730b3d019f337fe28f89ffe219b8a29304994a60c0086f87d97e52579e472cf0'
+
'4485deafcc7d4c6c5769d1372c1e2418ee475b39e69e89a82a6bed327223c8b84930b15724a447ef18d5f73b2a04a55b05264ee3ecd4e77cd66f42ae81364821')
+
+prepare() {
+  cd softlayer-python-$pkgver
+  sed -i 's/==/>=/' setup.py
+
+  patch -p1 < ../34cad8a2.patch # Fix for python 3.10
+}
+
+build() {
+  cd softlayer-python-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd softlayer-python-$pkgver
+  python setup.py pytest --addopts '-k "not test_edit_perms_on_bad"'
+}
+
+package() {
+  cd softlayer-python-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # It's only present when tests are enabled, so adding -f
+  rm -rf "$pkgdir"/usr/lib/python3.10/site-packages/tests
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-12-04 Thread Antonio Rojas via arch-commits
Date: Saturday, December 4, 2021 @ 21:57:18
  Author: arojas
Revision: 1065086

Update to 5.9.7 for Python 3.10

Modified:
  python-softlayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 21:47:18 UTC (rev 1065085)
+++ PKGBUILD2021-12-04 21:57:18 UTC (rev 1065086)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-softlayer
-pkgver=5.9.3
-pkgrel=2
+pkgver=5.9.7
+pkgrel=1
 pkgdesc="A library for SoftLayer's API"
 arch=('any')
 license=('MIT')
@@ -10,13 +10,17 @@
 depends=('python-six' 'python-ptable' 'python-click' 'python-requests' 
'python-prompt_toolkit'
  'python-pygments' 'python-urllib3')
 makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'python-mock' 'python-testtools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/softlayer/softlayer-python/archive/v$pkgver.tar.gz;)
-sha512sums=('cfba38de3e10d92d91a41cc108e0fcb5be2d815077c72b80ed382eeb8c0822412aaef5436bd276d8c4b351358e14da7303a1d37a5ea46c31cf591150137dd8da')
+checkdepends=('python-pytest-runner' 'python-mock' 'python-testtools' 'tk')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/softlayer/softlayer-python/archive/v$pkgver.tar.gz;
+ https://github.com/softlayer/softlayer-python/commit/34cad8a2.patch)
+sha512sums=('196748b608cf68a01eed145c8e5085974e40ed1b995055e63d349007445b431f730b3d019f337fe28f89ffe219b8a29304994a60c0086f87d97e52579e472cf0'
+
'4485deafcc7d4c6c5769d1372c1e2418ee475b39e69e89a82a6bed327223c8b84930b15724a447ef18d5f73b2a04a55b05264ee3ecd4e77cd66f42ae81364821')
 
 prepare() {
   cd softlayer-python-$pkgver
   sed -i 's/==/>=/' setup.py
+
+  patch -p1 < ../34cad8a2.patch # Fix for python 3.10
 }
 
 build() {



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 4, 2021 @ 21:47:18
  Author: svenstaro
Revision: 1065085

archrelease: copy trunk to community-staging-x86_64

Added:
  blender/repos/community-staging-x86_64/PKGBUILD
(from rev 1065084, blender/trunk/PKGBUILD)
  blender/repos/community-staging-x86_64/blender-openexr3.patch
(from rev 1065084, blender/trunk/blender-openexr3.patch)
Deleted:
  blender/repos/community-staging-x86_64/PKGBUILD
  blender/repos/community-staging-x86_64/blender-openexr3.patch

+
 PKGBUILD   |  176 +++
 blender-openexr3.patch |   84 +++---
 2 files changed, 130 insertions(+), 130 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 21:47:06 UTC (rev 1065084)
+++ PKGBUILD2021-12-04 21:47:18 UTC (rev 1065085)
@@ -1,88 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: John Sowiak 
-# Contributor: tobias 
-
-# For legal reasons, we can't separately package the Optix headers so we'll
-# just build the package against them. I checked with NVIDIA and this way is
-# fine with them.
-
-pkgname=blender
-pkgver=2.93.6
-pkgrel=3
-epoch=17
-pkgdesc="A fully integrated 3D graphics creation suite"
-arch=('x86_64')
-license=('GPL')
-url="https://www.blender.org;
-depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests' 'potrace'
- 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 
'openjpeg2' 'python-numpy'
- 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic' 'openxr'
- 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' 
'openimagedenoise'
- 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2' 'embree' 'libharu')
-makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda' 'ninja')
-optdepends=('cuda: cycles renderer cuda support')
-options=(!strip)
-source=("git+https://git.blender.org/blender.git#tag=v$pkgver;
-"git+https://git.blender.org/blender-addons.git;
-"git+https://git.blender.org/blender-addons-contrib.git;
-"git+https://git.blender.org/blender-translations.git;
-"git+https://git.blender.org/blender-dev-tools.git;
-
https://developer.download.nvidia.com/redist/optix/v7.0/OptiX-7.0.0-include.zip
-blender-openexr3.patch)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'b2cff73def3757d4259f4b4d318a8ccfe166bf7c215cbb2124f1c81bd6e742f96207285b24eb4d99b527b7b97dc6d5e8fdf2f16d78d5d1e2684c26d681328491'
-
'e2dd7210d26b70445e9ae8e33dea35111ad0b0aca9d3b4ded3df560d0fcc8dc044868f729e0f090a04b6f316f083b5505a7056ce088e8702065add87b9b457e5')
-
-prepare() {
-  cd "$pkgname"
-
-  git submodule init
-  git config submodule."release/scripts/addons".url "${srcdir}/blender-addons"
-  git config submodule."release/scripts/addons_contrib".url 
"${srcdir}/blender-addons-contrib"
-  git config submodule."release/datafiles/locale".url 
"${srcdir}/blender-translations"
-  git config submodule."source/tools".url "${srcdir}/blender-dev-tools"
-  git submodule update
-  git submodule foreach git checkout v${pkgver}
-
-  patch -p1 < "$srcdir"/blender-openexr3.patch # Fix build with OpenEXR 3
-}
-
-build() {
-  cd "$pkgname"
-
-  local PYTHON_VER=3.10
-
-  cmake \
--Bbuild \
--GNinja \
--Cbuild_files/cmake/config/blender_release.cmake \
--DOPTIX_ROOT_DIR="$srcdir"/include \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DWITH_INSTALL_PORTABLE=OFF \
--DWITH_PYTHON_INSTALL=OFF \
--DPYTHON_VERSION=$PYTHON_VER \
--DPYTHON_LIBPATH=/usr/lib \
--DPYTHON_LIBRARY=python$PYTHON_VER \
--DPYTHON_INCLUDE_DIRS=/usr/include/python$PYTHON_VER \
--DCMAKE_CXX_FLAGS="-I /usr/include/python$PYTHON_VER"
-  ninja -C build
-}
-
-package() {
-  cd "$pkgname"
-
-  DESTDIR="${pkgdir}" ninja -C build install
-  install -Dm755 release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
-  python -m compileall "${pkgdir}/usr/share/blender"
-  python -O -m compileall "${pkgdir}/usr/share/blender"
-
-  install -Dm644 release/freedesktop/org.blender.Blender.appdata.xml 
"${pkgdir}/usr/share/metainfo/org.blender.Blender.appdata.xml"
-
-  # Manually install additional scripts (See FS#69351)
-  cp -r release/scripts/addons_contrib/* 
"${pkgdir}"/usr/share/blender/2*/scripts/addons_contrib/
-}

Copied: blender/repos/community-staging-x86_64/PKGBUILD (from rev 1065084, 
blender/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 21:47:18 UTC (rev 1065085)
@@ -0,0 +1,88 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# For legal reasons, we can't separately package the Optix headers so we'll
+# just build the 

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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 4, 2021 @ 21:47:06
  Author: svenstaro
Revision: 1065084

upgpkg: blender 17:3.0.0-3: python 3.10 rebuild

Modified:
  blender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 21:33:30 UTC (rev 1065083)
+++ PKGBUILD2021-12-04 21:47:06 UTC (rev 1065084)
@@ -8,7 +8,7 @@
 
 pkgname=blender
 pkgver=3.0.0
-pkgrel=2
+pkgrel=3
 epoch=17
 pkgdesc="A fully integrated 3D graphics creation suite"
 arch=('x86_64')
@@ -52,7 +52,7 @@
 build() {
   cd "$pkgname"
 
-  local PYTHON_VER=3.9
+  local PYTHON_VER=3.10
 
   # Optix is disabled until NVIDIA makes a new set of Optix headers publically 
available.
   # That means we'll have to wait on NVIDIA for the time being.



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 4, 2021 @ 21:33:30
  Author: svenstaro
Revision: 1065083

archrelease: copy trunk to community-testing-x86_64

Added:
  blender/repos/community-testing-x86_64/PKGBUILD
(from rev 1065082, blender/trunk/PKGBUILD)
  blender/repos/community-testing-x86_64/blender-openexr3.patch
(from rev 1065082, blender/trunk/blender-openexr3.patch)
Deleted:
  blender/repos/community-testing-x86_64/PKGBUILD
  blender/repos/community-testing-x86_64/blender-openexr3.patch

+
 PKGBUILD   |  176 +++
 blender-openexr3.patch |   84 +++---
 2 files changed, 130 insertions(+), 130 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 21:33:19 UTC (rev 1065082)
+++ PKGBUILD2021-12-04 21:33:30 UTC (rev 1065083)
@@ -1,88 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: John Sowiak 
-# Contributor: tobias 
-
-# For legal reasons, we can't separately package the Optix headers so we'll
-# just build the package against them. I checked with NVIDIA and this way is
-# fine with them.
-
-pkgname=blender
-pkgver=2.93.6
-pkgrel=2
-epoch=17
-pkgdesc="A fully integrated 3D graphics creation suite"
-arch=('x86_64')
-license=('GPL')
-url="https://www.blender.org;
-depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests' 'potrace'
- 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 
'openjpeg2' 'python-numpy'
- 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic' 'openxr'
- 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' 
'openimagedenoise'
- 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2' 'embree' 'libharu')
-makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda' 'ninja')
-optdepends=('cuda: cycles renderer cuda support')
-options=(!strip)
-source=("git+https://git.blender.org/blender.git#tag=v$pkgver;
-"git+https://git.blender.org/blender-addons.git;
-"git+https://git.blender.org/blender-addons-contrib.git;
-"git+https://git.blender.org/blender-translations.git;
-"git+https://git.blender.org/blender-dev-tools.git;
-
https://developer.download.nvidia.com/redist/optix/v7.0/OptiX-7.0.0-include.zip
-blender-openexr3.patch)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'b2cff73def3757d4259f4b4d318a8ccfe166bf7c215cbb2124f1c81bd6e742f96207285b24eb4d99b527b7b97dc6d5e8fdf2f16d78d5d1e2684c26d681328491'
-
'e2dd7210d26b70445e9ae8e33dea35111ad0b0aca9d3b4ded3df560d0fcc8dc044868f729e0f090a04b6f316f083b5505a7056ce088e8702065add87b9b457e5')
-
-prepare() {
-  cd "$pkgname"
-
-  git submodule init
-  git config submodule."release/scripts/addons".url "${srcdir}/blender-addons"
-  git config submodule."release/scripts/addons_contrib".url 
"${srcdir}/blender-addons-contrib"
-  git config submodule."release/datafiles/locale".url 
"${srcdir}/blender-translations"
-  git config submodule."source/tools".url "${srcdir}/blender-dev-tools"
-  git submodule update
-  git submodule foreach git checkout v${pkgver}
-
-  patch -p1 < "$srcdir"/blender-openexr3.patch # Fix build with OpenEXR 3
-}
-
-build() {
-  cd "$pkgname"
-
-  local PYTHON_VER=3.9
-
-  cmake \
--Bbuild \
--GNinja \
--Cbuild_files/cmake/config/blender_release.cmake \
--DOPTIX_ROOT_DIR="$srcdir"/include \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DWITH_INSTALL_PORTABLE=OFF \
--DWITH_PYTHON_INSTALL=OFF \
--DPYTHON_VERSION=$PYTHON_VER \
--DPYTHON_LIBPATH=/usr/lib \
--DPYTHON_LIBRARY=python$PYTHON_VER \
--DPYTHON_INCLUDE_DIRS=/usr/include/python$PYTHON_VER \
--DCMAKE_CXX_FLAGS="-I /usr/include/python$PYTHON_VER"
-  ninja -C build
-}
-
-package() {
-  cd "$pkgname"
-
-  DESTDIR="${pkgdir}" ninja -C build install
-  install -Dm755 release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
-  python -m compileall "${pkgdir}/usr/share/blender"
-  python -O -m compileall "${pkgdir}/usr/share/blender"
-
-  install -Dm644 release/freedesktop/org.blender.Blender.appdata.xml 
"${pkgdir}/usr/share/metainfo/org.blender.Blender.appdata.xml"
-
-  # Manually install additional scripts (See FS#69351)
-  cp -r release/scripts/addons_contrib/* 
"${pkgdir}"/usr/share/blender/2*/scripts/addons_contrib/
-}

Copied: blender/repos/community-testing-x86_64/PKGBUILD (from rev 1065082, 
blender/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 21:33:30 UTC (rev 1065083)
@@ -0,0 +1,88 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# For legal reasons, we can't separately package the Optix headers so we'll
+# just build the 

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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 4, 2021 @ 21:33:19
  Author: svenstaro
Revision: 1065082

upgpkg: blender 17:3.0.0-2: tbb 2021.4 rebuild

Modified:
  blender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 21:13:05 UTC (rev 1065081)
+++ PKGBUILD2021-12-04 21:33:19 UTC (rev 1065082)
@@ -8,7 +8,7 @@
 
 pkgname=blender
 pkgver=3.0.0
-pkgrel=1
+pkgrel=2
 epoch=17
 pkgdesc="A fully integrated 3D graphics creation suite"
 arch=('x86_64')



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 4, 2021 @ 21:13:05
  Author: svenstaro
Revision: 1065081

archrelease: copy trunk to community-x86_64

Added:
  blender/repos/community-x86_64/PKGBUILD
(from rev 1065080, blender/trunk/PKGBUILD)
  blender/repos/community-x86_64/blender-openexr3.patch
(from rev 1065080, blender/trunk/blender-openexr3.patch)
Deleted:
  blender/repos/community-x86_64/PKGBUILD
  blender/repos/community-x86_64/blender-openexr3.patch

+
 PKGBUILD   |  176 +++
 blender-openexr3.patch |   84 +++---
 2 files changed, 130 insertions(+), 130 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 21:12:54 UTC (rev 1065080)
+++ PKGBUILD2021-12-04 21:13:05 UTC (rev 1065081)
@@ -1,88 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: John Sowiak 
-# Contributor: tobias 
-
-# For legal reasons, we can't separately package the Optix headers so we'll
-# just build the package against them. I checked with NVIDIA and this way is
-# fine with them.
-
-pkgname=blender
-pkgver=2.93.6
-pkgrel=1
-epoch=17
-pkgdesc="A fully integrated 3D graphics creation suite"
-arch=('x86_64')
-license=('GPL')
-url="https://www.blender.org;
-depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' 
'python-requests' 'potrace'
- 'shared-mime-info' 'hicolor-icon-theme' 'xdg-utils' 'glew' 
'openjpeg2' 'python-numpy'
- 'freetype2' 'openal' 'ffmpeg' 'fftw' 'boost-libs' 'opencollada' 
'alembic' 'openxr'
- 'openimageio' 'libsndfile' 'jack' 'opencolorio' 'openshadinglanguage' 
'openimagedenoise'
- 'jemalloc' 'libspnav' 'ptex' 'opensubdiv' 'openvdb' 'log4cplus' 
'sdl2' 'embree' 'libharu')
-makedepends=('cmake' 'boost' 'mesa' 'git' 'llvm' 'cuda' 'ninja')
-optdepends=('cuda: cycles renderer cuda support')
-options=(!strip)
-source=("git+https://git.blender.org/blender.git#tag=v$pkgver;
-"git+https://git.blender.org/blender-addons.git;
-"git+https://git.blender.org/blender-addons-contrib.git;
-"git+https://git.blender.org/blender-translations.git;
-"git+https://git.blender.org/blender-dev-tools.git;
-
https://developer.download.nvidia.com/redist/optix/v7.0/OptiX-7.0.0-include.zip
-blender-openexr3.patch)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-
'b2cff73def3757d4259f4b4d318a8ccfe166bf7c215cbb2124f1c81bd6e742f96207285b24eb4d99b527b7b97dc6d5e8fdf2f16d78d5d1e2684c26d681328491'
-
'e2dd7210d26b70445e9ae8e33dea35111ad0b0aca9d3b4ded3df560d0fcc8dc044868f729e0f090a04b6f316f083b5505a7056ce088e8702065add87b9b457e5')
-
-prepare() {
-  cd "$pkgname"
-
-  git submodule init
-  git config submodule."release/scripts/addons".url "${srcdir}/blender-addons"
-  git config submodule."release/scripts/addons_contrib".url 
"${srcdir}/blender-addons-contrib"
-  git config submodule."release/datafiles/locale".url 
"${srcdir}/blender-translations"
-  git config submodule."source/tools".url "${srcdir}/blender-dev-tools"
-  git submodule update
-  git submodule foreach git checkout v${pkgver}
-
-  patch -p1 < "$srcdir"/blender-openexr3.patch # Fix build with OpenEXR 3
-}
-
-build() {
-  cd "$pkgname"
-
-  local PYTHON_VER=3.9
-
-  cmake \
--Bbuild \
--GNinja \
--Cbuild_files/cmake/config/blender_release.cmake \
--DOPTIX_ROOT_DIR="$srcdir"/include \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DWITH_INSTALL_PORTABLE=OFF \
--DWITH_PYTHON_INSTALL=OFF \
--DPYTHON_VERSION=$PYTHON_VER \
--DPYTHON_LIBPATH=/usr/lib \
--DPYTHON_LIBRARY=python$PYTHON_VER \
--DPYTHON_INCLUDE_DIRS=/usr/include/python$PYTHON_VER \
--DCMAKE_CXX_FLAGS="-I /usr/include/python$PYTHON_VER"
-  ninja -C build
-}
-
-package() {
-  cd "$pkgname"
-
-  DESTDIR="${pkgdir}" ninja -C build install
-  install -Dm755 release/bin/blender-softwaregl 
"${pkgdir}/usr/bin/blender-softwaregl"
-  python -m compileall "${pkgdir}/usr/share/blender"
-  python -O -m compileall "${pkgdir}/usr/share/blender"
-
-  install -Dm644 release/freedesktop/org.blender.Blender.appdata.xml 
"${pkgdir}/usr/share/metainfo/org.blender.Blender.appdata.xml"
-
-  # Manually install additional scripts (See FS#69351)
-  cp -r release/scripts/addons_contrib/* 
"${pkgdir}"/usr/share/blender/2*/scripts/addons_contrib/
-}

Copied: blender/repos/community-x86_64/PKGBUILD (from rev 1065080, 
blender/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 21:13:05 UTC (rev 1065081)
@@ -0,0 +1,88 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: John Sowiak 
+# Contributor: tobias 
+
+# For legal reasons, we can't separately package the Optix headers so we'll
+# just build the package against them. I checked with NVIDIA and this 

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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 4, 2021 @ 21:12:54
  Author: svenstaro
Revision: 1065080

upgpkg: blender 17:3.0.0-1

Modified:
  blender/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 20:59:48 UTC (rev 1065079)
+++ PKGBUILD2021-12-04 21:12:54 UTC (rev 1065080)
@@ -1,4 +1,4 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: John Sowiak 
 # Contributor: tobias 
 
@@ -7,8 +7,8 @@
 # fine with them.
 
 pkgname=blender
-pkgver=2.93.6
-pkgrel=3
+pkgver=3.0.0
+pkgrel=1
 epoch=17
 pkgdesc="A fully integrated 3D graphics creation suite"
 arch=('x86_64')
@@ -27,7 +27,6 @@
 "git+https://git.blender.org/blender-addons-contrib.git;
 "git+https://git.blender.org/blender-translations.git;
 "git+https://git.blender.org/blender-dev-tools.git;
-
https://developer.download.nvidia.com/redist/optix/v7.0/OptiX-7.0.0-include.zip
 blender-openexr3.patch)
 sha512sums=('SKIP'
 'SKIP'
@@ -34,7 +33,6 @@
 'SKIP'
 'SKIP'
 'SKIP'
-
'b2cff73def3757d4259f4b4d318a8ccfe166bf7c215cbb2124f1c81bd6e742f96207285b24eb4d99b527b7b97dc6d5e8fdf2f16d78d5d1e2684c26d681328491'
 
'e2dd7210d26b70445e9ae8e33dea35111ad0b0aca9d3b4ded3df560d0fcc8dc044868f729e0f090a04b6f316f083b5505a7056ce088e8702065add87b9b457e5')
 
 prepare() {
@@ -54,13 +52,15 @@
 build() {
   cd "$pkgname"
 
-  local PYTHON_VER=3.10
+  local PYTHON_VER=3.9
 
+  # Optix is disabled until NVIDIA makes a new set of Optix headers publically 
available.
+  # That means we'll have to wait on NVIDIA for the time being.
+
   cmake \
 -Bbuild \
 -GNinja \
 -Cbuild_files/cmake/config/blender_release.cmake \
--DOPTIX_ROOT_DIR="$srcdir"/include \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_BUILD_TYPE=Release \
 -DWITH_INSTALL_PORTABLE=OFF \
@@ -84,5 +84,5 @@
   install -Dm644 release/freedesktop/org.blender.Blender.appdata.xml 
"${pkgdir}/usr/share/metainfo/org.blender.Blender.appdata.xml"
 
   # Manually install additional scripts (See FS#69351)
-  cp -r release/scripts/addons_contrib/* 
"${pkgdir}"/usr/share/blender/2*/scripts/addons_contrib/
+  cp -r release/scripts/addons_contrib/* 
"${pkgdir}"/usr/share/blender/3*/scripts/addons_contrib/
 }



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

2021-12-04 Thread Felix Yan via arch-commits
Date: Saturday, December 4, 2021 @ 20:59:48
  Author: felixonmars
Revision: 1065079

archrelease: copy trunk to community-staging-any

Added:
  buildbot/repos/community-staging-any/PKGBUILD
(from rev 1065078, buildbot/trunk/PKGBUILD)
  buildbot/repos/community-staging-any/python310.diff
(from rev 1065078, buildbot/trunk/python310.diff)
Deleted:
  buildbot/repos/community-staging-any/PKGBUILD
  buildbot/repos/community-staging-any/python310.diff

+
 PKGBUILD   |  518 +++
 python310.diff |   66 +++
 2 files changed, 292 insertions(+), 292 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 20:59:29 UTC (rev 1065078)
+++ PKGBUILD2021-12-04 20:59:48 UTC (rev 1065079)
@@ -1,259 +0,0 @@
-# Maintainer: Chih-Hsuan Yen 
-# Contributor: xRemaLx 
-# Contributor: Sergej Pupykin 
-# Contributor: William Rea 
-
-pkgbase=buildbot
-pkgname=(buildbot buildbot-worker buildbot-docs buildbot-common
- python-buildbot-www python-buildbot-waterfall-view
- python-buildbot-console-view python-buildbot-grid-view
- python-buildbot-wsgi-dashboards python-buildbot-badges)
-pkgver=3.4.0
-_bb_contrib_commit=4c8615db51253f0be4bfd08210a3aaf903a74b4f
-pkgrel=2
-arch=(any)
-url='https://buildbot.net'
-license=(GPL2)
-checkdepends=(python-boto3 python-ldap3 python-lz4 python-treq 
python-txrequests
-  python-moto python-docker python-parameterized python-mock 
python-subunit
-  python-unidiff
-  openssh chromium)
-makedepends=(python-twisted python-jinja python-zope-interface 
python-sqlalchemy
- python-alembic python-dateutil python-txaio
- python-autobahn python-pyjwt python-yaml
- python-graphql-core python-hvac
- python-setuptools python-future
- python-sphinx-jinja
- python-sphinx_rtd_theme
- git yarn)
-source=("https://github.com/buildbot/buildbot/releases/download/v$pkgver/buildbot-v$pkgver.gitarchive.tar.gz"{,.asc}
-
"git+https://github.com/buildbot/buildbot-contrib.git#commit=$_bb_contrib_commit;
-
"buildbot-contrib-systemd-common.patch::https://github.com/buildbot/buildbot-contrib/pull/22.patch;
-"python310.diff")
-sha256sums=('da729c7f4dc2e30f5a5d69e34dd629b0b3d97001b12d72aeb691bb2f0ef0efeb'
-'SKIP'
-'SKIP'
-'896eede4c33a8574d7c29ac4a28cebbe3d7e850931a86e945328f8ea358195a9'
-'7ca79a209e5f77dff01bef526d92a0ac08cf65a6ab22f32d03575c97a5b49ebd')
-validpgpkeys=(
-  '390EB159056ED56F66AB1092AECD456B4D2531FC'  # Pierre Tardy 
 (@tardyp on GitHub)
-  'FD0004A26EADFE43A4C3F249C6F7AE200374452D'  # Povilas Kanapickas 
 (@p12tic on GitHub)
-)
-
-prepare() {
-  cd buildbot-$pkgver
-
-  # Some master tests use scripts from contrib
-  ln -s ../../buildbot-contrib/master/contrib master/contrib
-
-  # HACK: do not use virtualenv
-  sed -i -e 's#frontend_deps:.*#frontend_deps:#' Makefile
-
-  # HACK: Do not build JS again during install
-  # We take care about the command order manually
-  sed -i '/egg_info=EggInfoCommand/d' pkg/buildbot_pkg.py
-
-  # https://github.com/buildbot/buildbot/pull/6178 removes Windows
-  # services from console scripts, while the following files still make
-  # namcap-git complain
-  rm -v master/buildbot/scripts/windows_service.py
-  rm -v worker/buildbot_worker/scripts/windows_service.py
-
-  # Fixes for Python 3.10 breakages:
-  # https://github.com/python/cpython/pull/20236
-  # https://twistedmatrix.com/trac/ticket/10273
-  patch -Np1 -i ../python310.diff
-
-  cd "$srcdir"/buildbot-contrib
-  patch -Np1 -i ../buildbot-contrib-systemd-common.patch
-}
-
-build() {
-  export NODE_OPTIONS="--max-old-space-size=2048"
-
-  cd "$srcdir"/buildbot-$pkgver/pkg
-  python setup.py egg_info
-
-   buildbot 
-  cd "$srcdir"/buildbot-$pkgver/master
-  python setup.py build
-
-  ## buildbot-worker ###
-  cd "$srcdir"/buildbot-$pkgver/worker
-  python setup.py build
-
-  ### buildbot-www #
-  cd "$srcdir"/buildbot-$pkgver
-
-  # HACK: use system packages instead of ones via pip
-  make PIP=/usr/bin/true frontend_deps
-
-  export PYTHONPATH="$srcdir"/buildbot-$pkgver/pkg
-  for module in base waterfall_view console_view grid_view wsgi_dashboards 
badges
-  do
-cd "$srcdir"/buildbot-$pkgver/www/$module
-python setup.py build
-  done
-
-  ### buildbot-docs 
-  cd "$srcdir"/buildbot-$pkgver/master/docs
-  make clean html singlehtml
-}
-
-check() {
-  # Install packages to a temp folder for tests
-  cd "$srcdir"/buildbot-$pkgver/master
-  python setup.py egg_info
-  python setup.py install_scripts --install-dir="$srcdir/tmp_install"
-
-  cd "$srcdir"/buildbot-$pkgver/worker
-  python setup.py egg_info
-
-  

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

2021-12-04 Thread Felix Yan via arch-commits
Date: Saturday, December 4, 2021 @ 20:59:29
  Author: felixonmars
Revision: 1065078

upgpkg: buildbot 3.4.0-3: Python 3.10 rebuild

Modified:
  buildbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 20:43:40 UTC (rev 1065077)
+++ PKGBUILD2021-12-04 20:59:29 UTC (rev 1065078)
@@ -10,7 +10,7 @@
  python-buildbot-wsgi-dashboards python-buildbot-badges)
 pkgver=3.4.0
 _bb_contrib_commit=4c8615db51253f0be4bfd08210a3aaf903a74b4f
-pkgrel=2
+pkgrel=3
 arch=(any)
 url='https://buildbot.net'
 license=(GPL2)



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

2021-12-04 Thread Evangelos Foutras via arch-commits
Date: Saturday, December 4, 2021 @ 20:43:40
  Author: foutrelis
Revision: 1065077

archrelease: copy trunk to community-staging-any

Added:
  python-deprecation/repos/community-staging-any/PKGBUILD
(from rev 1065076, python-deprecation/trunk/PKGBUILD)
Deleted:
  python-deprecation/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 20:43:37 UTC (rev 1065076)
+++ PKGBUILD2021-12-04 20:43:40 UTC (rev 1065077)
@@ -1,34 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-deprecation
-pkgver=2.1.0
-pkgrel=5
-pkgdesc="A library to handle automated deprecations"
-arch=('any')
-license=('Apache')
-url="https://deprecation.readthedocs.io;
-depends=('python')
-makedepends=('python-setuptools')
-source=("https://files.pythonhosted.org/packages/source/d/deprecation/deprecation-$pkgver.tar.gz;)
-sha512sums=('c184665d210c6eeb3f055b23e75c3714f3b18050e03bfe1384baf6c2504f1370116ae0e8c53ff818ccc54c0d633bbb3ba5791fe20b8029f3be0207b019a00275')
-
-prepare() {
-  sed -i 's/unittest2/unittest/g' deprecation-$pkgver/tests/*.py
-
-  export LC_CTYPE=en_US.UTF-8
-}
-
-build() {
-  cd deprecation-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd deprecation-$pkgver
-  python -m unittest discover
-}
-
-package() {
-  cd deprecation-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-deprecation/repos/community-staging-any/PKGBUILD (from rev 
1065076, python-deprecation/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 20:43:40 UTC (rev 1065077)
@@ -0,0 +1,34 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-deprecation
+pkgver=2.1.0
+pkgrel=6
+pkgdesc="A library to handle automated deprecations"
+arch=('any')
+license=('Apache')
+url="https://deprecation.readthedocs.io;
+depends=('python')
+makedepends=('python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/d/deprecation/deprecation-$pkgver.tar.gz;)
+sha512sums=('c184665d210c6eeb3f055b23e75c3714f3b18050e03bfe1384baf6c2504f1370116ae0e8c53ff818ccc54c0d633bbb3ba5791fe20b8029f3be0207b019a00275')
+
+prepare() {
+  sed -i 's/unittest2/unittest/g' deprecation-$pkgver/tests/*.py
+
+  export LC_CTYPE=en_US.UTF-8
+}
+
+build() {
+  cd deprecation-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd deprecation-$pkgver
+  python -m unittest discover
+}
+
+package() {
+  cd deprecation-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2021-12-04 Thread Evangelos Foutras via arch-commits
Date: Saturday, December 4, 2021 @ 20:43:37
  Author: foutrelis
Revision: 1065076

upgpkg: python-deprecation 2.1.0-6: rebuild to fix repo db corruption

Modified:
  python-deprecation/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 20:17:44 UTC (rev 1065075)
+++ PKGBUILD2021-12-04 20:43:37 UTC (rev 1065076)
@@ -2,7 +2,7 @@
 
 pkgname=python-deprecation
 pkgver=2.1.0
-pkgrel=5
+pkgrel=6
 pkgdesc="A library to handle automated deprecations"
 arch=('any')
 license=('Apache')



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

2021-12-04 Thread Alexander Epaneshnikov via arch-commits
Date: Saturday, December 4, 2021 @ 20:17:44
  Author: alex19ep
Revision: 1065075

archrelease: copy trunk to community-staging-any

Added:
  python-aiogram/repos/community-staging-any/
  python-aiogram/repos/community-staging-any/PKGBUILD
(from rev 1065074, python-aiogram/trunk/PKGBUILD)

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

Copied: python-aiogram/repos/community-staging-any/PKGBUILD (from rev 1065074, 
python-aiogram/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-12-04 20:17:44 UTC (rev 1065075)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Evgeniy Filimonov 
+
+pkgname=python-aiogram
+pkgver=2.16
+pkgrel=1
+pkgdesc="A pretty simple and fully asynchronous library for Telegram Bot API 
written with asyncio and aiohttp"
+arch=('any')
+url="https://github.com/aiogram/aiogram;
+license=('MIT')
+depends=('python-aiohttp' 'python-babel')
+makedepends=('python-setuptools')
+checkdepends=('python-aiohttp-socks' 'python-aioredis' 'python-aresponses' 
'python-pytest'
+  'python-pytest-lazy-fixture' 'pifpaf' 'redis')
+optdepends=('python-uvloop: fast, drop-in replacement of the built-in asyncio 
event loop'
+'python-ujson: ultra fast JSON encoder and decoder written in pure 
C'
+'python-rapidjson: extremely fast C++ JSON parser and 
serialization library'
+'python-emoji: emojize and demojize support'
+'python-aioredis: Redis storage support'
+'python-aiohttp-socks: SOCKS4(a) and SOCKS5 proxy support'
+#'python-rethinkdb: RethinkDB storage support'  # No such package 
yet
+)
+source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('469506c4f6d5fbcfa97802eb7bfdd439adc49046bd62ce1e64d4e8d44ab22ceff01d3393d4a56969559418cef68418ae600859f46e3a2fbe1bcbd132cf3a8ad8')
+
+prepare() {
+  cd aiogram-$pkgver
+  sed -e '/import certifi/d' \
+  -e 's|certifi.where()|"/etc/ssl/certs/ca-certificates.crt"|' \
+  -i aiogram/bot/base.py
+}
+
+build() {
+  cd aiogram-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd aiogram-$pkgver
+  pifpaf run redis -- bash -c 'python -m pytest --redis $PIFPAF_REDIS_URL'
+}
+
+package() {
+  cd aiogram-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  install -Dm644 README.md -t "$pkgdir"/usr/share/doc/$pkgname/
+}



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

2021-12-04 Thread Alexander Epaneshnikov via arch-commits
Date: Saturday, December 4, 2021 @ 20:17:34
  Author: alex19ep
Revision: 1065074

upgpkg: python-aiogram 2.16-1 new upstream release

Modified:
  python-aiogram/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 19:42:45 UTC (rev 1065073)
+++ PKGBUILD2021-12-04 20:17:34 UTC (rev 1065074)
@@ -2,7 +2,7 @@
 # Contributor: Evgeniy Filimonov 
 
 pkgname=python-aiogram
-pkgver=2.15
+pkgver=2.16
 pkgrel=1
 pkgdesc="A pretty simple and fully asynchronous library for Telegram Bot API 
written with asyncio and aiohttp"
 arch=('any')
@@ -21,7 +21,7 @@
 #'python-rethinkdb: RethinkDB storage support'  # No such package 
yet
 )
 source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('2f7a64004ae520fbde3175fc5f174b851fc1d2ad3f7cb28c18f3978bc66471610e3c6b69c084b7e0b3e5109d531e37af7b20a5da5ec02fbcfdb22f7d361d2c85')
+sha512sums=('469506c4f6d5fbcfa97802eb7bfdd439adc49046bd62ce1e64d4e8d44ab22ceff01d3393d4a56969559418cef68418ae600859f46e3a2fbe1bcbd132cf3a8ad8')
 
 prepare() {
   cd aiogram-$pkgver
@@ -37,8 +37,7 @@
 
 check() {
   cd aiogram-$pkgver
-  # https://github.com/aiogram/aiogram/issues/639
-  pifpaf run redis -- bash -c 'python -m pytest --redis $PIFPAF_REDIS_URL 
--deselect tests/types/test_reply_keyboard.py::test_deserialize'
+  pifpaf run redis -- bash -c 'python -m pytest --redis $PIFPAF_REDIS_URL'
 }
 
 package() {



[arch-commits] Commit in git-filter-repo/repos (2 files)

2021-12-04 Thread Alexander Epaneshnikov via arch-commits
Date: Saturday, December 4, 2021 @ 19:42:45
  Author: alex19ep
Revision: 1065073

archrelease: copy trunk to community-staging-any

Added:
  git-filter-repo/repos/community-staging-any/
  git-filter-repo/repos/community-staging-any/PKGBUILD
(from rev 1065072, git-filter-repo/trunk/PKGBUILD)

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

Copied: git-filter-repo/repos/community-staging-any/PKGBUILD (from rev 1065072, 
git-filter-repo/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-12-04 19:42:45 UTC (rev 1065073)
@@ -0,0 +1,32 @@
+# Maintainer: Jerome Leclanche 
+
+pkgname=git-filter-repo
+pkgver=2.34.0
+pkgrel=1
+pkgdesc="Quickly rewrite git repository history (filter-branch replacement)"
+arch=("any")
+url="https://github.com/newren/git-filter-repo;
+license=("MIT")
+depends=("git" "python")
+makedepends=("python-setuptools-scm")
+checkdepends=('rsync')
+source=(
+   "$url/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz"
+)
+sha256sums=('b1bf46af1e6a91a54056d0254e480803db8e40f631336c559a1a94d2a08389c4')
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
+
+check() {
+   cd "$pkgname-$pkgver"
+   ./t/run_tests
+}
+
+package() {
+   cd "$pkgname-$pkgver/release"
+   python setup.py install --root="$pkgdir" --optimize=1
+
+   cd ..
+   install -Dm644 Documentation/man1/git-filter-repo.1 
"$pkgdir/usr/share/man/man1/git-filter-repo.1"
+   install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname/" COPYING 
COPYING.mit
+}



[arch-commits] Commit in 389-ds-base/repos (6 files)

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 4, 2021 @ 19:21:07
  Author: svenstaro
Revision: 430685

archrelease: copy trunk to staging-x86_64

Added:
  389-ds-base/repos/staging-x86_64/
  389-ds-base/repos/staging-x86_64/389-ds-base.sysusers
(from rev 430684, 389-ds-base/trunk/389-ds-base.sysusers)
  389-ds-base/repos/staging-x86_64/389-ds-base.tmpfiles
(from rev 430684, 389-ds-base/trunk/389-ds-base.tmpfiles)
  389-ds-base/repos/staging-x86_64/PKGBUILD
(from rev 430684, 389-ds-base/trunk/PKGBUILD)
  389-ds-base/repos/staging-x86_64/bcf5e9f.patch
(from rev 430684, 389-ds-base/trunk/bcf5e9f.patch)
  389-ds-base/repos/staging-x86_64/openldap-2.5.patch
(from rev 430684, 389-ds-base/trunk/openldap-2.5.patch)

--+
 389-ds-base.sysusers |1 
 389-ds-base.tmpfiles |3 +
 PKGBUILD |   97 +
 bcf5e9f.patch|   41 
 openldap-2.5.patch   |   12 ++
 5 files changed, 154 insertions(+)

Copied: 389-ds-base/repos/staging-x86_64/389-ds-base.sysusers (from rev 430684, 
389-ds-base/trunk/389-ds-base.sysusers)
===
--- staging-x86_64/389-ds-base.sysusers (rev 0)
+++ staging-x86_64/389-ds-base.sysusers 2021-12-04 19:21:07 UTC (rev 430685)
@@ -0,0 +1 @@
+u dirsrv   440  "389 Directory Server" /var/lib/389-ds-base

Copied: 389-ds-base/repos/staging-x86_64/389-ds-base.tmpfiles (from rev 430684, 
389-ds-base/trunk/389-ds-base.tmpfiles)
===
--- staging-x86_64/389-ds-base.tmpfiles (rev 0)
+++ staging-x86_64/389-ds-base.tmpfiles 2021-12-04 19:21:07 UTC (rev 430685)
@@ -0,0 +1,3 @@
+d /var/log/dirsrv 0700 dirsrv dirsrv -
+d /var/lib/dirsrv 0700 dirsrv dirsrv -
+d /run/lock/dirsrv 0770 dirsrv dirsrv -

Copied: 389-ds-base/repos/staging-x86_64/PKGBUILD (from rev 430684, 
389-ds-base/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-12-04 19:21:07 UTC (rev 430685)
@@ -0,0 +1,97 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Javier Torres 
+# Contributor: Jameson Pugh 
+# Contributor: Xiao-Long Chen 
+
+pkgname=389-ds-base
+pkgver=2.0.11
+pkgdesc="389 Directory Server (base)"
+pkgrel=2
+arch=(x86_64)
+url="http://port389.org/;
+license=('GPL')
+provides=('libsvrcore.so')
+replaces=('python-lib389')
+backup=(etc/dirsrv/config/certmap.conf
+etc/dirsrv/config/ldap-agent.conf
+etc/dirsrv/config/slapd-collations.conf
+etc/dirsrv/config/template-initconfig)
+depends=('cracklib' 'libevent' 'nspr' 'nss' 'net-snmp' 'pam' 'openldap' 'perl' 
'icu'
+ 'python-argcomplete' 'python-dateutil' 'python-ldap' 
'python-packaging')
+makedepends=('cargo' 'rsync' 'doxygen' 'cmocka' 'python-setuptools' 
'python-argparse-manpage'
+ 'npm' 'nodejs-lts-fermium' 'systemd')
+source=(https://github.com/389ds/389-ds-base/archive/389-ds-base-${pkgver}.tar.gz
+openldap-2.5.patch
+389-ds-base.sysusers
+389-ds-base.tmpfiles)
+sha512sums=('effc31250e80e42933b1117bd5d3a815cd3e4ee7e966d5d059de585641b7f8858a480aadde1cb7d6005f9fef81e7e887f115fbb10948afe63d1d6f6589738cd5'
+
'2e18a2ce12f245a188d9c7b1165f755e2eb3be4f5417ec94df0b87560d13a0d1350ef8774b276172f0df314a9ad82b0b0284ee3be040462afd6af4daac5c9c6a'
+
'8689b60f13517e6541e1faa62e61781654a8e4678990d14a3fe0cfe4673697cdde1c46763fdc7ef6203e4026286fa004c73b2857fd7fecff69483e6d1e8e6d68'
+
'69ed8b8f3bdbf9098088b0c92c41a238f16d14ba9f86ebc2b5debe5f001b4d8e235f7cff4731d72b30b5ac70486b0f4300b99646aa3926a3fa59515a64f16402')
+
+prepare() {
+  cd "${pkgname}-${pkgname}-${pkgver}"
+
+  patch -Np1 -i ../openldap-2.5.patch
+
+  # Required until https://github.com/389ds/389-ds-base/issues/5043 is fixed:
+  sed -i "/deny(warnings)/d" src/librnsslapd/src/lib.rs
+
+  autoreconf -fiv
+}
+
+build() {
+  cd "${pkgname}-${pkgname}-${pkgver}"
+
+  # Build 389-ds-base
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--libexecdir=/usr/lib/${pkgname} \
+--with-tmpfiles-d=/usr/lib/tmpfiles.d \
+--with-systemd \
+--with-systemdsystemunitdir=/usr/lib/systemd/system \
+--with-systemdsystemconfdir=/etc/systemd/system \
+--with-journald \
+--with-openldap \
+--enable-autobind \
+--enable-cmocka \
+--enable-rust \
+--enable-perl
+  make
+
+  # Build lib389
+  cd src/lib389
+  COLUMNS=80 python setup.py build
+
+  # Build cockpit plugin
+  cd ../cockpit/389-console
+  npm install
+  npm run build
+  mv dist cockpit_dist
+}
+
+check() {
+  cd "${pkgname}-${pkgname}-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${pkgname}-${pkgname}-${pkgver}"
+  # make DESTDIR="${pkgdir}/" install
+  make -j1 

[arch-commits] Commit in 389-ds-base/trunk (PKGBUILD)

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 4, 2021 @ 19:20:55
  Author: svenstaro
Revision: 430684

upgpkg: 389-ds-base 2.0.11-2: python 3.10 rebuild

Modified:
  389-ds-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 19:10:22 UTC (rev 430683)
+++ PKGBUILD2021-12-04 19:20:55 UTC (rev 430684)
@@ -6,10 +6,10 @@
 pkgname=389-ds-base
 pkgver=2.0.11
 pkgdesc="389 Directory Server (base)"
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url="http://port389.org/;
-license=(GPL)
+license=('GPL')
 provides=('libsvrcore.so')
 replaces=('python-lib389')
 backup=(etc/dirsrv/config/certmap.conf



[arch-commits] Commit in 389-ds-base/repos/extra-x86_64 (10 files)

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 4, 2021 @ 19:10:22
  Author: svenstaro
Revision: 430683

archrelease: copy trunk to extra-x86_64

Added:
  389-ds-base/repos/extra-x86_64/389-ds-base.sysusers
(from rev 430682, 389-ds-base/trunk/389-ds-base.sysusers)
  389-ds-base/repos/extra-x86_64/389-ds-base.tmpfiles
(from rev 430682, 389-ds-base/trunk/389-ds-base.tmpfiles)
  389-ds-base/repos/extra-x86_64/PKGBUILD
(from rev 430682, 389-ds-base/trunk/PKGBUILD)
  389-ds-base/repos/extra-x86_64/bcf5e9f.patch
(from rev 430682, 389-ds-base/trunk/bcf5e9f.patch)
  389-ds-base/repos/extra-x86_64/openldap-2.5.patch
(from rev 430682, 389-ds-base/trunk/openldap-2.5.patch)
Deleted:
  389-ds-base/repos/extra-x86_64/389-ds-base.sysusers
  389-ds-base/repos/extra-x86_64/389-ds-base.tmpfiles
  389-ds-base/repos/extra-x86_64/PKGBUILD
  389-ds-base/repos/extra-x86_64/bcf5e9f.patch
  389-ds-base/repos/extra-x86_64/openldap-2.5.patch

--+
 389-ds-base.sysusers |2 
 389-ds-base.tmpfiles |6 -
 PKGBUILD |  190 +
 bcf5e9f.patch|   82 ++---
 openldap-2.5.patch   |   24 +++---
 5 files changed, 154 insertions(+), 150 deletions(-)

Deleted: 389-ds-base.sysusers
===
--- 389-ds-base.sysusers2021-12-04 19:10:08 UTC (rev 430682)
+++ 389-ds-base.sysusers2021-12-04 19:10:22 UTC (rev 430683)
@@ -1 +0,0 @@
-u dirsrv   440  "389 Directory Server" /var/lib/389-ds-base

Copied: 389-ds-base/repos/extra-x86_64/389-ds-base.sysusers (from rev 430682, 
389-ds-base/trunk/389-ds-base.sysusers)
===
--- 389-ds-base.sysusers(rev 0)
+++ 389-ds-base.sysusers2021-12-04 19:10:22 UTC (rev 430683)
@@ -0,0 +1 @@
+u dirsrv   440  "389 Directory Server" /var/lib/389-ds-base

Deleted: 389-ds-base.tmpfiles
===
--- 389-ds-base.tmpfiles2021-12-04 19:10:08 UTC (rev 430682)
+++ 389-ds-base.tmpfiles2021-12-04 19:10:22 UTC (rev 430683)
@@ -1,3 +0,0 @@
-d /var/log/dirsrv 0700 dirsrv dirsrv -
-d /var/lib/dirsrv 0700 dirsrv dirsrv -
-d /run/lock/dirsrv 0770 dirsrv dirsrv -

Copied: 389-ds-base/repos/extra-x86_64/389-ds-base.tmpfiles (from rev 430682, 
389-ds-base/trunk/389-ds-base.tmpfiles)
===
--- 389-ds-base.tmpfiles(rev 0)
+++ 389-ds-base.tmpfiles2021-12-04 19:10:22 UTC (rev 430683)
@@ -0,0 +1,3 @@
+d /var/log/dirsrv 0700 dirsrv dirsrv -
+d /var/lib/dirsrv 0700 dirsrv dirsrv -
+d /run/lock/dirsrv 0770 dirsrv dirsrv -

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 19:10:08 UTC (rev 430682)
+++ PKGBUILD2021-12-04 19:10:22 UTC (rev 430683)
@@ -1,93 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Javier Torres 
-# Contributor: Jameson Pugh 
-# Contributor: Xiao-Long Chen 
-
-pkgname=389-ds-base
-pkgver=2.0.10
-pkgdesc="389 Directory Server (base)"
-pkgrel=3
-arch=(x86_64)
-url="http://port389.org/;
-license=(GPL)
-provides=('libsvrcore.so')
-replaces=('python-lib389')
-backup=(etc/dirsrv/config/certmap.conf
-etc/dirsrv/config/ldap-agent.conf
-etc/dirsrv/config/slapd-collations.conf
-etc/dirsrv/config/template-initconfig)
-depends=('cracklib' 'libevent' 'nspr' 'nss' 'net-snmp' 'pam' 'openldap' 'perl' 
'icu'
- 'python-argcomplete' 'python-dateutil' 'python-ldap' 
'python-packaging')
-makedepends=('cargo' 'rsync' 'doxygen' 'cmocka' 'python-setuptools' 
'python-argparse-manpage'
- 'npm' 'nodejs-lts-fermium' 'systemd')
-source=(https://github.com/389ds/389-ds-base/archive/389-ds-base-${pkgver}.tar.gz
-openldap-2.5.patch
-389-ds-base.sysusers
-389-ds-base.tmpfiles)
-sha512sums=('e648c8de6032d9e8714030b2300f3af79fdb17004606cebee345903ef76fca5df4fef7eb80fd982b656b6937560f43350af90c3da08515a8ce2fb88e2a662f22'
-
'2e18a2ce12f245a188d9c7b1165f755e2eb3be4f5417ec94df0b87560d13a0d1350ef8774b276172f0df314a9ad82b0b0284ee3be040462afd6af4daac5c9c6a'
-
'8689b60f13517e6541e1faa62e61781654a8e4678990d14a3fe0cfe4673697cdde1c46763fdc7ef6203e4026286fa004c73b2857fd7fecff69483e6d1e8e6d68'
-
'69ed8b8f3bdbf9098088b0c92c41a238f16d14ba9f86ebc2b5debe5f001b4d8e235f7cff4731d72b30b5ac70486b0f4300b99646aa3926a3fa59515a64f16402')
-
-prepare() {
-  cd "${pkgname}-${pkgname}-${pkgver}"
-
-  patch -Np1 -i ../openldap-2.5.patch
-  autoreconf -fiv
-}
-
-build() {
-  cd "${pkgname}-${pkgname}-${pkgver}"
-
-  # Build 389-ds-base
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---libexecdir=/usr/lib/${pkgname} \
---with-tmpfiles-d=/usr/lib/tmpfiles.d \
---with-systemd \
-

[arch-commits] Commit in 389-ds-base/trunk (PKGBUILD)

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 4, 2021 @ 19:10:08
  Author: svenstaro
Revision: 430682

upgpkg: 389-ds-base 2.0.11-1

Modified:
  389-ds-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 18:43:49 UTC (rev 430681)
+++ PKGBUILD2021-12-04 19:10:08 UTC (rev 430682)
@@ -1,12 +1,12 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: Javier Torres 
 # Contributor: Jameson Pugh 
 # Contributor: Xiao-Long Chen 
 
 pkgname=389-ds-base
-pkgver=2.0.10
+pkgver=2.0.11
 pkgdesc="389 Directory Server (base)"
-pkgrel=3
+pkgrel=1
 arch=(x86_64)
 url="http://port389.org/;
 license=(GPL)
@@ -24,7 +24,7 @@
 openldap-2.5.patch
 389-ds-base.sysusers
 389-ds-base.tmpfiles)
-sha512sums=('e648c8de6032d9e8714030b2300f3af79fdb17004606cebee345903ef76fca5df4fef7eb80fd982b656b6937560f43350af90c3da08515a8ce2fb88e2a662f22'
+sha512sums=('effc31250e80e42933b1117bd5d3a815cd3e4ee7e966d5d059de585641b7f8858a480aadde1cb7d6005f9fef81e7e887f115fbb10948afe63d1d6f6589738cd5'
 
'2e18a2ce12f245a188d9c7b1165f755e2eb3be4f5417ec94df0b87560d13a0d1350ef8774b276172f0df314a9ad82b0b0284ee3be040462afd6af4daac5c9c6a'
 
'8689b60f13517e6541e1faa62e61781654a8e4678990d14a3fe0cfe4673697cdde1c46763fdc7ef6203e4026286fa004c73b2857fd7fecff69483e6d1e8e6d68'
 
'69ed8b8f3bdbf9098088b0c92c41a238f16d14ba9f86ebc2b5debe5f001b4d8e235f7cff4731d72b30b5ac70486b0f4300b99646aa3926a3fa59515a64f16402')
@@ -33,6 +33,10 @@
   cd "${pkgname}-${pkgname}-${pkgver}"
 
   patch -Np1 -i ../openldap-2.5.patch
+
+  # Required until https://github.com/389ds/389-ds-base/issues/5043 is fixed:
+  sed -i "/deny(warnings)/d" src/librnsslapd/src/lib.rs
+
   autoreconf -fiv
 }
 



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

2021-12-04 Thread David Runge via arch-commits
Date: Saturday, December 4, 2021 @ 19:06:42
  Author: dvzrv
Revision: 1065072

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 19:06:35 UTC (rev 1065071)
+++ PKGBUILD2021-12-04 19:06:42 UTC (rev 1065072)
@@ -1,42 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Jonas Heinrich 
-
-pkgname=nextcloud-app-news
-_name=news
-pkgver=16.2.1
-pkgrel=1
-pkgdesc="An RSS/Atom feed aggregator"
-arch=('any')
-url="https://github.com/nextcloud/news;
-license=('AGPL3')
-makedepends=('nextcloud' 'ripgrep' 'yq')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/${_name}/releases/download/${pkgver}/${_name}.tar.gz;)
-sha512sums=('a3e7df5bb1a1ee4172bead0c69960b4fb87705b0ab2181f5486c281c48e746a2942d4fa1b53b5b422f149d551d9506b22814e4cb96d990ac34f16e0fe04a1122')
-b2sums=('e8f9c63c954d8de5396780d5d0e5aa404a4cc6aa3882275afe85f0217368987d877a5c1f54bc511b97c006d360fb483e548cd726b8299811719708dd52ee20c7')
-
-_get_nextcloud_versions() {
-  _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version="$(xq '.info.dependencies.nextcloud["@max-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version=$(expr ${_app_max_major_version} + 1)
-}
-
-check() {
-  local _app_min_major_version
-  local _app_max_major_version
-  _get_nextcloud_versions
-
-  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
-  if [[ "$(vercmp "${_nextcloud_major_version}" "${_app_min_major_version}")" 
-lt 0 ]] || [[ "$(vercmp "${_nextcloud_major_version}" 
"${_app_max_major_version}")" -gt 0 ]] ; then
-printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "${_app_min_major_version}" "${_app_max_major_version}" 
"${_nextcloud_major_version}"
-exit 1
-  fi
-}
-
-package() {
-  _get_nextcloud_versions
-
-  depends=("nextcloud>=${_app_min_major_version}" 
"nextcloud<${_app_max_major_version}")
-
-  install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps"
-  cp -av "${_name}" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
-}

Copied: nextcloud-app-news/repos/community-any/PKGBUILD (from rev 1065071, 
nextcloud-app-news/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 19:06:42 UTC (rev 1065072)
@@ -0,0 +1,42 @@
+# Maintainer: David Runge 
+# Contributor: Jonas Heinrich 
+
+pkgname=nextcloud-app-news
+_name=news
+pkgver=17.0.0
+pkgrel=1
+pkgdesc="An RSS/Atom feed aggregator"
+arch=(any)
+url="https://github.com/nextcloud/news;
+license=(AGPL3)
+makedepends=(nextcloud ripgrep yq)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/${_name}/releases/download/${pkgver}/${_name}.tar.gz;)
+sha512sums=('de807636e3c44c2abec30dcca6948aad4c719452bd17169a00c96db3904e2a7e23d8f4142ff5a682e740af3c1e421d36db255da15c05da8ddd9ef46e7dbac61b')
+b2sums=('9b61b5cacc2cd1fc5a834293096b17430b5915a6174fc1d40bde0e0f990e8b55a3bd35aeaa819ff21d2128093f9752750566aa82f51183c6194256a5effe1fd4')
+
+_get_nextcloud_versions() {
+  _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
+  _app_max_major_version="$(xq '.info.dependencies.nextcloud["@max-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
+  _app_max_major_version=$(expr ${_app_max_major_version} + 1)
+}
+
+check() {
+  local _app_min_major_version
+  local _app_max_major_version
+  _get_nextcloud_versions
+
+  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
+  if [[ "$(vercmp "${_nextcloud_major_version}" "${_app_min_major_version}")" 
-lt 0 ]] || [[ "$(vercmp "${_nextcloud_major_version}" 
"${_app_max_major_version}")" -gt 0 ]] ; then
+printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "${_app_min_major_version}" "${_app_max_major_version}" 
"${_nextcloud_major_version}"
+exit 1
+  fi
+}
+
+package() {
+  _get_nextcloud_versions
+
+  depends=("nextcloud>=${_app_min_major_version}" 
"nextcloud<${_app_max_major_version}")
+
+  install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps"
+  cp -av "${_name}" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
+}



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

2021-12-04 Thread David Runge via arch-commits
Date: Saturday, December 4, 2021 @ 19:06:35
  Author: dvzrv
Revision: 1065071

upgpkg: nextcloud-app-news 17.0.0-1: Upgrade to 17.0.0.

Simplify quoting in file.

Modified:
  nextcloud-app-news/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 19:04:22 UTC (rev 1065070)
+++ PKGBUILD2021-12-04 19:06:35 UTC (rev 1065071)
@@ -3,16 +3,16 @@
 
 pkgname=nextcloud-app-news
 _name=news
-pkgver=16.2.1
+pkgver=17.0.0
 pkgrel=1
 pkgdesc="An RSS/Atom feed aggregator"
-arch=('any')
+arch=(any)
 url="https://github.com/nextcloud/news;
-license=('AGPL3')
-makedepends=('nextcloud' 'ripgrep' 'yq')
+license=(AGPL3)
+makedepends=(nextcloud ripgrep yq)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/${_name}/releases/download/${pkgver}/${_name}.tar.gz;)
-sha512sums=('a3e7df5bb1a1ee4172bead0c69960b4fb87705b0ab2181f5486c281c48e746a2942d4fa1b53b5b422f149d551d9506b22814e4cb96d990ac34f16e0fe04a1122')
-b2sums=('e8f9c63c954d8de5396780d5d0e5aa404a4cc6aa3882275afe85f0217368987d877a5c1f54bc511b97c006d360fb483e548cd726b8299811719708dd52ee20c7')
+sha512sums=('de807636e3c44c2abec30dcca6948aad4c719452bd17169a00c96db3904e2a7e23d8f4142ff5a682e740af3c1e421d36db255da15c05da8ddd9ef46e7dbac61b')
+b2sums=('9b61b5cacc2cd1fc5a834293096b17430b5915a6174fc1d40bde0e0f990e8b55a3bd35aeaa819ff21d2128093f9752750566aa82f51183c6194256a5effe1fd4')
 
 _get_nextcloud_versions() {
   _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"



[arch-commits] Commit in nextcloud-app-deck/repos (2 files)

2021-12-04 Thread David Runge via arch-commits
Date: Saturday, December 4, 2021 @ 19:04:22
  Author: dvzrv
Revision: 1065070

archrelease: copy trunk to community-staging-any

Added:
  nextcloud-app-deck/repos/community-staging-any/
  nextcloud-app-deck/repos/community-staging-any/PKGBUILD
(from rev 1065069, nextcloud-app-deck/trunk/PKGBUILD)

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

Copied: nextcloud-app-deck/repos/community-staging-any/PKGBUILD (from rev 
1065069, nextcloud-app-deck/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-12-04 19:04:22 UTC (rev 1065070)
@@ -0,0 +1,46 @@
+# Maintainer: David Runge 
+# Contributor: Jonas Heinrich 
+
+pkgname=nextcloud-app-deck
+_name=deck
+pkgver=1.6.0
+pkgrel=1
+# upstream doesn't adhere to semver:
+# https://github.com/nextcloud/deck/issues/1197
+epoch=1
+pkgdesc="Kanban style organization tool aimed at personal planning and project 
organization"
+arch=(any)
+url="https://github.com/nextcloud/deck;
+license=(AGPL3)
+groups=(nextcloud-apps)
+makedepends=(nextcloud ripgrep yq)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud-releases/${_name}/releases/download/v${pkgver}/${_name}.tar.gz;)
+sha512sums=('522b4d9f5eb347dcc07f53610511e8f8a01fe5a1d584ee87599ab5575217f811855c5acca1913e0fdb285e8c47c6f1654d047bfe907b1a43784b879de20ba44d')
+b2sums=('888b963f383bcd8014978c5bcb4fb2b6b9b0fe484cfda702b9123793471777b4ab59f6c61ec09eb4b8a0631a5ae1c56f52948b7f1e2e3ba112437b5673e1963b')
+
+_get_nextcloud_versions() {
+  _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
+  _app_max_major_version="$(xq '.info.dependencies.nextcloud["@max-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
+  _app_max_major_version=$(expr ${_app_max_major_version} + 1)
+}
+
+check() {
+  local _app_min_major_version
+  local _app_max_major_version
+  _get_nextcloud_versions
+
+  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
+  if [[ "$(vercmp "${_nextcloud_major_version}" "${_app_min_major_version}")" 
-lt 0 ]] || [[ "$(vercmp "${_nextcloud_major_version}" 
"${_app_max_major_version}")" -gt 0 ]] ; then
+printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "${_app_min_major_version}" "${_app_max_major_version}" 
"${_nextcloud_major_version}"
+exit 1
+  fi
+}
+
+package() {
+  _get_nextcloud_versions
+
+  depends=("nextcloud>=${_app_min_major_version}" 
"nextcloud<${_app_max_major_version}")
+
+  install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps/"
+  cp -av "${_name}" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
+}



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

2021-12-04 Thread David Runge via arch-commits
Date: Saturday, December 4, 2021 @ 19:04:15
  Author: dvzrv
Revision: 1065069

upgpkg: nextcloud-app-deck 1:1.6.0-1: Upgrade to 1.6.0.

This version is only compatible with nextcloud >= 23, <24.
Simplify quoting in file.

Modified:
  nextcloud-app-deck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 19:02:27 UTC (rev 1065068)
+++ PKGBUILD2021-12-04 19:04:15 UTC (rev 1065069)
@@ -3,20 +3,20 @@
 
 pkgname=nextcloud-app-deck
 _name=deck
-pkgver=1.5.5
+pkgver=1.6.0
 pkgrel=1
 # upstream doesn't adhere to semver:
 # https://github.com/nextcloud/deck/issues/1197
 epoch=1
 pkgdesc="Kanban style organization tool aimed at personal planning and project 
organization"
-arch=('any')
+arch=(any)
 url="https://github.com/nextcloud/deck;
-license=('AGPL3')
-groups=('nextcloud-apps')
-makedepends=('nextcloud' 'ripgrep' 'yq')
+license=(AGPL3)
+groups=(nextcloud-apps)
+makedepends=(nextcloud ripgrep yq)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud-releases/${_name}/releases/download/v${pkgver}/${_name}.tar.gz;)
-sha512sums=('2b7ad1ba12a08f18cc2dd767ff541bca5ba823c0a74aa9077b93e2e1d5483dae675a0e8a64486c969d3a2d9eb0091fdba16350f7697f1f0a5ef4930f0d0eb9ba')
-b2sums=('af913b63cc8be3c81e3da7c436248a69583a948e51f86142d21facabd367984fdb2a80ffc230be0e077bbb845b0b2f82f91b36d277e6468d58303751c29df758')
+sha512sums=('522b4d9f5eb347dcc07f53610511e8f8a01fe5a1d584ee87599ab5575217f811855c5acca1913e0fdb285e8c47c6f1654d047bfe907b1a43784b879de20ba44d')
+b2sums=('888b963f383bcd8014978c5bcb4fb2b6b9b0fe484cfda702b9123793471777b4ab59f6c61ec09eb4b8a0631a5ae1c56f52948b7f1e2e3ba112437b5673e1963b')
 
 _get_nextcloud_versions() {
   _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"



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

2021-12-04 Thread David Runge via arch-commits
Date: Saturday, December 4, 2021 @ 19:02:27
  Author: dvzrv
Revision: 1065068

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 19:02:19 UTC (rev 1065067)
+++ PKGBUILD2021-12-04 19:02:27 UTC (rev 1065068)
@@ -1,45 +0,0 @@
-# Maintainer: Sergej Pupykin 
-
-pkgname=nextcloud-app-bookmarks
-_name=bookmarks
-epoch=1
-pkgver=10.0.2
-pkgrel=1
-pkgdesc="Bookmarks app for nextcloud"
-arch=('any')
-url="https://github.com/nextcloud/bookmarks;
-license=('AGPL3')
-depends=('nextcloud')
-makedepends=('ripgrep' 'yq')
-groups=('nextcloud-apps')
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/v$pkgver/bookmarks-$pkgver.tar.gz;)
-sha256sums=('9a9c7f7bf1214453469082fc31608347e734e16e009312ffab7c25e423443f73')
-b2sums=('a9d1ea97e27aa0e275969a1760a13dac00034c5de61917c537cf953ce6265c25e0177d95099474604a98d18540bff3d28f5589af0017f5ebb40340f28c7b5b39')
-
-_get_nextcloud_versions() {
-  _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version="$(xq '.info.dependencies.nextcloud["@max-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
-  _app_max_major_version=$(expr ${_app_max_major_version} + 1)
-}
-
-check() {
-  local _app_min_major_version
-  local _app_max_major_version
-  _get_nextcloud_versions
-
-  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
-  if [[ "$(vercmp "${_nextcloud_major_version}" "${_app_min_major_version}")" 
-lt 0 ]] || [[ "$(vercmp "${_nextcloud_major_version}" 
"${_app_max_major_version}")" -gt 0 ]] ; then
-printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "${_app_min_major_version}" "${_app_max_major_version}" 
"${_nextcloud_major_version}"
-exit 1
-  fi
-}
-
-package() {
-  _get_nextcloud_versions
-
-  depends=("nextcloud>=${_app_min_major_version}" 
"nextcloud<${_app_max_major_version}")
-
-  install -d "$pkgdir"/usr/share/webapps/nextcloud/apps
-  cp -a "$srcdir"/bookmarks 
"$pkgdir"/usr/share/webapps/nextcloud/apps/bookmarks
-}

Copied: nextcloud-app-bookmarks/repos/community-any/PKGBUILD (from rev 1065067, 
nextcloud-app-bookmarks/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 19:02:27 UTC (rev 1065068)
@@ -0,0 +1,45 @@
+# Maintainer: Sergej Pupykin 
+
+pkgname=nextcloud-app-bookmarks
+_name=bookmarks
+epoch=1
+pkgver=10.0.3
+pkgrel=1
+pkgdesc="Bookmarks app for nextcloud"
+arch=(any)
+url="https://github.com/nextcloud/bookmarks;
+license=(AGPL3)
+depends=(nextcloud)
+makedepends=(ripgrep yq)
+groups=(nextcloud-apps)
+options=(!strip)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/$pkgver/bookmarks-$pkgver.tar.gz;)
+sha256sums=('09ef3fe2d133ddceb6db7af92d628f8dacad01008891457c43cd2b68fe334ee6')
+b2sums=('092d6580f0fb48543c79dd180d34e76ba0fe479f1a16cfb3e31f47e68940a104b4fddfa8d513d8dd2e933120cfc1cb0da590a22a5b8988aeb1641fa286d606d5')
+
+_get_nextcloud_versions() {
+  _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
+  _app_max_major_version="$(xq '.info.dependencies.nextcloud["@max-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
+  _app_max_major_version=$(expr ${_app_max_major_version} + 1)
+}
+
+check() {
+  local _app_min_major_version
+  local _app_max_major_version
+  _get_nextcloud_versions
+
+  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
+  if [[ "$(vercmp "${_nextcloud_major_version}" "${_app_min_major_version}")" 
-lt 0 ]] || [[ "$(vercmp "${_nextcloud_major_version}" 
"${_app_max_major_version}")" -gt 0 ]] ; then
+printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "${_app_min_major_version}" "${_app_max_major_version}" 
"${_nextcloud_major_version}"
+exit 1
+  fi
+}
+
+package() {
+  _get_nextcloud_versions
+
+  depends=("nextcloud>=${_app_min_major_version}" 
"nextcloud<${_app_max_major_version}")
+
+  install -d "$pkgdir"/usr/share/webapps/nextcloud/apps
+  cp -a "$srcdir"/bookmarks 
"$pkgdir"/usr/share/webapps/nextcloud/apps/bookmarks
+}



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

2021-12-04 Thread David Runge via arch-commits
Date: Saturday, December 4, 2021 @ 19:02:19
  Author: dvzrv
Revision: 1065067

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

Simplify quoting in file.

Modified:
  nextcloud-app-bookmarks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 18:59:26 UTC (rev 1065066)
+++ PKGBUILD2021-12-04 19:02:19 UTC (rev 1065067)
@@ -3,19 +3,19 @@
 pkgname=nextcloud-app-bookmarks
 _name=bookmarks
 epoch=1
-pkgver=10.0.2
+pkgver=10.0.3
 pkgrel=1
 pkgdesc="Bookmarks app for nextcloud"
-arch=('any')
+arch=(any)
 url="https://github.com/nextcloud/bookmarks;
-license=('AGPL3')
-depends=('nextcloud')
-makedepends=('ripgrep' 'yq')
-groups=('nextcloud-apps')
-options=('!strip')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/v$pkgver/bookmarks-$pkgver.tar.gz;)
-sha256sums=('9a9c7f7bf1214453469082fc31608347e734e16e009312ffab7c25e423443f73')
-b2sums=('a9d1ea97e27aa0e275969a1760a13dac00034c5de61917c537cf953ce6265c25e0177d95099474604a98d18540bff3d28f5589af0017f5ebb40340f28c7b5b39')
+license=(AGPL3)
+depends=(nextcloud)
+makedepends=(ripgrep yq)
+groups=(nextcloud-apps)
+options=(!strip)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/$pkgver/bookmarks-$pkgver.tar.gz;)
+sha256sums=('09ef3fe2d133ddceb6db7af92d628f8dacad01008891457c43cd2b68fe334ee6')
+b2sums=('092d6580f0fb48543c79dd180d34e76ba0fe479f1a16cfb3e31f47e68940a104b4fddfa8d513d8dd2e933120cfc1cb0da590a22a5b8988aeb1641fa286d606d5')
 
 _get_nextcloud_versions() {
   _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"



[arch-commits] Commit in nextcloud-app-spreed/repos (2 files)

2021-12-04 Thread David Runge via arch-commits
Date: Saturday, December 4, 2021 @ 18:59:26
  Author: dvzrv
Revision: 1065066

archrelease: copy trunk to community-staging-any

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

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

Copied: nextcloud-app-spreed/repos/community-staging-any/PKGBUILD (from rev 
1065065, nextcloud-app-spreed/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-12-04 18:59:26 UTC (rev 1065066)
@@ -0,0 +1,48 @@
+# Maintainer: David Runge 
+
+_name=spreed
+pkgname=nextcloud-app-spreed
+pkgver=13.0.0
+pkgrel=1
+epoch=1
+pkgdesc="Video & audio-conferencing using WebRTC"
+arch=(any)
+url="https://apps.nextcloud.com/apps/spreed;
+license=(AGPL3)
+groups=(nextcloud-apps)
+makedepends=(nextcloud)
+checkdepends=(ripgrep yq)
+source=("https://github.com/nextcloud-releases/${_name}/releases/download/v${pkgver}/${_name}-v${pkgver}.tar.gz;)
+sha512sums=('34358d0feb2d7a41ebff4191493e213e1fd26b21dabb00bce080032761e61020dcc32a6b247c9f051e71a4db27a0bb8fe6290cf2b3a18962e7146643096b7111')
+b2sums=('579209c908f0c412888af50b5d747abb19385c571c5eaa58caaffe1b38a675cf6f4c4c63d425cde1506984a64c3052e01e9e587b22e24ba90ab06ea378ab8160')
+
+_get_nextcloud_versions() {
+  _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
+  _app_max_major_version="$(xq '.info.dependencies.nextcloud["@max-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"
+  _app_max_major_version=$(expr ${_app_max_major_version} + 1)
+}
+
+prepare() {
+  find ${_name} -type f -exec chmod 644 {} +
+  find ${_name} -type d -exec chmod 755 {} +
+}
+
+check() {
+  local _app_min_major_version
+  local _app_max_major_version
+  _get_nextcloud_versions
+  local _nextcloud_major_version="$(rg "OC_Version = " 
/usr/share/webapps/nextcloud/version.php |cut -d'(' -f2| cut -d ',' -f1)"
+
+  if (("$(vercmp "${_nextcloud_major_version}" 
"${_app_min_major_version}")"<0)) || (("$(vercmp "${_nextcloud_major_version}" 
"${_app_max_major_version}")">0)) ; then
+printf "%s requires nextcloud >= %s/ nextcloud <= %s, but nextcloud %s is 
provided.\n" "$pkgname" "${_app_min_major_version}" "${_app_max_major_version}" 
"${_nextcloud_major_version}"
+exit 1
+  fi
+}
+
+package() {
+  _get_nextcloud_versions
+  depends=("nextcloud>=${_app_min_major_version}" 
"nextcloud<${_app_max_major_version}")
+
+  install -vdm 755 "${pkgdir}/usr/share/webapps/nextcloud/apps/"
+  cp -av "${_name}" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
+}



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

2021-12-04 Thread David Runge via arch-commits
Date: Saturday, December 4, 2021 @ 18:59:20
  Author: dvzrv
Revision: 1065065

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

This version is only compatible with nextcloud >= 23, <24.
Simplify quoting in file.

Modified:
  nextcloud-app-spreed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 18:54:32 UTC (rev 1065064)
+++ PKGBUILD2021-12-04 18:59:20 UTC (rev 1065065)
@@ -2,19 +2,19 @@
 
 _name=spreed
 pkgname=nextcloud-app-spreed
-pkgver=12.2.1
+pkgver=13.0.0
 pkgrel=1
 epoch=1
 pkgdesc="Video & audio-conferencing using WebRTC"
-arch=('any')
+arch=(any)
 url="https://apps.nextcloud.com/apps/spreed;
-license=('AGPL3')
-groups=('nextcloud-apps')
-makedepends=('nextcloud')
-checkdepends=('ripgrep' 'yq')
-source=("https://github.com/nextcloud-releases/${_name}/releases/download/v${pkgver}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('b66d5faa89edcd8c27061a1bc4f46782a702f44ae8ce88e9c3b5fd8569e2e86a85993f575daf850497114830b1a90cb1f63ebdc2deef03d2191d6b58062dd93e')
-b2sums=('27fa354726a321e9a173cf50a986806dc14f56aa0d069d92c7d59eccd216d4b315ddd6785365a60ec8630e2d8468a0f8f81e1667b718216d87ff262283825964')
+license=(AGPL3)
+groups=(nextcloud-apps)
+makedepends=(nextcloud)
+checkdepends=(ripgrep yq)
+source=("https://github.com/nextcloud-releases/${_name}/releases/download/v${pkgver}/${_name}-v${pkgver}.tar.gz;)
+sha512sums=('34358d0feb2d7a41ebff4191493e213e1fd26b21dabb00bce080032761e61020dcc32a6b247c9f051e71a4db27a0bb8fe6290cf2b3a18962e7146643096b7111')
+b2sums=('579209c908f0c412888af50b5d747abb19385c571c5eaa58caaffe1b38a675cf6f4c4c63d425cde1506984a64c3052e01e9e587b22e24ba90ab06ea378ab8160')
 
 _get_nextcloud_versions() {
   _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"



[arch-commits] Commit in git-filter-repo/trunk (PKGBUILD version.patch)

2021-12-04 Thread Leonidas Spyropoulos via arch-commits
Date: Saturday, December 4, 2021 @ 18:54:32
  Author: artafinde
Revision: 1065064

Upstream release 2.34.0

Modified:
  git-filter-repo/trunk/PKGBUILD
Deleted:
  git-filter-repo/trunk/version.patch

---+
 PKGBUILD  |   24 
 version.patch |   10 --
 2 files changed, 8 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 18:45:35 UTC (rev 1065063)
+++ PKGBUILD2021-12-04 18:54:32 UTC (rev 1065064)
@@ -1,33 +1,25 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=git-filter-repo
-pkgver=2.29.0
-pkgrel=2
+pkgver=2.34.0
+pkgrel=1
 pkgdesc="Quickly rewrite git repository history (filter-branch replacement)"
 arch=("any")
 url="https://github.com/newren/git-filter-repo;
 license=("MIT")
 depends=("git" "python")
-makedepends=("python-setuptools")
-checkdepends=("python-coverage")
+makedepends=("python-setuptools-scm")
+checkdepends=('rsync')
 source=(
"$url/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz"
-   "version.patch"
 )
-sha256sums=(
-   "eb269f6e9b91fcacf676f7d5b8174d962dab5facce2022cc59cb672cd33cd602"
-   "68757bead7ef4a2ff5af3b8563889564f5105cb75da9a7a7513b8aa198027d6f"
-)
+sha256sums=('b1bf46af1e6a91a54056d0254e480803db8e40f631336c559a1a94d2a08389c4')
 
-prepare() {
-   cd "$pkgname-$pkgver"
-   # use_scm_version in setup.py doesn't work from tarballs, inject 
$pkgver instead
-   patch -Np1 -i "$srcdir/version.patch"
-   sed -i "s|@PKGVER@|$pkgver|" release/setup.py
-}
+export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
 
 check() {
-   make -C "$pkgname-$pkgver" test
+   cd "$pkgname-$pkgver"
+   ./t/run_tests
 }
 
 package() {

Deleted: version.patch
===
--- version.patch   2021-12-04 18:45:35 UTC (rev 1065063)
+++ version.patch   2021-12-04 18:54:32 UTC (rev 1065064)
@@ -1,10 +0,0 @@
-Index: git-filter-repo-2.26.0/release/setup.py
-===
 git-filter-repo-2.26.0.orig/release/setup.py
-+++ git-filter-repo-2.26.0/release/setup.py
-@@ -5,4 +5,4 @@ for f in ['git-filter-repo', 'git_filter
- os.symlink("../"+f, f)
- except FileExistsError:
- pass
--setup(use_scm_version=dict(root="..", relative_to=__file__))
-+setup(version='@PKGVER@')



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

2021-12-04 Thread Antonio Rojas via arch-commits
Date: Saturday, December 4, 2021 @ 18:45:35
  Author: arojas
Revision: 1065063

archrelease: copy trunk to community-x86_64

Added:
  primecount/repos/community-x86_64/PKGBUILD
(from rev 1065062, primecount/trunk/PKGBUILD)
Deleted:
  primecount/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 18:45:26 UTC (rev 1065062)
+++ PKGBUILD2021-12-04 18:45:35 UTC (rev 1065063)
@@ -1,30 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=primecount
-pkgver=7.1
-pkgrel=1
-pkgdesc='Fast C++ prime counting function implementation'
-arch=(x86_64)
-url='https://github.com/kimwalisch/primecount'
-license=(BSD)
-depends=(primesieve)
-makedepends=(cmake)
-source=(https://github.com/kimwalisch/primecount/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('4f156f3945b613c9262156a25255f689abcaf30fff778c1d27b17126fcd1db72')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_LIBPRIMESIEVE=OFF \
--DBUILD_STATIC_LIBS=OFF \
--DBUILD_SHARED_LIBS=ON \
--DWITH_POPCNT=OFF \
--DWITH_FLOAT128=ON
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-
-  install -Dm644 $pkgname-$pkgver/COPYING -t 
"$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: primecount/repos/community-x86_64/PKGBUILD (from rev 1065062, 
primecount/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 18:45:35 UTC (rev 1065063)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=primecount
+pkgver=7.2
+pkgrel=1
+pkgdesc='Fast C++ prime counting function implementation'
+arch=(x86_64)
+url='https://github.com/kimwalisch/primecount'
+license=(BSD)
+depends=(primesieve)
+makedepends=(cmake)
+source=(https://github.com/kimwalisch/primecount/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('54c1eec33e665a780002dda20cf39ba0cefa8e846fdeda44734fb2265cba9257')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_LIBPRIMESIEVE=OFF \
+-DBUILD_STATIC_LIBS=OFF \
+-DBUILD_SHARED_LIBS=ON \
+-DWITH_POPCNT=OFF \
+-DWITH_FLOAT128=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -Dm644 $pkgname-$pkgver/COPYING -t 
"$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2021-12-04 Thread Antonio Rojas via arch-commits
Date: Saturday, December 4, 2021 @ 18:45:26
  Author: arojas
Revision: 1065062

Update to 7.2

Modified:
  primecount/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 18:43:42 UTC (rev 1065061)
+++ PKGBUILD2021-12-04 18:45:26 UTC (rev 1065062)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=primecount
-pkgver=7.1
+pkgver=7.2
 pkgrel=1
 pkgdesc='Fast C++ prime counting function implementation'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(primesieve)
 makedepends=(cmake)
 
source=(https://github.com/kimwalisch/primecount/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('4f156f3945b613c9262156a25255f689abcaf30fff778c1d27b17126fcd1db72')
+sha256sums=('54c1eec33e665a780002dda20cf39ba0cefa8e846fdeda44734fb2265cba9257')
 
 build() {
   cmake -B build -S $pkgname-$pkgver \



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

2021-12-04 Thread Antonio Rojas via arch-commits
Date: Saturday, December 4, 2021 @ 18:43:49
  Author: arojas
Revision: 430681

archrelease: copy trunk to extra-x86_64

Added:
  double-conversion/repos/extra-x86_64/PKGBUILD
(from rev 430680, double-conversion/trunk/PKGBUILD)
Deleted:
  double-conversion/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 18:43:39 UTC (rev 430680)
+++ PKGBUILD2021-12-04 18:43:49 UTC (rev 430681)
@@ -1,35 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Joel Teichroeb 
-# Contributor: Jonas Heinrich 
-
-pkgname=double-conversion
-pkgver=3.1.5
-pkgrel=2
-pkgdesc='Binary-decimal and decimal-binary routines for IEEE doubles'
-arch=(x86_64)
-url='https://github.com/google/double-conversion'
-license=(BSD)
-depends=(gcc-libs)
-makedepends=(cmake)
-source=(double-conversion-$pkgver.tar.gz::https://github.com/google/double-conversion/archive/v$pkgver.tar.gz)
-sha256sums=('a63ecb93182134ba4293fd5f22d6e08ca417caafa244afaa751cbfddf6415b13')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_INSTALL_LIBDIR=lib \
-  -DBUILD_SHARED_LIBS=ON
-  make
-}
-
-package () {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/LICENSE -t 
"$pkgdir"/usr/share/licenses/double-conversion
-}

Copied: double-conversion/repos/extra-x86_64/PKGBUILD (from rev 430680, 
double-conversion/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 18:43:49 UTC (rev 430681)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Anatol Pomozov 
+# Contributor: Joel Teichroeb 
+# Contributor: Jonas Heinrich 
+
+pkgname=double-conversion
+pkgver=3.1.6
+pkgrel=1
+pkgdesc='Binary-decimal and decimal-binary routines for IEEE doubles'
+arch=(x86_64)
+url='https://github.com/google/double-conversion'
+license=(BSD)
+depends=(gcc-libs)
+makedepends=(cmake)
+source=(https://github.com/google/double-conversion/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('8a79e87d02ce1333c9d6c5e47f452596442a343d8c3e9b234e8a62fce1b1d49c')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DBUILD_SHARED_LIBS=ON
+  cmake --build build
+}
+
+package () {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -Dm644 $pkgname-$pkgver/LICENSE -t 
"$pkgdir"/usr/share/licenses/$pkgname
+}



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

2021-12-04 Thread David Runge via arch-commits
Date: Saturday, December 4, 2021 @ 18:43:42
  Author: dvzrv
Revision: 1065061

archrelease: copy trunk to community-staging-any

Added:
  python-pynitrokey/repos/community-staging-any/PKGBUILD
(from rev 1065060, python-pynitrokey/trunk/PKGBUILD)
Deleted:
  python-pynitrokey/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 18:43:35 UTC (rev 1065060)
+++ PKGBUILD2021-12-04 18:43:42 UTC (rev 1065061)
@@ -1,35 +0,0 @@
-# Maintainer: David Runge 
-
-_name=pynitrokey
-pkgname=python-pynitrokey
-pkgver=0.4.5
-pkgrel=2
-pkgdesc="A command line interface for the Nitrokey FIDO2 and Nitrokey Start"
-arch=('any')
-url="https://github.com/Nitrokey/pynitrokey/releases;
-license=('Apache')
-depends=('python-cbor' 'python-cffi' 'python-click' 'python-cryptography'
-'python-dateutil' 'python-ecdsa' 'python-fido2' 'python-intelhex'
-'python-nkdfu' 'python-pygments' 'python-pyserial' 'python-pyusb'
-'python-requests' 'python-urllib3')
-makedepends=('python-build' 'python-flit' 'python-install')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('8a3f5ad1f13fb9e9e43ee639b0c87839b938efc32fb7bc9574610a0b5e510d4a822a1e93dc9b3c048ff5a56e304714c7c91de3e4e2dfa1802b44c18c6b9c35ba')
-b2sums=('f53c047fe2a582284e3abe465c075e85fc7f0e1a488b83be0ea151b47c7eb01ea8523198ce01e39de980488fa0ad8328d0fe8429e0da82cf6f8cd6f1f857e4e7')
-
-prepare() {
-  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python -m build --wheel --skip-dependency-check --no-isolation
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
-  # https://github.com/FFY00/python-install/pull/6
-  chmod +x "$pkgdir"/usr/bin/*
-  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: python-pynitrokey/repos/community-staging-any/PKGBUILD (from rev 
1065060, python-pynitrokey/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 18:43:42 UTC (rev 1065061)
@@ -0,0 +1,31 @@
+# Maintainer: David Runge 
+
+_name=pynitrokey
+pkgname=python-pynitrokey
+pkgver=0.4.6
+pkgrel=2
+pkgdesc="A command line interface for the Nitrokey FIDO2 and Nitrokey Start"
+arch=(any)
+url="https://github.com/Nitrokey/pynitrokey;
+license=(Apache)
+depends=(python-cbor python-cffi python-click python-cryptography
+python-dateutil python-ecdsa python-fido2 python-intelhex python-nkdfu
+python-pygments python-pyserial python-pyusb python-requests python-urllib3)
+makedepends=(git python-build python-flit python-install)
+source=("git+https://github.com/nitrokey/pynitrokey#tag=v${pkgver}.nitrokey?signed;)
+sha512sums=('SKIP')
+b2sums=('SKIP')
+validpgpkeys=(868184069239FF65DE0BCD7DD9BAE35991DE5B22)  # Szczepan Zalega 
(Nitrokey) 
+
+build() {
+  cd "${_name}"
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+package() {
+  cd "${_name}"
+  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
+  # https://github.com/FFY00/python-install/pull/6
+  chmod +x "$pkgdir"/usr/bin/*
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}



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

2021-12-04 Thread Antonio Rojas via arch-commits
Date: Saturday, December 4, 2021 @ 18:43:39
  Author: arojas
Revision: 430680

Update to 3.1.6

Modified:
  double-conversion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 12:08:19 UTC (rev 430679)
+++ PKGBUILD2021-12-04 18:43:39 UTC (rev 430680)
@@ -1,10 +1,11 @@
-# Maintainer: Anatol Pomozov 
+# Maintainer: Antonio Rojas 
+# Contributor: Anatol Pomozov 
 # Contributor: Joel Teichroeb 
 # Contributor: Jonas Heinrich 
 
 pkgname=double-conversion
-pkgver=3.1.5
-pkgrel=2
+pkgver=3.1.6
+pkgrel=1
 pkgdesc='Binary-decimal and decimal-binary routines for IEEE doubles'
 arch=(x86_64)
 url='https://github.com/google/double-conversion'
@@ -11,25 +12,18 @@
 license=(BSD)
 depends=(gcc-libs)
 makedepends=(cmake)
-source=(double-conversion-$pkgver.tar.gz::https://github.com/google/double-conversion/archive/v$pkgver.tar.gz)
-sha256sums=('a63ecb93182134ba4293fd5f22d6e08ca417caafa244afaa751cbfddf6415b13')
+source=(https://github.com/google/double-conversion/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('8a79e87d02ce1333c9d6c5e47f452596442a343d8c3e9b234e8a62fce1b1d49c')
 
-prepare() {
-  mkdir -p build
-}
-
 build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
+  cmake -B build -S $pkgname-$pkgver \
   -DCMAKE_INSTALL_PREFIX=/usr \
-  -DCMAKE_INSTALL_LIBDIR=lib \
   -DBUILD_SHARED_LIBS=ON
-  make
+  cmake --build build
 }
 
 package () {
-  cd build
-  make DESTDIR="$pkgdir" install
+  DESTDIR="$pkgdir" cmake --install build
 
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/LICENSE -t 
"$pkgdir"/usr/share/licenses/double-conversion
+  install -Dm644 $pkgname-$pkgver/LICENSE -t 
"$pkgdir"/usr/share/licenses/$pkgname
 }



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

2021-12-04 Thread David Runge via arch-commits
Date: Saturday, December 4, 2021 @ 18:43:35
  Author: dvzrv
Revision: 1065060

upgpkg: python-pynitrokey 0.4.6-2: Rebuild against python 3.10

Modified:
  python-pynitrokey/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 18:40:43 UTC (rev 1065059)
+++ PKGBUILD2021-12-04 18:43:35 UTC (rev 1065060)
@@ -3,7 +3,7 @@
 _name=pynitrokey
 pkgname=python-pynitrokey
 pkgver=0.4.6
-pkgrel=1
+pkgrel=2
 pkgdesc="A command line interface for the Nitrokey FIDO2 and Nitrokey Start"
 arch=(any)
 url="https://github.com/Nitrokey/pynitrokey;



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

2021-12-04 Thread David Runge via arch-commits
Date: Saturday, December 4, 2021 @ 18:40:43
  Author: dvzrv
Revision: 1065059

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 18:40:35 UTC (rev 1065058)
+++ PKGBUILD2021-12-04 18:40:43 UTC (rev 1065059)
@@ -1,35 +0,0 @@
-# Maintainer: David Runge 
-
-_name=pynitrokey
-pkgname=python-pynitrokey
-pkgver=0.4.5
-pkgrel=1
-pkgdesc="A command line interface for the Nitrokey FIDO2 and Nitrokey Start"
-arch=('any')
-url="https://github.com/Nitrokey/pynitrokey/releases;
-license=('Apache')
-depends=('python-cbor' 'python-cffi' 'python-click' 'python-cryptography'
-'python-dateutil' 'python-ecdsa' 'python-fido2' 'python-intelhex'
-'python-nkdfu' 'python-pygments' 'python-pyserial' 'python-pyusb'
-'python-requests' 'python-urllib3')
-makedepends=('python-build' 'python-flit' 'python-install')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('8a3f5ad1f13fb9e9e43ee639b0c87839b938efc32fb7bc9574610a0b5e510d4a822a1e93dc9b3c048ff5a56e304714c7c91de3e4e2dfa1802b44c18c6b9c35ba')
-b2sums=('f53c047fe2a582284e3abe465c075e85fc7f0e1a488b83be0ea151b47c7eb01ea8523198ce01e39de980488fa0ad8328d0fe8429e0da82cf6f8cd6f1f857e4e7')
-
-prepare() {
-  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python -m build --wheel --skip-dependency-check --no-isolation
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
-  # https://github.com/FFY00/python-install/pull/6
-  chmod +x "$pkgdir"/usr/bin/*
-  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: python-pynitrokey/repos/community-any/PKGBUILD (from rev 1065058, 
python-pynitrokey/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 18:40:43 UTC (rev 1065059)
@@ -0,0 +1,31 @@
+# Maintainer: David Runge 
+
+_name=pynitrokey
+pkgname=python-pynitrokey
+pkgver=0.4.6
+pkgrel=1
+pkgdesc="A command line interface for the Nitrokey FIDO2 and Nitrokey Start"
+arch=(any)
+url="https://github.com/Nitrokey/pynitrokey;
+license=(Apache)
+depends=(python-cbor python-cffi python-click python-cryptography
+python-dateutil python-ecdsa python-fido2 python-intelhex python-nkdfu
+python-pygments python-pyserial python-pyusb python-requests python-urllib3)
+makedepends=(git python-build python-flit python-install)
+source=("git+https://github.com/nitrokey/pynitrokey#tag=v${pkgver}.nitrokey?signed;)
+sha512sums=('SKIP')
+b2sums=('SKIP')
+validpgpkeys=(868184069239FF65DE0BCD7DD9BAE35991DE5B22)  # Szczepan Zalega 
(Nitrokey) 
+
+build() {
+  cd "${_name}"
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+package() {
+  cd "${_name}"
+  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
+  # https://github.com/FFY00/python-install/pull/6
+  chmod +x "$pkgdir"/usr/bin/*
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}



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

2021-12-04 Thread David Runge via arch-commits
Date: Saturday, December 4, 2021 @ 18:40:35
  Author: dvzrv
Revision: 1065058

upgpkg: python-pynitrokey 0.4.6-1: Upgrade to 0.4.6.

Switch to signed tags for releases.
Add PGP key 868184069239FF65DE0BCD7DD9BAE35991DE5B22 for release validation.

Modified:
  python-pynitrokey/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 18:36:47 UTC (rev 1065057)
+++ PKGBUILD2021-12-04 18:40:35 UTC (rev 1065058)
@@ -2,32 +2,28 @@
 
 _name=pynitrokey
 pkgname=python-pynitrokey
-pkgver=0.4.5
-pkgrel=2
+pkgver=0.4.6
+pkgrel=1
 pkgdesc="A command line interface for the Nitrokey FIDO2 and Nitrokey Start"
-arch=('any')
-url="https://github.com/Nitrokey/pynitrokey/releases;
-license=('Apache')
-depends=('python-cbor' 'python-cffi' 'python-click' 'python-cryptography'
-'python-dateutil' 'python-ecdsa' 'python-fido2' 'python-intelhex'
-'python-nkdfu' 'python-pygments' 'python-pyserial' 'python-pyusb'
-'python-requests' 'python-urllib3')
-makedepends=('python-build' 'python-flit' 'python-install')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('8a3f5ad1f13fb9e9e43ee639b0c87839b938efc32fb7bc9574610a0b5e510d4a822a1e93dc9b3c048ff5a56e304714c7c91de3e4e2dfa1802b44c18c6b9c35ba')
-b2sums=('f53c047fe2a582284e3abe465c075e85fc7f0e1a488b83be0ea151b47c7eb01ea8523198ce01e39de980488fa0ad8328d0fe8429e0da82cf6f8cd6f1f857e4e7')
+arch=(any)
+url="https://github.com/Nitrokey/pynitrokey;
+license=(Apache)
+depends=(python-cbor python-cffi python-click python-cryptography
+python-dateutil python-ecdsa python-fido2 python-intelhex python-nkdfu
+python-pygments python-pyserial python-pyusb python-requests python-urllib3)
+makedepends=(git python-build python-flit python-install)
+source=("git+https://github.com/nitrokey/pynitrokey#tag=v${pkgver}.nitrokey?signed;)
+sha512sums=('SKIP')
+b2sums=('SKIP')
+validpgpkeys=(868184069239FF65DE0BCD7DD9BAE35991DE5B22)  # Szczepan Zalega 
(Nitrokey) 
 
-prepare() {
-  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
-}
-
 build() {
-  cd "$pkgname-$pkgver"
+  cd "${_name}"
   python -m build --wheel --skip-dependency-check --no-isolation
 }
 
 package() {
-  cd "$pkgname-$pkgver"
+  cd "${_name}"
   python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
   # https://github.com/FFY00/python-install/pull/6
   chmod +x "$pkgdir"/usr/bin/*



[arch-commits] Commit in python-sphinx-autodoc-typehints/repos/community-staging-any (3 files)

2021-12-04 Thread Antonio Rojas via arch-commits
Date: Saturday, December 4, 2021 @ 18:36:47
  Author: arojas
Revision: 1065057

archrelease: copy trunk to community-staging-any

Added:
  python-sphinx-autodoc-typehints/repos/community-staging-any/PKGBUILD
(from rev 1065056, python-sphinx-autodoc-typehints/trunk/PKGBUILD)
  python-sphinx-autodoc-typehints/repos/community-staging-any/python-3.10.patch
(from rev 1065056, python-sphinx-autodoc-typehints/trunk/python-3.10.patch)
Deleted:
  python-sphinx-autodoc-typehints/repos/community-staging-any/PKGBUILD

---+
 PKGBUILD  |   86 ++--
 python-3.10.patch |  360 
 2 files changed, 406 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 18:36:31 UTC (rev 1065056)
+++ PKGBUILD2021-12-04 18:36:47 UTC (rev 1065057)
@@ -1,40 +0,0 @@
-# Maintainer: Levente Polyak 
-
-pkgname=python-sphinx-autodoc-typehints
-_pyname=${pkgname/python-/}
-_gitcommit=2fac99f455855c832b22a272edde3f9852ba6a04
-pkgver=1.11.1
-pkgrel=3
-pkgdesc='Type hints support for the Sphinx autodoc extension'
-url='https://github.com/agronholm/sphinx-autodoc-typehints'
-arch=('any')
-license=('MIT')
-depends=('python' 'python-sphinx' 'python-typing_extensions')
-makedepends=('git' 'python-setuptools' 'python-setuptools-scm')
-checkdepends=('python-pytest' 'python-sphobjinv')
-source=("git+https://github.com/agronholm/sphinx-autodoc-typehints#commit=${_gitcommit};)
-sha512sums=('SKIP')
-
-pkgver() {
-  cd ${_pyname}
-  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
-}
-
-build() {
-  cd ${_pyname}
-  python setup.py build
-}
-
-check() {
-  cd ${_pyname}
-  PYTHONPATH=. pytest
-}
-
-package() {
-  cd ${_pyname}
-  python setup.py install -O1 --root="${pkgdir}" --skip-build
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-sphinx-autodoc-typehints/repos/community-staging-any/PKGBUILD 
(from rev 1065056, python-sphinx-autodoc-typehints/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 18:36:47 UTC (rev 1065057)
@@ -0,0 +1,46 @@
+# Maintainer: Levente Polyak 
+
+pkgname=python-sphinx-autodoc-typehints
+_pyname=${pkgname/python-/}
+_gitcommit=1b85ff5306f02985ab00c73b41504bb5b17943eb
+pkgver=1.12.0
+pkgrel=1
+pkgdesc='Type hints support for the Sphinx autodoc extension'
+url='https://github.com/agronholm/sphinx-autodoc-typehints'
+arch=('any')
+license=('MIT')
+depends=('python' 'python-sphinx' 'python-typing_extensions')
+makedepends=('git' 'python-setuptools' 'python-setuptools-scm')
+checkdepends=('python-pytest' 'python-sphobjinv')
+source=("git+https://github.com/agronholm/sphinx-autodoc-typehints#commit=${_gitcommit};
+ python-3.10.patch)
+sha512sums=('SKIP'
+
'c5fca0339d1ad2e0226006396c7e39f66e71d02e11dd883f8e4ee2c195293cf54afa8e13ef0164e7249ee9d8a296314b5c7ad4d707688855838cd4e3de1bba44')
+
+pkgver() {
+  cd ${_pyname}
+  git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  patch -d $_pyname -p1 < python-3.10.patch # Fix tests with Python 3.10 and 
Sphinx 4
+}
+
+build() {
+  cd ${_pyname}
+  python setup.py build
+}
+
+check() {
+  cd ${_pyname}
+  PYTHONPATH=. pytest
+}
+
+package() {
+  cd ${_pyname}
+  python setup.py install -O1 --root="${pkgdir}" --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:

Copied: 
python-sphinx-autodoc-typehints/repos/community-staging-any/python-3.10.patch 
(from rev 1065056, python-sphinx-autodoc-typehints/trunk/python-3.10.patch)
===
--- python-3.10.patch   (rev 0)
+++ python-3.10.patch   2021-12-04 18:36:47 UTC (rev 1065057)
@@ -0,0 +1,360 @@
+diff --git a/.github/workflows/codeqa-test.yml 
b/.github/workflows/codeqa-test.yml
+index c068ee3..5f0bb03 100644
+--- a/.github/workflows/codeqa-test.yml
 b/.github/workflows/codeqa-test.yml
+@@ -19,9 +19,9 @@ jobs:
+ path: ~/.cache/pip
+ key: pip-lint
+ - name: Install dependencies
+-  run: pip install flake8 isort
++  run: pip install pyproject-flake8 isort
+ - name: Run flake8
+-  run: flake8 sphinx_autodoc_typehints.py tests
++  run: pflake8 sphinx_autodoc_typehints.py tests
+ - name: Run isort
+   run: isort -c sphinx_autodoc_typehints.py tests
+ 
+@@ -31,7 +31,7 @@ jobs:
+   fail-fast: false
+   matrix:
+ os: [ubuntu-latest]
+-python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0-alpha.5]
++python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
+ runs-on: ${{ matrix.os }}
+ steps:

[arch-commits] Commit in python-sphinx-autodoc-typehints/trunk (2 files)

2021-12-04 Thread Antonio Rojas via arch-commits
Date: Saturday, December 4, 2021 @ 18:36:31
  Author: arojas
Revision: 1065056

Fix tests with Python 3.10 and sphinx 4

Added:
  python-sphinx-autodoc-typehints/trunk/python-3.10.patch
Modified:
  python-sphinx-autodoc-typehints/trunk/PKGBUILD

---+
 PKGBUILD  |   16 +-
 python-3.10.patch |  360 
 2 files changed, 371 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 17:46:59 UTC (rev 1065055)
+++ PKGBUILD2021-12-04 18:36:31 UTC (rev 1065056)
@@ -2,9 +2,9 @@
 
 pkgname=python-sphinx-autodoc-typehints
 _pyname=${pkgname/python-/}
-_gitcommit=2fac99f455855c832b22a272edde3f9852ba6a04
-pkgver=1.11.1
-pkgrel=3
+_gitcommit=1b85ff5306f02985ab00c73b41504bb5b17943eb
+pkgver=1.12.0
+pkgrel=1
 pkgdesc='Type hints support for the Sphinx autodoc extension'
 url='https://github.com/agronholm/sphinx-autodoc-typehints'
 arch=('any')
@@ -12,8 +12,10 @@
 depends=('python' 'python-sphinx' 'python-typing_extensions')
 makedepends=('git' 'python-setuptools' 'python-setuptools-scm')
 checkdepends=('python-pytest' 'python-sphobjinv')
-source=("git+https://github.com/agronholm/sphinx-autodoc-typehints#commit=${_gitcommit};)
-sha512sums=('SKIP')
+source=("git+https://github.com/agronholm/sphinx-autodoc-typehints#commit=${_gitcommit};
+ python-3.10.patch)
+sha512sums=('SKIP'
+
'c5fca0339d1ad2e0226006396c7e39f66e71d02e11dd883f8e4ee2c195293cf54afa8e13ef0164e7249ee9d8a296314b5c7ad4d707688855838cd4e3de1bba44')
 
 pkgver() {
   cd ${_pyname}
@@ -20,6 +22,10 @@
   git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
 }
 
+prepare() {
+  patch -d $_pyname -p1 < python-3.10.patch # Fix tests with Python 3.10 and 
Sphinx 4
+}
+
 build() {
   cd ${_pyname}
   python setup.py build

Added: python-3.10.patch
===
--- python-3.10.patch   (rev 0)
+++ python-3.10.patch   2021-12-04 18:36:31 UTC (rev 1065056)
@@ -0,0 +1,360 @@
+diff --git a/.github/workflows/codeqa-test.yml 
b/.github/workflows/codeqa-test.yml
+index c068ee3..5f0bb03 100644
+--- a/.github/workflows/codeqa-test.yml
 b/.github/workflows/codeqa-test.yml
+@@ -19,9 +19,9 @@ jobs:
+ path: ~/.cache/pip
+ key: pip-lint
+ - name: Install dependencies
+-  run: pip install flake8 isort
++  run: pip install pyproject-flake8 isort
+ - name: Run flake8
+-  run: flake8 sphinx_autodoc_typehints.py tests
++  run: pflake8 sphinx_autodoc_typehints.py tests
+ - name: Run isort
+   run: isort -c sphinx_autodoc_typehints.py tests
+ 
+@@ -31,7 +31,7 @@ jobs:
+   fail-fast: false
+   matrix:
+ os: [ubuntu-latest]
+-python-version: [3.6, 3.7, 3.8, 3.9, 3.10.0-alpha.5]
++python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
+ runs-on: ${{ matrix.os }}
+ steps:
+ - uses: actions/checkout@v2
+diff --git a/pre-commit-config.sample.yaml b/.pre-commit-config.yaml
+similarity index 85%
+rename from pre-commit-config.sample.yaml
+rename to .pre-commit-config.yaml
+index 7f86457..00f00ce 100644
+--- a/pre-commit-config.sample.yaml
 b/.pre-commit-config.yaml
+@@ -22,3 +22,7 @@ repos:
+ hooks:
+ - id: isort
+   additional_dependencies: [toml]
++-   repo: https://github.com/csachs/pyproject-flake8
++rev: v0.0.1a2.post1
++hooks:
++- id: pyproject-flake8
+diff --git a/pyproject.toml b/pyproject.toml
+index eeb699e..68d7eab 100644
+--- a/pyproject.toml
 b/pyproject.toml
+@@ -14,6 +14,9 @@ multi_line_output = 4
+ [tool.autopep8]
+ max_line_length = 99
+ 
++[tool.flake8]
++max-line-length = 99
++
+ [tool.pytest.ini_options]
+ addopts = "-rsx --tb=short"
+ testpaths = ["tests"]
+diff --git a/setup.cfg b/setup.cfg
+index c872ff3..4e57ff5 100644
+--- a/setup.cfg
 b/setup.cfg
+@@ -38,10 +38,3 @@ test =
+ Sphinx >= 3.2.0
+ type_comments =
+ typed_ast >= 1.4.0; python_version < "3.8"
+-
+-[flake8]
+-max-line-length = 99
+-
+-[tool:pytest]
+-addopts = -rsx --tb=short
+-testpaths = tests
+diff --git a/sphinx_autodoc_typehints.py b/sphinx_autodoc_typehints.py
+index 0b69b1c..5a4ed95 100644
+--- a/sphinx_autodoc_typehints.py
 b/sphinx_autodoc_typehints.py
+@@ -170,13 +170,19 @@ def normalize_source_lines(sourcelines: str) -> str:
+ for i, l in enumerate(sourcelines):
+ if l.lstrip().startswith("def"):
+ idx = i
++whitespace_separator = "def"
+ break
++elif l.lstrip().startswith("async def"):
++idx = i
++whitespace_separator = "async def"
++break
++
+ else:
+ return "\n".join(sourcelines)
+ fn_def = sourcelines[idx]
+ 
+ # Get a string representing the amount of leading whitespace
+-whitespace = fn_def.split("def")[0]
++whitespace = fn_def.split(whitespace_separator)[0]
+ 
+ # 

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

2021-12-04 Thread Frederik Schwan via arch-commits
Date: Saturday, December 4, 2021 @ 17:46:59
  Author: freswa
Revision: 1065055

archrelease: copy trunk to community-testing-x86_64

Added:
  pcsclite/repos/community-testing-x86_64/
  pcsclite/repos/community-testing-x86_64/PKGBUILD
(from rev 1065054, pcsclite/trunk/PKGBUILD)

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

Copied: pcsclite/repos/community-testing-x86_64/PKGBUILD (from rev 1065054, 
pcsclite/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-12-04 17:46:59 UTC (rev 1065055)
@@ -0,0 +1,44 @@
+# Maintainer: Alad Wenter 
+# Maintainer: Christian Hesse 
+# Contributor: Giovanni Scafora 
+# Contributor: Daniel Plaza 
+
+pkgname=pcsclite
+pkgver=1.9.5
+pkgrel=1
+pkgdesc="PC/SC Architecture smartcard middleware library"
+arch=('x86_64')
+url='https://pcsclite.apdu.fr/'
+license=('BSD')
+depends=('python' 'systemd' 'libsystemd.so' 'libudev.so')
+makedepends=('pkg-config')
+provides=('libpcsclite.so' 'libpcscspy.so')
+options=('!docs')
+validpgpkeys=('F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E') # Ludovic Rousseau 

+source=("https://pcsclite.apdu.fr/files/pcsc-lite-${pkgver}.tar.bz2"{,.asc})
+sha256sums=('9ee3f9b333537562177893559ad4f7b8d5c23ebe828eef53056c02db14049d08'
+'SKIP')
+
+build() {
+  cd "pcsc-lite-$pkgver"
+
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--enable-filter \
+--enable-ipcdir=/run/pcscd \
+--enable-libudev \
+--enable-usbdropdir=/usr/lib/pcsc/drivers \
+--with-systemdsystemunitdir=/usr/lib/systemd/system
+
+  make
+}
+
+package() {
+  cd "pcsc-lite-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  install -D -m0644 "$srcdir/pcsc-lite-$pkgver/COPYING" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -d "$pkgdir/usr/lib/pcsc/drivers"
+}



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

2021-12-04 Thread Frederik Schwan via arch-commits
Date: Saturday, December 4, 2021 @ 17:46:56
  Author: freswa
Revision: 1065054

upgpkg: pcsclite 1.9.5-1

Modified:
  pcsclite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 17:44:14 UTC (rev 1065053)
+++ PKGBUILD2021-12-04 17:46:56 UTC (rev 1065054)
@@ -4,7 +4,7 @@
 # Contributor: Daniel Plaza 
 
 pkgname=pcsclite
-pkgver=1.9.4
+pkgver=1.9.5
 pkgrel=1
 pkgdesc="PC/SC Architecture smartcard middleware library"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 options=('!docs')
 validpgpkeys=('F5E11B9FFE911146F41D953D78A1B4DFE8F9C57E') # Ludovic Rousseau 

 source=("https://pcsclite.apdu.fr/files/pcsc-lite-${pkgver}.tar.bz2"{,.asc})
-sha256sums=('8a8caac227e0a266015298dda663e81576a0d11d698685101e6aa6c9fdb51c4b'
+sha256sums=('9ee3f9b333537562177893559ad4f7b8d5c23ebe828eef53056c02db14049d08'
 'SKIP')
 
 build() {



[arch-commits] Commit in (gnuradio-fcdproplus)

2021-12-04 Thread Antonio Rojas via arch-commits
Date: Saturday, December 4, 2021 @ 17:44:14
  Author: arojas
Revision: 1065053

Broken with gnuradio 3.9

Deleted:
  gnuradio-fcdproplus/



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

2021-12-04 Thread Felix Yan via arch-commits
Date: Saturday, December 4, 2021 @ 17:38:10
  Author: felixonmars
Revision: 1065051

archrelease: copy trunk to community-staging-any

Added:
  vdirsyncer/repos/community-staging-any/PKGBUILD
(from rev 1065050, vdirsyncer/trunk/PKGBUILD)
  
vdirsyncer/repos/community-staging-any/vdirsyncer-0.18.0-remove_broken_fingerprint_test.patch
(from rev 1065050, 
vdirsyncer/trunk/vdirsyncer-0.18.0-remove_broken_fingerprint_test.patch)
  vdirsyncer/repos/community-staging-any/vdirsyncer.service
(from rev 1065050, vdirsyncer/trunk/vdirsyncer.service)
  vdirsyncer/repos/community-staging-any/vdirsyncer.timer
(from rev 1065050, vdirsyncer/trunk/vdirsyncer.timer)
Deleted:
  vdirsyncer/repos/community-staging-any/PKGBUILD
  
vdirsyncer/repos/community-staging-any/vdirsyncer-0.18.0-remove_broken_fingerprint_test.patch
  vdirsyncer/repos/community-staging-any/vdirsyncer.service
  vdirsyncer/repos/community-staging-any/vdirsyncer.timer

+
 PKGBUILD   |  118 +++
 vdirsyncer-0.18.0-remove_broken_fingerprint_test.patch |   76 -
 vdirsyncer.service |   14 -
 vdirsyncer.timer   |   20 +-
 4 files changed, 114 insertions(+), 114 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 17:37:57 UTC (rev 1065050)
+++ PKGBUILD2021-12-04 17:38:10 UTC (rev 1065051)
@@ -1,59 +0,0 @@
-# Maintainer: David Runge 
-# Maintainer: Daniel M. Capella 
-# Contributor: Hugo Osvaldo Barrera 
-
-pkgname=vdirsyncer
-pkgver=0.18.0
-pkgrel=2
-pkgdesc="Synchronize CalDAV and CardDAV."
-arch=(any)
-url="https://vdirsyncer.pimutils.org/en/stable/;
-license=(BSD)
-depends=(python-atomicwrites python-click python-click-log
-python-click-threading python-requests python-requests-toolbelt)
-makedepends=(git python-setuptools-scm python-sphinx)
-checkdepends=(python-hypothesis python-pytest python-pytest-localserver
-python-pytest-subtesthack)
-optdepends=('python-requests-oauthlib: Google support'
-'python-etesync: Etesync support'
-'python-django: Etesync support')
-source=(
-  "git+https://github.com/pimutils/vdirsyncer.git#tag=${pkgver}?signed;
-  "${pkgname}-0.18.0-remove_broken_fingerprint_test.patch"
-)
-sha512sums=('SKIP'
-
'91cdd6350771025478d44aa260b41357a8142d8bbbf7b63cd821b54d3645b7049a4d44ddb82de37425747c32dfa9a1d3b9ad08c77ec142b30a8281741e0c062d')
-validpgpkeys=('951082781CA308E4A529DEFD6F9FFF122B98C0CD') # Hugo Osvaldo 
Barrera 
-
-prepare() {
-  cd "${pkgname}"
-  # remove broken test. upstream will replace it with differing dependencies 
in an upcoming version
-  # 
https://github.com/pimutils/vdirsyncer/commit/1f6cc6f8beebd644d6570ce98fe56c33a8846daf
-  patch -Np1 -i ../"${pkgname}-0.18.0-remove_broken_fingerprint_test.patch"
-}
-
-build() {
-  cd "${pkgname}"
-  python setup.py build
-  export PYTHONPATH="build:${PYTHONPATH}"
-  sphinx-build -b man docs/ build/
-}
-
-check() {
-  cd "${pkgname}"
-  export DETERMINISTIC_TESTS=true
-  pytest --tb=short -c /dev/null
-}
-
-package() {
-  cd "${pkgname}"
-  python setup.py install --optimize=1 --root="${pkgdir}"
-  # license
-  install -vDm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-  # systemd
-  install -vDm 644 "contrib/${pkgname}."{service,timer} -t 
"${pkgdir}/usr/lib/systemd/user/"
-  # man page
-  install -vDm 644 "build/${pkgname}.1" -t "${pkgdir}/usr/share/man/man1"
-  # docs
-  install -vDm 644 {AUTHORS,CHANGELOG,README}.rst -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: vdirsyncer/repos/community-staging-any/PKGBUILD (from rev 1065050, 
vdirsyncer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 17:38:10 UTC (rev 1065051)
@@ -0,0 +1,59 @@
+# Maintainer: David Runge 
+# Maintainer: Daniel M. Capella 
+# Contributor: Hugo Osvaldo Barrera 
+
+pkgname=vdirsyncer
+pkgver=0.18.0
+pkgrel=3
+pkgdesc="Synchronize CalDAV and CardDAV."
+arch=(any)
+url="https://vdirsyncer.pimutils.org/en/stable/;
+license=(BSD)
+depends=(python-atomicwrites python-click python-click-log
+python-click-threading python-requests python-requests-toolbelt)
+makedepends=(git python-setuptools-scm python-sphinx)
+checkdepends=(python-hypothesis python-pytest python-pytest-localserver
+python-pytest-subtesthack)
+optdepends=('python-requests-oauthlib: Google support'
+'python-etesync: Etesync support'
+'python-django: Etesync support')
+source=(
+  "git+https://github.com/pimutils/vdirsyncer.git#tag=${pkgver}?signed;
+  "${pkgname}-0.18.0-remove_broken_fingerprint_test.patch"
+)
+sha512sums=('SKIP'
+
'91cdd6350771025478d44aa260b41357a8142d8bbbf7b63cd821b54d3645b7049a4d44ddb82de37425747c32dfa9a1d3b9ad08c77ec142b30a8281741e0c062d')

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

2021-12-04 Thread Felix Yan via arch-commits
Date: Saturday, December 4, 2021 @ 17:37:57
  Author: felixonmars
Revision: 1065050

upgpkg: vdirsyncer 0.18.0-3: Python 3.10 rebuild

Modified:
  vdirsyncer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 17:35:50 UTC (rev 1065049)
+++ PKGBUILD2021-12-04 17:37:57 UTC (rev 1065050)
@@ -4,7 +4,7 @@
 
 pkgname=vdirsyncer
 pkgver=0.18.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Synchronize CalDAV and CardDAV."
 arch=(any)
 url="https://vdirsyncer.pimutils.org/en/stable/;



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 4, 2021 @ 17:31:39
  Author: svenstaro
Revision: 1065048

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|   68 +-
 binaryen.sh |6 ++---
 2 files changed, 37 insertions(+), 37 deletions(-)

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

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

Deleted: binaryen.sh
===
--- binaryen.sh 2021-12-04 17:31:28 UTC (rev 1065047)
+++ binaryen.sh 2021-12-04 17:31:39 UTC (rev 1065048)
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-export BINARYEN_ROOT="/usr"

Copied: binaryen/repos/community-x86_64/binaryen.sh (from rev 1065047, 
binaryen/trunk/binaryen.sh)
===
--- binaryen.sh (rev 0)
+++ binaryen.sh 2021-12-04 17:31:39 UTC (rev 1065048)
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+export BINARYEN_ROOT="/usr"



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

2021-12-04 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, December 4, 2021 @ 17:31:28
  Author: svenstaro
Revision: 1065047

upgpkg: binaryen 1:103-1

Modified:
  binaryen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 16:50:05 UTC (rev 1065046)
+++ PKGBUILD2021-12-04 17:31:28 UTC (rev 1065047)
@@ -1,9 +1,9 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: Dario Ostuni 
 
 pkgname=binaryen
 epoch=1
-pkgver=102
+pkgver=103
 pkgrel=1
 pkgdesc="Compiler infrastructure and toolchain library for WebAssembly, in C++"
 arch=('x86_64')
@@ -12,13 +12,13 @@
 makedepends=('cmake' 'ninja' 'python')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/WebAssembly/binaryen/archive/version_${pkgver}.tar.gz;
 "binaryen.sh")
-sha384sums=('98ce5c3d8fd0fb17c64ab2ca6e506499d590bcfe3ff4fbe967389008136f57944d4672c7130ea11ec5e7107246ecf256'
+sha384sums=('53174254cc449722171258585b0abae1ec1486cef149fdeb7d8b0a0a3fe7348294e9db80c86524227da2e9579af40196'
 
'8ccff587d33aa2f8e66cc167ab887087993cea0899921d2e7cc69372c8b659770a4f4a00e9da61c75394af002c8c7660')
 
 build() {
 cd binaryen-version_$pkgver
 
-cmake . \
+cmake \
 -Bbuild \
 -GNinja \
 -DCMAKE_INSTALL_PREFIX=/usr



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

2021-12-04 Thread Johannes Löthberg via arch-commits
Date: Saturday, December 4, 2021 @ 16:50:05
  Author: demize
Revision: 1065046

archrelease: copy trunk to community-testing-x86_64

Added:
  go-ipfs/repos/community-testing-x86_64/
  go-ipfs/repos/community-testing-x86_64/PKGBUILD
(from rev 1065045, go-ipfs/trunk/PKGBUILD)
  go-ipfs/repos/community-testing-x86_64/ipfs.service
(from rev 1065045, go-ipfs/trunk/ipfs.service)
  go-ipfs/repos/community-testing-x86_64/ipfs@.service
(from rev 1065045, go-ipfs/trunk/ipfs@.service)
  go-ipfs/repos/community-testing-x86_64/rb.patch
(from rev 1065045, go-ipfs/trunk/rb.patch)

---+
 PKGBUILD  |   61 
 ipfs.service  |9 
 ipfs@.service |   10 +
 rb.patch  |   13 +++
 4 files changed, 93 insertions(+)

Copied: go-ipfs/repos/community-testing-x86_64/PKGBUILD (from rev 1065045, 
go-ipfs/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-12-04 16:50:05 UTC (rev 1065046)
@@ -0,0 +1,61 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Anatol Pomozov
+# Contributor: kpcyrd 
+# Contributor: Frederik “Freso” S. Olesen 
+# Contributor: Ian Naval 
+
+pkgname=go-ipfs
+pkgver=0.10.0
+pkgrel=1
+
+pkgdesc='A peer-to-peer hypermedia distribution protocol'
+url='https://ipfs.io/'
+arch=(x86_64)
+license=(MIT)
+
+depends=(glibc)
+optdepends=('fuse2: for mounting/advanced use')
+makedepends=(go git)
+
+source=(go-ipfs-$pkgver.tar.gz::https://github.com/ipfs/go-ipfs/releases/download/v$pkgver/go-ipfs-source.tar.gz
+# https://github.com/ipfs/go-ipfs/pull/8213#issuecomment-881866789
+rb.patch
+ipfs.service
+ipfs@.service)
+noextract=(go-ipfs-$pkgver.tar.gz)
+
+sha512sums=('83e961db8f988d69638d82f2c6cad70f58c236a6d52815a89a4c74ef03ed83a953377c0906d8717f1c3b4b3c812faa40034c53225fdfeaab225733a89656efb4'
+
'5591bb5b309ccf6464723650831e7ed1bf6ffc7e18645c3563452df965091b94d265b079db92ae0b359aa964540b2ee1c1b60b3000102168bfd32730b640f12c'
+
'1a6bc7fffc3c3640cda3f33c107424edd698c62bd8509731856b8827ea18be1a1845ef0d5ca15325d48d7d871a78daacc011ff9eacea926bc35899850990c1c6'
+
'aed168a35228c4f873e0040d1412f3568bfe1ad1e94ffb8b1a2507058daaf75d7346381d299cf9f0b91951b21553170249ff5f45d5fc060e711cf628ab5e5aad')
+
+prepare() {
+  mkdir -p go-ipfs
+  tar -C go-ipfs -xf go-ipfs-$pkgver.tar.gz
+  cd go-ipfs
+  patch -Np1 -i ../rb.patch
+}
+
+build() {
+  cd go-ipfs
+
+  export CGO_LDFLAGS="$LDFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath -modcacherw"
+  make build
+
+  cmd/ipfs/ipfs commands completion bash >"$srcdir"/ipfs-completion.bash
+}
+
+package() {
+  cd go-ipfs
+  install -Dm 755 cmd/ipfs/ipfs "$pkgdir/usr/bin/ipfs"
+  install -Dm 644 "$srcdir"/ipfs.service 
"$pkgdir/usr/lib/systemd/user/ipfs.service"
+  install -Dm 644 "$srcdir"/ipfs@.service 
"$pkgdir/usr/lib/systemd/system/ipfs@.service"
+  install -Dm 644 "$srcdir"/ipfs-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/ipfs"
+  install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname/MIT" LICENSE-MIT
+  install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname/APACHE" 
LICENSE-APACHE
+  install -Dm 644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+}

Copied: go-ipfs/repos/community-testing-x86_64/ipfs.service (from rev 1065045, 
go-ipfs/trunk/ipfs.service)
===
--- community-testing-x86_64/ipfs.service   (rev 0)
+++ community-testing-x86_64/ipfs.service   2021-12-04 16:50:05 UTC (rev 
1065046)
@@ -0,0 +1,9 @@
+[Unit]
+Description=InterPlanetary File System (IPFS) daemon
+
+[Service]
+ExecStart=/usr/bin/ipfs daemon
+Restart=on-failure
+
+[Install]
+WantedBy=default.target

Copied: go-ipfs/repos/community-testing-x86_64/ipfs@.service (from rev 1065045, 
go-ipfs/trunk/ipfs@.service)
===
--- community-testing-x86_64/ipfs@.service  (rev 0)
+++ community-testing-x86_64/ipfs@.service  2021-12-04 16:50:05 UTC (rev 
1065046)
@@ -0,0 +1,10 @@
+[Unit]
+Description=InterPlanetary File System (IPFS) daemon
+
+[Service]
+User=%i
+ExecStart=/usr/bin/ipfs daemon
+Restart=on-failure
+
+[Install]
+WantedBy=default.target

Copied: go-ipfs/repos/community-testing-x86_64/rb.patch (from rev 1065045, 
go-ipfs/trunk/rb.patch)
===
--- community-testing-x86_64/rb.patch   (rev 0)
+++ community-testing-x86_64/rb.patch   2021-12-04 16:50:05 UTC (rev 1065046)
@@ -0,0 +1,13 @@
+diff --git a/mk/golang.mk b/mk/golang.mk
+index 0b2a2c55a..2c7f24d75 100644
+--- a/mk/golang.mk
 b/mk/golang.mk
+@@ -12,7 

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

2021-12-04 Thread Johannes Löthberg via arch-commits
Date: Saturday, December 4, 2021 @ 16:49:58
  Author: demize
Revision: 1065045

upgpkg: go-ipfs 0.10.0-1

Modified:
  go-ipfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 16:43:06 UTC (rev 1065044)
+++ PKGBUILD2021-12-04 16:49:58 UTC (rev 1065045)
@@ -5,7 +5,7 @@
 # Contributor: Ian Naval 
 
 pkgname=go-ipfs
-pkgver=0.9.1
+pkgver=0.10.0
 pkgrel=1
 
 pkgdesc='A peer-to-peer hypermedia distribution protocol'
@@ -24,7 +24,7 @@
 ipfs@.service)
 noextract=(go-ipfs-$pkgver.tar.gz)
 
-sha512sums=('0e8b0e1ccfdb595cb24caeb8c984d7681f9b861dbb7ab1f27ea0346151afe4c3215c2278764dda40b5d6bdec4f4782e34ec8ee5d6a62d6a7848233b588cf4267'
+sha512sums=('83e961db8f988d69638d82f2c6cad70f58c236a6d52815a89a4c74ef03ed83a953377c0906d8717f1c3b4b3c812faa40034c53225fdfeaab225733a89656efb4'
 
'5591bb5b309ccf6464723650831e7ed1bf6ffc7e18645c3563452df965091b94d265b079db92ae0b359aa964540b2ee1c1b60b3000102168bfd32730b640f12c'
 
'1a6bc7fffc3c3640cda3f33c107424edd698c62bd8509731856b8827ea18be1a1845ef0d5ca15325d48d7d871a78daacc011ff9eacea926bc35899850990c1c6'
 
'aed168a35228c4f873e0040d1412f3568bfe1ad1e94ffb8b1a2507058daaf75d7346381d299cf9f0b91951b21553170249ff5f45d5fc060e711cf628ab5e5aad')
@@ -45,6 +45,8 @@
   export CGO_CXXFLAGS="$CXXFLAGS"
   export GOFLAGS="-buildmode=pie -trimpath -modcacherw"
   make build
+
+  cmd/ipfs/ipfs commands completion bash >"$srcdir"/ipfs-completion.bash
 }
 
 package() {
@@ -52,7 +54,7 @@
   install -Dm 755 cmd/ipfs/ipfs "$pkgdir/usr/bin/ipfs"
   install -Dm 644 "$srcdir"/ipfs.service 
"$pkgdir/usr/lib/systemd/user/ipfs.service"
   install -Dm 644 "$srcdir"/ipfs@.service 
"$pkgdir/usr/lib/systemd/system/ipfs@.service"
-  install -Dm 644 misc/completion/ipfs-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/ipfs"
+  install -Dm 644 "$srcdir"/ipfs-completion.bash 
"$pkgdir/usr/share/bash-completion/completions/ipfs"
   install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname/MIT" LICENSE-MIT
   install -Dm 644 -t "$pkgdir/usr/share/licenses/$pkgname/APACHE" 
LICENSE-APACHE
   install -Dm 644 -t "$pkgdir/usr/share/doc/$pkgname" README.md



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

2021-12-04 Thread Johannes Löthberg via arch-commits
Date: Saturday, December 4, 2021 @ 16:43:06
  Author: demize
Revision: 1065044

archrelease: copy trunk to community-testing-any

Added:
  elixir/repos/community-testing-any/
  elixir/repos/community-testing-any/PKGBUILD
(from rev 1065043, elixir/trunk/PKGBUILD)

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

Copied: elixir/repos/community-testing-any/PKGBUILD (from rev 1065043, 
elixir/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2021-12-04 16:43:06 UTC (rev 1065044)
@@ -0,0 +1,39 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Sergej Pupykin 
+# Contributor: Gilbert Kennen 
+
+pkgname=elixir
+pkgver=1.13.0
+pkgrel=1
+
+pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
+url="https://elixir-lang.org;
+license=('Apache' 'custom:EPL')
+
+arch=('any')
+
+depends=('erlang-nox')
+checkdepends=('git')
+
+source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz;)
+sha256sums=('0ed0fb89a9b6428cd1537b7f9aab1d6ea64e0c5972589eeb46dff6f0324468ae')
+
+build() {
+  cd elixir-"$pkgver"
+  make
+}
+
+check() {
+  cd elixir-"$pkgver"
+  ERL_EPMD_PORT=5369 make test
+
+  # The elixir test suite starts up epmd and then doesn't kill it again 
afterwards.
+  epmd -port 5369 -kill
+}
+
+package() {
+  cd elixir-"$pkgver"
+  mkdir -p "$pkgdir"/usr/share/licenses/"$pkgname"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"
+  make DESTDIR="$pkgdir" PREFIX=/usr install
+}



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

2021-12-04 Thread Johannes Löthberg via arch-commits
Date: Saturday, December 4, 2021 @ 16:43:04
  Author: demize
Revision: 1065043

upgpkg: elixir 1.13.0-1

Modified:
  elixir/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 16:42:53 UTC (rev 1065042)
+++ PKGBUILD2021-12-04 16:43:04 UTC (rev 1065043)
@@ -3,7 +3,7 @@
 # Contributor: Gilbert Kennen 
 
 pkgname=elixir
-pkgver=1.12.3
+pkgver=1.13.0
 pkgrel=1
 
 pkgdesc="a functional meta-programming aware language built on top of the 
Erlang VM"
@@ -16,7 +16,7 @@
 checkdepends=('git')
 
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/elixir-lang/elixir/archive/v$pkgver.tar.gz;)
-sha256sums=('c5affa97defafa1fd89c81656464d61da8f76ccfec2ea80c8a528decd5cb04ad')
+sha256sums=('0ed0fb89a9b6428cd1537b7f9aab1d6ea64e0c5972589eeb46dff6f0324468ae')
 
 build() {
   cd elixir-"$pkgver"



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

2021-12-04 Thread Johannes Löthberg via arch-commits
Date: Saturday, December 4, 2021 @ 16:42:47
  Author: demize
Revision: 1065041

upgpkg: oidentd 3.0.0-1

Modified:
  oidentd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 16:36:15 UTC (rev 1065040)
+++ PKGBUILD2021-12-04 16:42:47 UTC (rev 1065041)
@@ -4,7 +4,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=oidentd
-pkgver=2.5.1
+pkgver=3.0.0
 pkgrel=1
 pkgdesc='An RFC1413 compliant ident daemon'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 
source=(https://files.janikrabe.com/pub/oidentd/releases/$pkgver/oidentd-$pkgver.tar.xz{,.asc}
 service socket sysusers.conf)
 
-md5sums=('20a1cb0d7ef5f55052ffdf3f95bdf4ec'
+md5sums=('b183cb70c65dbaf281e1da1e84d1e178'
  'SKIP'
  '8e1fec6ceece6bbf394381c58b531f76'
  '4442fb9fc10754914568e6ffc3d5fc42'



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

2021-12-04 Thread Felix Yan via arch-commits
Date: Saturday, December 4, 2021 @ 16:02:46
  Author: felixonmars
Revision: 1065038

archrelease: copy trunk to community-staging-any

Added:
  buildbot/repos/community-staging-any/
  buildbot/repos/community-staging-any/PKGBUILD
(from rev 1065037, buildbot/trunk/PKGBUILD)
  buildbot/repos/community-staging-any/python310.diff
(from rev 1065037, buildbot/trunk/python310.diff)

+
 PKGBUILD   |  259 +++
 python310.diff |   33 +++
 2 files changed, 292 insertions(+)

Copied: buildbot/repos/community-staging-any/PKGBUILD (from rev 1065037, 
buildbot/trunk/PKGBUILD)
===
--- community-staging-any/PKGBUILD  (rev 0)
+++ community-staging-any/PKGBUILD  2021-12-04 16:02:46 UTC (rev 1065038)
@@ -0,0 +1,259 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: xRemaLx 
+# Contributor: Sergej Pupykin 
+# Contributor: William Rea 
+
+pkgbase=buildbot
+pkgname=(buildbot buildbot-worker buildbot-docs buildbot-common
+ python-buildbot-www python-buildbot-waterfall-view
+ python-buildbot-console-view python-buildbot-grid-view
+ python-buildbot-wsgi-dashboards python-buildbot-badges)
+pkgver=3.4.0
+_bb_contrib_commit=4c8615db51253f0be4bfd08210a3aaf903a74b4f
+pkgrel=2
+arch=(any)
+url='https://buildbot.net'
+license=(GPL2)
+checkdepends=(python-boto3 python-ldap3 python-lz4 python-treq 
python-txrequests
+  python-moto python-docker python-parameterized python-mock 
python-subunit
+  python-unidiff
+  openssh chromium)
+makedepends=(python-twisted python-jinja python-zope-interface 
python-sqlalchemy
+ python-alembic python-dateutil python-txaio
+ python-autobahn python-pyjwt python-yaml
+ python-graphql-core python-hvac
+ python-setuptools python-future
+ python-sphinx-jinja
+ python-sphinx_rtd_theme
+ git yarn)
+source=("https://github.com/buildbot/buildbot/releases/download/v$pkgver/buildbot-v$pkgver.gitarchive.tar.gz"{,.asc}
+
"git+https://github.com/buildbot/buildbot-contrib.git#commit=$_bb_contrib_commit;
+
"buildbot-contrib-systemd-common.patch::https://github.com/buildbot/buildbot-contrib/pull/22.patch;
+"python310.diff")
+sha256sums=('da729c7f4dc2e30f5a5d69e34dd629b0b3d97001b12d72aeb691bb2f0ef0efeb'
+'SKIP'
+'SKIP'
+'896eede4c33a8574d7c29ac4a28cebbe3d7e850931a86e945328f8ea358195a9'
+'7ca79a209e5f77dff01bef526d92a0ac08cf65a6ab22f32d03575c97a5b49ebd')
+validpgpkeys=(
+  '390EB159056ED56F66AB1092AECD456B4D2531FC'  # Pierre Tardy 
 (@tardyp on GitHub)
+  'FD0004A26EADFE43A4C3F249C6F7AE200374452D'  # Povilas Kanapickas 
 (@p12tic on GitHub)
+)
+
+prepare() {
+  cd buildbot-$pkgver
+
+  # Some master tests use scripts from contrib
+  ln -s ../../buildbot-contrib/master/contrib master/contrib
+
+  # HACK: do not use virtualenv
+  sed -i -e 's#frontend_deps:.*#frontend_deps:#' Makefile
+
+  # HACK: Do not build JS again during install
+  # We take care about the command order manually
+  sed -i '/egg_info=EggInfoCommand/d' pkg/buildbot_pkg.py
+
+  # https://github.com/buildbot/buildbot/pull/6178 removes Windows
+  # services from console scripts, while the following files still make
+  # namcap-git complain
+  rm -v master/buildbot/scripts/windows_service.py
+  rm -v worker/buildbot_worker/scripts/windows_service.py
+
+  # Fixes for Python 3.10 breakages:
+  # https://github.com/python/cpython/pull/20236
+  # https://twistedmatrix.com/trac/ticket/10273
+  patch -Np1 -i ../python310.diff
+
+  cd "$srcdir"/buildbot-contrib
+  patch -Np1 -i ../buildbot-contrib-systemd-common.patch
+}
+
+build() {
+  export NODE_OPTIONS="--max-old-space-size=2048"
+
+  cd "$srcdir"/buildbot-$pkgver/pkg
+  python setup.py egg_info
+
+   buildbot 
+  cd "$srcdir"/buildbot-$pkgver/master
+  python setup.py build
+
+  ## buildbot-worker ###
+  cd "$srcdir"/buildbot-$pkgver/worker
+  python setup.py build
+
+  ### buildbot-www #
+  cd "$srcdir"/buildbot-$pkgver
+
+  # HACK: use system packages instead of ones via pip
+  make PIP=/usr/bin/true frontend_deps
+
+  export PYTHONPATH="$srcdir"/buildbot-$pkgver/pkg
+  for module in base waterfall_view console_view grid_view wsgi_dashboards 
badges
+  do
+cd "$srcdir"/buildbot-$pkgver/www/$module
+python setup.py build
+  done
+
+  ### buildbot-docs 
+  cd "$srcdir"/buildbot-$pkgver/master/docs
+  make clean html singlehtml
+}
+
+check() {
+  # Install packages to a temp folder for tests
+  cd "$srcdir"/buildbot-$pkgver/master
+  python setup.py egg_info
+  python setup.py install_scripts --install-dir="$srcdir/tmp_install"
+
+  cd "$srcdir"/buildbot-$pkgver/worker

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

2021-12-04 Thread Felix Yan via arch-commits
Date: Saturday, December 4, 2021 @ 16:02:27
  Author: felixonmars
Revision: 1065037

upgpkg: buildbot 3.4.0-2: Python 3.10 rebuild

Modified:
  buildbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 15:48:10 UTC (rev 1065036)
+++ PKGBUILD2021-12-04 16:02:27 UTC (rev 1065037)
@@ -10,7 +10,7 @@
  python-buildbot-wsgi-dashboards python-buildbot-badges)
 pkgver=3.4.0
 _bb_contrib_commit=4c8615db51253f0be4bfd08210a3aaf903a74b4f
-pkgrel=1
+pkgrel=2
 arch=(any)
 url='https://buildbot.net'
 license=(GPL2)



[arch-commits] Commit in buildbot/trunk (PKGBUILD python310.diff)

2021-12-04 Thread Chih-Hsuan Yen via arch-commits
Date: Saturday, December 4, 2021 @ 15:48:10
  Author: yan12125
Revision: 1065036

buildbot: fix for Python 3.10

Related tickets/PRs:
* https://github.com/python/cpython/pull/20236
* https://twistedmatrix.com/trac/ticket/10273

Added:
  buildbot/trunk/python310.diff
Modified:
  buildbot/trunk/PKGBUILD

+
 PKGBUILD   |   11 +--
 python310.diff |   33 +
 2 files changed, 42 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 13:32:06 UTC (rev 1065035)
+++ PKGBUILD2021-12-04 15:48:10 UTC (rev 1065036)
@@ -28,11 +28,13 @@
  git yarn)
 
source=("https://github.com/buildbot/buildbot/releases/download/v$pkgver/buildbot-v$pkgver.gitarchive.tar.gz"{,.asc}
 
"git+https://github.com/buildbot/buildbot-contrib.git#commit=$_bb_contrib_commit;
-
"buildbot-contrib-systemd-common.patch::https://github.com/buildbot/buildbot-contrib/pull/22.patch;)
+
"buildbot-contrib-systemd-common.patch::https://github.com/buildbot/buildbot-contrib/pull/22.patch;
+"python310.diff")
 sha256sums=('da729c7f4dc2e30f5a5d69e34dd629b0b3d97001b12d72aeb691bb2f0ef0efeb'
 'SKIP'
 'SKIP'
-'896eede4c33a8574d7c29ac4a28cebbe3d7e850931a86e945328f8ea358195a9')
+'896eede4c33a8574d7c29ac4a28cebbe3d7e850931a86e945328f8ea358195a9'
+'7ca79a209e5f77dff01bef526d92a0ac08cf65a6ab22f32d03575c97a5b49ebd')
 validpgpkeys=(
   '390EB159056ED56F66AB1092AECD456B4D2531FC'  # Pierre Tardy 
 (@tardyp on GitHub)
   'FD0004A26EADFE43A4C3F249C6F7AE200374452D'  # Povilas Kanapickas 
 (@p12tic on GitHub)
@@ -57,6 +59,11 @@
   rm -v master/buildbot/scripts/windows_service.py
   rm -v worker/buildbot_worker/scripts/windows_service.py
 
+  # Fixes for Python 3.10 breakages:
+  # https://github.com/python/cpython/pull/20236
+  # https://twistedmatrix.com/trac/ticket/10273
+  patch -Np1 -i ../python310.diff
+
   cd "$srcdir"/buildbot-contrib
   patch -Np1 -i ../buildbot-contrib-systemd-common.patch
 }

Added: python310.diff
===
--- python310.diff  (rev 0)
+++ python310.diff  2021-12-04 15:48:10 UTC (rev 1065036)
@@ -0,0 +1,33 @@
+diff --git a/master/buildbot/test/unit/www/test_ws.py 
b/master/buildbot/test/unit/www/test_ws.py
+index 43dfce5a7..21f4b3b5c 100644
+--- a/master/buildbot/test/unit/www/test_ws.py
 b/master/buildbot/test/unit/www/test_ws.py
+@@ -92,7 +92,7 @@ class WsResource(TestReactorMixin, www.WwwTestMixin, 
unittest.TestCase):
+ {
+ "_id": 1,
+ "code": 400,
+-"error": "Invalid method argument 'cmd_ping() got an 
unexpected keyword "
++"error": "Invalid method argument 'WsProtocol.cmd_ping() got 
an unexpected keyword "
+ "argument 'foo''",
+ },
+ )
+@@ -106,7 +106,7 @@ class WsResource(TestReactorMixin, www.WwwTestMixin, 
unittest.TestCase):
+ self.proto.sendMessage,
+ {
+ "id": None,
+-"message": "Invalid method argument 
'graphql_cmd_connection_init() got an "
++"message": "Invalid method argument 
'WsProtocol.graphql_cmd_connection_init() got an "
+ "unexpected keyword argument 'foo''",
+ "type": "error",
+ },
+diff --git a/master/buildbot/test/__init__.py 
b/master/buildbot/test/__init__.py
+index 8c8f53823..0f176028a 100644
+--- a/master/buildbot/test/__init__.py
 b/master/buildbot/test/__init__.py
+@@ -128,3 +128,6 @@ warnings.filterwarnings('ignore', ".*Not importing 
directory .*/sphinxcontrib: m
+ # https://github.com/pypa/setuptools/issues/2086
+ warnings.filterwarnings('ignore', ".*lib2to3 package is deprecated",
+ category=PendingDeprecationWarning)
++
++warnings.filterwarnings('ignore', r".*currentThread\(\) is deprecated, use 
current_thread\(\) instead.*",
++category=DeprecationWarning)



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

2021-12-04 Thread Felix Yan via arch-commits
Date: Saturday, December 4, 2021 @ 13:32:06
  Author: felixonmars
Revision: 1065035

archrelease: copy trunk to community-staging-any

Added:
  python-flask-cors/repos/community-staging-any/PKGBUILD
(from rev 1065034, python-flask-cors/trunk/PKGBUILD)
Deleted:
  python-flask-cors/repos/community-staging-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-12-04 13:31:57 UTC (rev 1065034)
+++ PKGBUILD2021-12-04 13:32:06 UTC (rev 1065035)
@@ -1,33 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=python-flask-cors
-pkgver=3.0.10
-pkgrel=2
-
-pkgdesc='A Flask extension adding a decorator for CORS support'
-url='https://pypi.org/project/Flask-Cors'
-arch=('any')
-license=('MIT')
-
-depends=('python-flask' 'python-six')
-makedepends=('python-setuptools')
-
-source=("https://pypi.org/packages/source/F/Flask-Cors/Flask-Cors-$pkgver.tar.gz;)
-
-sha256sums=('b60839393f3b84a0f3746f6cdca56c1ad7426aa738b70d6c61375857823181de')
-
-build() {
-   cd Flask-Cors-$pkgver
-   python setup.py build
-}
-
-check() {
-   cd Flask-Cors-$pkgver
-   python setup.py test
-}
-
-package() {
-   cd Flask-Cors-$pkgver
-   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-   install -Dm655 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-flask-cors/repos/community-staging-any/PKGBUILD (from rev 
1065034, python-flask-cors/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-12-04 13:32:06 UTC (rev 1065035)
@@ -0,0 +1,34 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=python-flask-cors
+pkgver=3.0.10
+pkgrel=3
+
+pkgdesc='A Flask extension adding a decorator for CORS support'
+url='https://pypi.org/project/Flask-Cors'
+arch=('any')
+license=('MIT')
+
+depends=('python-flask' 'python-six')
+makedepends=('python-setuptools')
+checkdepends=('python-nose')
+
+source=("https://pypi.org/packages/source/F/Flask-Cors/Flask-Cors-$pkgver.tar.gz;)
+
+sha256sums=('b60839393f3b84a0f3746f6cdca56c1ad7426aa738b70d6c61375857823181de')
+
+build() {
+   cd Flask-Cors-$pkgver
+   python setup.py build
+}
+
+check() {
+   cd Flask-Cors-$pkgver
+   python setup.py test
+}
+
+package() {
+   cd Flask-Cors-$pkgver
+   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+   install -Dm655 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-12-04 Thread Felix Yan via arch-commits
Date: Saturday, December 4, 2021 @ 13:31:57
  Author: felixonmars
Revision: 1065034

upgpkg: python-flask-cors 3.0.10-3: Python 3.10 rebuild

Modified:
  python-flask-cors/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 13:22:10 UTC (rev 1065033)
+++ PKGBUILD2021-12-04 13:31:57 UTC (rev 1065034)
@@ -2,7 +2,7 @@
 
 pkgname=python-flask-cors
 pkgver=3.0.10
-pkgrel=2
+pkgrel=3
 
 pkgdesc='A Flask extension adding a decorator for CORS support'
 url='https://pypi.org/project/Flask-Cors'



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

2021-12-04 Thread Morten Linderud via arch-commits
Date: Saturday, December 4, 2021 @ 13:22:10
  Author: foxboron
Revision: 1065033

archrelease: copy trunk to community-staging-x86_64

Added:
  python-ppmd-cffi/repos/community-staging-x86_64/
  python-ppmd-cffi/repos/community-staging-x86_64/PKGBUILD
(from rev 1065032, python-ppmd-cffi/trunk/PKGBUILD)

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

Copied: python-ppmd-cffi/repos/community-staging-x86_64/PKGBUILD (from rev 
1065032, python-ppmd-cffi/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-12-04 13:22:10 UTC (rev 1065033)
@@ -0,0 +1,34 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=ppmd-cffi
+pkgname=python-ppmd-cffi
+pkgver=0.5.0
+pkgrel=2
+pkgdesc="PPMd compression/decompression library"
+arch=('x86_64')
+url="https://github.com/miurahr/ppmd;
+license=('LGPL')
+depends=('python-cffi')
+makedepends=('python-setuptools-scm')
+checkdepends=('python-hypothesis' 'python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz;)
+sha256sums=('2fa0a65813885e3243aa8d750c1ae08cc4834fbfce2a5341c7d44d9704bdf96e')
+b2sums=('063a7a2e69a790d750ecc0efed77ae14d5203e06c74bd42b487e8901f147410964948846a258f2f2cff6864d8ecdb2f95758cfaf36af1662fbebb11cac681eaf')
+
+build(){
+cd ${_pkgname}-${pkgver}
+python setup.py build
+}
+
+check() {
+cd ${_pkgname}-${pkgver}
+
+pythonpaths=("$PWD/build/lib.linux-$CARCH"-3*)
+PYTHONPATH="${pythonpaths[0]}" pytest -rsx -k 'not test_cli_help'
+}
+
+package() {
+cd ${_pkgname}-${pkgver}
+
+python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}



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

2021-12-04 Thread Morten Linderud via arch-commits
Date: Saturday, December 4, 2021 @ 13:22:05
  Author: foxboron
Revision: 1065032

upgpkg: python-ppmd-cffi 0.5.0-2

Modified:
  python-ppmd-cffi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-12-04 13:18:46 UTC (rev 1065031)
+++ PKGBUILD2021-12-04 13:22:05 UTC (rev 1065032)
@@ -3,7 +3,7 @@
 _pkgname=ppmd-cffi
 pkgname=python-ppmd-cffi
 pkgver=0.5.0
-pkgrel=1
+pkgrel=2
 pkgdesc="PPMd compression/decompression library"
 arch=('x86_64')
 url="https://github.com/miurahr/ppmd;
@@ -16,20 +16,19 @@
 
b2sums=('063a7a2e69a790d750ecc0efed77ae14d5203e06c74bd42b487e8901f147410964948846a258f2f2cff6864d8ecdb2f95758cfaf36af1662fbebb11cac681eaf')
 
 build(){
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
+cd ${_pkgname}-${pkgver}
 python setup.py build
 }
 
 check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
+cd ${_pkgname}-${pkgver}
 
 pythonpaths=("$PWD/build/lib.linux-$CARCH"-3*)
-PYTHONPATH="${pythonpaths[0]}" pytest -rsx
+PYTHONPATH="${pythonpaths[0]}" pytest -rsx -k 'not test_cli_help'
 }
 
 package() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
+cd ${_pkgname}-${pkgver}
 
 python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
 }



  1   2   >