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

2022-06-26 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 27, 2022 @ 02:23:13
  Author: svenstaro
Revision: 1239605

archrelease: copy trunk to community-x86_64

Added:
  
neovim/repos/community-x86_64/0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch
(from rev 1239604, 
neovim/trunk/0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch)
  neovim/repos/community-x86_64/PKGBUILD
(from rev 1239604, neovim/trunk/PKGBUILD)
Deleted:
  
neovim/repos/community-x86_64/0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch
  neovim/repos/community-x86_64/PKGBUILD

-+
 0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch |  128 
+-
 PKGBUILD|  128 
+-
 2 files changed, 128 insertions(+), 128 deletions(-)

Deleted: 0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch
===
--- 0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch 
2022-06-27 02:23:07 UTC (rev 1239604)
+++ 0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch 
2022-06-27 02:23:13 UTC (rev 1239605)
@@ -1,64 +0,0 @@
-From  Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Thu, 4 Nov 2021 22:04:17 +
-Subject: [PATCH] patch_terminfo_bugs: Extend smglr ignores to smglp and smgrp
-
-The latter were added for xterm by ncurses 6.3 and are similarly
-affected.
-
-Fixes https://github.com/neovim/neovim/issues/16238

- src/nvim/tui/tui.c | 16 
- 1 file changed, 16 insertions(+)
-
-diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c
-index f9c5521bdb63..bb752863692d 100644
 a/src/nvim/tui/tui.c
-+++ b/src/nvim/tui/tui.c
-@@ -1663,30 +1663,46 @@ static void patch_terminfo_bugs(TUIData *data, const 
char *term, const char *col
- ILOG("Disabling smglr with TERM=xterm for non-xterm.");
- unibi_set_str(ut, unibi_set_lr_margin, NULL);
-   }
-+  if (unibi_get_str(ut, unibi_set_left_margin_parm)) {
-+ILOG("Disabling smglp with TERM=xterm for non-xterm.");
-+unibi_set_str(ut, unibi_set_left_margin_parm, NULL);
-+  }
-+  if (unibi_get_str(ut, unibi_set_right_margin_parm)) {
-+ILOG("Disabling smgrp with TERM=xterm for non-xterm.");
-+unibi_set_str(ut, unibi_set_right_margin_parm, NULL);
-+  }
- }
- 
- #ifdef WIN32
- // XXX: workaround libuv implicit LF => CRLF conversion. #10558
- unibi_set_str(ut, unibi_cursor_down, "\x1b[B");
- #endif
-   } else if (rxvt) {
- // 2017-04 terminfo.src lacks these.  Unicode rxvt has them.
- unibi_set_if_empty(ut, unibi_enter_italics_mode, "\x1b[3m");
- unibi_set_if_empty(ut, unibi_exit_italics_mode, "\x1b[23m");
- unibi_set_if_empty(ut, unibi_to_status_line, "\x1b]2");
- unibi_set_if_empty(ut, unibi_from_status_line, "\x07");
- // 2017-04 terminfo.src has older control sequences.
- unibi_set_str(ut, unibi_enter_ca_mode, "\x1b[?1049h");
- unibi_set_str(ut, unibi_exit_ca_mode, "\x1b[?1049l");
-   } else if (screen) {
- // per the screen manual; 2017-04 terminfo.src lacks these.
- unibi_set_if_empty(ut, unibi_to_status_line, "\x1b_");
- unibi_set_if_empty(ut, unibi_from_status_line, "\x1b\\");
- // Fix an issue where smglr is inherited by TERM=screen.xterm.
- if (unibi_get_str(ut, unibi_set_lr_margin)) {
-   ILOG("Disabling smglr with TERM=screen.xterm for screen.");
-   unibi_set_str(ut, unibi_set_lr_margin, NULL);
- }
-+if (unibi_get_str(ut, unibi_set_left_margin_parm)) {
-+  ILOG("Disabling smglp with TERM=screen.xterm for screen.");
-+  unibi_set_str(ut, unibi_set_left_margin_parm, NULL);
-+}
-+if (unibi_get_str(ut, unibi_set_right_margin_parm)) {
-+  ILOG("Disabling smgrp with TERM=screen.xterm for screen.");
-+  unibi_set_str(ut, unibi_set_right_margin_parm, NULL);
-+}
-   } else if (tmux) {
- unibi_set_if_empty(ut, unibi_to_status_line, "\x1b_");
- unibi_set_if_empty(ut, unibi_from_status_line, "\x1b\\");

Copied: 
neovim/repos/community-x86_64/0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch
 (from rev 1239604, 
neovim/trunk/0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch)
===
--- 0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch 
(rev 0)
+++ 0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch 
2022-06-27 02:23:13 UTC (rev 1239605)
@@ -0,0 +1,64 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Thu, 4 Nov 2021 22:04:17 +
+Subject: [PATCH] patch_terminfo_bugs: Extend smglr ignores to smglp and smgrp
+
+The latter were added for xterm by ncurses 6.3 and are similarly
+affected.
+
+Fixes 

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

2022-06-26 Thread Sven-Hendrik Haase via arch-commits
Date: Monday, June 27, 2022 @ 02:23:07
  Author: svenstaro
Revision: 1239604

upgpkg: neovim 0.7.2-1

Modified:
  neovim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-27 01:15:42 UTC (rev 1239603)
+++ PKGBUILD2022-06-27 02:23:07 UTC (rev 1239604)
@@ -4,7 +4,7 @@
 # Contributor: Florian Hahn 
 
 pkgname=neovim
-pkgver=0.7.1
+pkgver=0.7.2
 pkgrel=1
 pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
 arch=('x86_64')
@@ -20,7 +20,7 @@
 'wl-clipboard: for clipboard support on wayland (see :help 
clipboard)')
 options=(debug)
 
source=("https://github.com/neovim/neovim/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('ebb76b722b77218234fe99a6ede0414eebd4a371dc792288b3a26ff1c5afbc9d8bce314d7c4f637b59c05ca12159680dafe7ac2c35532187cde56d7dd2801eba')
+sha512sums=('04d0fa5b23018531b70b53271821bf6944cde1bcec2210b99f5888e1339cd38f57feaa8e40874a3a504930e6614980947f31852185cbcd2ce106a0867896dd79')
 
 build() {
   export PKG_CONFIG_PATH="/usr/lib/libvterm01/pkgconfig:$PKG_CONFIG_PATH"



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

2022-06-26 Thread Daniel M. Capella via arch-commits
Date: Monday, June 27, 2022 @ 01:15:08
  Author: polyzen
Revision: 1239602

upgpkg: newsboat 2.28-1

Added:
  newsboat/trunk/keys/
  newsboat/trunk/keys/pgp/
  newsboat/trunk/keys/pgp/B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE.asc
Modified:
  newsboat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 23:36:16 UTC (rev 1239601)
+++ PKGBUILD2022-06-27 01:15:08 UTC (rev 1239602)
@@ -3,7 +3,7 @@
 # Contributor: Sven Pfleiderer 
 
 pkgname=newsboat
-pkgver=2.27
+pkgver=2.28
 pkgrel=1
 pkgdesc="An RSS/Atom feed reader for text terminals"
 arch=('x86_64')
@@ -20,7 +20,7 @@
 options=('!makeflags' '!lto')
 changelog=$pkgname.changelog
 source=("https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
-sha256sums=('fd5a40096689d4fc0f18441319197769fa377709821b1a3f1b2ba1f006625285'
+sha256sums=('2508713ac850f1f2ae156e4b42cbc75a1c9e399d804e007b5773019115d3b0ec'
 'SKIP')
 validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') # Newsboat project 

 

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

Index: newsboat/trunk/keys/pgp/B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE.asc
===
--- keys/pgp/B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE.asc   2022-06-26 
23:36:16 UTC (rev 1239601)
+++ keys/pgp/B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE.asc   2022-06-27 
01:15:08 UTC (rev 1239602)

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


[arch-commits] Commit in newsboat/repos/community-x86_64 (5 files)

2022-06-26 Thread Daniel M. Capella via arch-commits
Date: Monday, June 27, 2022 @ 01:15:42
  Author: polyzen
Revision: 1239603

archrelease: copy trunk to community-x86_64

Added:
  newsboat/repos/community-x86_64/PKGBUILD
(from rev 1239602, newsboat/trunk/PKGBUILD)
  newsboat/repos/community-x86_64/keys/
  newsboat/repos/community-x86_64/newsboat.changelog
(from rev 1239602, newsboat/trunk/newsboat.changelog)
Deleted:
  newsboat/repos/community-x86_64/PKGBUILD
  newsboat/repos/community-x86_64/newsboat.changelog

+
 PKGBUILD   |   90 +++
 newsboat.changelog |  192 +--
 2 files changed, 141 insertions(+), 141 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-27 01:15:08 UTC (rev 1239602)
+++ PKGBUILD2022-06-27 01:15:42 UTC (rev 1239603)
@@ -1,45 +0,0 @@
-# Maintainer: Jaroslav Lichtblau 
-# Maintainer: Daniel M. Capella 
-# Contributor: Sven Pfleiderer 
-
-pkgname=newsboat
-pkgver=2.27
-pkgrel=1
-pkgdesc="An RSS/Atom feed reader for text terminals"
-arch=('x86_64')
-url="https://newsboat.org/;
-license=('MIT')
-depends=('curl' 'hicolor-icon-theme' 'json-c' 'libxml2' 'sqlite' 'stfl')
-makedepends=('asciidoctor' 'rust' 'swig')
-optdepends=('buku: for bookmark-buku.sh'
-'kitty: for kitty-img-pager.sh'
-'perl: for pinboard.pl'
-'python: for exportOPMLWithTags.py'
-'ruby: for feedgrabber.rb, heise.rb, and slashdot.rb')
-replaces=('newsbeuter')
-options=('!makeflags' '!lto')
-changelog=$pkgname.changelog
-source=("https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
-sha256sums=('fd5a40096689d4fc0f18441319197769fa377709821b1a3f1b2ba1f006625285'
-'SKIP')
-validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') # Newsboat project 

-
-prepare() {
-  cd $pkgname-$pkgver
-
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  make prefix=/usr
-  make doc
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make prefix=/usr DESTDIR="$pkgdir" install
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-}

Copied: newsboat/repos/community-x86_64/PKGBUILD (from rev 1239602, 
newsboat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-27 01:15:42 UTC (rev 1239603)
@@ -0,0 +1,45 @@
+# Maintainer: Jaroslav Lichtblau 
+# Maintainer: Daniel M. Capella 
+# Contributor: Sven Pfleiderer 
+
+pkgname=newsboat
+pkgver=2.28
+pkgrel=1
+pkgdesc="An RSS/Atom feed reader for text terminals"
+arch=('x86_64')
+url="https://newsboat.org/;
+license=('MIT')
+depends=('curl' 'hicolor-icon-theme' 'json-c' 'libxml2' 'sqlite' 'stfl')
+makedepends=('asciidoctor' 'rust' 'swig')
+optdepends=('buku: for bookmark-buku.sh'
+'kitty: for kitty-img-pager.sh'
+'perl: for pinboard.pl'
+'python: for exportOPMLWithTags.py'
+'ruby: for feedgrabber.rb, heise.rb, and slashdot.rb')
+replaces=('newsbeuter')
+options=('!makeflags' '!lto')
+changelog=$pkgname.changelog
+source=("https://newsboat.org/releases/$pkgver/$pkgname-$pkgver.tar.xz"{,.asc})
+sha256sums=('2508713ac850f1f2ae156e4b42cbc75a1c9e399d804e007b5773019115d3b0ec'
+'SKIP')
+validpgpkeys=('B8B1756A0DDBF0760CE67CCF4ED6CD61932B9EBE') # Newsboat project 

+
+prepare() {
+  cd $pkgname-$pkgver
+
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  make prefix=/usr
+  make doc
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make prefix=/usr DESTDIR="$pkgdir" install
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+}

Deleted: newsboat.changelog
===
--- newsboat.changelog  2022-06-27 01:15:08 UTC (rev 1239602)
+++ newsboat.changelog  2022-06-27 01:15:42 UTC (rev 1239603)
@@ -1,96 +0,0 @@
-2021-06-21 Jaroslav Lichtblau 
-   * newsboat 2.24-1
-
-2020-09-21 Jaroslav Lichtblau 
-   * newsboat 2.21-1
-
-2020-06-24 Jaroslav Lichtblau 
-   * newsboat 2.20.1-1
-
-2020-06-21 Jaroslav Lichtblau 
-   * newsboat 2.20-1
-
-2020-03-23 Jaroslav Lichtblau 
-   * newsboat 2.19-1
-
-2019-12-23 Jaroslav Lichtblau 
-   * newsboat 2.18-1
-
-2019-08-06 Jaroslav Lichtblau 
-   * newsboat 2.16.1-1
-
-2019-03-30 Jaroslav Lichtblau 
-   * newsboat 2.15-1
-
-2019-02-10 Jaroslav Lichtblau 
-   * newsboat 2.14.1-1
-
-2019-01-01 Jaroslav Lichtblau 
-   * newsboat 2.14-1
-
-2018-09-29 Jaroslav Lichtblau 
-   * newsboat 2.13-1
-
-2018-04-10 Jaroslav Lichtblau 
-   * newsboat 2.11.1-1
-
-2018-03-26 Jaroslav Lichtblau 
-   * newsboat 2.11-1
-
-2017-12-27 Jaroslav Lichtblau 
-   * newsboat 2.10.2-1
-
-2017-12-02 Jaroslav Lichtblau 
-   * newsboat 2.10.1-2 FS#56519 fixed
-
-2017-10-21 Jaroslav Lichtblau 
-   * newsboat 

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

2022-06-26 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, June 26, 2022 @ 23:36:16
  Author: svenstaro
Revision: 1239601

archrelease: copy trunk to community-any

Added:
  python-argparse-manpage/repos/community-any/PKGBUILD
(from rev 1239600, python-argparse-manpage/trunk/PKGBUILD)
Deleted:
  python-argparse-manpage/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 23:36:10 UTC (rev 1239600)
+++ PKGBUILD2022-06-26 23:36:16 UTC (rev 1239601)
@@ -1,31 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=python-argparse-manpage
-pkgver=1.5
-pkgrel=3
-pkgdesc='Automatically build man-pages for your Python project'
-url='https://github.com/praiskup/argparse-manpage'
-arch=('any')
-license=('Apache')
-makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/praiskup/argparse-manpage/archive/v${pkgver}.tar.gz;)
-sha512sums=('bfdea19fa62ac029754d6df26c4fb51c18f7fee4fae681c1117253627e724cf1ff1db5196ad0690fd436cebbe403536905f157cb7eae7be50d321c663b491fd0')
-
-build() {
-  cd "$srcdir/argparse-manpage-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$srcdir/argparse-manpage-$pkgver"
-  python setup.py test
-}
-
-package() {
-  cd "$srcdir/argparse-manpage-$pkgver"
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-argparse-manpage/repos/community-any/PKGBUILD (from rev 1239600, 
python-argparse-manpage/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 23:36:16 UTC (rev 1239601)
@@ -0,0 +1,31 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=python-argparse-manpage
+pkgver=3
+pkgrel=1
+pkgdesc='Automatically build man-pages for your Python project'
+url='https://github.com/praiskup/argparse-manpage'
+arch=('any')
+license=('Apache')
+makedepends=('python-setuptools')
+source=("https://github.com/praiskup/argparse-manpage/releases/download/v3/argparse-manpage-${pkgver}.tar.gz;)
+sha512sums=('8bddfc91396ee6c9594baa21126fb3128ebabb8fb96dba1461e0631e0e3070677973b709d998dcea26e31b6d11a9f37a8b37005bb78f7769d45a29be3186a088')
+
+build() {
+  cd "$srcdir/argparse-manpage-$pkgver"
+  python setup.py build
+}
+
+# Currently broken :<
+# check() {
+#   cd "$srcdir/argparse-manpage-$pkgver"
+#   python setup.py test
+# }
+
+package() {
+  cd "$srcdir/argparse-manpage-$pkgver"
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-06-26 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, June 26, 2022 @ 23:36:10
  Author: svenstaro
Revision: 1239600

upgpkg: python-argparse-manpage 3-1

Modified:
  python-argparse-manpage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 23:19:54 UTC (rev 1239599)
+++ PKGBUILD2022-06-26 23:36:10 UTC (rev 1239600)
@@ -1,15 +1,14 @@
-# Maintainer: Sven-Hendrik Haase 
-
+# Maintainer: Sven-Hendrik Haase 
 pkgname=python-argparse-manpage
-pkgver=1.5
-pkgrel=3
+pkgver=3
+pkgrel=1
 pkgdesc='Automatically build man-pages for your Python project'
 url='https://github.com/praiskup/argparse-manpage'
 arch=('any')
 license=('Apache')
 makedepends=('python-setuptools')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/praiskup/argparse-manpage/archive/v${pkgver}.tar.gz;)
-sha512sums=('bfdea19fa62ac029754d6df26c4fb51c18f7fee4fae681c1117253627e724cf1ff1db5196ad0690fd436cebbe403536905f157cb7eae7be50d321c663b491fd0')
+source=("https://github.com/praiskup/argparse-manpage/releases/download/v3/argparse-manpage-${pkgver}.tar.gz;)
+sha512sums=('8bddfc91396ee6c9594baa21126fb3128ebabb8fb96dba1461e0631e0e3070677973b709d998dcea26e31b6d11a9f37a8b37005bb78f7769d45a29be3186a088')
 
 build() {
   cd "$srcdir/argparse-manpage-$pkgver"
@@ -16,10 +15,11 @@
   python setup.py build
 }
 
-check() {
-  cd "$srcdir/argparse-manpage-$pkgver"
-  python setup.py test
-}
+# Currently broken :<
+# check() {
+#   cd "$srcdir/argparse-manpage-$pkgver"
+#   python setup.py test
+# }
 
 package() {
   cd "$srcdir/argparse-manpage-$pkgver"



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

2022-06-26 Thread Orhun Parmaksiz via arch-commits
Date: Sunday, June 26, 2022 @ 23:19:54
  Author: orhun
Revision: 1239599

archrelease: copy trunk to community-x86_64

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

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

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

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



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

2022-06-26 Thread Orhun Parmaksiz via arch-commits
Date: Sunday, June 26, 2022 @ 23:19:46
  Author: orhun
Revision: 1239598

upgpkg: cargo-nextest 0.9.23-1: upstream release

Modified:
  cargo-nextest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 23:12:41 UTC (rev 1239597)
+++ PKGBUILD2022-06-26 23:19:46 UTC (rev 1239598)
@@ -2,7 +2,7 @@
 # Contributor: KokaKiwi 
 
 pkgname=cargo-nextest
-pkgver=0.9.22
+pkgver=0.9.23
 pkgrel=1
 pkgdesc="A next-generation test runner for Rust."
 arch=('x86_64')
@@ -11,8 +11,8 @@
 depends=('gcc-libs')
 makedepends=('cargo')
 
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/cargo-nextest-$pkgver.tar.gz")
-sha256sums=('a0ded83da5c243ed1957d56d90762e67c3749b4d7d486e579794f50bd064aa43')
-b2sums=('39abe56c0487db23c0194401e568f4f2a80dafdd312bec5e6d282e90fcd7d284b9965c22962b3d7d54ee7bc027fc08aab041dc742eeb76cd633867a483ca401f')
+sha256sums=('955369402febff493326080f1ef423f07f9d2fc1abbe0f52793c1a6f2a4b73af')
+b2sums=('a6e24899241708a770a30a94a0df539b282255f744840ed910af2fde90b40a4e60976bc641eafc71e989549571c31a12aeeabc094abea3c777498b778e13a0f8')
 options=('!lto')
 
 prepare() {



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

2022-06-26 Thread Orhun Parmaksiz via arch-commits
Date: Sunday, June 26, 2022 @ 23:12:41
  Author: orhun
Revision: 1239597

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 23:12:32 UTC (rev 1239596)
+++ PKGBUILD2022-06-26 23:12:41 UTC (rev 1239597)
@@ -1,38 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-# Contributor: KokaKiwi 
-
-pkgname=cargo-zigbuild
-pkgver=0.10.2
-pkgrel=1
-pkgdesc="Compile Cargo project with zig as linker"
-arch=('x86_64')
-url="https://github.com/messense/cargo-zigbuild;
-license=('MIT')
-depends=('gcc-libs' 'zig')
-makedepends=('cargo')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('5df36e62a36f86e4505b538ee39be3e8497d19e391ad70f8ad744b07b33c929e')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --frozen
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  cargo test --frozen
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cargo-zigbuild/repos/community-x86_64/PKGBUILD (from rev 1239596, 
cargo-zigbuild/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 23:12:41 UTC (rev 1239597)
@@ -0,0 +1,38 @@
+# Maintainer: Orhun Parmaksız 
+# Contributor: KokaKiwi 
+
+pkgname=cargo-zigbuild
+pkgver=0.10.3
+pkgrel=1
+pkgdesc="Compile Cargo project with zig as linker"
+arch=('x86_64')
+url="https://github.com/messense/cargo-zigbuild;
+license=('MIT')
+depends=('gcc-libs' 'zig')
+makedepends=('cargo')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('4b4f95a83392041d893e6f5748267c900cf5597ba75e7365ca6299eee8342bbb')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --frozen
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo test --frozen
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-06-26 Thread Orhun Parmaksiz via arch-commits
Date: Sunday, June 26, 2022 @ 23:12:32
  Author: orhun
Revision: 1239596

upgpkg: cargo-zigbuild 0.10.3-1: upstream release

Modified:
  cargo-zigbuild/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 22:33:06 UTC (rev 1239595)
+++ PKGBUILD2022-06-26 23:12:32 UTC (rev 1239596)
@@ -2,7 +2,7 @@
 # Contributor: KokaKiwi 
 
 pkgname=cargo-zigbuild
-pkgver=0.10.2
+pkgver=0.10.3
 pkgrel=1
 pkgdesc="Compile Cargo project with zig as linker"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('gcc-libs' 'zig')
 makedepends=('cargo')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('5df36e62a36f86e4505b538ee39be3e8497d19e391ad70f8ad744b07b33c929e')
+sha256sums=('4b4f95a83392041d893e6f5748267c900cf5597ba75e7365ca6299eee8342bbb')
 
 prepare() {
   cd "$pkgname-$pkgver"



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

2022-06-26 Thread Christian Hesse via arch-commits
Date: Sunday, June 26, 2022 @ 22:33:06
  Author: eworm
Revision: 1239595

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-libidn/repos/multilib-testing-x86_64/
  lib32-libidn/repos/multilib-testing-x86_64/PKGBUILD
(from rev 1239594, lib32-libidn/trunk/PKGBUILD)
  lib32-libidn/repos/multilib-testing-x86_64/keys/

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

Copied: lib32-libidn/repos/multilib-testing-x86_64/PKGBUILD (from rev 1239594, 
lib32-libidn/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2022-06-26 22:33:06 UTC (rev 1239595)
@@ -0,0 +1,34 @@
+# Maintainer: Florian Pritz 
+
+_pkgbasename=libidn
+pkgname=lib32-$_pkgbasename
+pkgver=1.41
+pkgrel=1
+pkgdesc="Implementation of the Stringprep, Punycode and IDNA specifications 
(32 bit)"
+url="https://www.gnu.org/software/libidn/;
+arch=('x86_64')
+license=('GPL3' 'LGPL')
+depends=('lib32-glibc' "$_pkgbasename>=$pkgver")
+source=("https://ftp.gnu.org/gnu/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz"{,.sig})
+validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C'  # Simon Josefsson 

+  'B1D2BD1375BECB784CF4F8C4D73CF638C53C06BE'  # Simon Josefsson 

+  '1CB27DBC98614B2D5841646D08302DB6A2670428') # Tim Rühsen 

+sha256sums=('884d706364b81abdd17bee9686d8ff2ae7431c5a14651047c68adf8b31fd8945'
+'SKIP')
+
+build() {
+  cd ${_pkgbasename}-${pkgver}
+
+  ./configure \
+CC='gcc -m32' \
+--prefix=/usr \
+--libdir=/usr/lib32
+  make
+}
+
+package() {
+  cd ${_pkgbasename}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+}



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

2022-06-26 Thread Christian Hesse via arch-commits
Date: Sunday, June 26, 2022 @ 22:33:04
  Author: eworm
Revision: 1239594

upgpkg: lib32-libidn 1.41-1: new upstream release

Modified:
  lib32-libidn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 22:08:49 UTC (rev 1239593)
+++ PKGBUILD2022-06-26 22:33:04 UTC (rev 1239594)
@@ -2,7 +2,7 @@
 
 _pkgbasename=libidn
 pkgname=lib32-$_pkgbasename
-pkgver=1.40
+pkgver=1.41
 pkgrel=1
 pkgdesc="Implementation of the Stringprep, Punycode and IDNA specifications 
(32 bit)"
 url="https://www.gnu.org/software/libidn/;
@@ -13,7 +13,7 @@
 validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C'  # Simon Josefsson 

   'B1D2BD1375BECB784CF4F8C4D73CF638C53C06BE'  # Simon Josefsson 

   '1CB27DBC98614B2D5841646D08302DB6A2670428') # Tim Rühsen 

-sha256sums=('527f673b8043d7189c056dd478b07af82492ecf118aa3e0ef0dc98c11af79991'
+sha256sums=('884d706364b81abdd17bee9686d8ff2ae7431c5a14651047c68adf8b31fd8945'
 'SKIP')
 
 build() {



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

2022-06-26 Thread Christian Hesse via arch-commits
Date: Sunday, June 26, 2022 @ 22:30:59
  Author: eworm
Revision: 449452

archrelease: copy trunk to testing-x86_64

Added:
  libidn/repos/testing-x86_64/
  libidn/repos/testing-x86_64/PKGBUILD
(from rev 449451, libidn/trunk/PKGBUILD)
  libidn/repos/testing-x86_64/keys/

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

Copied: libidn/repos/testing-x86_64/PKGBUILD (from rev 449451, 
libidn/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-06-26 22:30:59 UTC (rev 449452)
@@ -0,0 +1,42 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Jan de Groot 
+# Contributor: Eric Johnson 
+
+pkgname=libidn
+pkgver=1.41
+pkgrel=1
+pkgdesc="Implementation of the Stringprep, Punycode and IDNA specifications"
+url="https://www.gnu.org/software/libidn/;
+arch=('x86_64')
+license=('GPL3' 'LGPL')
+depends=('glibc')
+options=('debug')
+source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C'  # Simon Josefsson 

+  'B1D2BD1375BECB784CF4F8C4D73CF638C53C06BE'  # Simon Josefsson 

+  '1CB27DBC98614B2D5841646D08302DB6A2670428') # Tim Rühsen 

+sha256sums=('884d706364b81abdd17bee9686d8ff2ae7431c5a14651047c68adf8b31fd8945'
+'SKIP')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  ./configure \
+--prefix=/usr
+  make
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+
+  make check
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+  # doc html installation - gtk-doc isn't supported anymore - FS#55151
+  mkdir -p "${pkgdir}/usr/share/gtk-doc/html/${pkgname}"
+  cp -r -v doc/reference/html/* "${pkgdir}/usr/share/gtk-doc/html/${pkgname}"
+}



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

2022-06-26 Thread Christian Hesse via arch-commits
Date: Sunday, June 26, 2022 @ 22:30:52
  Author: eworm
Revision: 449451

upgpkg: libidn 1.41-1: new upstream release

Modified:
  libidn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 21:38:03 UTC (rev 449450)
+++ PKGBUILD2022-06-26 22:30:52 UTC (rev 449451)
@@ -3,7 +3,7 @@
 # Contributor: Eric Johnson 
 
 pkgname=libidn
-pkgver=1.40
+pkgver=1.41
 pkgrel=1
 pkgdesc="Implementation of the Stringprep, Punycode and IDNA specifications"
 url="https://www.gnu.org/software/libidn/;
@@ -15,7 +15,7 @@
 validpgpkeys=('9AA9BDB11BB1B99A21285A330664A76954265E8C'  # Simon Josefsson 

   'B1D2BD1375BECB784CF4F8C4D73CF638C53C06BE'  # Simon Josefsson 

   '1CB27DBC98614B2D5841646D08302DB6A2670428') # Tim Rühsen 

-sha256sums=('527f673b8043d7189c056dd478b07af82492ecf118aa3e0ef0dc98c11af79991'
+sha256sums=('884d706364b81abdd17bee9686d8ff2ae7431c5a14651047c68adf8b31fd8945'
 'SKIP')
 
 build() {



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

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 22:08:49
  Author: arojas
Revision: 1239593

archrelease: copy trunk to community-any

Added:
  python-authlib/repos/community-any/PKGBUILD
(from rev 1239592, python-authlib/trunk/PKGBUILD)
  python-authlib/repos/community-any/keys/
Deleted:
  python-authlib/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 22:08:39 UTC (rev 1239592)
+++ PKGBUILD2022-06-26 22:08:49 UTC (rev 1239593)
@@ -1,54 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=authlib
-pkgname=python-authlib
-pkgver=0.15.5
-_commit=d8e428c9350c792fc3d25dbaaffa3bfefaabd8e3
-pkgrel=3
-pkgdesc="The ultimate Python library in building OAuth and OpenID Connect 
servers"
-arch=('any')
-url="https://github.com/lepture/${_pkgname};
-license=('BSD')
-depends=('python-cryptography')
-makedepends=('git' 'python-setuptools')
-checkdepends=('python-pytest-asyncio' 'python-pytest-django' 'python-requests'
-  'python-django' 'python-flask-sqlalchemy' 'python-httpx' 
'python-starlette')
-source=("git+${url}.git#commit=${_commit}?signed")
-b2sums=('SKIP')
-validpgpkeys=('72F8E895A70CEBDF4F2ADFE07E55E3E0118B2B4C') # Hsiaoming (UJET) 

-
-pkgver() {
-cd "${srcdir}"/${_pkgname}
-
-git describe --exact-match --tags | sed 's/^v//'
-}
-
-prepare() {
-cd "${srcdir}"/${_pkgname}
-
-# no need to install an additional copy of the stdlib
-find tests -name \*.py -exec sed -i 's/^import mock$/from unittest import 
mock/' {} +
-}
-
-build() {
-cd "${srcdir}"/${_pkgname}
-
-python setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}
-
-# Some tests fail is run with Django with Flask tests
-# https://github.com/lepture/authlib/issues/284
-python -m pytest --ignore tests/django --ignore tests/flask
-python -m pytest tests/django
-python -m pytest tests/flask
-}
-
-package() {
-cd "${srcdir}"/${_pkgname}
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-authlib/repos/community-any/PKGBUILD (from rev 1239592, 
python-authlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 22:08:49 UTC (rev 1239593)
@@ -0,0 +1,51 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=authlib
+pkgname=python-authlib
+pkgver=1.0.1
+pkgrel=3
+pkgdesc="The ultimate Python library in building OAuth and OpenID Connect 
servers"
+arch=('any')
+url="https://github.com/lepture/authlib;
+license=('BSD')
+depends=('python-cryptography')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest-asyncio' 'python-pytest-django' 'python-requests'
+  'python-django' 'python-flask-sqlalchemy' 'python-httpx' 
'python-starlette' 'python-cachelib')
+source=("https://github.com/lepture/authlib/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('e560775b2a829eab380a085cdb61cf52cfaab42bc748c44bd95a3519d35c8fd8')
+validpgpkeys=('72F8E895A70CEBDF4F2ADFE07E55E3E0118B2B4C') # Hsiaoming (UJET) 

+
+prepare() {
+  cd ${_pkgname}-$pkgver
+
+  # no need to install an additional copy of the stdlib
+  find tests -name \*.py -exec sed -i 's/^import mock$/from unittest import 
mock/' {} +
+}
+
+build() {
+  cd ${_pkgname}-$pkgver
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd ${_pkgname}-$pkgver
+
+  export PYTHONPATH="$PWD"
+  pytest tests/core -v
+  pytest tests/flask -v
+# https://github.com/lepture/authlib/issues/456
+  pytest tests/jose -v -k 'not (test_dir_alg_xc20p or 
test_xc20p_content_encryption_decryption)'
+  export DJANGO_SETTINGS_MODULE=tests.clients.test_django.settings
+  pytest tests/clients -v
+  export DJANGO_SETTINGS_MODULE=tests.django.settings
+  pytest tests/django -v
+}
+
+package() {
+  cd ${_pkgname}-$pkgver
+
+  python -m installer --destdir="${pkgdir}" dist/*.whl
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}



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

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 22:08:39
  Author: arojas
Revision: 1239592

upgpkg: python-authlib 1.0.1-3

Added:
  python-authlib/trunk/keys/
  python-authlib/trunk/keys/pgp/
  python-authlib/trunk/keys/pgp/72F8E895A70CEBDF4F2ADFE07E55E3E0118B2B4C.asc

--+
 72F8E895A70CEBDF4F2ADFE07E55E3E0118B2B4C.asc |1 +
 1 file changed, 1 insertion(+)

Added: keys/pgp/72F8E895A70CEBDF4F2ADFE07E55E3E0118B2B4C.asc
===
(Binary files differ)

Index: 
python-authlib/trunk/keys/pgp/72F8E895A70CEBDF4F2ADFE07E55E3E0118B2B4C.asc
===
--- keys/pgp/72F8E895A70CEBDF4F2ADFE07E55E3E0118B2B4C.asc   2022-06-26 
22:08:24 UTC (rev 1239591)
+++ keys/pgp/72F8E895A70CEBDF4F2ADFE07E55E3E0118B2B4C.asc   2022-06-26 
22:08:39 UTC (rev 1239592)

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


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

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 22:08:24
  Author: arojas
Revision: 1239591

Update to 1.0.1

Modified:
  python-authlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 21:52:05 UTC (rev 1239590)
+++ PKGBUILD2022-06-26 22:08:24 UTC (rev 1239591)
@@ -2,53 +2,50 @@
 
 _pkgname=authlib
 pkgname=python-authlib
-pkgver=0.15.5
-_commit=d8e428c9350c792fc3d25dbaaffa3bfefaabd8e3
+pkgver=1.0.1
 pkgrel=3
 pkgdesc="The ultimate Python library in building OAuth and OpenID Connect 
servers"
 arch=('any')
-url="https://github.com/lepture/${_pkgname};
+url="https://github.com/lepture/authlib;
 license=('BSD')
 depends=('python-cryptography')
-makedepends=('git' 'python-setuptools')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
 checkdepends=('python-pytest-asyncio' 'python-pytest-django' 'python-requests'
-  'python-django' 'python-flask-sqlalchemy' 'python-httpx' 
'python-starlette')
-source=("git+${url}.git#commit=${_commit}?signed")
-b2sums=('SKIP')
+  'python-django' 'python-flask-sqlalchemy' 'python-httpx' 
'python-starlette' 'python-cachelib')
+source=("https://github.com/lepture/authlib/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('e560775b2a829eab380a085cdb61cf52cfaab42bc748c44bd95a3519d35c8fd8')
 validpgpkeys=('72F8E895A70CEBDF4F2ADFE07E55E3E0118B2B4C') # Hsiaoming (UJET) 

 
-pkgver() {
-cd "${srcdir}"/${_pkgname}
-
-git describe --exact-match --tags | sed 's/^v//'
-}
-
 prepare() {
-cd "${srcdir}"/${_pkgname}
+  cd ${_pkgname}-$pkgver
 
-# no need to install an additional copy of the stdlib
-find tests -name \*.py -exec sed -i 's/^import mock$/from unittest import 
mock/' {} +
+  # no need to install an additional copy of the stdlib
+  find tests -name \*.py -exec sed -i 's/^import mock$/from unittest import 
mock/' {} +
 }
 
 build() {
-cd "${srcdir}"/${_pkgname}
+  cd ${_pkgname}-$pkgver
 
-python setup.py build
+  python -m build --wheel --no-isolation
 }
 
 check() {
-cd "${srcdir}"/${_pkgname}
+  cd ${_pkgname}-$pkgver
 
-# Some tests fail is run with Django with Flask tests
-# https://github.com/lepture/authlib/issues/284
-python -m pytest --ignore tests/django --ignore tests/flask
-python -m pytest tests/django
-python -m pytest tests/flask
+  export PYTHONPATH="$PWD"
+  pytest tests/core -v
+  pytest tests/flask -v
+# https://github.com/lepture/authlib/issues/456
+  pytest tests/jose -v -k 'not (test_dir_alg_xc20p or 
test_xc20p_content_encryption_decryption)'
+  export DJANGO_SETTINGS_MODULE=tests.clients.test_django.settings
+  pytest tests/clients -v
+  export DJANGO_SETTINGS_MODULE=tests.django.settings
+  pytest tests/django -v
 }
 
 package() {
-cd "${srcdir}"/${_pkgname}
+  cd ${_pkgname}-$pkgver
 
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  python -m installer --destdir="${pkgdir}" dist/*.whl
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }



[arch-commits] Commit in python-cachelib (3 files)

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 21:52:05
  Author: arojas
Revision: 1239590

archrelease: copy trunk to community-any

Added:
  python-cachelib/repos/
  python-cachelib/repos/community-any/
  python-cachelib/repos/community-any/PKGBUILD
(from rev 1239589, python-cachelib/trunk/PKGBUILD)

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

Copied: python-cachelib/repos/community-any/PKGBUILD (from rev 1239589, 
python-cachelib/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2022-06-26 21:52:05 UTC (rev 1239590)
@@ -0,0 +1,34 @@
+# Maintainer:
+# Contributor: Filipe Nascimento 
+# Contributor: Julien Nicoulaud 
+
+pkgname=python-cachelib
+_name=${pkgname#python-}
+pkgver=0.8.0
+pkgrel=2
+pkgdesc='A collection of cache libraries in the same API interface. Extracted 
from werkzeug'
+arch=(any)
+url='https://github.com/pallets/cachelib'
+license=(BSD)
+depends=(python)
+makedepends=(python-build python-installer python-setuptools python-wheel)
+checkdepends=(python-pytest-xprocess)
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha256sums=('e358f6f82cf633891f0dbd3996e300b4657716ac44b301df33b9cb2cfd6eea6d')
+
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd $_name-$pkgver
+  PYTHONPATH="$PWD"/src \
+  pytest -v
+}
+
+package() {
+  cd $_name-$pkgver
+  python -m installer --destdir="${pkgdir}" dist/*.whl
+  install -Dm644 LICENSE.rst -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}



[arch-commits] Commit in (3 files)

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 21:51:55
  Author: arojas
Revision: 1239589

New authlib dependency

Added:
  python-cachelib/
  python-cachelib/trunk/
  python-cachelib/trunk/PKGBUILD

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

Added: python-cachelib/trunk/PKGBUILD
===
--- python-cachelib/trunk/PKGBUILD  (rev 0)
+++ python-cachelib/trunk/PKGBUILD  2022-06-26 21:51:55 UTC (rev 1239589)
@@ -0,0 +1,34 @@
+# Maintainer:
+# Contributor: Filipe Nascimento 
+# Contributor: Julien Nicoulaud 
+
+pkgname=python-cachelib
+_name=${pkgname#python-}
+pkgver=0.8.0
+pkgrel=2
+pkgdesc='A collection of cache libraries in the same API interface. Extracted 
from werkzeug'
+arch=(any)
+url='https://github.com/pallets/cachelib'
+license=(BSD)
+depends=(python)
+makedepends=(python-build python-installer python-setuptools python-wheel)
+checkdepends=(python-pytest-xprocess)
+source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+sha256sums=('e358f6f82cf633891f0dbd3996e300b4657716ac44b301df33b9cb2cfd6eea6d')
+
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd $_name-$pkgver
+  PYTHONPATH="$PWD"/src \
+  pytest -v
+}
+
+package() {
+  cd $_name-$pkgver
+  python -m installer --destdir="${pkgdir}" dist/*.whl
+  install -Dm644 LICENSE.rst -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}



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

2022-06-26 Thread David Runge via arch-commits
Date: Sunday, June 26, 2022 @ 21:43:32
  Author: dvzrv
Revision: 1239588

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 21:43:23 UTC (rev 1239587)
+++ PKGBUILD2022-06-26 21:43:32 UTC (rev 1239588)
@@ -1,45 +0,0 @@
-# Maintainer: David Runge 
-
-_name=pynitrokey
-pkgname=python-pynitrokey
-_commit=a56ec02eb0f287da48220894f5f22105033f7d14  # v0.4.24.nitrokey^{}
-pkgver=0.4.24
-pkgrel=1
-pkgdesc="A command line interface for the Nitrokey FIDO2 and Nitrokey Start"
-arch=(any)
-url="https://github.com/Nitrokey/pynitrokey;
-license=(Apache)
-# NOTE: libnitrokey is required for udev rules
-depends=(
-  libnitrokey
-  python-cbor
-  python-cffi
-  python-click
-  python-cryptography
-  python-dateutil
-  python-ecdsa
-  python-fido2
-  python-intelhex
-  python-nkdfu
-  python-pyusb
-  python-requests
-  python-spsdk
-  python-tqdm
-  python-urllib3
-)
-makedepends=(git python-build python-flit python-installer)
-source=(git+https://github.com/nitrokey/pynitrokey#commit=$_commit?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 installer --destdir="$pkgdir" dist/*.whl
-  install -vDm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname/"
-}

Copied: python-pynitrokey/repos/community-any/PKGBUILD (from rev 1239587, 
python-pynitrokey/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 21:43:32 UTC (rev 1239588)
@@ -0,0 +1,45 @@
+# Maintainer: David Runge 
+
+_name=pynitrokey
+pkgname=python-pynitrokey
+_commit=e59456c8c29350c2b7f03d0dccfbd6fa5c95b9bf  # v0.4.25.nitrokey^{}
+pkgver=0.4.25
+pkgrel=1
+pkgdesc="A command line interface for the Nitrokey FIDO2 and Nitrokey Start"
+arch=(any)
+url="https://github.com/Nitrokey/pynitrokey;
+license=(Apache)
+# NOTE: libnitrokey is required for udev rules
+depends=(
+  libnitrokey
+  python-cbor
+  python-cffi
+  python-click
+  python-cryptography
+  python-dateutil
+  python-ecdsa
+  python-fido2
+  python-intelhex
+  python-nkdfu
+  python-pyusb
+  python-requests
+  python-spsdk
+  python-tqdm
+  python-urllib3
+)
+makedepends=(git python-build python-flit python-installer)
+source=(git+https://github.com/nitrokey/pynitrokey#commit=$_commit?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 installer --destdir="$pkgdir" dist/*.whl
+  install -vDm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname/"
+}



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

2022-06-26 Thread David Runge via arch-commits
Date: Sunday, June 26, 2022 @ 21:43:23
  Author: dvzrv
Revision: 1239587

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

Modified:
  python-pynitrokey/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 21:38:14 UTC (rev 1239586)
+++ PKGBUILD2022-06-26 21:43:23 UTC (rev 1239587)
@@ -2,8 +2,8 @@
 
 _name=pynitrokey
 pkgname=python-pynitrokey
-_commit=a56ec02eb0f287da48220894f5f22105033f7d14  # v0.4.24.nitrokey^{}
-pkgver=0.4.24
+_commit=e59456c8c29350c2b7f03d0dccfbd6fa5c95b9bf  # v0.4.25.nitrokey^{}
+pkgver=0.4.25
 pkgrel=1
 pkgdesc="A command line interface for the Nitrokey FIDO2 and Nitrokey Start"
 arch=(any)



[arch-commits] Commit in python-css-parser/repos/community-any (3 files)

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 21:38:14
  Author: arojas
Revision: 1239586

archrelease: copy trunk to community-any

Added:
  python-css-parser/repos/community-any/PKGBUILD
(from rev 1239585, python-css-parser/trunk/PKGBUILD)
  python-css-parser/repos/community-any/keys/
Deleted:
  python-css-parser/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 21:38:03 UTC (rev 1239585)
+++ PKGBUILD2022-06-26 21:38:14 UTC (rev 1239586)
@@ -1,41 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=css-parser
-pkgname=python-css-parser
-pkgver=1.0.6
-pkgrel=5
-pkgdesc="A CSS Cascading Style Sheets library for Python"
-arch=('any')
-url="https://github.com/ebook-utils/${_pkgname};
-license=('LGPL')
-depends=('python')
-makedepends=('python-setuptools')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc}
-
$pkgname-python310.patch::https://github.com/ebook-utils/css-parser/commit/6b5e22217d69.patch)
-sha512sums=('4c623541e1145c91458e7e2028f6a0de652ae2189dc99672fc72f098799d6349edb051bafc0901258481fa3422346303d2ef634392889ee83a29814609cdbd43'
-'SKIP'
-
'02d3b42cade5c6d959b9c1676793dd5098c8abed21b74f60d08e4da538af9a286aaaf84cd994285bf9647e4f565ba58a2f1b8e2e18cdb898d165f7a945019d65')
-validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
-
-prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-patch -Np1 -i ../$pkgname-python310.patch
-}
-
-build() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py test
-}
-
-package() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}

Copied: python-css-parser/repos/community-any/PKGBUILD (from rev 1239585, 
python-css-parser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 21:38:14 UTC (rev 1239586)
@@ -0,0 +1,36 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=css-parser
+pkgname=python-css-parser
+pkgver=1.0.7
+pkgrel=1
+pkgdesc="A CSS Cascading Style Sheets library for Python"
+arch=('any')
+url="https://github.com/ebook-utils/${_pkgname};
+license=('LGPL')
+depends=('python')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
+sha512sums=('51e4ca836b18f963d798a14762bed78cbd3034598cc828dfe81b3f7d921a5bfe52374b0dc6160e1c01e40a8c8147a10664b9f7edeee867ca1086e6a4a96ff162'
+'SKIP')
+validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
+
+build() {
+  cd ${_pkgname}-${pkgver}
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}
+
+  PYTHONPATH="$PWD"/src \
+  pytest -v
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+
+  python -m installer --destdir="${pkgdir}" dist/*.whl
+}



[arch-commits] Commit in python-css-parser/trunk (3 files)

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 21:38:03
  Author: arojas
Revision: 1239585

upgpkg: python-css-parser 1.0.7-1

Added:
  python-css-parser/trunk/keys/
  python-css-parser/trunk/keys/pgp/
  python-css-parser/trunk/keys/pgp/3CE1780F78DD88DF45194FD706BC317B515ACE7C.asc

--+
 3CE1780F78DD88DF45194FD706BC317B515ACE7C.asc |1 +
 1 file changed, 1 insertion(+)

Added: keys/pgp/3CE1780F78DD88DF45194FD706BC317B515ACE7C.asc
===
(Binary files differ)

Index: 
python-css-parser/trunk/keys/pgp/3CE1780F78DD88DF45194FD706BC317B515ACE7C.asc
===
--- keys/pgp/3CE1780F78DD88DF45194FD706BC317B515ACE7C.asc   2022-06-26 
21:37:56 UTC (rev 1239584)
+++ keys/pgp/3CE1780F78DD88DF45194FD706BC317B515ACE7C.asc   2022-06-26 
21:38:03 UTC (rev 1239585)

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


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

2022-06-26 Thread David Runge via arch-commits
Date: Sunday, June 26, 2022 @ 21:38:03
  Author: dvzrv
Revision: 449450

archrelease: copy trunk to testing-x86_64

Added:
  brltty/repos/testing-x86_64/
  brltty/repos/testing-x86_64/PKGBUILD
(from rev 449449, brltty/trunk/PKGBUILD)
  brltty/repos/testing-x86_64/brltty-6.2-systemd_sysusers_groups.patch
(from rev 449449, brltty/trunk/brltty-6.2-systemd_sysusers_groups.patch)
  brltty/repos/testing-x86_64/brltty-6.4-x11_autostart.patch
(from rev 449449, brltty/trunk/brltty-6.4-x11_autostart.patch)
  brltty/repos/testing-x86_64/brltty.install
(from rev 449449, brltty/trunk/brltty.install)

--+
 PKGBUILD |  108 +
 brltty-6.2-systemd_sysusers_groups.patch |   46 
 brltty-6.4-x11_autostart.patch   |   24 ++
 brltty.install   |   12 +++
 4 files changed, 190 insertions(+)

Copied: brltty/repos/testing-x86_64/PKGBUILD (from rev 449449, 
brltty/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-06-26 21:38:03 UTC (rev 449450)
@@ -0,0 +1,108 @@
+# Maintainer: David Runge 
+# Contributor: Alexander Epaneshnikov 
+# Contributor: Tom Gundersen 
+# Contributor: Jan de Groot 
+# Contributor: Giovanni Scafora 
+
+pkgbase=brltty
+pkgname=(brltty brltty-udev-generic)
+pkgver=6.5
+pkgrel=1
+pkgdesc="Braille display driver for Linux/Unix"
+arch=(x86_64)
+url="https://brltty.app;
+license=(LGPL2.1)
+makedepends=(alsa-lib at-spi2-atk at-spi2-core atk bluez-libs cython dbus
+dracut espeak-ng expat festival gcc-libs glibc glib2 gpm icu java-environment
+liblouis libspeechd libxaw ncurses ocaml-ctypes ocaml-findlib pcre2
+polkit python-setuptools speech-dispatcher strip-nondeterminism systemd-libs
+tcl)
+options=(debug !emptydirs)
+source=(
+  https://brltty.app/archive/$pkgname-$pkgver.tar.bz2
+  $pkgname-6.2-systemd_sysusers_groups.patch
+  $pkgname-6.4-x11_autostart.patch
+)
+sha512sums=('7aef484f8f719fe183ea4d83b75962ff1e1fb0002d38ee89bd41808c3cae768cbd65c63cbdcb9a27beecaddc442fb65d8fb9219e48c87a1a02dda4ecc55cc24f'
+
'32ba91271e2247b4a330cd213ed75b591268cb99a79c2efd9ae675804faee027c6b2f782768cb2329a65fc914ca2400b2901f35ce1fc2522c6691b343799eb02'
+
'4871512affefbc178f4204a1b285fc2b5a05ea2d181163195d695b760e9729b3d2d00b5f052abd71379df609c3859d7cbd64128bdefd16e898bbc4368500a9a0')
+b2sums=('9d431c033d0963f6afe59477d2d109029c1bededf4ea333a3347ff8c4c17073af3439a827ff4db44dce08dd2245e1bc57cc2fe443bf44df6225f75ffab2fa244'
+
'036e36d558594bb06af1eb41ff5fc9ae52ccf4bad54556c3f4f81a5e2f31f574039835e5e756455527c327a73d563a3db54a9f32e3478545a2a22c2725aaeee2'
+
'4ebc07a725ef8362233a83118e93901e78943e8dae08f9358b668ff13ab88a65eb9e87c49d106a8c3d87eb62007b230e199107eacb01f92dc683335076c01309')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  patch -Np1 -i ../$pkgbase-6.2-systemd_sysusers_groups.patch
+  patch -Np1 -i ../$pkgbase-6.4-x11_autostart.patch
+  ./autogen
+}
+
+build() {
+  # fat-lto-objects is required for non-mangled static libs
+  CFLAGS+=" -ffat-lto-objects"
+
+  cd $pkgbase-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--mandir=/usr/share/man \
+--with-scripts-directory=/usr/lib/brltty \
+--with-tables-directory=/usr/share/brltty \
+--with-writable-directory=/run/brltty \
+--enable-gpm \
+--disable-stripping
+  make -j1
+  # make brlapi.jar deterministic
+  find . -type f -iname "*.jar" -exec strip-nondeterminism {} \;
+}
+
+package_brltty() {
+  depends=(bluez-libs gcc-libs glibc liblouis libspeechd libasound.so
+  libdbus-1.so libexpat.so libgio-2.0.so libglib-2.0.so libgobject-2.0.so
+  libicuuc.so libgpm.so libncursesw.so libsystemd.so pcre2 polkit)
+  optdepends=(
+'at-spi2-core: X11/GNOME Apps accessibility'
+'atk: ATK bridge for X11/GNOME accessibility'
+'brltty-udev-generic: for initializing brltty with generic USB devices'
+'espeak-ng: espeak-ng driver'
+'java-runtime: Java support'
+'libxaw: X11 support'
+'libxt: X11 support'
+'libx11: for xbrlapi'
+'libxfixes: for xbrlapi'
+'libxtst: for xbrlapi'
+'ocaml: OCaml support'
+'python: Python support'
+'speech-dispatcher: speech-dispatcher driver'
+'tcl: tcl support'
+  )
+  provides=(libbrlapi.so)
+  backup=(
+etc/brltty.conf
+etc/X11/xinit/xinitrc.d/90xbrlapi
+  )
+  install=brltty.install
+
+  cd $pkgbase-$pkgver
+  # installation does not work reliably with many cores, so set jobs to 1
+  make -j1 INSTALL_ROOT="$pkgdir" install
+  make -j1 INSTALL_ROOT="$pkgdir" install-systemd
+  make -j1 INSTALL_ROOT="$pkgdir" install-udev
+  make -j1 INSTALL_ROOT="$pkgdir" install-dracut
+  make -j1 INSTALL_ROOT="$pkgdir" install-polkit
+  install -vDm 644 Documents/$pkgbase.conf -t "$pkgdir/etc/"
+
+  # fix 

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

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 21:37:56
  Author: arojas
Revision: 1239584

Update to 1.0.7

Modified:
  python-css-parser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 21:31:45 UTC (rev 1239583)
+++ PKGBUILD2022-06-26 21:37:56 UTC (rev 1239584)
@@ -2,40 +2,35 @@
 
 _pkgname=css-parser
 pkgname=python-css-parser
-pkgver=1.0.6
-pkgrel=5
+pkgver=1.0.7
+pkgrel=1
 pkgdesc="A CSS Cascading Style Sheets library for Python"
 arch=('any')
 url="https://github.com/ebook-utils/${_pkgname};
 license=('LGPL')
 depends=('python')
-makedepends=('python-setuptools')
-source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc}
-
$pkgname-python310.patch::https://github.com/ebook-utils/css-parser/commit/6b5e22217d69.patch)
-sha512sums=('4c623541e1145c91458e7e2028f6a0de652ae2189dc99672fc72f098799d6349edb051bafc0901258481fa3422346303d2ef634392889ee83a29814609cdbd43'
-'SKIP'
-
'02d3b42cade5c6d959b9c1676793dd5098c8abed21b74f60d08e4da538af9a286aaaf84cd994285bf9647e4f565ba58a2f1b8e2e18cdb898d165f7a945019d65')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz"{,.asc})
+sha512sums=('51e4ca836b18f963d798a14762bed78cbd3034598cc828dfe81b3f7d921a5bfe52374b0dc6160e1c01e40a8c8147a10664b9f7edeee867ca1086e6a4a96ff162'
+'SKIP')
 validpgpkeys=('3CE1780F78DD88DF45194FD706BC317B515ACE7C') # Kovid Goyal (New 
longer key) 
 
-prepare() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-patch -Np1 -i ../$pkgname-python310.patch
-}
-
 build() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
+  cd ${_pkgname}-${pkgver}
 
-python setup.py build
+  python -m build --wheel --no-isolation
 }
 
 check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
+  cd ${_pkgname}-${pkgver}
 
-python setup.py test
+  PYTHONPATH="$PWD"/src \
+  pytest -v
 }
 
 package() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
+  cd ${_pkgname}-${pkgver}
 
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  python -m installer --destdir="${pkgdir}" dist/*.whl
 }



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

2022-06-26 Thread David Runge via arch-commits
Date: Sunday, June 26, 2022 @ 21:37:46
  Author: dvzrv
Revision: 449449

upgpkg: brltty 6.5-1: Upgrade to 6.5.

Remove unnecessary quotes and curly braces.
Split out generic udev rules to separate package, as they cause many USB 
devices to trigger brltty.
Build only with one job, as project can not be built using many...

Modified:
  brltty/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 20:11:51 UTC (rev 449448)
+++ PKGBUILD2022-06-26 21:37:46 UTC (rev 449449)
@@ -4,54 +4,36 @@
 # Contributor: Jan de Groot 
 # Contributor: Giovanni Scafora 
 
-pkgname=brltty
-pkgver=6.4
-pkgrel=10
+pkgbase=brltty
+pkgname=(brltty brltty-udev-generic)
+pkgver=6.5
+pkgrel=1
 pkgdesc="Braille display driver for Linux/Unix"
 arch=(x86_64)
 url="https://brltty.app;
 license=(LGPL2.1)
-depends=(bluez-libs gcc-libs glibc liblouis libspeechd pcre2 polkit)
-makedepends=(alsa-lib at-spi2-atk at-spi2-core atk cython dbus dracut espeak-ng
-expat festival glib2 gpm icu java-environment libxaw ncurses ocaml-ctypes
-ocaml-findlib speech-dispatcher strip-nondeterminism systemd-libs tcl)
-optdepends=(
-  'at-spi2-core: X11/GNOME Apps accessibility'
-  'atk: ATK bridge for X11/GNOME accessibility'
-  'espeak-ng: espeak-ng driver'
-  'java-runtime: Java support'
-  'libxaw: X11 support'
-  'libxt: X11 support'
-  'libx11: for xbrlapi'
-  'libxfixes: for xbrlapi'
-  'libxtst: for xbrlapi'
-  'ocaml: OCaml support'
-  'python: Python support'
-  'speech-dispatcher: speech-dispatcher driver'
-  'tcl: tcl support'
-)
-provides=(libbrlapi.so)
-backup=(
-  etc/brltty.conf
-  etc/X11/xinit/xinitrc.d/90xbrlapi
-)
+makedepends=(alsa-lib at-spi2-atk at-spi2-core atk bluez-libs cython dbus
+dracut espeak-ng expat festival gcc-libs glibc glib2 gpm icu java-environment
+liblouis libspeechd libxaw ncurses ocaml-ctypes ocaml-findlib pcre2
+polkit python-setuptools speech-dispatcher strip-nondeterminism systemd-libs
+tcl)
 options=(debug !emptydirs)
-install=brltty.install
-source=("https://brltty.app/archive/${pkgname}-${pkgver}.tar.bz2;
-"${pkgname}-6.2-systemd_sysusers_groups.patch"
-"${pkgname}-6.4-x11_autostart.patch"
+source=(
+  https://brltty.app/archive/$pkgname-$pkgver.tar.bz2
+  $pkgname-6.2-systemd_sysusers_groups.patch
+  $pkgname-6.4-x11_autostart.patch
 )
-sha512sums=('58394c18d56a2a93a44be1c5dcfd02613581820ea2d2dbd945372ea11e066a18a75832ea04f09cf7f411e6dd1cd4ec78574f317dafcbc5c431dcf0db21b93690'
+sha512sums=('7aef484f8f719fe183ea4d83b75962ff1e1fb0002d38ee89bd41808c3cae768cbd65c63cbdcb9a27beecaddc442fb65d8fb9219e48c87a1a02dda4ecc55cc24f'
 
'32ba91271e2247b4a330cd213ed75b591268cb99a79c2efd9ae675804faee027c6b2f782768cb2329a65fc914ca2400b2901f35ce1fc2522c6691b343799eb02'
 
'4871512affefbc178f4204a1b285fc2b5a05ea2d181163195d695b760e9729b3d2d00b5f052abd71379df609c3859d7cbd64128bdefd16e898bbc4368500a9a0')
-b2sums=('2c31b8282f0bc4730e406772c8b5aa72b1650e3290cfe967ec668394627440f84afe936bfbdbdab9ee0e7ba93ef466950295dbd7d979b639605fe619b5c170bd'
+b2sums=('9d431c033d0963f6afe59477d2d109029c1bededf4ea333a3347ff8c4c17073af3439a827ff4db44dce08dd2245e1bc57cc2fe443bf44df6225f75ffab2fa244'
 
'036e36d558594bb06af1eb41ff5fc9ae52ccf4bad54556c3f4f81a5e2f31f574039835e5e756455527c327a73d563a3db54a9f32e3478545a2a22c2725aaeee2'
 
'4ebc07a725ef8362233a83118e93901e78943e8dae08f9358b668ff13ab88a65eb9e87c49d106a8c3d87eb62007b230e199107eacb01f92dc683335076c01309')
 
 prepare() {
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i ../"${pkgname}-6.2-systemd_sysusers_groups.patch"
-  patch -Np1 -i ../"${pkgname}-6.4-x11_autostart.patch"
+  cd $pkgbase-$pkgver
+  patch -Np1 -i ../$pkgbase-6.2-systemd_sysusers_groups.patch
+  patch -Np1 -i ../$pkgbase-6.4-x11_autostart.patch
   ./autogen
 }
 
@@ -58,34 +40,69 @@
 build() {
   # fat-lto-objects is required for non-mangled static libs
   CFLAGS+=" -ffat-lto-objects"
-  cd "${pkgname}-${pkgver}"
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --localstatedir=/var \
-  --mandir=/usr/share/man \
-  --with-scripts-directory=/usr/lib/brltty \
-  --with-tables-directory=/usr/share/brltty \
-  --with-writable-directory=/run/brltty \
-  --enable-gpm \
-  --disable-stripping
-  make
+
+  cd $pkgbase-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--mandir=/usr/share/man \
+--with-scripts-directory=/usr/lib/brltty \
+--with-tables-directory=/usr/share/brltty \
+--with-writable-directory=/run/brltty \
+--enable-gpm \
+--disable-stripping
+  make -j1
   # make brlapi.jar deterministic
   find . -type f -iname "*.jar" -exec strip-nondeterminism {} \;
 }
 
-package() {
-  

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

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 21:31:45
  Author: arojas
Revision: 1239583

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 21:31:34 UTC (rev 1239582)
+++ PKGBUILD2022-06-26 21:31:45 UTC (rev 1239583)
@@ -1,35 +0,0 @@
-# Maintainer: Eli Schwartz 
-
-_pkgname=fissix
-pkgname=python-fissix
-pkgver=21.6.6
-pkgrel=3
-pkgdesc="Fork of lib2to3 with patch for Python issue33983 support"
-arch=('any')
-url="https://github.com/jreese/${_pkgname};
-license=('PSF')
-depends=('python')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest' 'python-tests')
-source=(https://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.tar.gz)
-sha256sums=('756c47696a8d769ebf770ec7f018fd7b5948cd2cd6a204b5392bc9214ff795bc')
-b2sums=('b913c29f49e1d49062d441f5a6064ccb7ff167dd92c874458b023e3a37079364b2e7b310ed502d3d88e7512d0752f84bc597a27dd6c48ca2975a28aae2019d56')
-
-build(){
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py build
-}
-
-check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python -m pytest --verbose fissix/tests
-}
-
-package() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
-
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: python-fissix/repos/community-any/PKGBUILD (from rev 1239582, 
python-fissix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 21:31:45 UTC (rev 1239583)
@@ -0,0 +1,35 @@
+# Maintainer: Eli Schwartz 
+
+_pkgname=fissix
+pkgname=python-fissix
+pkgver=21.11.13
+pkgrel=1
+pkgdesc="Fork of lib2to3 with patch for Python issue33983 support"
+arch=('any')
+url="https://github.com/jreese/${_pkgname};
+license=('PSF')
+depends=('python-appdirs')
+makedepends=('python-build' 'python-installer' 'python-flit-core')
+checkdepends=('python-pytest' 'python-tests')
+source=(https://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.tar.gz)
+sha256sums=('496a51b86afb4c64cf15cfed38a0f3a371f300b298c962c881e33620f076a514')
+b2sums=('cf63756b79b3f4f2442952e1077f4538f43a5cb6f151f700371af9bb8b7be45c16acce9834819bcc0861dd070b161423a5539d6cc59b65eee25f57634bc57b88')
+
+build(){
+  cd ${_pkgname}-${pkgver}
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd ${_pkgname}-${pkgver}
+
+  python -m pytest --verbose fissix/tests
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+
+  python -m installer --destdir="${pkgdir}" dist/*.whl
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}



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

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 21:31:34
  Author: arojas
Revision: 1239582

Update to 21.11.13

Modified:
  python-fissix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 21:26:42 UTC (rev 1239581)
+++ PKGBUILD2022-06-26 21:31:34 UTC (rev 1239582)
@@ -2,34 +2,34 @@
 
 _pkgname=fissix
 pkgname=python-fissix
-pkgver=21.6.6
-pkgrel=3
+pkgver=21.11.13
+pkgrel=1
 pkgdesc="Fork of lib2to3 with patch for Python issue33983 support"
 arch=('any')
 url="https://github.com/jreese/${_pkgname};
 license=('PSF')
-depends=('python')
-makedepends=('python-setuptools')
+depends=('python-appdirs')
+makedepends=('python-build' 'python-installer' 'python-flit-core')
 checkdepends=('python-pytest' 'python-tests')
 
source=(https://pypi.python.org/packages/source/f/$_pkgname/$_pkgname-$pkgver.tar.gz)
-sha256sums=('756c47696a8d769ebf770ec7f018fd7b5948cd2cd6a204b5392bc9214ff795bc')
-b2sums=('b913c29f49e1d49062d441f5a6064ccb7ff167dd92c874458b023e3a37079364b2e7b310ed502d3d88e7512d0752f84bc597a27dd6c48ca2975a28aae2019d56')
+sha256sums=('496a51b86afb4c64cf15cfed38a0f3a371f300b298c962c881e33620f076a514')
+b2sums=('cf63756b79b3f4f2442952e1077f4538f43a5cb6f151f700371af9bb8b7be45c16acce9834819bcc0861dd070b161423a5539d6cc59b65eee25f57634bc57b88')
 
 build(){
-cd "${srcdir}"/${_pkgname}-${pkgver}
+  cd ${_pkgname}-${pkgver}
 
-python setup.py build
+  python -m build --wheel --no-isolation
 }
 
 check() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
+  cd ${_pkgname}-${pkgver}
 
-python -m pytest --verbose fissix/tests
+  python -m pytest --verbose fissix/tests
 }
 
 package() {
-cd "${srcdir}"/${_pkgname}-${pkgver}
+  cd ${_pkgname}-${pkgver}
 
-python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+  python -m installer --destdir="${pkgdir}" dist/*.whl
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }



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

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 21:26:42
  Author: arojas
Revision: 1239581

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 21:26:31 UTC (rev 1239580)
+++ PKGBUILD2022-06-26 21:26:42 UTC (rev 1239581)
@@ -1,29 +0,0 @@
-# Maintainer:
-
-pkgname=python-autopage
-pkgver=0.4.0
-pkgrel=1
-pkgdesc='A library to provide automatic paging for console output'
-arch=(any)
-url='https://github.com/zaneb/autopage'
-license=(Apache)
-depends=(python)
-checkdepends=(python-pytest python-fixtures)
-makedepends=(python-build python-install python-setuptools python-wheel)
-source=(https://pypi.python.org/packages/source/a/autopage/autopage-$pkgver.tar.gz)
-sha512sums=('00dd0fc405c6cbeec962e0c6e85ff923c6c8caefd9cb793d668117ae6b25d1086253b4103bc541c35f3883caf7f72f0ef2f5758ca2ce3f7fbef39ac51a188b9c')
-
-build() {
-  cd autopage-$pkgver
-  python -m build --wheel --skip-dependency-check --no-isolation
-}
-
-check() {
-  cd autopage-$pkgver
-  pytest
-}
-
-package() {
-  cd autopage-$pkgver
-  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
-}

Copied: python-autopage/repos/community-any/PKGBUILD (from rev 1239580, 
python-autopage/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 21:26:42 UTC (rev 1239581)
@@ -0,0 +1,30 @@
+# Maintainer:
+
+pkgname=python-autopage
+pkgver=0.5.1
+pkgrel=1
+pkgdesc='A library to provide automatic paging for console output'
+arch=(any)
+url='https://github.com/zaneb/autopage'
+license=(Apache)
+depends=(python)
+checkdepends=(python-pytest python-fixtures)
+makedepends=(python-build python-installer python-setuptools python-wheel)
+source=(https://pypi.python.org/packages/source/a/autopage/autopage-$pkgver.tar.gz)
+sha512sums=('d2db8091bfdb209319ed8f06cea86abdc33e8ea338290d3a6f99341d78d8a9f079021c21c18c9ee7032f13496ed0d3bfe5a96465473fc747da984452d26c0382')
+
+build() {
+  cd autopage-$pkgver
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+check() {
+  cd autopage-$pkgver
+  unset LESS PAGER
+  pytest -v -k 'not test_end_to_end.py'
+}
+
+package() {
+  cd autopage-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



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

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 21:26:31
  Author: arojas
Revision: 1239580

Update to 0.5.1

Modified:
  python-autopage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 20:57:36 UTC (rev 1239579)
+++ PKGBUILD2022-06-26 21:26:31 UTC (rev 1239580)
@@ -1,7 +1,7 @@
 # Maintainer:
 
 pkgname=python-autopage
-pkgver=0.4.0
+pkgver=0.5.1
 pkgrel=1
 pkgdesc='A library to provide automatic paging for console output'
 arch=(any)
@@ -11,7 +11,7 @@
 checkdepends=(python-pytest python-fixtures)
 makedepends=(python-build python-installer python-setuptools python-wheel)
 
source=(https://pypi.python.org/packages/source/a/autopage/autopage-$pkgver.tar.gz)
-sha512sums=('00dd0fc405c6cbeec962e0c6e85ff923c6c8caefd9cb793d668117ae6b25d1086253b4103bc541c35f3883caf7f72f0ef2f5758ca2ce3f7fbef39ac51a188b9c')
+sha512sums=('d2db8091bfdb209319ed8f06cea86abdc33e8ea338290d3a6f99341d78d8a9f079021c21c18c9ee7032f13496ed0d3bfe5a96465473fc747da984452d26c0382')
 
 build() {
   cd autopage-$pkgver
@@ -20,7 +20,8 @@
 
 check() {
   cd autopage-$pkgver
-  pytest
+  unset LESS PAGER
+  pytest -v -k 'not test_end_to_end.py'
 }
 
 package() {



[arch-commits] Commit in lib32-libnghttp2/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 20:57:36
  Author: arojas
Revision: 1239579

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libnghttp2/repos/multilib-x86_64/PKGBUILD
(from rev 1239578, lib32-libnghttp2/trunk/PKGBUILD)
Deleted:
  lib32-libnghttp2/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 20:57:19 UTC (rev 1239578)
+++ PKGBUILD2022-06-26 20:57:36 UTC (rev 1239579)
@@ -1,42 +0,0 @@
-# Maintainer: Anatol Pomozov
-# Contributor: Zhuoyun Wei 
-
-pkgname=lib32-libnghttp2
-pkgver=1.47.0
-pkgrel=1
-pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
-arch=(x86_64)
-url='https://nghttp2.org/'
-license=(MIT)
-depends=(lib32-glibc libnghttp2)
-source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
-sha512sums=('ad6266a15789fec966db6be8ac0b9ee6cca257a3bb91fdd34a58acf0e472643a571941b5974d16c98f6ac5bfa6a03c4b70a6dff222fb0cd50909178b7e94ce48')
-
-build() {
-  cd nghttp2-$pkgver
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  autoreconf -i
-  ./configure \
---prefix=/usr \
---disable-examples \
---disable-python-bindings \
---enable-lib-only \
---libdir=/usr/lib32
-  make
-}
-
-check() {
-  cd nghttp2-$pkgver
-  make check
-}
-
-package() {
-  cd nghttp2-$pkgver/lib
-
-  make DESTDIR="$pkgdir" install
-  rm -r "$pkgdir"/usr/include
-  install -Dm644 ../COPYING -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: lib32-libnghttp2/repos/multilib-x86_64/PKGBUILD (from rev 1239578, 
lib32-libnghttp2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 20:57:36 UTC (rev 1239579)
@@ -0,0 +1,42 @@
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=lib32-libnghttp2
+pkgver=1.48.0
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(lib32-glibc libnghttp2)
+source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
+sha512sums=('77c22371290f77e8a538b9efea225d23567cc27cb60b71703cbcb057839b5f117cf50796aa82bf4518f22b38a5773e90a1c273eafff4b17c435ac5858bdf7c6f')
+
+build() {
+  cd nghttp2-$pkgver
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--disable-examples \
+--disable-python-bindings \
+--enable-lib-only \
+--libdir=/usr/lib32
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver/lib
+
+  make DESTDIR="$pkgdir" install
+  rm -r "$pkgdir"/usr/include
+  install -Dm644 ../COPYING -t "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 20:57:19
  Author: arojas
Revision: 1239578

Update to 1.48.0

Modified:
  lib32-libnghttp2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 20:52:53 UTC (rev 1239577)
+++ PKGBUILD2022-06-26 20:57:19 UTC (rev 1239578)
@@ -2,7 +2,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=lib32-libnghttp2
-pkgver=1.47.0
+pkgver=1.48.0
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 license=(MIT)
 depends=(lib32-glibc libnghttp2)
 
source=(https://github.com/nghttp2/nghttp2/releases/download/v$pkgver/nghttp2-$pkgver.tar.xz)
-sha512sums=('ad6266a15789fec966db6be8ac0b9ee6cca257a3bb91fdd34a58acf0e472643a571941b5974d16c98f6ac5bfa6a03c4b70a6dff222fb0cd50909178b7e94ce48')
+sha512sums=('77c22371290f77e8a538b9efea225d23567cc27cb60b71703cbcb057839b5f117cf50796aa82bf4518f22b38a5773e90a1c273eafff4b17c435ac5858bdf7c6f')
 
 build() {
   cd nghttp2-$pkgver



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

2022-06-26 Thread Thore Bödecker via arch-commits
Date: Sunday, June 26, 2022 @ 20:52:53
  Author: foxxx0
Revision: 1239577

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 20:52:50 UTC (rev 1239576)
+++ PKGBUILD2022-06-26 20:52:53 UTC (rev 1239577)
@@ -1,44 +0,0 @@
-# Maintainer: Thore Bödecker 
-# Contributor: brent s. 
-# Contributor: Alexander Phinikarides 
-
-pkgbase='python-pyroute2'
-_pkgbase="${pkgbase//python-/}"
-pkgname=("python-${_pkgbase}")
-pkgdesc="A pure Python netlink and Linux network configuration library"
-pkgver=0.6.12
-pkgrel=1
-arch=('any')
-url="https://docs.pyroute2.org/;
-license=('GPL2' 'Apache')
-depends=('python')
-makedepends=('python' 'python-pip' 'python-setuptools' 'python-setuptools-scm' 
'python-sphinx' 'git' 'python-aafigure' 'twine' 'python-black')
-checkdepends=('python-pytest')
-source=("${_pkgbase}-${pkgver}.tar.gz::https://github.com/svinota/${_pkgbase}/archive/${pkgver}.tar.gz;)
-sha512sums=('363e8db3afb67622748c48df1a801287b128db097ab38199dbd4acd479c612e0c01b2155c9ec07255f289b0cd7cc555eb6a15b4e09f77970daa5696dfdfdd99f')
-
-prepare() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-
-  # Update the version manually. Otherwise it would look for a git tag which 
is not present in the distribution.
-  sed -i "s/version = get_project_version.*$/version = '${pkgver}'/" 
util/update_version.py
-  sed -i "s/^VERSION=.*\$/VERSION='${pkgver}'/" tests/conf.sh
-}
-
-build() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  make dist
-}
-
-check() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  # upstream tests are not meant to be executed downstream
-  :
-}
-
-package() {
-  cd "${srcdir}/${_pkgbase}-${pkgver}"
-  make root="${pkgdir}/" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pyroute2/repos/community-any/PKGBUILD (from rev 1239576, 
python-pyroute2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 20:52:53 UTC (rev 1239577)
@@ -0,0 +1,44 @@
+# Maintainer: Thore Bödecker 
+# Contributor: brent s. 
+# Contributor: Alexander Phinikarides 
+
+pkgbase='python-pyroute2'
+_pkgbase="${pkgbase//python-/}"
+pkgname=("python-${_pkgbase}")
+pkgdesc="A pure Python netlink and Linux network configuration library"
+pkgver=0.6.13
+pkgrel=1
+arch=('any')
+url="https://docs.pyroute2.org/;
+license=('GPL2' 'Apache')
+depends=('python')
+makedepends=('python' 'python-pip' 'python-setuptools' 'python-setuptools-scm' 
'python-sphinx' 'git' 'python-aafigure' 'twine' 'python-black')
+checkdepends=('python-pytest')
+source=("${_pkgbase}-${pkgver}.tar.gz::https://github.com/svinota/${_pkgbase}/archive/${pkgver}.tar.gz;)
+sha512sums=('e274a07afa419f6dde745f02400efd7288bdd361e1e5232d9484b135b0e2a7902909d3d564217d65379ab38cb318db438dc5e7f93cb190af8cc3bb1d9d19e98c')
+
+prepare() {
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+
+  # Update the version manually. Otherwise it would look for a git tag which 
is not present in the distribution.
+  sed -i "s/version = get_project_version.*$/version = '${pkgver}'/" 
util/update_version.py
+  sed -i "s/^VERSION=.*\$/VERSION='${pkgver}'/" tests/conf.sh
+}
+
+build() {
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  make dist
+}
+
+check() {
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  # upstream tests are not meant to be executed downstream
+  :
+}
+
+package() {
+  cd "${srcdir}/${_pkgbase}-${pkgver}"
+  make root="${pkgdir}/" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-06-26 Thread Thore Bödecker via arch-commits
Date: Sunday, June 26, 2022 @ 20:52:50
  Author: foxxx0
Revision: 1239576

upgpkg: python-pyroute2 0.6.13-1: update to upstream release 0.6.13

Modified:
  python-pyroute2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 20:20:30 UTC (rev 1239575)
+++ PKGBUILD2022-06-26 20:52:50 UTC (rev 1239576)
@@ -6,7 +6,7 @@
 _pkgbase="${pkgbase//python-/}"
 pkgname=("python-${_pkgbase}")
 pkgdesc="A pure Python netlink and Linux network configuration library"
-pkgver=0.6.12
+pkgver=0.6.13
 pkgrel=1
 arch=('any')
 url="https://docs.pyroute2.org/;
@@ -15,7 +15,7 @@
 makedepends=('python' 'python-pip' 'python-setuptools' 'python-setuptools-scm' 
'python-sphinx' 'git' 'python-aafigure' 'twine' 'python-black')
 checkdepends=('python-pytest')
 
source=("${_pkgbase}-${pkgver}.tar.gz::https://github.com/svinota/${_pkgbase}/archive/${pkgver}.tar.gz;)
-sha512sums=('363e8db3afb67622748c48df1a801287b128db097ab38199dbd4acd479c612e0c01b2155c9ec07255f289b0cd7cc555eb6a15b4e09f77970daa5696dfdfdd99f')
+sha512sums=('e274a07afa419f6dde745f02400efd7288bdd361e1e5232d9484b135b0e2a7902909d3d564217d65379ab38cb318db438dc5e7f93cb190af8cc3bb1d9d19e98c')
 
 prepare() {
   cd "${srcdir}/${_pkgbase}-${pkgver}"



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

2022-06-26 Thread Jonathan Steel via arch-commits
Date: Sunday, June 26, 2022 @ 20:20:30
  Author: jsteel
Revision: 1239575

archrelease: copy trunk to community-x86_64

Added:
  gsimplecal/repos/community-x86_64/PKGBUILD
(from rev 1239574, gsimplecal/trunk/PKGBUILD)
Deleted:
  gsimplecal/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 20:20:22 UTC (rev 1239574)
+++ PKGBUILD2022-06-26 20:20:30 UTC (rev 1239575)
@@ -1,31 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: DrZaius 
-# Contributor: Victor Feight 
-
-pkgname=gsimplecal
-pkgver=2.2
-pkgrel=1
-pkgdesc="Simple and lightweight GTK calendar"
-arch=('x86_64')
-url="https://dmedvinsky.github.io/gsimplecal/;
-license=('BSD')
-depends=('gtk3')
-source=($pkgname-$pkgver.tar.gz::https://github.com/dmedvinsky/$pkgname/archive/v$pkgver.tar.gz)
-md5sums=('8efec084acc3832300b0299a5ce78910')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./autogen.sh
-  ./configure --prefix=/usr
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
-}

Copied: gsimplecal/repos/community-x86_64/PKGBUILD (from rev 1239574, 
gsimplecal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 20:20:30 UTC (rev 1239575)
@@ -0,0 +1,31 @@
+# Maintainer: Jonathan Steel 
+# Contributor: DrZaius 
+# Contributor: Victor Feight 
+
+pkgname=gsimplecal
+pkgver=2.4
+pkgrel=1
+pkgdesc="Simple and lightweight GTK calendar"
+arch=('x86_64')
+url="https://dmedvinsky.github.io/gsimplecal/;
+license=('BSD')
+depends=('gtk3')
+source=($pkgname-$pkgver.tar.gz::https://github.com/dmedvinsky/$pkgname/archive/v$pkgver.tar.gz)
+md5sums=('d46688c6071a9d636b1facab8a72157b')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./autogen.sh
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
+}



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

2022-06-26 Thread Jonathan Steel via arch-commits
Date: Sunday, June 26, 2022 @ 20:20:22
  Author: jsteel
Revision: 1239574

upgpkg: gsimplecal 2.4-1

Modified:
  gsimplecal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 20:17:41 UTC (rev 1239573)
+++ PKGBUILD2022-06-26 20:20:22 UTC (rev 1239574)
@@ -3,7 +3,7 @@
 # Contributor: Victor Feight 
 
 pkgname=gsimplecal
-pkgver=2.2
+pkgver=2.4
 pkgrel=1
 pkgdesc="Simple and lightweight GTK calendar"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 license=('BSD')
 depends=('gtk3')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/dmedvinsky/$pkgname/archive/v$pkgver.tar.gz)
-md5sums=('8efec084acc3832300b0299a5ce78910')
+md5sums=('d46688c6071a9d636b1facab8a72157b')
 
 build() {
   cd $pkgname-$pkgver



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

2022-06-26 Thread Leonidas Spyropoulos via arch-commits
Date: Sunday, June 26, 2022 @ 20:17:41
  Author: artafinde
Revision: 1239573

archrelease: copy trunk to community-any

Added:
  freeplane/repos/community-any/PKGBUILD
(from rev 1239572, freeplane/trunk/PKGBUILD)
  freeplane/repos/community-any/freeplane.desktop
(from rev 1239572, freeplane/trunk/freeplane.desktop)
  freeplane/repos/community-any/freeplane.run
(from rev 1239572, freeplane/trunk/freeplane.run)
Deleted:
  freeplane/repos/community-any/PKGBUILD
  freeplane/repos/community-any/freeplane.desktop
  freeplane/repos/community-any/freeplane.run

---+
 PKGBUILD  |  152 ++--
 freeplane.desktop |   54 +-
 freeplane.run |6 +-
 3 files changed, 106 insertions(+), 106 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 20:17:04 UTC (rev 1239572)
+++ PKGBUILD2022-06-26 20:17:41 UTC (rev 1239573)
@@ -1,76 +0,0 @@
-# Maintainer: Leonidas Spyropoulos (artafi...@archlinux.org)
-# Contributor: scraw...@gmail.com
-
-pkgname=freeplane
-pkgver=1.10.2
-pkgrel=2
-pkgdesc="A Java mindmapping tool"
-arch=('any')
-url="http://freeplane.sourceforge.net;
-license=('GPL2')
-_jrever=11
-_jdkver=17
-makedepends=('gradle' "jdk${_jdkver}-openjdk" 'gnu-free-fonts' 'fontconfig')
-depends=("java-runtime>=${_jrever}" "java-runtime<=${_jdkver}")
-source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}_src-${pkgver}.tar.gz;
-"freeplane.desktop" "freeplane.run")
-b2sums=('22302d69b920a5dd21b12620e7b501d77b7db1737ce1233bc6f75de0c2f87fd3eca122184a93b8f981e81c37c99736c2d0a230aaeb462c9a856fa49c00db8e17'
-
'87c25331e01823e38668e4b394a51a279c05b24b088f4ffc1482d3783e24018da8f9e51b3ad1a62c5a863f85a6ccb30bbe8999cb861dc1b93d5483019644cfa5'
-
'24ca56b7c7894b9bb38600b4d37973769243e1bdb221f33125b60bf4f878a3b630775710fab9dee97fa45a69319455037e294860ba7fbd608529982c6b0b1538')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  export JAVA_HOME="/usr/lib/jvm/java-${_jdkver}-openjdk"
-  export PATH="/usr/lib/jvm/java-${_jdkver}-openjdk/bin:$PATH"
-  gradle -Dorg.gradle.daemon=false build
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}/BIN"
-  # Copy plugins
-  find plugins -type f | while read file ; do
-install -Dm644 "${file}" "${pkgdir}/usr/share/freeplane/${file}"
-  done
-  # Copy docs (excluding API JavaDocs)
-  find doc -type f ! -path "*api*"| while read file; do
-install -Dm644 "${file}" "${pkgdir}/usr/share/freeplane/${file}"
-  done
-  # Copy various
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/BIN"/framework.jar 
"${pkgdir}"/usr/share/freeplane/framework.jar
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/BIN"/freeplane.l4j.ini 
"${pkgdir}"/usr/share/freeplane/freeplane.l4j.ini
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/BIN"/freeplane.policy 
"${pkgdir}"/usr/share/freeplane/freeplane.policy
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/BIN"/freeplane.sh 
"${pkgdir}"/usr/share/freeplane/freeplane.sh
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/BIN"/freeplaneConsole.l4j.ini 
"${pkgdir}"/usr/share/freeplane/freeplaneConsole.l4j.ini
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/BIN"/freeplaneIcons.dll 
"${pkgdir}"/usr/share/freeplane/freeplaneIcons.dll
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/BIN"/freeplanelauncher.jar 
"${pkgdir}"/usr/share/freeplane/freeplanelauncher.jar
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/BIN"/gitinfo.txt 
"${pkgdir}"/usr/share/freeplane/gitinfo.txt
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/BIN"/init.xargs 
"${pkgdir}"/usr/share/freeplane/init.xargs
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/BIN"/props.xargs 
"${pkgdir}"/usr/share/freeplane/props.xargs
-  # Copy core
-  install -dm755 
"${pkgdir}"/usr/share/freeplane/core/org.freeplane.core/META-INF/
-  install -Dm644 
"${srcdir}/${pkgname}-${pkgver}/BIN"/core/org.freeplane.core/META-INF/* 
"${pkgdir}"/usr/share/freeplane/core/org.freeplane.core/META-INF/
-  install -dm755 "${pkgdir}"/usr/share/freeplane/core/org.freeplane.core/lib
-  install -Dm644 
"${srcdir}/${pkgname}-${pkgver}/BIN"/core/org.freeplane.core/lib/* 
"${pkgdir}"/usr/share/freeplane/core/org.freeplane.core/lib
-  # Copy resources
-  install -dm755 "${pkgdir}"/usr/share/freeplane/resources/ortho/
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/BIN"/resources/ortho/* 
"${pkgdir}"/usr/share/freeplane/resources/ortho/
-  install -dm755 "${pkgdir}"/usr/share/freeplane/resources/templates/
-  install -dm755 "${pkgdir}"/usr/share/freeplane/resources/templates/
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/BIN"/resources/templates/* 
"${pkgdir}"/usr/share/freeplane/resources/templates/
-  install -dm755 "${pkgdir}"/usr/share/freeplane/resources/xslt/
-  install -Dm644 "${srcdir}/${pkgname}-${pkgver}/BIN"/resources/xslt/* 
"${pkgdir}"/usr/share/freeplane/resources/xslt/
-  install -dm755 

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

2022-06-26 Thread Leonidas Spyropoulos via arch-commits
Date: Sunday, June 26, 2022 @ 20:17:04
  Author: artafinde
Revision: 1239572

freeplane: upstream release 1.10.3

Modified:
  freeplane/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 20:17:01 UTC (rev 1239571)
+++ PKGBUILD2022-06-26 20:17:04 UTC (rev 1239572)
@@ -2,8 +2,8 @@
 # Contributor: scraw...@gmail.com
 
 pkgname=freeplane
-pkgver=1.10.2
-pkgrel=2
+pkgver=1.10.3
+pkgrel=1
 pkgdesc="A Java mindmapping tool"
 arch=('any')
 url="http://freeplane.sourceforge.net;
@@ -14,7 +14,7 @@
 depends=("java-runtime>=${_jrever}" "java-runtime<=${_jdkver}")
 
source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}_src-${pkgver}.tar.gz;
 "freeplane.desktop" "freeplane.run")
-b2sums=('22302d69b920a5dd21b12620e7b501d77b7db1737ce1233bc6f75de0c2f87fd3eca122184a93b8f981e81c37c99736c2d0a230aaeb462c9a856fa49c00db8e17'
+b2sums=('04aec1c54a6c6355c7dccce24db2f30600f668df932e810c46c58b7ccfc69c2bb66d740195364dcc2bdf254a323e56b4d577523a12089c39bb29f08186879277'
 
'87c25331e01823e38668e4b394a51a279c05b24b088f4ffc1482d3783e24018da8f9e51b3ad1a62c5a863f85a6ccb30bbe8999cb861dc1b93d5483019644cfa5'
 
'24ca56b7c7894b9bb38600b4d37973769243e1bdb221f33125b60bf4f878a3b630775710fab9dee97fa45a69319455037e294860ba7fbd608529982c6b0b1538')
 



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

2022-06-26 Thread Jonathan Steel via arch-commits
Date: Sunday, June 26, 2022 @ 20:17:01
  Author: jsteel
Revision: 1239571

archrelease: copy trunk to community-x86_64

Added:
  stella/repos/community-x86_64/PKGBUILD
(from rev 1239570, stella/trunk/PKGBUILD)
Deleted:
  stella/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 20:16:53 UTC (rev 1239570)
+++ PKGBUILD2022-06-26 20:17:01 UTC (rev 1239571)
@@ -1,30 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Renato Garcia 
-# Contributor: Tiago Camargo 
-# Contributor: Shinlun Hsieh 
-
-pkgname=stella
-pkgver=6.6
-pkgrel=1
-pkgdesc="Atari 2600 VCS emulator"
-arch=('x86_64')
-url="https://stella-emu.github.io/;
-license=('GPL2')
-depends=('sdl2' 'gtk-update-icon-cache')
-makedepends=('glu')
-source=(https://github.com/stella-emu/stella/releases/download/$pkgver/$pkgname-$pkgver-src.tar.xz)
-md5sums=('a9678b2a1c1e3d4d8c3c830612ace0c8')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: stella/repos/community-x86_64/PKGBUILD (from rev 1239570, 
stella/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 20:17:01 UTC (rev 1239571)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Renato Garcia 
+# Contributor: Tiago Camargo 
+# Contributor: Shinlun Hsieh 
+
+pkgname=stella
+pkgver=6.7
+pkgrel=1
+pkgdesc="Atari 2600 VCS emulator"
+arch=('x86_64')
+url="https://stella-emu.github.io/;
+license=('GPL2')
+depends=('sdl2' 'gtk-update-icon-cache')
+makedepends=('glu')
+source=(https://github.com/stella-emu/stella/releases/download/$pkgver/$pkgname-$pkgver-src.tar.xz)
+md5sums=('b8bff4765abf07532fc67ec0c911398f')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}



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

2022-06-26 Thread Jonathan Steel via arch-commits
Date: Sunday, June 26, 2022 @ 20:16:53
  Author: jsteel
Revision: 1239570

upgpkg: stella 6.7-1

Modified:
  stella/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 20:08:40 UTC (rev 1239569)
+++ PKGBUILD2022-06-26 20:16:53 UTC (rev 1239570)
@@ -4,7 +4,7 @@
 # Contributor: Shinlun Hsieh 
 
 pkgname=stella
-pkgver=6.6
+pkgver=6.7
 pkgrel=1
 pkgdesc="Atari 2600 VCS emulator"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 depends=('sdl2' 'gtk-update-icon-cache')
 makedepends=('glu')
 
source=(https://github.com/stella-emu/stella/releases/download/$pkgver/$pkgname-$pkgver-src.tar.xz)
-md5sums=('a9678b2a1c1e3d4d8c3c830612ace0c8')
+md5sums=('b8bff4765abf07532fc67ec0c911398f')
 
 build() {
   cd $pkgname-$pkgver



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

2022-06-26 Thread David Runge via arch-commits
Date: Sunday, June 26, 2022 @ 20:11:51
  Author: dvzrv
Revision: 449448

archrelease: copy trunk to extra-x86_64

Added:
  liburing/repos/extra-x86_64/PKGBUILD
(from rev 449447, liburing/trunk/PKGBUILD)
Deleted:
  liburing/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 20:11:39 UTC (rev 449447)
+++ PKGBUILD2022-06-26 20:11:51 UTC (rev 449448)
@@ -1,29 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Filipe Laíns (FFY00) 
-
-pkgname=liburing
-pkgver=2.1
-pkgrel=1
-pkgdesc="Linux-native io_uring I/O access library"
-arch=('x86_64')
-url="https://git.kernel.dk/cgit/liburing/;
-license=('LGPL2.1' 'MIT')
-depends=('glibc')
-makedepends=('git')
-provides=('liburing.so')
-source=("git+https://git.kernel.dk/liburing#tag=liburing-$pkgver?signed;)
-sha512sums=('SKIP')
-validpgpkeys=('C0FC392DCADE26D975FA5E4AF7D358FB2971E0A6') # Jens Axboe 

-
-build() {
-  cd "$pkgname"
-  ./configure --prefix='/usr' \
-  --mandir='/usr/share/man'
-  make
-}
-
-package() {
-  cd "$pkgname"
-  make DESTDIR="$pkgdir" install
-  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: liburing/repos/extra-x86_64/PKGBUILD (from rev 449447, 
liburing/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 20:11:51 UTC (rev 449448)
@@ -0,0 +1,30 @@
+# Maintainer: David Runge 
+# Contributor: Filipe Laíns (FFY00) 
+
+pkgname=liburing
+pkgver=2.2
+_commit=dda4848a9911120a903bef6284fb88286f4464c9  # refs/tags/liburing-2.2^{}
+pkgrel=1
+pkgdesc="Linux-native io_uring I/O access library"
+arch=(x86_64)
+url="https://git.kernel.dk/cgit/liburing/;
+license=(LGPL2.1 MIT)
+depends=(glibc)
+makedepends=(git)
+provides=(liburing.so)
+options=(debug)
+source=(git+https://git.kernel.dk/liburing#commit=$_commit)
+sha512sums=('SKIP')
+
+build() {
+  cd $pkgname
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man
+  make
+}
+
+package() {
+  make DESTDIR="$pkgdir" install -C $pkgname
+  install -vDm 644 $pkgname/LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
+}



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

2022-06-26 Thread David Runge via arch-commits
Date: Sunday, June 26, 2022 @ 20:11:39
  Author: dvzrv
Revision: 449447

upgpkg: liburing 2.2-1: Upgrade to 2.2.

Remove unnecessary quotes and curly braces.
Build from pinned commit instead of signed tag (as it could be moved).
Add debug package.

Modified:
  liburing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 19:22:40 UTC (rev 449446)
+++ PKGBUILD2022-06-26 20:11:39 UTC (rev 449447)
@@ -2,28 +2,29 @@
 # Contributor: Filipe Laíns (FFY00) 
 
 pkgname=liburing
-pkgver=2.1
+pkgver=2.2
+_commit=dda4848a9911120a903bef6284fb88286f4464c9  # refs/tags/liburing-2.2^{}
 pkgrel=1
 pkgdesc="Linux-native io_uring I/O access library"
-arch=('x86_64')
+arch=(x86_64)
 url="https://git.kernel.dk/cgit/liburing/;
-license=('LGPL2.1' 'MIT')
-depends=('glibc')
-makedepends=('git')
-provides=('liburing.so')
-source=("git+https://git.kernel.dk/liburing#tag=liburing-$pkgver?signed;)
+license=(LGPL2.1 MIT)
+depends=(glibc)
+makedepends=(git)
+provides=(liburing.so)
+options=(debug)
+source=(git+https://git.kernel.dk/liburing#commit=$_commit)
 sha512sums=('SKIP')
-validpgpkeys=('C0FC392DCADE26D975FA5E4AF7D358FB2971E0A6') # Jens Axboe 

 
 build() {
-  cd "$pkgname"
-  ./configure --prefix='/usr' \
-  --mandir='/usr/share/man'
+  cd $pkgname
+  ./configure \
+--prefix=/usr \
+--mandir=/usr/share/man
   make
 }
 
 package() {
-  cd "$pkgname"
-  make DESTDIR="$pkgdir" install
-  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+  make DESTDIR="$pkgdir" install -C $pkgname
+  install -vDm 644 $pkgname/LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
 }



[arch-commits] Commit in python-pytorch/repos (8 files)

2022-06-26 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, June 26, 2022 @ 20:08:40
  Author: svenstaro
Revision: 1239569

archrelease: copy trunk to community-testing-x86_64

Added:
  python-pytorch/repos/community-testing-x86_64/
  
python-pytorch/repos/community-testing-x86_64/98f9ff90268ae62ab6d794cce0786121bf17edc9.patch
(from rev 1239568, 
python-pytorch/trunk/98f9ff90268ae62ab6d794cce0786121bf17edc9.patch)
  python-pytorch/repos/community-testing-x86_64/PKGBUILD
(from rev 1239568, python-pytorch/trunk/PKGBUILD)
  python-pytorch/repos/community-testing-x86_64/ffmpeg4.4.patch
(from rev 1239568, python-pytorch/trunk/ffmpeg4.4.patch)
  
python-pytorch/repos/community-testing-x86_64/fix-building-for-torchvision.patch
(from rev 1239568, python-pytorch/trunk/fix-building-for-torchvision.patch)
  python-pytorch/repos/community-testing-x86_64/fix_include_system.patch
(from rev 1239568, python-pytorch/trunk/fix_include_system.patch)
  python-pytorch/repos/community-testing-x86_64/test.py
(from rev 1239568, python-pytorch/trunk/test.py)
  python-pytorch/repos/community-testing-x86_64/use-system-libuv.patch
(from rev 1239568, python-pytorch/trunk/use-system-libuv.patch)

+
 98f9ff90268ae62ab6d794cce0786121bf17edc9.patch |   44 +++
 PKGBUILD   |  336 +++
 ffmpeg4.4.patch|   51 +++
 fix-building-for-torchvision.patch |   25 +
 fix_include_system.patch   |   13 
 test.py|7 
 use-system-libuv.patch |   13 
 7 files changed, 489 insertions(+)

Copied: 
python-pytorch/repos/community-testing-x86_64/98f9ff90268ae62ab6d794cce0786121bf17edc9.patch
 (from rev 1239568, 
python-pytorch/trunk/98f9ff90268ae62ab6d794cce0786121bf17edc9.patch)
===
--- community-testing-x86_64/98f9ff90268ae62ab6d794cce0786121bf17edc9.patch 
(rev 0)
+++ community-testing-x86_64/98f9ff90268ae62ab6d794cce0786121bf17edc9.patch 
2022-06-26 20:08:40 UTC (rev 1239569)
@@ -0,0 +1,44 @@
+From 98f9ff90268ae62ab6d794cce0786121bf17edc9 Mon Sep 17 00:00:00 2001
+From: BowenBao 
+Date: Thu, 17 Feb 2022 10:45:24 -0800
+Subject: [PATCH] [ONNX] Fix an assertion failure involving Slice (#71965)
+
+Before this change, exporting a model to ONNX involving Slice crashes at 
`axes[i]` in line 153 if C++ assertions are enabled:
+```
+/usr/include/c++/11.1.0/bits/stl_vector.h:1045: std::vector<_Tp, 
_Alloc>::reference std::vector<_Tp, _Alloc>::operator[](std::vector<_Tp, 
_Alloc>::size_type) [with _Tp = long int; _Alloc = std::allocator; 
std::vector<_Tp, _Alloc>::reference = long int&; std::vector<_Tp, 
_Alloc>::size_type = long unsigned int]: Assertion '__n < this->size()' failed.
+```
+The relevant check is 
https://github.com/gcc-mirror/gcc/blob/releases/gcc-11.1.0/libstdc++-v3/include/bits/stl_vector.h#L1045,
 which checks the vector index.
+
+The issue can be reproduced by exporting Mask R-CNN or similar ones. For 
example,
+```Python
+import io
+import torch
+import torchvision as tv
+
+model = tv.models.detection.maskrcnn_resnet50_fpn(pretrained=False)
+x = [torch.rand(3, 300, 400), torch.rand(3, 500, 400)]
+with io.BytesIO() as f:
+torch.onnx.export(model, x, f, opset_version=11)
+```
+(extracted from [onnxoptimizer 
tests](https://github.com/onnx/optimizer/blob/master/onnxoptimizer/test/optimizer_test.py))
+
+Tested environment: Arch Linux x86_64 with pytorch and torchvisoin installed 
from [the official 
repo](https://github.com/archlinux/svntogit-community/blob/packages/python-pytorch/trunk/PKGBUILD)
 and 
[AUR](https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=python-torchvision),
 respectively.
+
+Pull Request resolved: https://github.com/pytorch/pytorch/pull/72989
+---
+ torch/csrc/jit/passes/onnx/constant_fold.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/torch/csrc/jit/passes/onnx/constant_fold.cpp 
b/torch/csrc/jit/passes/onnx/constant_fold.cpp
+index 2901a9b8043c0..e52d77d04c756 100644
+--- a/torch/csrc/jit/passes/onnx/constant_fold.cpp
 b/torch/csrc/jit/passes/onnx/constant_fold.cpp
+@@ -147,7 +147,7 @@ c10::optional runTorchSlice_opset10(
+   return c10::nullopt;
+ }
+ auto axes_a = inputTensorValues[3].accessor();
+-axes.reserve(inputTensorValues[3].sizes()[0]);
++axes.resize(inputTensorValues[3].sizes()[0]);
+ // ONNX slice accepts negative axis, fix this for aten op
+ for (const auto i : c10::irange(inputTensorValues[3].sizes()[0])) {
+   axes[i] = axes_a[i] < 0 ? axes_a[i] + 
inputTensorValues[0].sizes().size()

Copied: python-pytorch/repos/community-testing-x86_64/PKGBUILD (from rev 
1239568, python-pytorch/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 

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

2022-06-26 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, June 26, 2022 @ 20:08:25
  Author: svenstaro
Revision: 1239568

upgpkg: python-pytorch 1.11.0-11: Add non-opt packages that are strictly x86-64

Modified:
  python-pytorch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 20:07:28 UTC (rev 1239567)
+++ PKGBUILD2022-06-26 20:08:25 UTC (rev 1239568)
@@ -3,10 +3,10 @@
 
 _pkgname=pytorch
 pkgbase="python-${_pkgname}"
-pkgname=("${pkgbase}" "${pkgbase}-cuda")
+pkgname=("${pkgbase}" "${pkgbase}-opt" "${pkgbase}-cuda" "${pkgbase}-opt-cuda")
 pkgver=1.11.0
 _pkgver=1.11.0
-pkgrel=10
+pkgrel=11
 _pkgdesc='Tensors and Dynamic neural networks in Python with strong GPU 
acceleration'
 pkgdesc="${_pkgdesc}"
 arch=('x86_64')
@@ -188,7 +188,9 @@
 
   cd "${srcdir}"
 
+  cp -r "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-opt"
   cp -r "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-cuda"
+  cp -r "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-opt-cuda"
 
   export VERBOSE=1
   export PYTORCH_BUILD_VERSION="${pkgver}"
@@ -229,21 +231,36 @@
 }
 
 build() {
-  echo "Building without cuda and with non-x86-64 optimizations"
+  echo "Building without cuda and without non-x86-64 optimizations"
   export USE_CUDA=0
   export USE_CUDNN=0
   cd "${srcdir}/${_pkgname}-${pkgver}"
-  echo "add_definitions(-march=haswell)" >> cmake/MiscCheck.cmake
+  echo "add_definitions(-march=x86-64)" >> cmake/MiscCheck.cmake
   # this horrible hack is necessary because the current release
   # ships inconsistent CMake which tries to build objects before
   # thier dependencies, build twice when dependencies are available
   python setup.py build || python setup.py build
 
+  echo "Building without cuda and with non-x86-64 optimizations"
+  export USE_CUDA=0
+  export USE_CUDNN=0
+  cd "${srcdir}/${_pkgname}-${pkgver}-opt"
+  echo "add_definitions(-march=haswell)" >> cmake/MiscCheck.cmake
+  # same horrible hack as above
+  python setup.py build || python setup.py build
 
+  echo "Building with cuda and without non-x86-64 optimizations"
+  export USE_CUDA=1
+  export USE_CUDNN=1
+  cd "${srcdir}/${_pkgname}-${pkgver}-cuda"
+  echo "add_definitions(-march=x86-64)" >> cmake/MiscCheck.cmake
+  # same horrible hack as above
+  python setup.py build || python setup.py build
+
   echo "Building with cuda and with non-x86-64 optimizations"
   export USE_CUDA=1
   export USE_CUDNN=1
-  cd "${srcdir}/${_pkgname}-${pkgver}-cuda"
+  cd "${srcdir}/${_pkgname}-${pkgver}-opt-cuda"
   echo "add_definitions(-march=haswell)" >> cmake/MiscCheck.cmake
   # same horrible hack as above
   python setup.py build || python setup.py build
@@ -281,16 +298,24 @@
 }
 
 package_python-pytorch() {
-  pkgdesc="${_pkgdesc} (with AVX2 CPU optimizations)"
-  replaces=(python-pytorch-opt)
+  pkgdesc="${_pkgdesc}"
+
   cd "${srcdir}/${_pkgname}-${pkgver}"
   _package
 }
 
+package_python-pytorch-opt() {
+  pkgdesc="${_pkgdesc} (with AVX2 CPU optimizations)"
+  conflicts=(python-pytorch)
+  provides=(python-pytorch)
+
+  cd "${srcdir}/${_pkgname}-${pkgver}-opt"
+  _package
+}
+
 package_python-pytorch-cuda() {
-  pkgdesc="${_pkgdesc} (with CUDA and AVX2 CPU optimizations)"
+  pkgdesc="${_pkgdesc} (with CUDA)"
   depends+=(cuda cudnn magma)
-  replaces=(python-pytorch-opt-cuda)
   conflicts=(python-pytorch)
   provides=(python-pytorch)
 
@@ -298,4 +323,14 @@
   _package
 }
 
+package_python-pytorch-opt-cuda() {
+  pkgdesc="${_pkgdesc} (with CUDA and AVX2 CPU optimizations)"
+  depends+=(cuda cudnn magma)
+  conflicts=(python-pytorch)
+  provides=(python-pytorch python-pytorch-cuda)
+
+  cd "${srcdir}/${_pkgname}-${pkgver}-opt-cuda"
+  _package
+}
+
 # vim:set ts=2 sw=2 et:



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

2022-06-26 Thread Jonathan Steel via arch-commits
Date: Sunday, June 26, 2022 @ 20:07:28
  Author: jsteel
Revision: 1239567

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 20:07:20 UTC (rev 1239566)
+++ PKGBUILD2022-06-26 20:07:28 UTC (rev 1239567)
@@ -1,25 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-
-pkgname=python-s3transfer
-pkgver=0.5.2
-pkgrel=1
-pkgdesc='Amazon S3 Transfer Manager for Python'
-arch=('any')
-url="https://github.com/boto/s3transfer;
-license=('Apache')
-depends=('python-botocore')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('5d295ac32ab4d9e13d99f4c11777229d')
-
-build() {
-  cd s3transfer-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd s3transfer-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-s3transfer/repos/community-any/PKGBUILD (from rev 1239566, 
python-s3transfer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 20:07:28 UTC (rev 1239567)
@@ -0,0 +1,25 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+
+pkgname=python-s3transfer
+pkgver=0.6.0
+pkgrel=1
+pkgdesc='Amazon S3 Transfer Manager for Python'
+arch=('any')
+url="https://github.com/boto/s3transfer;
+license=('Apache')
+depends=('python-botocore')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('34f27897a2794e669a199184318fd570')
+
+build() {
+  cd s3transfer-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd s3transfer-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-06-26 Thread Jonathan Steel via arch-commits
Date: Sunday, June 26, 2022 @ 20:07:20
  Author: jsteel
Revision: 1239566

upgpkg: python-s3transfer 0.6.0-1

Modified:
  python-s3transfer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 20:03:40 UTC (rev 1239565)
+++ PKGBUILD2022-06-26 20:07:20 UTC (rev 1239566)
@@ -2,7 +2,7 @@
 # Contributor: Chris Severance aur.severach AatT spamgourmet.com
 
 pkgname=python-s3transfer
-pkgver=0.5.2
+pkgver=0.6.0
 pkgrel=1
 pkgdesc='Amazon S3 Transfer Manager for Python'
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('python-botocore')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('5d295ac32ab4d9e13d99f4c11777229d')
+md5sums=('34f27897a2794e669a199184318fd570')
 
 build() {
   cd s3transfer-$pkgver



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

2022-06-26 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, June 26, 2022 @ 20:03:40
  Author: svenstaro
Revision: 1239565

Remove unnecessary ffmpeg 4 seds (FS#75163)

Modified:
  telegram-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 20:03:35 UTC (rev 1239564)
+++ PKGBUILD2022-06-26 20:03:40 UTC (rev 1239565)
@@ -40,13 +40,6 @@
 -DCMAKE_BUILD_TYPE=Release \
 -DTDESKTOP_API_ID=611335 \
 -DTDESKTOP_API_HASH=d524b414d21f4d37f08684c1df41ac9c
-sed -i "s|/usr/lib/libav|/usr/lib/ffmpeg4.4/libav|g" build/build.ninja
-sed -i "s|/usr/lib/libsw|/usr/lib/ffmpeg4.4/libsw|g" build/build.ninja
-sed -i "s|-lavcodec|/usr/lib/ffmpeg4.4/libavcodec.so|g" build/build.ninja
-sed -i "s|-lavformat|/usr/lib/ffmpeg4.4/libavformat.so|g" build/build.ninja
-sed -i "s|-lavutil|/usr/lib/ffmpeg4.4/libavutil.so|g" build/build.ninja
-sed -i "s|-lswscale|/usr/lib/ffmpeg4.4/libswscale.so|g" build/build.ninja
-sed -i "s|-lswresample|/usr/lib/ffmpeg4.4/libswresample.so|g" 
build/build.ninja
 ninja -C build
 }
 



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

2022-06-26 Thread Jonathan Steel via arch-commits
Date: Sunday, June 26, 2022 @ 20:03:35
  Author: jsteel
Revision: 1239564

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 20:03:24 UTC (rev 1239563)
+++ PKGBUILD2022-06-26 20:03:35 UTC (rev 1239564)
@@ -1,31 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Felix Yan 
-
-pkgbase=python-boto3
-pkgname=python-boto3
-pkgver=1.23.7
-pkgrel=1
-pkgdesc='The AWS SDK for Python'
-arch=('any')
-license=('Apache')
-url='https://github.com/boto/boto3'
-depends=('python-botocore' 'python-jmespath' 'python-s3transfer')
-makedepends=('python-setuptools')
-# checkdepends=('python-coverage' 'python-nose' 'python-mock')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
-sha512sums=('2970bbbccda3a74c821ab8598dc24204f838a417ea06b7816d16dda828123725162287d0d6ff4c9c815678f365220d5cea16a25abf5b70a4512845d157ab4f75')
-
-build() {
-  cd boto3-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd boto3-$pkgver
-  # scripts/ci/run-tests
-}
-
-package() {
-  cd boto3-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-boto3/repos/community-any/PKGBUILD (from rev 1239563, 
python-boto3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 20:03:35 UTC (rev 1239564)
@@ -0,0 +1,31 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Felix Yan 
+
+pkgbase=python-boto3
+pkgname=python-boto3
+pkgver=1.24.17
+pkgrel=1
+pkgdesc='The AWS SDK for Python'
+arch=('any')
+license=('Apache')
+url='https://github.com/boto/boto3'
+depends=('python-botocore' 'python-jmespath' 'python-s3transfer')
+makedepends=('python-setuptools')
+# checkdepends=('python-coverage' 'python-nose' 'python-mock')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
+sha512sums=('a843146951eb2a5ad7dd31159d833806ae403014abf3e9a617f6457e3ecec1a0dc4c6ce6a87079c9112513cbd6a2ccd26542e5736eeea6c5723c7e39c660befa')
+
+build() {
+  cd boto3-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd boto3-$pkgver
+  # scripts/ci/run-tests
+}
+
+package() {
+  cd boto3-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2022-06-26 Thread Jonathan Steel via arch-commits
Date: Sunday, June 26, 2022 @ 20:03:24
  Author: jsteel
Revision: 1239563

upgpkg: python-boto3 1.24.17-1

Modified:
  python-boto3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 20:03:17 UTC (rev 1239562)
+++ PKGBUILD2022-06-26 20:03:24 UTC (rev 1239563)
@@ -3,7 +3,7 @@
 
 pkgbase=python-boto3
 pkgname=python-boto3
-pkgver=1.23.7
+pkgver=1.24.17
 pkgrel=1
 pkgdesc='The AWS SDK for Python'
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools')
 # checkdepends=('python-coverage' 'python-nose' 'python-mock')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
-sha512sums=('2970bbbccda3a74c821ab8598dc24204f838a417ea06b7816d16dda828123725162287d0d6ff4c9c815678f365220d5cea16a25abf5b70a4512845d157ab4f75')
+sha512sums=('a843146951eb2a5ad7dd31159d833806ae403014abf3e9a617f6457e3ecec1a0dc4c6ce6a87079c9112513cbd6a2ccd26542e5736eeea6c5723c7e39c660befa')
 
 build() {
   cd boto3-$pkgver



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

2022-06-26 Thread Jonathan Steel via arch-commits
Date: Sunday, June 26, 2022 @ 20:03:17
  Author: jsteel
Revision: 1239562

archrelease: copy trunk to community-any

Added:
  aws-cli/repos/community-any/PKGBUILD
(from rev 1239561, aws-cli/trunk/PKGBUILD)
Deleted:
  aws-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 20:03:09 UTC (rev 1239561)
+++ PKGBUILD2022-06-26 20:03:17 UTC (rev 1239562)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.24.7
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli;
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer' 'python-yaml')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('274f58a4d8e29b8e18dbe06877d043bd')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-
-  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 1239561, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 20:03:17 UTC (rev 1239562)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.25.17
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli;
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer' 'python-yaml')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('63e2e3dcb53dfccf14ca62322078bf5e')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+
+  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
+}



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

2022-06-26 Thread Jonathan Steel via arch-commits
Date: Sunday, June 26, 2022 @ 20:03:09
  Author: jsteel
Revision: 1239561

upgpkg: aws-cli 1.25.17-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 20:03:01 UTC (rev 1239560)
+++ PKGBUILD2022-06-26 20:03:09 UTC (rev 1239561)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.24.7
+pkgver=1.25.17
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer' 'python-yaml')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('274f58a4d8e29b8e18dbe06877d043bd')
+md5sums=('63e2e3dcb53dfccf14ca62322078bf5e')
 
 build() {
   cd $pkgname-$pkgver



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

2022-06-26 Thread Jonathan Steel via arch-commits
Date: Sunday, June 26, 2022 @ 20:03:01
  Author: jsteel
Revision: 1239560

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 20:02:49 UTC (rev 1239559)
+++ PKGBUILD2022-06-26 20:03:01 UTC (rev 1239560)
@@ -1,27 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.26.7
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore;
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('319f5e2da105b91fe07a738ffe48c538')
-
-build() {
-  cd botocore-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 1239559, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 20:03:01 UTC (rev 1239560)
@@ -0,0 +1,27 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.27.17
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore;
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('52ebcd89b506cb94a7bac9d6617fcaa9')
+
+build() {
+  cd botocore-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-06-26 Thread Jonathan Steel via arch-commits
Date: Sunday, June 26, 2022 @ 20:02:49
  Author: jsteel
Revision: 1239559

upgpkg: python-botocore 1.27.17-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 19:28:47 UTC (rev 1239558)
+++ PKGBUILD2022-06-26 20:02:49 UTC (rev 1239559)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.26.7
+pkgver=1.27.17
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('319f5e2da105b91fe07a738ffe48c538')
+md5sums=('52ebcd89b506cb94a7bac9d6617fcaa9')
 
 build() {
   cd botocore-$pkgver



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

2022-06-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, June 26, 2022 @ 19:28:47
  Author: jelle
Revision: 1239558

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 19:28:40 UTC (rev 1239557)
+++ PKGBUILD2022-06-26 19:28:47 UTC (rev 1239558)
@@ -1,40 +0,0 @@
-# Maintainer: Sébastien Luttringer
-
-pkgname=python-psutil
-pkgver=5.9.0
-pkgrel=2
-arch=('x86_64')
-pkgdesc='A cross-platform process and system utilities module for Python'
-url='https://github.com/giampaolo/psutil'
-license=('custom: BSD')
-depends=('python')
-makedepends=('python-setuptools')
-checkdepends=('net-tools' 'procps-ng' 'python-pytest')
-source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
-sha512sums=('8f105b84773c901a7969937bac2289281dc48f160f20e2d3d5f9b11f4a108fddf9864b477884c00ec33c3809f9f514a5f5faea623b7445dd8e637b96105a865b')
-
-build() {
-  cd psutil-release-$pkgver
-
-  python setup.py build --build-lib=build/python
-}
-
-check() {
-  cd psutil-release-$pkgver
-
-  # Required for testing
-#cp setup.py build/python
-#cp -r scripts build/python/
-
-# 4 non-working tests in build chroot, requires fixes. Test framework does not 
allow exclusion.
-#  PYTHONPATH="$PWD/build/python" python psutil/tests/__main__.py
-}
-
-package() {
-  cd psutil-release-$pkgver
-  python setup.py build --build-lib=build/python \
-  install --root="$pkgdir" --optimize=1
-  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-psutil/repos/community-x86_64/PKGBUILD (from rev 1239557, 
python-psutil/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 19:28:47 UTC (rev 1239558)
@@ -0,0 +1,40 @@
+# Maintainer: Sébastien Luttringer
+
+pkgname=python-psutil
+pkgver=5.9.1
+pkgrel=1
+arch=('x86_64')
+pkgdesc='A cross-platform process and system utilities module for Python'
+url='https://github.com/giampaolo/psutil'
+license=('custom: BSD')
+depends=('python')
+makedepends=('python-setuptools')
+checkdepends=('net-tools' 'procps-ng' 'python-pytest')
+source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
+sha512sums=('44008ce813157c09772420c1c5d1f02bc47648286f451e61d3976d36f0c45a7f520bdaaeb59701197ddcb3d7b50b2c83b55190f10667edbf216e44bf08d1eca8')
+
+build() {
+  cd psutil-release-$pkgver
+
+  python setup.py build --build-lib=build/python
+}
+
+check() {
+  cd psutil-release-$pkgver
+
+  # Required for testing
+#cp setup.py build/python
+#cp -r scripts build/python/
+
+# 4 non-working tests in build chroot, requires fixes. Test framework does not 
allow exclusion.
+#  PYTHONPATH="$PWD/build/python" python psutil/tests/__main__.py
+}
+
+package() {
+  cd psutil-release-$pkgver
+  python setup.py build --build-lib=build/python \
+  install --root="$pkgdir" --optimize=1
+  install -D -m 644 LICENSE "$pkgdir/"usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-06-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, June 26, 2022 @ 19:28:40
  Author: jelle
Revision: 1239557

upgpkg: python-psutil 5.9.1-1

Modified:
  python-psutil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 19:27:33 UTC (rev 1239556)
+++ PKGBUILD2022-06-26 19:28:40 UTC (rev 1239557)
@@ -1,8 +1,8 @@
 # Maintainer: Sébastien Luttringer
 
 pkgname=python-psutil
-pkgver=5.9.0
-pkgrel=2
+pkgver=5.9.1
+pkgrel=1
 arch=('x86_64')
 pkgdesc='A cross-platform process and system utilities module for Python'
 url='https://github.com/giampaolo/psutil'
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools')
 checkdepends=('net-tools' 'procps-ng' 'python-pytest')
 source=("https://github.com/giampaolo/psutil/archive/release-$pkgver.tar.gz;)
-sha512sums=('8f105b84773c901a7969937bac2289281dc48f160f20e2d3d5f9b11f4a108fddf9864b477884c00ec33c3809f9f514a5f5faea623b7445dd8e637b96105a865b')
+sha512sums=('44008ce813157c09772420c1c5d1f02bc47648286f451e61d3976d36f0c45a7f520bdaaeb59701197ddcb3d7b50b2c83b55190f10667edbf216e44bf08d1eca8')
 
 build() {
   cd psutil-release-$pkgver



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

2022-06-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, June 26, 2022 @ 19:27:33
  Author: jelle
Revision: 1239556

archrelease: copy trunk to community-any

Added:
  python-sqlalchemy-utils/repos/community-any/PKGBUILD
(from rev 1239555, python-sqlalchemy-utils/trunk/PKGBUILD)
Deleted:
  python-sqlalchemy-utils/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 19:27:26 UTC (rev 1239555)
+++ PKGBUILD2022-06-26 19:27:33 UTC (rev 1239556)
@@ -1,40 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor: Husam Bilal 
-
-_name=sqlalchemy-utils
-pkgname=python-sqlalchemy-utils
-pkgver=0.37.1
-pkgrel=4
-pkgdesc='Various utility functions, new data types and helpers for SQLAlchemy'
-url='https://github.com/kvesteri/sqlalchemy-utils'
-depends=('python' 'python-sqlalchemy' 'python-anyjson' 'python-babel'
- 'python-arrow' 'python-intervals' 'python-phonenumbers' 
'python-passlib'
- 'python-colour' 'python-dateutil' 'python-furl' 'python-cryptography'
- 'python-pendulum')
-checkdepends=('python-pytest' 'python-mock' 'python-flexmock' 'python-jinja')
-makedepends=('python' 'python-setuptools')
-license=('BSD')
-arch=('any')
-source=(https://github.com/kvesteri/sqlalchemy-utils/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('a97fccb85e8de7007716a9a7218a517539b911290c0ac0a5556fcd346266f947bd5d353be2b24b513986ee557d1b3aca2bef85563b5d30b1684cc5e2474d4d08')
-b2sums=('d79fd21f73af3b41e33b4f1c87cac92f36c8249b785dbb76972a0ef19931778ee2d9a24dfb0885508bc396007b6a4387313b1b8f384aa323d2c52a7ba10788f2')
-
-build() {
-  cd ${_name}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${_name}-${pkgver}
-  # Tests require a postgres and MySQL db
-  pytest --disable-pytest-warnings tests/test_models.py
-}
-
-package() {
-  cd ${_name}-${pkgver}
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-sqlalchemy-utils/repos/community-any/PKGBUILD (from rev 1239555, 
python-sqlalchemy-utils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 19:27:33 UTC (rev 1239556)
@@ -0,0 +1,40 @@
+# Maintainer: Jelle van der Waa 
+# Contributor: Husam Bilal 
+
+_name=sqlalchemy-utils
+pkgname=python-sqlalchemy-utils
+pkgver=0.38.2
+pkgrel=1
+pkgdesc='Various utility functions, new data types and helpers for SQLAlchemy'
+url='https://github.com/kvesteri/sqlalchemy-utils'
+depends=('python' 'python-sqlalchemy' 'python-anyjson' 'python-babel'
+ 'python-arrow' 'python-intervals' 'python-phonenumbers' 
'python-passlib'
+ 'python-colour' 'python-dateutil' 'python-furl' 'python-cryptography'
+ 'python-pendulum')
+checkdepends=('python-pytest' 'python-mock' 'python-flexmock' 'python-jinja')
+makedepends=('python' 'python-setuptools')
+license=('BSD')
+arch=('any')
+source=(https://github.com/kvesteri/sqlalchemy-utils/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('611099e53995aadf226a4e53b3a7e61d6bbb7b33574b65c25f9880daa9b35bbd261929a804b2f14de774b253d64a57dbba9fa7af0a931648b9e0b53477421e39')
+b2sums=('0a81b3f53e4e2207820f408e6f932afc28b7be1848753a5734ace0c295ea4269df406b87953a1036e21038b5c2f2cf96cedda0a10fbc6756b266e24cb373ce47')
+
+build() {
+  cd ${_name}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_name}-${pkgver}
+  # Tests require a postgres and MySQL db
+  pytest --disable-pytest-warnings tests/test_models.py
+}
+
+package() {
+  cd ${_name}-${pkgver}
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-06-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, June 26, 2022 @ 19:27:26
  Author: jelle
Revision: 1239555

upgpkg: python-sqlalchemy-utils 0.38.2-1

Modified:
  python-sqlalchemy-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 19:22:20 UTC (rev 1239554)
+++ PKGBUILD2022-06-26 19:27:26 UTC (rev 1239555)
@@ -4,8 +4,8 @@
 
 _name=sqlalchemy-utils
 pkgname=python-sqlalchemy-utils
-pkgver=0.37.1
-pkgrel=4
+pkgver=0.38.2
+pkgrel=1
 pkgdesc='Various utility functions, new data types and helpers for SQLAlchemy'
 url='https://github.com/kvesteri/sqlalchemy-utils'
 depends=('python' 'python-sqlalchemy' 'python-anyjson' 'python-babel'
@@ -17,8 +17,8 @@
 license=('BSD')
 arch=('any')
 
source=(https://github.com/kvesteri/sqlalchemy-utils/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('a97fccb85e8de7007716a9a7218a517539b911290c0ac0a5556fcd346266f947bd5d353be2b24b513986ee557d1b3aca2bef85563b5d30b1684cc5e2474d4d08')
-b2sums=('d79fd21f73af3b41e33b4f1c87cac92f36c8249b785dbb76972a0ef19931778ee2d9a24dfb0885508bc396007b6a4387313b1b8f384aa323d2c52a7ba10788f2')
+sha512sums=('611099e53995aadf226a4e53b3a7e61d6bbb7b33574b65c25f9880daa9b35bbd261929a804b2f14de774b253d64a57dbba9fa7af0a931648b9e0b53477421e39')
+b2sums=('0a81b3f53e4e2207820f408e6f932afc28b7be1848753a5734ace0c295ea4269df406b87953a1036e21038b5c2f2cf96cedda0a10fbc6756b266e24cb373ce47')
 
 build() {
   cd ${_name}-${pkgver}



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

2022-06-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, June 26, 2022 @ 19:22:40
  Author: jelle
Revision: 449446

archrelease: copy trunk to testing-x86_64

Added:
  nilfs-utils/repos/testing-x86_64/
  nilfs-utils/repos/testing-x86_64/PKGBUILD
(from rev 449445, nilfs-utils/trunk/PKGBUILD)

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

Copied: nilfs-utils/repos/testing-x86_64/PKGBUILD (from rev 449445, 
nilfs-utils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-06-26 19:22:40 UTC (rev 449446)
@@ -0,0 +1,26 @@
+# Maintainer: Dan McGee 
+# Contributor: Geoffroy Carrier 
+
+pkgname=nilfs-utils
+pkgver=2.2.9
+pkgrel=1
+pkgdesc="A log-structured file system supporting continuous snapshotting 
(userspace utils)"
+arch=('x86_64')
+url="http://nilfs.sourceforge.net/;
+license=('GPL2' 'LGPL2.1')
+backup=('etc/nilfs_cleanerd.conf')
+depends=('util-linux')
+source=(http://nilfs.sourceforge.net/download/$pkgname-$pkgver.tar.bz2)
+md5sums=('914cd9b876b090377504e1184c7b8ca0')
+
+build() {
+  cd $pkgname-$pkgver
+  sed -i -e 's#root_sbindir=/sbin#root_sbindir=/usr/bin#' configure
+  ./configure --sbindir=/usr/bin --with-libmount
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" sbindir=/usr/bin install LDCONFIG=/bin/true
+}



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

2022-06-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, June 26, 2022 @ 19:22:34
  Author: jelle
Revision: 449445

upgpkg: nilfs-utils 2.2.9-1

Modified:
  nilfs-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 19:13:07 UTC (rev 449444)
+++ PKGBUILD2022-06-26 19:22:34 UTC (rev 449445)
@@ -2,8 +2,8 @@
 # Contributor: Geoffroy Carrier 
 
 pkgname=nilfs-utils
-pkgver=2.2.8
-pkgrel=2
+pkgver=2.2.9
+pkgrel=1
 pkgdesc="A log-structured file system supporting continuous snapshotting 
(userspace utils)"
 arch=('x86_64')
 url="http://nilfs.sourceforge.net/;
@@ -11,7 +11,7 @@
 backup=('etc/nilfs_cleanerd.conf')
 depends=('util-linux')
 source=(http://nilfs.sourceforge.net/download/$pkgname-$pkgver.tar.bz2)
-md5sums=('feb4fbf72679cb6449935d720b161aec')
+md5sums=('914cd9b876b090377504e1184c7b8ca0')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in mimir/repos (6 files)

2022-06-26 Thread George Rawlinson via arch-commits
Date: Sunday, June 26, 2022 @ 19:22:20
  Author: grawlinson
Revision: 1239554

archrelease: copy trunk to community-x86_64

Added:
  mimir/repos/community-x86_64/
  mimir/repos/community-x86_64/PKGBUILD
(from rev 1239553, mimir/trunk/PKGBUILD)
  mimir/repos/community-x86_64/config.yaml
(from rev 1239553, mimir/trunk/config.yaml)
  mimir/repos/community-x86_64/systemd.service
(from rev 1239553, mimir/trunk/systemd.service)
  mimir/repos/community-x86_64/sysusers.conf
(from rev 1239553, mimir/trunk/sysusers.conf)
  mimir/repos/community-x86_64/tmpfiles.conf
(from rev 1239553, mimir/trunk/tmpfiles.conf)

-+
 PKGBUILD|   81 ++
 config.yaml |4 ++
 systemd.service |   45 ++
 sysusers.conf   |1 
 tmpfiles.conf   |1 
 5 files changed, 132 insertions(+)

Copied: mimir/repos/community-x86_64/PKGBUILD (from rev 1239553, 
mimir/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2022-06-26 19:22:20 UTC (rev 1239554)
@@ -0,0 +1,81 @@
+# Maintainer: George Rawlinson 
+
+pkgname=mimir
+pkgver=2.1.0
+pkgrel=4
+pkgdesc='A scalable long-term storage for Prometheus'
+arch=('x86_64')
+url='https://grafana.com/oss/mimir/'
+license=('AGPL3')
+depends=('glibc')
+makedepends=('git' 'go')
+backup=('etc/mimir.yaml')
+options=('!lto')
+_commit='840c68616a6fa4a4f86cbd581b05c43d0bfee7e0'
+source=(
+  "$pkgname::git+https://github.com/grafana/mimir.git#commit=$_commit;
+  'systemd.service'
+  'sysusers.conf'
+  'tmpfiles.conf'
+  'config.yaml'
+)
+b2sums=('SKIP'
+
'b1220c02c9cebbfbc65869a01dac92438ab87df557c67c27489f005b695303591c729a2c172a5e5254bd03276ac4c3d146498b18b6984595db9dc0ebc2a5e814'
+
'5f349b126b5ce6671b00d8482eb8aad71d73e93db983d4b4fe68a430f2902eac3ec7f8460f9f699ba6e76a13bc4b27d9a248e54a550a1849713364c3b84d4ad8'
+
'edc4e9e301e889dfa47528e411459a970f97feb9ca07a3fcc33b60c16adb988109543bc746689e82ac688caca0c60b75abe7d0cc80662d22de665712ff650bb8'
+
'573a19bda1baa73260364bf31bddcc5cd0fc6dc98f69d8ff8a549187cf7f47ecddb35e7141dd638acdb916579e408e6c9f860889847bbe130ccc7383fc4ba899')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^mimir-//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # create directory for build output
+  mkdir build
+}
+
+build() {
+  cd "$pkgname"
+
+  # verify dependencies
+  go mod verify
+
+  # set Go flags
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+
+  go build -v \
+-trimpath \
+-buildmode=pie \
+-mod=vendor \
+-modcacherw \
+-ldflags "-linkmode external -extldflags $LDFLAGS \
+-X github.com/grafana/mimir/pkg/util/version.Branch=main \
+-X github.com/grafana/mimir/pkg/util/version.Revision=$_commit \
+-X github.com/grafana/mimir/pkg/util/version.Version=$pkgver" \
+-o build \
+./cmd/...
+}
+
+check() {
+  cd "$pkgname"
+
+  go test -v ./...
+}
+
+package() {
+  # systemd integration
+  install -vDm644 systemd.service 
"$pkgdir/usr/lib/systemd/system/$pkgname.service"
+  install -vDm644 sysusers.conf "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
+  install -vDm644 tmpfiles.conf "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+  install -vDm640 config.yaml "$pkgdir/etc/$pkgname.yaml"
+
+  cd "$pkgname"
+
+  install -vDm755 -t "$pkgdir/usr/bin" build/*
+}

Copied: mimir/repos/community-x86_64/config.yaml (from rev 1239553, 
mimir/trunk/config.yaml)
===
--- community-x86_64/config.yaml(rev 0)
+++ community-x86_64/config.yaml2022-06-26 19:22:20 UTC (rev 1239554)
@@ -0,0 +1,4 @@
+---
+
+activity_tracker:
+  filepath: ""

Copied: mimir/repos/community-x86_64/systemd.service (from rev 1239553, 
mimir/trunk/systemd.service)
===
--- community-x86_64/systemd.service(rev 0)
+++ community-x86_64/systemd.service2022-06-26 19:22:20 UTC (rev 1239554)
@@ -0,0 +1,45 @@
+[Unit]
+Description=A scalable long-term storage for Prometheus
+Documentation=https://grafana.com/docs/mimir/latest/
+After=network-online.target
+
+[Service]
+User=mimir
+Group=mimir
+WorkingDirectory=/var/lib/mimir
+ReadWritePaths=/var/lib/mimir
+Restart=on-failure
+RestartSec=1
+ExecStart=/usr/bin/mimir -config.file /etc/mimir.yaml
+
+# hardening options
+UMask=0077
+NoNewPrivileges=true
+LimitNOFILE=1048576
+ProtectSystem=strict
+ProtectHome=true
+PrivateUsers=yes
+PrivateTmp=true
+PrivateDevices=true
+ProtectHostname=true
+ProtectClock=true
+ProtectKernelTunables=true
+ProtectKernelModules=true
+ProtectKernelLogs=true
+ProtectControlGroups=true
+RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6 AF_NETLINK
+RestrictNamespaces=true
+LockPersonality=true

[arch-commits] Commit in (8 files)

2022-06-26 Thread George Rawlinson via arch-commits
Date: Sunday, June 26, 2022 @ 19:21:18
  Author: grawlinson
Revision: 1239553

addpkg: mimir 2.1.0-4

Added:
  mimir/
  mimir/repos/
  mimir/trunk/
  mimir/trunk/PKGBUILD
  mimir/trunk/config.yaml
  mimir/trunk/systemd.service
  mimir/trunk/sysusers.conf
  mimir/trunk/tmpfiles.conf

-+
 PKGBUILD|   81 ++
 config.yaml |4 ++
 systemd.service |   45 ++
 sysusers.conf   |1 
 tmpfiles.conf   |1 
 5 files changed, 132 insertions(+)

Added: mimir/trunk/PKGBUILD
===
--- mimir/trunk/PKGBUILD(rev 0)
+++ mimir/trunk/PKGBUILD2022-06-26 19:21:18 UTC (rev 1239553)
@@ -0,0 +1,81 @@
+# Maintainer: George Rawlinson 
+
+pkgname=mimir
+pkgver=2.1.0
+pkgrel=4
+pkgdesc='A scalable long-term storage for Prometheus'
+arch=('x86_64')
+url='https://grafana.com/oss/mimir/'
+license=('AGPL3')
+depends=('glibc')
+makedepends=('git' 'go')
+backup=('etc/mimir.yaml')
+options=('!lto')
+_commit='840c68616a6fa4a4f86cbd581b05c43d0bfee7e0'
+source=(
+  "$pkgname::git+https://github.com/grafana/mimir.git#commit=$_commit;
+  'systemd.service'
+  'sysusers.conf'
+  'tmpfiles.conf'
+  'config.yaml'
+)
+b2sums=('SKIP'
+
'b1220c02c9cebbfbc65869a01dac92438ab87df557c67c27489f005b695303591c729a2c172a5e5254bd03276ac4c3d146498b18b6984595db9dc0ebc2a5e814'
+
'5f349b126b5ce6671b00d8482eb8aad71d73e93db983d4b4fe68a430f2902eac3ec7f8460f9f699ba6e76a13bc4b27d9a248e54a550a1849713364c3b84d4ad8'
+
'edc4e9e301e889dfa47528e411459a970f97feb9ca07a3fcc33b60c16adb988109543bc746689e82ac688caca0c60b75abe7d0cc80662d22de665712ff650bb8'
+
'573a19bda1baa73260364bf31bddcc5cd0fc6dc98f69d8ff8a549187cf7f47ecddb35e7141dd638acdb916579e408e6c9f860889847bbe130ccc7383fc4ba899')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^mimir-//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # create directory for build output
+  mkdir build
+}
+
+build() {
+  cd "$pkgname"
+
+  # verify dependencies
+  go mod verify
+
+  # set Go flags
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+
+  go build -v \
+-trimpath \
+-buildmode=pie \
+-mod=vendor \
+-modcacherw \
+-ldflags "-linkmode external -extldflags $LDFLAGS \
+-X github.com/grafana/mimir/pkg/util/version.Branch=main \
+-X github.com/grafana/mimir/pkg/util/version.Revision=$_commit \
+-X github.com/grafana/mimir/pkg/util/version.Version=$pkgver" \
+-o build \
+./cmd/...
+}
+
+check() {
+  cd "$pkgname"
+
+  go test -v ./...
+}
+
+package() {
+  # systemd integration
+  install -vDm644 systemd.service 
"$pkgdir/usr/lib/systemd/system/$pkgname.service"
+  install -vDm644 sysusers.conf "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
+  install -vDm644 tmpfiles.conf "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+  install -vDm640 config.yaml "$pkgdir/etc/$pkgname.yaml"
+
+  cd "$pkgname"
+
+  install -vDm755 -t "$pkgdir/usr/bin" build/*
+}

Added: mimir/trunk/config.yaml
===
--- mimir/trunk/config.yaml (rev 0)
+++ mimir/trunk/config.yaml 2022-06-26 19:21:18 UTC (rev 1239553)
@@ -0,0 +1,4 @@
+---
+
+activity_tracker:
+  filepath: ""

Added: mimir/trunk/systemd.service
===
--- mimir/trunk/systemd.service (rev 0)
+++ mimir/trunk/systemd.service 2022-06-26 19:21:18 UTC (rev 1239553)
@@ -0,0 +1,45 @@
+[Unit]
+Description=A scalable long-term storage for Prometheus
+Documentation=https://grafana.com/docs/mimir/latest/
+After=network-online.target
+
+[Service]
+User=mimir
+Group=mimir
+WorkingDirectory=/var/lib/mimir
+ReadWritePaths=/var/lib/mimir
+Restart=on-failure
+RestartSec=1
+ExecStart=/usr/bin/mimir -config.file /etc/mimir.yaml
+
+# hardening options
+UMask=0077
+NoNewPrivileges=true
+LimitNOFILE=1048576
+ProtectSystem=strict
+ProtectHome=true
+PrivateUsers=yes
+PrivateTmp=true
+PrivateDevices=true
+ProtectHostname=true
+ProtectClock=true
+ProtectKernelTunables=true
+ProtectKernelModules=true
+ProtectKernelLogs=true
+ProtectControlGroups=true
+RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6 AF_NETLINK
+RestrictNamespaces=true
+LockPersonality=true
+MemoryDenyWriteExecute=true
+RestrictRealtime=true
+RestrictSUIDSGID=true
+RemoveIPC=true
+CapabilityBoundingSet=
+AmbientCapabilities=
+SystemCallFilter=@system-service
+SystemCallFilter=~@privileged @resources
+SystemCallArchitectures=native
+
+[Install]
+WantedBy=multi-user.target
+

Added: mimir/trunk/sysusers.conf
===
--- mimir/trunk/sysusers.conf   (rev 0)
+++ mimir/trunk/sysusers.conf   2022-06-26 19:21:18 UTC (rev 1239553)
@@ -0,0 +1 @@
+u mimir - "Mimir daemon user" 

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

2022-06-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, June 26, 2022 @ 19:14:43
  Author: jelle
Revision: 1239550

archrelease: copy trunk to community-x86_64

Added:
  wabt/repos/community-x86_64/PKGBUILD
(from rev 1239549, wabt/trunk/PKGBUILD)
Deleted:
  wabt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 19:14:37 UTC (rev 1239549)
+++ PKGBUILD2022-06-26 19:14:43 UTC (rev 1239550)
@@ -1,54 +0,0 @@
-# Maintainer: Jelle van der Waa 
-# Contributor:  Konstantin Gorodinskii 
-
-pkgname=wabt
-pkgdesc="The WebAssembly Binary Toolkit is a suite of tools for WebAssembly"
-url="https://github.com/WebAssembly/wabt;
-pkgver=1.0.26
-pkgrel=1
-arch=('x86_64')
-license=('APACHE')
-depends=(glibc gcc-libs)
-makedepends=('cmake' 'git' 'gcc' 'clang' 'python-ply' 'gtest')
-source=("git+https://github.com/WebAssembly/wabt#commit=aa0515b3c808da880942db8658abeaa969534667?signed;
-"git+https://github.com/WebAssembly/testsuite;
-"git+https://github.com/google/googletest;
-"git+https://github.com/dabeaz/ply;)
-validpgpkeys=('5DE3E0509C47EA3CF04A42D34AEE18F83AFDEB23')
-md5sums=('SKIP'
- 'SKIP'
- 'SKIP'
- 'SKIP')
-
-prepare() {
-  cd ${pkgname}
-
-  git submodule init
-  git config submodule."external/testsuite".url "${srcdir}/testsuite"
-  git config submodule."external/googletest".url "${srcdir}/googletest"
-  git config submodule."external/ply".url "${srcdir}/ply"
-  git submodule update --recursive
-
-  mkdir build
-}
-
-build() {
-  cd ${pkgname}/build
-  export CFLAGS+=" -ffat-lto-objects"
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
-..
-
-  make
-}
-
-check() {
-  cd ${pkgname}
-#  make test
-}
-
-package() {
-  cd ${pkgname}/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: wabt/repos/community-x86_64/PKGBUILD (from rev 1239549, 
wabt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 19:14:43 UTC (rev 1239550)
@@ -0,0 +1,54 @@
+# Maintainer: Jelle van der Waa 
+# Contributor:  Konstantin Gorodinskii 
+
+pkgname=wabt
+pkgdesc="The WebAssembly Binary Toolkit is a suite of tools for WebAssembly"
+url="https://github.com/WebAssembly/wabt;
+pkgver=1.0.29
+pkgrel=1
+arch=('x86_64')
+license=('APACHE')
+depends=(glibc gcc-libs)
+makedepends=('cmake' 'git' 'gcc' 'clang' 'python-ply' 'gtest')
+source=("git+https://github.com/WebAssembly/wabt#commit=c32fa597218dbe2c25b43a9837a8475b493ddb71;
+"git+https://github.com/WebAssembly/testsuite;
+"git+https://github.com/google/googletest;
+"git+https://github.com/dabeaz/ply;)
+validpgpkeys=('5DE3E0509C47EA3CF04A42D34AEE18F83AFDEB23')
+md5sums=('SKIP'
+ 'SKIP'
+ 'SKIP'
+ 'SKIP')
+
+prepare() {
+  cd ${pkgname}
+
+  git submodule init
+  git config submodule."external/testsuite".url "${srcdir}/testsuite"
+  git config submodule."external/googletest".url "${srcdir}/googletest"
+  git config submodule."external/ply".url "${srcdir}/ply"
+  git submodule update --recursive
+
+  mkdir build
+}
+
+build() {
+  cd ${pkgname}/build
+  export CFLAGS+=" -ffat-lto-objects"
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+..
+
+  make
+}
+
+check() {
+  cd ${pkgname}
+#  make test
+}
+
+package() {
+  cd ${pkgname}/build
+  make DESTDIR="${pkgdir}" install
+}



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

2022-06-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, June 26, 2022 @ 19:14:37
  Author: jelle
Revision: 1239549

upgpkg: wabt 1.0.29-1

Modified:
  wabt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 18:43:46 UTC (rev 1239548)
+++ PKGBUILD2022-06-26 19:14:37 UTC (rev 1239549)
@@ -4,13 +4,13 @@
 pkgname=wabt
 pkgdesc="The WebAssembly Binary Toolkit is a suite of tools for WebAssembly"
 url="https://github.com/WebAssembly/wabt;
-pkgver=1.0.26
+pkgver=1.0.29
 pkgrel=1
 arch=('x86_64')
 license=('APACHE')
 depends=(glibc gcc-libs)
 makedepends=('cmake' 'git' 'gcc' 'clang' 'python-ply' 'gtest')
-source=("git+https://github.com/WebAssembly/wabt#commit=aa0515b3c808da880942db8658abeaa969534667?signed;
+source=("git+https://github.com/WebAssembly/wabt#commit=c32fa597218dbe2c25b43a9837a8475b493ddb71;
 "git+https://github.com/WebAssembly/testsuite;
 "git+https://github.com/google/googletest;
 "git+https://github.com/dabeaz/ply;)



[arch-commits] Commit in python-asgiref/repos/extra-any (PKGBUILD PKGBUILD)

2022-06-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, June 26, 2022 @ 19:13:07
  Author: jelle
Revision: 449444

archrelease: copy trunk to extra-any

Added:
  python-asgiref/repos/extra-any/PKGBUILD
(from rev 449443, python-asgiref/trunk/PKGBUILD)
Deleted:
  python-asgiref/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 19:12:58 UTC (rev 449443)
+++ PKGBUILD2022-06-26 19:13:07 UTC (rev 449444)
@@ -1,31 +0,0 @@
-# Maintainer: Jelle van der Waa 
-
-pkgname=python-asgiref
-pkgver=3.5.1
-pkgrel=1
-pkgdesc="Reference ASGI adapters and channel layers"
-arch=(any)
-url="http://github.com/django/asgiref;
-license=('BSD')
-makedepends=('python-setuptools')
-checkdepends=(python-pytest python-pytest-asyncio)
-depends=('python')
-source=("https://pypi.io/packages/source/a/asgiref/asgiref-${pkgver}.tar.gz;)
-sha256sums=('fddeea3c53fa99d0cdb613c3941cc6e52d822491fc2753fba25768fb5bf4e865')
-
-build() {
-cd "asgiref-${pkgver}"
-python setup.py build
-}
-
-check() {
-cd "asgiref-${pkgver}"
-PYTHONPATH=. pytest .
-}
-
-package() {
-cd "asgiref-${pkgver}"
-python setup.py install --root=${pkgdir} --optimize=1
-
-install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-asgiref/repos/extra-any/PKGBUILD (from rev 449443, 
python-asgiref/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 19:13:07 UTC (rev 449444)
@@ -0,0 +1,31 @@
+# Maintainer: Jelle van der Waa 
+
+pkgname=python-asgiref
+pkgver=3.5.2
+pkgrel=1
+pkgdesc="Reference ASGI adapters and channel layers"
+arch=(any)
+url="http://github.com/django/asgiref;
+license=('BSD')
+makedepends=('python-setuptools')
+checkdepends=(python-pytest python-pytest-asyncio)
+depends=('python')
+source=("https://pypi.io/packages/source/a/asgiref/asgiref-${pkgver}.tar.gz;)
+sha256sums=('4a29362a6acebe09bf1d6640db38c1dc3d9217c68e6f9f6204d72667fc19a424')
+
+build() {
+cd "asgiref-${pkgver}"
+python setup.py build
+}
+
+check() {
+cd "asgiref-${pkgver}"
+PYTHONPATH=. pytest .
+}
+
+package() {
+cd "asgiref-${pkgver}"
+python setup.py install --root=${pkgdir} --optimize=1
+
+install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-06-26 Thread Jelle van der Waa via arch-commits
Date: Sunday, June 26, 2022 @ 19:12:58
  Author: jelle
Revision: 449443

upgpkg: python-asgiref 3.5.2-1

Modified:
  python-asgiref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 18:13:59 UTC (rev 449442)
+++ PKGBUILD2022-06-26 19:12:58 UTC (rev 449443)
@@ -1,7 +1,7 @@
 # Maintainer: Jelle van der Waa 
 
 pkgname=python-asgiref
-pkgver=3.5.1
+pkgver=3.5.2
 pkgrel=1
 pkgdesc="Reference ASGI adapters and channel layers"
 arch=(any)
@@ -11,7 +11,7 @@
 checkdepends=(python-pytest python-pytest-asyncio)
 depends=('python')
 source=("https://pypi.io/packages/source/a/asgiref/asgiref-${pkgver}.tar.gz;)
-sha256sums=('fddeea3c53fa99d0cdb613c3941cc6e52d822491fc2753fba25768fb5bf4e865')
+sha256sums=('4a29362a6acebe09bf1d6640db38c1dc3d9217c68e6f9f6204d72667fc19a424')
 
 build() {
 cd "asgiref-${pkgver}"



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

2022-06-26 Thread Daniel M. Capella via arch-commits
Date: Sunday, June 26, 2022 @ 18:43:46
  Author: polyzen
Revision: 1239548

archrelease: copy trunk to community-any

Added:
  khal/repos/community-any/PKGBUILD
(from rev 1239547, khal/trunk/PKGBUILD)
Deleted:
  khal/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 18:43:18 UTC (rev 1239547)
+++ PKGBUILD2022-06-26 18:43:46 UTC (rev 1239548)
@@ -1,65 +0,0 @@
-# Maintainer: David Runge 
-# Maintainer: Daniel M. Capella 
-# Contributor: eolianoe 
-# Contributor: Hugo Osvaldo Barrera 
-# Contributor: Thomas Weißschuh 
-# Contributor: Étienne Deparis 
-# Contributor: Daniel M. Capella 
-
-_name=khal
-pkgname=khal
-pkgver=0.10.4
-pkgrel=2
-pkgdesc='CLI calendar application build around CalDAV'
-arch=('any')
-url="https://lostpackets.de/khal/;
-license=('MIT')
-makedepends=('python-setuptools-scm' 'python-sphinxcontrib-newsfeed')
-depends=('python-atomicwrites' 'python-click' 'python-click-log'
-'python-configobj' 'python-dateutil' 'python-icalendar' 'python-pytz'
-'python-pyxdg' 'python-urwid' 'python-tzlocal')
-optdepends=('python-setproctitle: Set process name'
-'vdirsyncer: Synchronize CalDAV calendars')
-checkdepends=('python-pytest' 'python-freezegun' 'vdirsyncer')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha256sums=('3fdb980a9a61c0206d7a82b16f77b408a4f341a2b866b9c9fcf6a641850d129f')
-b2sums=('0cb9deb793f577bbcedcbba4788988973ee9d0ab71fdd30a01142a54434767d74b1d10e5bfa5f6a2feb9f18a8a9fe22717d4a38a07ab5e30b331c87b79a79f39')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py build
-  make -C doc man PYTHONPATH="${PWD}"
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  env
-  export PYTHONPATH="build:${PYTHONPATH}"
-  export LC_ALL="C"
-  # the tests are very fragile
-  # https://github.com/pimutils/khal/issues/860;
-  pytest -v -k "not test_only_update_old_event"
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --skip-build \
---optimize=1 \
---root="${pkgdir}"
-  # executables
-  install -vDm 755 bin/{i,}"${pkgname}" -t "$pkgdir/usr/bin/"
-  # configuration
-  install -vDm 644 "${pkgname}.conf.sample" \
-"${pkgdir}/usr/share/doc/${pkgname}/examples/${pkgname}.conf"
-  # man page
-  install -vDm 644 doc/build/man/${pkgname}.1 \
--t "${pkgdir}/usr/share/man/man1/"
-  # zsh completion
-  install -vDm 644 "misc/__${pkgname}" \
-"${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
-  # license
-  install -vDm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  # docs
-  install -vDm 644 {AUTHORS.txt,{CHANGELOG,CONTRIBUTING,README}.rst} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: khal/repos/community-any/PKGBUILD (from rev 1239547, 
khal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 18:43:46 UTC (rev 1239548)
@@ -0,0 +1,67 @@
+# Maintainer: David Runge 
+# Maintainer: Daniel M. Capella 
+# Contributor: eolianoe 
+# Contributor: Hugo Osvaldo Barrera 
+# Contributor: Thomas Weißschuh 
+# Contributor: Étienne Deparis 
+
+pkgname=khal
+pkgver=0.10.5
+pkgrel=1
+pkgdesc='CLI calendar application build around CalDAV'
+arch=('any')
+url="https://lostpackets.de/khal/;
+license=('MIT')
+makedepends=('python-setuptools-scm' 'python-sphinxcontrib-newsfeed')
+depends=('python-atomicwrites' 'python-click' 'python-click-log'
+ 'python-configobj' 'python-dateutil' 'python-icalendar' 'python-pytz'
+ 'python-pyxdg' 'python-urwid' 'python-tzlocal')
+optdepends=('python-setproctitle: Set process name'
+'vdirsyncer: Synchronize CalDAV calendars')
+checkdepends=('python-pytest' 'python-freezegun' 'vdirsyncer')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('4eefb7ac302a26d8606db392817587a4ed94c27a15bf2ea211614a464fcf0c76')
+b2sums=('195e61fcff7cff1308f2819ec54c5733acebb5ace18f88afa8fc561926857dab3e0e0b82d1f7e3e0235e69ed9ad56544d6eeb95a9e9829dc078d49ebf96c0485')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py build
+  make -C doc man PYTHONPATH="${PWD}"
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  env
+  export PYTHONPATH="build:${PYTHONPATH}"
+  export LC_ALL="C"
+  pytest -v
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--root="${pkgdir}"
+  # executables
+  install -vDm 755 bin/{i,}"${pkgname}" -t "$pkgdir/usr/bin/"
+  # configuration
+  install -vDm 644 "${pkgname}.conf.sample" \
+"${pkgdir}/usr/share/doc/${pkgname}/examples/${pkgname}.conf"
+  # man page
+  install -vDm 644 doc/build/man/${pkgname}.1 \
+-t 

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

2022-06-26 Thread Daniel M. Capella via arch-commits
Date: Sunday, June 26, 2022 @ 18:43:18
  Author: polyzen
Revision: 1239547

upgpkg: khal 0.10.5-1

Modified:
  khal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 18:13:57 UTC (rev 1239546)
+++ PKGBUILD2022-06-26 18:43:18 UTC (rev 1239547)
@@ -4,12 +4,10 @@
 # Contributor: Hugo Osvaldo Barrera 
 # Contributor: Thomas Weißschuh 
 # Contributor: Étienne Deparis 
-# Contributor: Daniel M. Capella 
 
-_name=khal
 pkgname=khal
-pkgver=0.10.4
-pkgrel=2
+pkgver=0.10.5
+pkgrel=1
 pkgdesc='CLI calendar application build around CalDAV'
 arch=('any')
 url="https://lostpackets.de/khal/;
@@ -16,14 +14,14 @@
 license=('MIT')
 makedepends=('python-setuptools-scm' 'python-sphinxcontrib-newsfeed')
 depends=('python-atomicwrites' 'python-click' 'python-click-log'
-'python-configobj' 'python-dateutil' 'python-icalendar' 'python-pytz'
-'python-pyxdg' 'python-urwid' 'python-tzlocal')
+ 'python-configobj' 'python-dateutil' 'python-icalendar' 'python-pytz'
+ 'python-pyxdg' 'python-urwid' 'python-tzlocal')
 optdepends=('python-setproctitle: Set process name'
 'vdirsyncer: Synchronize CalDAV calendars')
 checkdepends=('python-pytest' 'python-freezegun' 'vdirsyncer')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha256sums=('3fdb980a9a61c0206d7a82b16f77b408a4f341a2b866b9c9fcf6a641850d129f')
-b2sums=('0cb9deb793f577bbcedcbba4788988973ee9d0ab71fdd30a01142a54434767d74b1d10e5bfa5f6a2feb9f18a8a9fe22717d4a38a07ab5e30b331c87b79a79f39')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('4eefb7ac302a26d8606db392817587a4ed94c27a15bf2ea211614a464fcf0c76')
+b2sums=('195e61fcff7cff1308f2819ec54c5733acebb5ace18f88afa8fc561926857dab3e0e0b82d1f7e3e0235e69ed9ad56544d6eeb95a9e9829dc078d49ebf96c0485')
 
 build() {
   cd "${pkgname}-${pkgver}"
@@ -36,9 +34,7 @@
   env
   export PYTHONPATH="build:${PYTHONPATH}"
   export LC_ALL="C"
-  # the tests are very fragile
-  # https://github.com/pimutils/khal/issues/860;
-  pytest -v -k "not test_only_update_old_event"
+  pytest -v
 }
 
 package() {
@@ -54,8 +50,14 @@
   # man page
   install -vDm 644 doc/build/man/${pkgname}.1 \
 -t "${pkgdir}/usr/share/man/man1/"
-  # zsh completion
-  install -vDm 644 "misc/__${pkgname}" \
+  # completions
+  install -vd \
+
"${pkgdir}/usr/share/"{bash-completion/completions,fish/vendor_completions.d,zsh/site-functions}
+  _KHAL_COMPLETE=bash_source "$pkgdir"/usr/bin/khal > \
+"${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
+  _KHAL_COMPLETE=fish_source "$pkgdir"/usr/bin/khal > \
+"${pkgdir}/usr/share/fish/vendor_completions.d/${pkgname}.fish"
+  _KHAL_COMPLETE=zsh_source "$pkgdir"/usr/bin/khal > \
 "${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
   # license
   install -vDm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"



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

2022-06-26 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, June 26, 2022 @ 17:34:02
  Author: svenstaro
Revision: 1239537

archrelease: copy trunk to community-x86_64

Added:
  
neovim/repos/community-x86_64/0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch
(from rev 1239536, 
neovim/trunk/0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch)
  neovim/repos/community-x86_64/PKGBUILD
(from rev 1239536, neovim/trunk/PKGBUILD)
Deleted:
  
neovim/repos/community-x86_64/0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch
  neovim/repos/community-x86_64/PKGBUILD

-+
 0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch |  128 
+-
 PKGBUILD|  128 
+-
 2 files changed, 128 insertions(+), 128 deletions(-)

Deleted: 0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch
===
--- 0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch 
2022-06-26 17:33:49 UTC (rev 1239536)
+++ 0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch 
2022-06-26 17:34:02 UTC (rev 1239537)
@@ -1,64 +0,0 @@
-From  Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" 
-Date: Thu, 4 Nov 2021 22:04:17 +
-Subject: [PATCH] patch_terminfo_bugs: Extend smglr ignores to smglp and smgrp
-
-The latter were added for xterm by ncurses 6.3 and are similarly
-affected.
-
-Fixes https://github.com/neovim/neovim/issues/16238

- src/nvim/tui/tui.c | 16 
- 1 file changed, 16 insertions(+)
-
-diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c
-index f9c5521bdb63..bb752863692d 100644
 a/src/nvim/tui/tui.c
-+++ b/src/nvim/tui/tui.c
-@@ -1663,30 +1663,46 @@ static void patch_terminfo_bugs(TUIData *data, const 
char *term, const char *col
- ILOG("Disabling smglr with TERM=xterm for non-xterm.");
- unibi_set_str(ut, unibi_set_lr_margin, NULL);
-   }
-+  if (unibi_get_str(ut, unibi_set_left_margin_parm)) {
-+ILOG("Disabling smglp with TERM=xterm for non-xterm.");
-+unibi_set_str(ut, unibi_set_left_margin_parm, NULL);
-+  }
-+  if (unibi_get_str(ut, unibi_set_right_margin_parm)) {
-+ILOG("Disabling smgrp with TERM=xterm for non-xterm.");
-+unibi_set_str(ut, unibi_set_right_margin_parm, NULL);
-+  }
- }
- 
- #ifdef WIN32
- // XXX: workaround libuv implicit LF => CRLF conversion. #10558
- unibi_set_str(ut, unibi_cursor_down, "\x1b[B");
- #endif
-   } else if (rxvt) {
- // 2017-04 terminfo.src lacks these.  Unicode rxvt has them.
- unibi_set_if_empty(ut, unibi_enter_italics_mode, "\x1b[3m");
- unibi_set_if_empty(ut, unibi_exit_italics_mode, "\x1b[23m");
- unibi_set_if_empty(ut, unibi_to_status_line, "\x1b]2");
- unibi_set_if_empty(ut, unibi_from_status_line, "\x07");
- // 2017-04 terminfo.src has older control sequences.
- unibi_set_str(ut, unibi_enter_ca_mode, "\x1b[?1049h");
- unibi_set_str(ut, unibi_exit_ca_mode, "\x1b[?1049l");
-   } else if (screen) {
- // per the screen manual; 2017-04 terminfo.src lacks these.
- unibi_set_if_empty(ut, unibi_to_status_line, "\x1b_");
- unibi_set_if_empty(ut, unibi_from_status_line, "\x1b\\");
- // Fix an issue where smglr is inherited by TERM=screen.xterm.
- if (unibi_get_str(ut, unibi_set_lr_margin)) {
-   ILOG("Disabling smglr with TERM=screen.xterm for screen.");
-   unibi_set_str(ut, unibi_set_lr_margin, NULL);
- }
-+if (unibi_get_str(ut, unibi_set_left_margin_parm)) {
-+  ILOG("Disabling smglp with TERM=screen.xterm for screen.");
-+  unibi_set_str(ut, unibi_set_left_margin_parm, NULL);
-+}
-+if (unibi_get_str(ut, unibi_set_right_margin_parm)) {
-+  ILOG("Disabling smgrp with TERM=screen.xterm for screen.");
-+  unibi_set_str(ut, unibi_set_right_margin_parm, NULL);
-+}
-   } else if (tmux) {
- unibi_set_if_empty(ut, unibi_to_status_line, "\x1b_");
- unibi_set_if_empty(ut, unibi_from_status_line, "\x1b\\");

Copied: 
neovim/repos/community-x86_64/0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch
 (from rev 1239536, 
neovim/trunk/0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch)
===
--- 0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch 
(rev 0)
+++ 0001-patch_terminfo_bugs-Extend-smglr-ignores-to-smglp-an.patch 
2022-06-26 17:34:02 UTC (rev 1239537)
@@ -0,0 +1,64 @@
+From  Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Thu, 4 Nov 2021 22:04:17 +
+Subject: [PATCH] patch_terminfo_bugs: Extend smglr ignores to smglp and smgrp
+
+The latter were added for xterm by ncurses 6.3 and are similarly
+affected.
+
+Fixes 

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

2022-06-26 Thread Sven-Hendrik Haase via arch-commits
Date: Sunday, June 26, 2022 @ 17:33:49
  Author: svenstaro
Revision: 1239536

upgpkg: neovim 0.7.1-1

Modified:
  neovim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 14:15:40 UTC (rev 1239535)
+++ PKGBUILD2022-06-26 17:33:49 UTC (rev 1239536)
@@ -4,8 +4,8 @@
 # Contributor: Florian Hahn 
 
 pkgname=neovim
-pkgver=0.7.0
-pkgrel=3
+pkgver=0.7.1
+pkgrel=1
 pkgdesc='Fork of Vim aiming to improve user experience, plugins, and GUIs'
 arch=('x86_64')
 url='https://neovim.io'
@@ -20,7 +20,7 @@
 'wl-clipboard: for clipboard support on wayland (see :help 
clipboard)')
 options=(debug)
 
source=("https://github.com/neovim/neovim/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('3597c54fb925a4d607bca9ba0fdb37df90ecb816da99f52baf46cc2ec79727a55048ba1d8d22c8e7d61f0e8e35546326b1d0d15c0a91de8bf5bc529c45fb1ce0')
+sha512sums=('ebb76b722b77218234fe99a6ede0414eebd4a371dc792288b3a26ff1c5afbc9d8bce314d7c4f637b59c05ca12159680dafe7ac2c35532187cde56d7dd2801eba')
 
 build() {
   export PKG_CONFIG_PATH="/usr/lib/libvterm01/pkgconfig:$PKG_CONFIG_PATH"



[arch-commits] Commit in linux-hardened/repos/extra-x86_64 (6 files)

2022-06-26 Thread Levente Polyak via arch-commits
Date: Sunday, June 26, 2022 @ 13:15:20
  Author: anthraxx
Revision: 449435

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 449434, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config
(from rev 449434, linux-hardened/trunk/config)
  linux-hardened/repos/extra-x86_64/keys/
Deleted:
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config
  linux-hardened/repos/extra-x86_64/keys/

--+
 PKGBUILD |  424 -
 config   |21636 ++---
 2 files changed, 11030 insertions(+), 11030 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 449434:449435 to see the changes.


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

2022-06-26 Thread Levente Polyak via arch-commits
Date: Sunday, June 26, 2022 @ 13:15:12
  Author: anthraxx
Revision: 449434

upgpkg: linux-hardened 5.18.7.hardened1-1

Modified:
  linux-hardened/trunk/PKGBUILD
  linux-hardened/trunk/config

--+
 PKGBUILD |8 
 config   |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 11:32:15 UTC (rev 449433)
+++ PKGBUILD2022-06-26 13:15:12 UTC (rev 449434)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-pkgver=5.18.6.hardened1
+pkgver=5.18.7.hardened1
 pkgrel=1
 pkgdesc='Security-Hardened Linux'
 url='https://github.com/anthraxx/linux-hardened'
@@ -29,12 +29,12 @@
   '647F28654894E3BD457199BE38DBBDC86092693E'  # Greg Kroah-Hartman
   'E240B57E2C4630BA768E2F26FC1B547C8D8172C8'  # Levente Polyak
 )
-sha256sums=('4e1c2a9e79847850029571a1dd04761e5f657b52c558070a085365641f133478'
+sha256sums=('a1a2d064bf5a1f02021f66931237ec3d2920994d49910d27d3fe581e2e21525b'
 'SKIP'
-'350cf18269e740664431f5c55da2f07cc51eb84553d37c34686c664c3e281a78'
+'2421c1f10d96b618512e4a81d8ee2ad228508db662fd32df04b84c94ca9bba20'
 'SKIP'
 '5e59f0f2fa7afaacbade24804eb5e0d9ed8fdb6015450023a11e5d1ce6e7df3c'
-'d47979786deec7fc0bec12a1fc99d8919d4e057c66b31aa81f07e49c065c48db')
+'6c5e71426fc24b3c9b6cfd646fffcb7e6071763e9c7cfa5102cbf12ffaa164e0')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2022-06-26 11:32:15 UTC (rev 449433)
+++ config  2022-06-26 13:15:12 UTC (rev 449434)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.18.6-hardened1 Kernel Configuration
+# Linux/x86 5.18.7-hardened1 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 12.1.0"
 CONFIG_CC_IS_GCC=y



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

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 12:52:24
  Author: arojas
Revision: 1239525

archrelease: copy trunk to community-x86_64

Added:
  libindi/repos/community-x86_64/PKGBUILD
(from rev 1239524, libindi/trunk/PKGBUILD)
Deleted:
  libindi/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 12:52:12 UTC (rev 1239524)
+++ PKGBUILD2022-06-26 12:52:24 UTC (rev 1239525)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=libindi
-pkgver=1.9.6
-pkgrel=1
-pkgdesc='A distributed control protocol designed to operate astronomical 
instrumentation'
-url='https://www.indilib.org/index.php?title=Main_Page'
-license=(GPL2)
-arch=(x86_64)
-depends=(libnova cfitsio libusb libjpeg gsl libtheora fftw)
-makedepends=(cmake boost qt5-base)
-source=(https://github.com/indilib/indi/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('ee16b4bb01f436ab54596c5999227cb5938b2bb2dd83fdc0f01edffd752f9dd8')
-
-prepare() {
-  sed -e 's|GROUP="plugdev", MODE="0666"|TAG+="uaccess"|' -i 
indi-$pkgver/drivers/*/*.rules
-}
-
-build() {
-  cmake -B build -S indi-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DINDI_BUILD_QT5_CLIENT=ON \
--DUDEVRULES_INSTALL_DIR=/usr/lib/udev/rules.d \
--DCMAKE_C_FLAGS="$CFLAGS -ffat-lto-objects" \
--DCMAKE_CXX_FLAGS="$CXXFLAGS -ffat-lto-objects"
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: libindi/repos/community-x86_64/PKGBUILD (from rev 1239524, 
libindi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 12:52:24 UTC (rev 1239525)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=libindi
+pkgver=1.9.6
+pkgrel=2
+pkgdesc='A distributed control protocol designed to operate astronomical 
instrumentation'
+url='https://www.indilib.org/index.php?title=Main_Page'
+license=(GPL2)
+arch=(x86_64)
+depends=(libnova cfitsio libusb libjpeg gsl libtheora fftw)
+makedepends=(cmake boost qt5-base)
+source=(https://github.com/indilib/indi/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('ee16b4bb01f436ab54596c5999227cb5938b2bb2dd83fdc0f01edffd752f9dd8')
+
+prepare() {
+  sed -e 's|GROUP="plugdev", MODE="0666"|TAG+="uaccess"|' -i 
indi-$pkgver/drivers/*/*.rules
+}
+
+build() {
+  cmake -B build -S indi-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINDI_BUILD_QT5_CLIENT=ON \
+-DUDEVRULES_INSTALL_DIR=/usr/lib/udev/rules.d \
+-DCMAKE_C_FLAGS="$CFLAGS -ffat-lto-objects" \
+-DCMAKE_CXX_FLAGS="$CXXFLAGS -ffat-lto-objects -Wp,-U_GLIBCXX_ASSERTIONS"
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 12:52:12
  Author: arojas
Revision: 1239524

Disable C++ assertions (FS#75167)

Modified:
  libindi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 10:44:10 UTC (rev 1239523)
+++ PKGBUILD2022-06-26 12:52:12 UTC (rev 1239524)
@@ -4,7 +4,7 @@
 
 pkgname=libindi
 pkgver=1.9.6
-pkgrel=1
+pkgrel=2
 pkgdesc='A distributed control protocol designed to operate astronomical 
instrumentation'
 url='https://www.indilib.org/index.php?title=Main_Page'
 license=(GPL2)
@@ -24,7 +24,7 @@
 -DINDI_BUILD_QT5_CLIENT=ON \
 -DUDEVRULES_INSTALL_DIR=/usr/lib/udev/rules.d \
 -DCMAKE_C_FLAGS="$CFLAGS -ffat-lto-objects" \
--DCMAKE_CXX_FLAGS="$CXXFLAGS -ffat-lto-objects"
+-DCMAKE_CXX_FLAGS="$CXXFLAGS -ffat-lto-objects -Wp,-U_GLIBCXX_ASSERTIONS"
   cmake --build build
 }
 



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

2022-06-26 Thread Andreas Radke via arch-commits
Date: Sunday, June 26, 2022 @ 11:32:15
  Author: andyrtr
Revision: 449433

still fails parallel build, reported this to the upstream forum

Modified:
  sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 10:29:38 UTC (rev 449432)
+++ PKGBUILD2022-06-26 11:32:15 UTC (rev 449433)
@@ -17,7 +17,7 @@
 https://www.sqlite.org/2022/sqlite-doc-${_docver}.zip
 sqlite-lemon-system-template.patch
 license.txt)
-options=('!emptydirs') # '!makeflags') # json extensions breaks parallel build
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
 # upstream now switched to sha3sums - currently not suppoerted by makepkg
 sha256sums=('b3585f37dd106dbb3d46c8c17a2d275f9a4b87df8c4509bd2d6a5b40032426e6'
 '8b624d9555f69be3a13d5ee948b04ea200e33fcb8ba40f0c5c1d220a81d0f542'



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

2022-06-26 Thread Andreas Radke via arch-commits
Date: Sunday, June 26, 2022 @ 10:29:38
  Author: andyrtr
Revision: 449432

drop invalid --enable-json1 configure switch - this is default from 3.38.0 on

Modified:
  sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 10:15:57 UTC (rev 449431)
+++ PKGBUILD2022-06-26 10:29:38 UTC (rev 449432)
@@ -17,7 +17,7 @@
 https://www.sqlite.org/2022/sqlite-doc-${_docver}.zip
 sqlite-lemon-system-template.patch
 license.txt)
-options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+options=('!emptydirs') # '!makeflags') # json extensions breaks parallel build
 # upstream now switched to sha3sums - currently not suppoerted by makepkg
 sha256sums=('b3585f37dd106dbb3d46c8c17a2d275f9a4b87df8c4509bd2d6a5b40032426e6'
 '8b624d9555f69be3a13d5ee948b04ea200e33fcb8ba40f0c5c1d220a81d0f542'
@@ -55,7 +55,6 @@
--enable-fts4 \
--enable-fts5 \
--enable-rtree \
-   --enable-json1 \
TCLLIBDIR=/usr/lib/sqlite$pkgver
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make



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

2022-06-26 Thread Andreas Radke via arch-commits
Date: Sunday, June 26, 2022 @ 10:15:57
  Author: andyrtr
Revision: 449431

archrelease: copy trunk to testing-x86_64

Added:
  sqlite/repos/testing-x86_64/
  sqlite/repos/testing-x86_64/PKGBUILD
(from rev 449430, sqlite/trunk/PKGBUILD)
  sqlite/repos/testing-x86_64/license.txt
(from rev 449430, sqlite/trunk/license.txt)
  sqlite/repos/testing-x86_64/sqlite-lemon-system-template.patch
(from rev 449430, sqlite/trunk/sqlite-lemon-system-template.patch)

+
 PKGBUILD   |  149 +++
 license.txt|   33 +++
 sqlite-lemon-system-template.patch |   13 +++
 3 files changed, 195 insertions(+)

Copied: sqlite/repos/testing-x86_64/PKGBUILD (from rev 449430, 
sqlite/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-06-26 10:15:57 UTC (rev 449431)
@@ -0,0 +1,149 @@
+# Maintainer: Andreas Radke 
+# Contributor: Tom Newsom 
+
+pkgbase="sqlite"
+pkgname=('sqlite' 'sqlite-tcl' 'sqlite-analyzer' 'lemon' 'sqlite-doc')
+_srcver=339
+_docver=${_srcver}
+#_docver=333
+pkgver=3.39.0
+pkgrel=1
+pkgdesc="A C library that implements an SQL database engine"
+arch=('x86_64')
+license=('custom:Public Domain')
+url="https://www.sqlite.org/;
+makedepends=('tcl' 'readline' 'zlib')
+source=(https://www.sqlite.org/2022/sqlite-src-${_srcver}.zip
+https://www.sqlite.org/2022/sqlite-doc-${_docver}.zip
+sqlite-lemon-system-template.patch
+license.txt)
+options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
+# upstream now switched to sha3sums - currently not suppoerted by makepkg
+sha256sums=('b3585f37dd106dbb3d46c8c17a2d275f9a4b87df8c4509bd2d6a5b40032426e6'
+'8b624d9555f69be3a13d5ee948b04ea200e33fcb8ba40f0c5c1d220a81d0f542'
+'55746d93b0df4b349c4aa4f09535746dac3530f9fd6de241c9f38e2c92e8ee97'
+'4e57d9ac979f1c9872e69799c2597eeef4c6ce7224f3ede0bf9dc8d217b1e65d')
+
+prepare() {
+  cd sqlite-src-$_srcver
+
+  # patch taken from Fedora
+  # https://src.fedoraproject.org/rpms/sqlite/blob/master/f/sqlite.spec
+  patch -Np1 -i ../sqlite-lemon-system-template.patch
+
+  #autoreconf -vfi
+}
+
+build() {
+  export CPPFLAGS="$CPPFLAGS \
+   -DSQLITE_ENABLE_COLUMN_METADATA=1 \
+   -DSQLITE_ENABLE_UNLOCK_NOTIFY \
+   -DSQLITE_ENABLE_DBSTAT_VTAB=1 \
+   -DSQLITE_ENABLE_FTS3_TOKENIZER=1 \
+   -DSQLITE_SECURE_DELETE \
+   -DSQLITE_ENABLE_STMTVTAB \
+   -DSQLITE_MAX_VARIABLE_NUMBER=25 \
+   -DSQLITE_MAX_EXPR_DEPTH=1 \
+   -DSQLITE_ENABLE_MATH_FUNCTIONS"
+
+  # build sqlite
+  cd sqlite-src-$_srcver
+  ./configure --prefix=/usr \
+   --disable-static \
+   --disable-amalgamation \
+   --enable-fts3 \
+   --enable-fts4 \
+   --enable-fts5 \
+   --enable-rtree \
+   --enable-json1 \
+   TCLLIBDIR=/usr/lib/sqlite$pkgver
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+  # build additional tools
+  make showdb showjournal showstat4 showwal sqldiff sqlite3_analyzer
+}
+
+package_sqlite() {
+
+ pkgdesc="A C library that implements an SQL database engine"
+ depends=('readline' 'zlib')
+ provides=("sqlite3=$pkgver")
+ replaces=("sqlite3")
+
+  cd sqlite-src-$_srcver
+  make DESTDIR="${pkgdir}" install
+
+  install -m755 showdb showjournal showstat4 showwal sqldiff 
"${pkgdir}"/usr/bin/
+
+  # install manpage
+  install -m755 -d "${pkgdir}"/usr/share/man/man1
+  install -m644 sqlite3.1 "${pkgdir}"/usr/share/man/man1/
+
+  # license - no linking required because pkgbase=pkgname
+  install -D -m644 "${srcdir}"/license.txt 
"${pkgdir}"/usr/share/licenses/${pkgbase}/license.txt
+
+  # split out tcl extension
+  mkdir "$srcdir"/tcl
+  mv "$pkgdir"/usr/lib/sqlite* "$srcdir"/tcl
+}
+
+package_sqlite-tcl() {
+
+ pkgdesc="sqlite Tcl Extension Architecture (TEA)"
+ depends=('sqlite')
+ provides=("sqlite3-tcl=$pkgver")
+ replaces=("sqlite3-tcl")
+
+  install -m755 -d "${pkgdir}"/usr/lib
+  mv "$srcdir"/tcl/* "${pkgdir}"/usr/lib
+
+  # install manpage
+  install -m755 -d "${pkgdir}"/usr/share/man/mann
+  install -m644 "${srcdir}"/sqlite-src-$_srcver/autoconf/tea/doc/sqlite3.n 
"${pkgdir}"/usr/share/man/mann/
+
+  # link license
+  install -m755 -d "${pkgdir}"/usr/share/licenses
+  ln -sf /usr/share/licenses/${pkgbase} 
"${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+package_sqlite-analyzer() {
+
+ pkgdesc="An analysis program for sqlite3 database files"
+ depends=('sqlite' 'tcl')
+
+  cd sqlite-src-$_srcver
+  install -m755 -d "${pkgdir}"/usr/bin
+  install -m755 sqlite3_analyzer "${pkgdir}"/usr/bin/
+}
+
+package_lemon() {
+
+ # https://www.sqlite.org/lemon.html
+ pkgdesc="A parser generator"
+ depends=('glibc')
+
+  cd sqlite-src-$_srcver
+  # ELF file ('usr/bin/lemon') lacks FULL RELRO, check LDFLAGS. - no fix found 
so far
+  install 

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

2022-06-26 Thread Andreas Radke via arch-commits
Date: Sunday, June 26, 2022 @ 10:15:44
  Author: andyrtr
Revision: 449430

upgpkg: sqlite 3.39.0-1: upstream update 3.39.0

Modified:
  sqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 08:19:44 UTC (rev 449429)
+++ PKGBUILD2022-06-26 10:15:44 UTC (rev 449430)
@@ -3,10 +3,10 @@
 
 pkgbase="sqlite"
 pkgname=('sqlite' 'sqlite-tcl' 'sqlite-analyzer' 'lemon' 'sqlite-doc')
-_srcver=3380500
+_srcver=339
 _docver=${_srcver}
 #_docver=333
-pkgver=3.38.5
+pkgver=3.39.0
 pkgrel=1
 pkgdesc="A C library that implements an SQL database engine"
 arch=('x86_64')
@@ -19,8 +19,8 @@
 license.txt)
 options=('!emptydirs' '!makeflags') # json extensions breaks parallel build
 # upstream now switched to sha3sums - currently not suppoerted by makepkg
-sha256sums=('6503bb59e39ec8663083696940ec818cd196e6ca543d4029440cca7b00d9'
-'0a3e5ededed0fea73b7b7150ded8cf3ec5ab06b32363284d6036b2a0c3a170c2'
+sha256sums=('b3585f37dd106dbb3d46c8c17a2d275f9a4b87df8c4509bd2d6a5b40032426e6'
+'8b624d9555f69be3a13d5ee948b04ea200e33fcb8ba40f0c5c1d220a81d0f542'
 '55746d93b0df4b349c4aa4f09535746dac3530f9fd6de241c9f38e2c92e8ee97'
 '4e57d9ac979f1c9872e69799c2597eeef4c6ce7224f3ede0bf9dc8d217b1e65d')
 



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

2022-06-26 Thread Florian Pritz via arch-commits
Date: Sunday, June 26, 2022 @ 09:56:08
  Author: bluewind
Revision: 1239522

archrelease: copy trunk to community-any

Added:
  fb-client/repos/community-any/PKGBUILD
(from rev 1239521, fb-client/trunk/PKGBUILD)
Deleted:
  fb-client/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 09:55:49 UTC (rev 1239521)
+++ PKGBUILD2022-06-26 09:56:08 UTC (rev 1239522)
@@ -1,29 +0,0 @@
-# Maintainer: Florian "Bluewind" Pritz 
-
-pkgname=fb-client
-pkgver=2.2.0
-pkgrel=2
-pkgdesc="Client for paste.xinu.at"
-arch=("any")
-url="https://paste.xinu.at;
-license=('GPL3')
-depends=('python' 'python-pycurl' 'python-xdg')
-optdepends=('xclip: for automatically copying the URL into the clipboard')
-source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig})
-md5sums=('ee0c7a677f62744b47b852a971927b4b'
- 'SKIP')
-validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E")
-
-build() {
-  cd "$srcdir/fb-$pkgver"
-
-  make
-}
-
-package() {
-  cd "$srcdir/fb-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fb-client/repos/community-any/PKGBUILD (from rev 1239521, 
fb-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 09:56:08 UTC (rev 1239522)
@@ -0,0 +1,32 @@
+# Maintainer: Florian "Bluewind" Pritz 
+
+pkgname=fb-client
+pkgver=2.2.0
+pkgrel=3
+pkgdesc="Client for paste.xinu.at"
+arch=("any")
+url="https://github.com/Bluewind/fb;
+license=('GPL3')
+depends=('python' 'python-pycurl' 'python-xdg')
+optdepends=(
+  'xclip: automatically copy the URL into the clipboard on X11'
+  'wl-clipboard: automatically copy the URL into the clipboard on wayland'
+)
+source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig})
+md5sums=('ee0c7a677f62744b47b852a971927b4b'
+ 'SKIP')
+validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E")
+
+build() {
+  cd "$srcdir/fb-$pkgver"
+
+  make
+}
+
+package() {
+  cd "$srcdir/fb-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-06-26 Thread Florian Pritz via arch-commits
Date: Sunday, June 26, 2022 @ 09:55:49
  Author: bluewind
Revision: 1239521

upgpkg: fb-client 2.2.0-3: add optdep

Modified:
  fb-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 09:48:31 UTC (rev 1239520)
+++ PKGBUILD2022-06-26 09:55:49 UTC (rev 1239521)
@@ -2,13 +2,16 @@
 
 pkgname=fb-client
 pkgver=2.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Client for paste.xinu.at"
 arch=("any")
-url="https://paste.xinu.at;
+url="https://github.com/Bluewind/fb;
 license=('GPL3')
 depends=('python' 'python-pycurl' 'python-xdg')
-optdepends=('xclip: for automatically copying the URL into the clipboard')
+optdepends=(
+  'xclip: automatically copy the URL into the clipboard on X11'
+  'wl-clipboard: automatically copy the URL into the clipboard on wayland'
+)
 source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig})
 md5sums=('ee0c7a677f62744b47b852a971927b4b'
  'SKIP')



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

2022-06-26 Thread Florian Pritz via arch-commits
Date: Sunday, June 26, 2022 @ 09:48:31
  Author: bluewind
Revision: 1239520

archrelease: copy trunk to community-any

Added:
  fb-client/repos/community-any/PKGBUILD
(from rev 1239519, fb-client/trunk/PKGBUILD)
Deleted:
  fb-client/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 09:48:29 UTC (rev 1239519)
+++ PKGBUILD2022-06-26 09:48:31 UTC (rev 1239520)
@@ -1,29 +0,0 @@
-# Maintainer: Florian "Bluewind" Pritz 
-
-pkgname=fb-client
-pkgver=2.2.0
-pkgrel=1
-pkgdesc="Client for paste.xinu.at"
-arch=("any")
-url="https://paste.xinu.at;
-license=('GPL3')
-depends=('python' 'python-pycurl' 'python-xdg')
-optdepends=('xclip: for automatically copying the URL into the clipboard')
-source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig})
-md5sums=('ee0c7a677f62744b47b852a971927b4b'
- 'SKIP')
-validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E")
-
-build() {
-  cd "$srcdir/fb-$pkgver"
-
-  make
-}
-
-package() {
-  cd "$srcdir/fb-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fb-client/repos/community-any/PKGBUILD (from rev 1239519, 
fb-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 09:48:31 UTC (rev 1239520)
@@ -0,0 +1,29 @@
+# Maintainer: Florian "Bluewind" Pritz 
+
+pkgname=fb-client
+pkgver=2.2.0
+pkgrel=2
+pkgdesc="Client for paste.xinu.at"
+arch=("any")
+url="https://paste.xinu.at;
+license=('GPL3')
+depends=('python' 'python-pycurl' 'python-xdg')
+optdepends=('xclip: for automatically copying the URL into the clipboard')
+source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig})
+md5sums=('ee0c7a677f62744b47b852a971927b4b'
+ 'SKIP')
+validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E")
+
+build() {
+  cd "$srcdir/fb-$pkgver"
+
+  make
+}
+
+package() {
+  cd "$srcdir/fb-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-06-26 Thread Florian Pritz via arch-commits
Date: Sunday, June 26, 2022 @ 09:48:29
  Author: bluewind
Revision: 1239519

upgpkg: fb-client 2.2.0-2: add optdep

Modified:
  fb-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 09:46:52 UTC (rev 1239518)
+++ PKGBUILD2022-06-26 09:48:29 UTC (rev 1239519)
@@ -2,7 +2,7 @@
 
 pkgname=fb-client
 pkgver=2.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Client for paste.xinu.at"
 arch=("any")
 url="https://paste.xinu.at;



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

2022-06-26 Thread Florian Pritz via arch-commits
Date: Sunday, June 26, 2022 @ 09:46:52
  Author: bluewind
Revision: 1239518

archrelease: copy trunk to community-any

Added:
  fb-client/repos/community-any/PKGBUILD
(from rev 1239517, fb-client/trunk/PKGBUILD)
Deleted:
  fb-client/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 09:46:49 UTC (rev 1239517)
+++ PKGBUILD2022-06-26 09:46:52 UTC (rev 1239518)
@@ -1,29 +0,0 @@
-# Maintainer: Florian "Bluewind" Pritz 
-
-pkgname=fb-client
-pkgver=2.1.1
-pkgrel=1
-pkgdesc="Client for paste.xinu.at"
-arch=("any")
-url="https://paste.xinu.at;
-license=('GPL3')
-depends=('python' 'python-pycurl' 'python-xdg')
-optdepends=('xclip: for automatically copying the URL into the clipboard')
-source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig})
-md5sums=('89b8cbe0675bbacaebb4386df7f2958c'
- 'SKIP')
-validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E")
-
-build() {
-  cd "$srcdir/fb-$pkgver"
-
-  make
-}
-
-package() {
-  cd "$srcdir/fb-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: fb-client/repos/community-any/PKGBUILD (from rev 1239517, 
fb-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 09:46:52 UTC (rev 1239518)
@@ -0,0 +1,29 @@
+# Maintainer: Florian "Bluewind" Pritz 
+
+pkgname=fb-client
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="Client for paste.xinu.at"
+arch=("any")
+url="https://paste.xinu.at;
+license=('GPL3')
+depends=('python' 'python-pycurl' 'python-xdg')
+optdepends=('xclip: for automatically copying the URL into the clipboard')
+source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig})
+md5sums=('ee0c7a677f62744b47b852a971927b4b'
+ 'SKIP')
+validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E")
+
+build() {
+  cd "$srcdir/fb-$pkgver"
+
+  make
+}
+
+package() {
+  cd "$srcdir/fb-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-06-26 Thread Florian Pritz via arch-commits
Date: Sunday, June 26, 2022 @ 09:46:49
  Author: bluewind
Revision: 1239517

upgpkg: fb-client 2.2.0-1: upstream update

Modified:
  fb-client/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 08:25:47 UTC (rev 1239516)
+++ PKGBUILD2022-06-26 09:46:49 UTC (rev 1239517)
@@ -1,7 +1,7 @@
 # Maintainer: Florian "Bluewind" Pritz 
 
 pkgname=fb-client
-pkgver=2.1.1
+pkgver=2.2.0
 pkgrel=1
 pkgdesc="Client for paste.xinu.at"
 arch=("any")
@@ -10,7 +10,7 @@
 depends=('python' 'python-pycurl' 'python-xdg')
 optdepends=('xclip: for automatically copying the URL into the clipboard')
 source=(https://paste.xinu.at/data/client/fb-$pkgver.tar.gz{,.sig})
-md5sums=('89b8cbe0675bbacaebb4386df7f2958c'
+md5sums=('ee0c7a677f62744b47b852a971927b4b'
  'SKIP')
 validpgpkeys=("CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E")
 



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

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 08:25:47
  Author: arojas
Revision: 1239516

archrelease: copy trunk to community-any

Added:
  python-jupyter-sphinx/repos/community-any/PKGBUILD
(from rev 1239515, python-jupyter-sphinx/trunk/PKGBUILD)
Deleted:
  python-jupyter-sphinx/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 08:25:36 UTC (rev 1239515)
+++ PKGBUILD2022-06-26 08:25:47 UTC (rev 1239516)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-_pipname=jupyter-sphinx
-pkgname=python-$_pipname
-pkgver=0.3.2
-pkgrel=2
-pkgdesc='Jupyter Sphinx Extensions'
-arch=(any)
-url='https://github.com/jupyter/jupyter-sphinx/'
-license=(BSD)
-depends=(python-sphinx python-ipywidgets jupyter-nbconvert)
-makedepends=(python-build python-installer python-setuptools python-wheel)
-checkdepends=(python-pytest)
-#source=(https://pypi.io/packages/source/j/$_pipname/$_pipname-$pkgver.tar.gz) 
- doesn't include tests
-source=(https://github.com/jupyter/jupyter-sphinx/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('3b8dfc9364ec4f88b779411736adfd649989b432d6ba2b3761e85771d03c68eb')
-
-build() {
-  cd $_pipname-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd $_pipname-$pkgver
-  PYTHONPATH="$PWD"/build/lib \
-  pytest -v
-}
-
-package() {
-  cd $_pipname-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: python-jupyter-sphinx/repos/community-any/PKGBUILD (from rev 1239515, 
python-jupyter-sphinx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 08:25:47 UTC (rev 1239516)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+
+_pipname=jupyter-sphinx
+pkgname=python-$_pipname
+pkgver=0.4.0
+pkgrel=1
+pkgdesc='Jupyter Sphinx Extensions'
+arch=(any)
+url='https://github.com/jupyter/jupyter-sphinx/'
+license=(BSD)
+depends=(python-sphinx python-ipywidgets jupyter-nbconvert)
+makedepends=(python-build python-installer python-setuptools python-wheel)
+checkdepends=(python-pytest)
+#source=(https://pypi.io/packages/source/j/$_pipname/$_pipname-$pkgver.tar.gz) 
- doesn't include tests
+source=(https://github.com/jupyter/jupyter-sphinx/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('85999a5f224281ee95263787313b5cbf48fb3c0f406a88ad5d9debcf1d4d06d4')
+
+build() {
+  cd $_pipname-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd $_pipname-$pkgver
+  PYTHONPATH="$PWD"/build/lib \
+  pytest -v
+}
+
+package() {
+  cd $_pipname-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-06-26 Thread Antonio Rojas via arch-commits
Date: Sunday, June 26, 2022 @ 08:25:36
  Author: arojas
Revision: 1239515

Update to 0.4.0

Modified:
  python-jupyter-sphinx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 08:23:36 UTC (rev 1239514)
+++ PKGBUILD2022-06-26 08:25:36 UTC (rev 1239515)
@@ -2,8 +2,8 @@
 
 _pipname=jupyter-sphinx
 pkgname=python-$_pipname
-pkgver=0.3.2
-pkgrel=2
+pkgver=0.4.0
+pkgrel=1
 pkgdesc='Jupyter Sphinx Extensions'
 arch=(any)
 url='https://github.com/jupyter/jupyter-sphinx/'
@@ -13,7 +13,7 @@
 checkdepends=(python-pytest)
 #source=(https://pypi.io/packages/source/j/$_pipname/$_pipname-$pkgver.tar.gz) 
- doesn't include tests
 
source=(https://github.com/jupyter/jupyter-sphinx/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('3b8dfc9364ec4f88b779411736adfd649989b432d6ba2b3761e85771d03c68eb')
+sha256sums=('85999a5f224281ee95263787313b5cbf48fb3c0f406a88ad5d9debcf1d4d06d4')
 
 build() {
   cd $_pipname-$pkgver



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

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:23:36
  Author: felixonmars
Revision: 1239514

archrelease: copy trunk to community-staging-x86_64

Added:
  dhall-yaml/repos/community-staging-x86_64/
  dhall-yaml/repos/community-staging-x86_64/PKGBUILD
(from rev 1239513, dhall-yaml/trunk/PKGBUILD)

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

Copied: dhall-yaml/repos/community-staging-x86_64/PKGBUILD (from rev 1239513, 
dhall-yaml/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-26 08:23:36 UTC (rev 1239514)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+pkgname=dhall-yaml
+pkgver=1.2.10
+pkgrel=49
+pkgdesc="Convert between Dhall and YAML"
+url="https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-yaml;
+license=("GPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hsyaml' 'haskell-hsyaml-aeson' 'haskell-aeson' 
'haskell-ansi-terminal'
+ 'dhall' 'dhall-json' 'haskell-optparse-applicative' 
'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal' 'haskell-vector')
+makedepends=('ghc' 'uusi' 'haskell-tasty' 'haskell-tasty-expected-failure' 
'haskell-tasty-hunit')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('d475e2ba0c7f5b03dfba7b6faf563b270ef558cb5a2dde9c7e29707a2a44028ad33fb02284ae140b96b9f2ac6722a6d17ef6e5a1ac8610328dfa8e22b8505733')
+
+prepare() {
+  cd $pkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+  
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:22:30
  Author: felixonmars
Revision: 1239510

archrelease: copy trunk to community-staging-x86_64

Added:
  dhall-docs/repos/community-staging-x86_64/
  dhall-docs/repos/community-staging-x86_64/PKGBUILD
(from rev 1239509, dhall-docs/trunk/PKGBUILD)

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

Copied: dhall-docs/repos/community-staging-x86_64/PKGBUILD (from rev 1239509, 
dhall-docs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-26 08:22:30 UTC (rev 1239510)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+pkgname=dhall-docs
+pkgver=1.0.9
+pkgrel=53
+pkgdesc="Generate HTML docs from a dhall package"
+url="https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-docs;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base16-bytestring' 'haskell-cryptohash-sha256' 
'dhall'
+ 'haskell-file-embed' 'haskell-lens-family-core' 'haskell-lucid' 
'haskell-megaparsec'
+ 'haskell-mmark' 'haskell-optparse-applicative' 'haskell-path' 
'haskell-path-io'
+ 'haskell-prettyprinter')
+makedepends=('ghc' 'haskell-doctest' 'haskell-foldl' 'haskell-tasty' 
'haskell-tasty-hunit'
+ 'haskell-tasty-silver' 'haskell-turtle')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('ad03a2b8130f1ecc17e4a647f70e7fdee7e49dc7451f980f090d0364b724ee26ee39ee7e87683e9765bba947371d96b64f4411132d8f8a24d3a169684b10fbf0')
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:23:24
  Author: felixonmars
Revision: 1239513

upgpkg: dhall-yaml 1.2.10-49: rebuild with repline 0.4.2.0

Modified:
  dhall-yaml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 08:23:00 UTC (rev 1239512)
+++ PKGBUILD2022-06-26 08:23:24 UTC (rev 1239513)
@@ -2,7 +2,7 @@
 
 pkgname=dhall-yaml
 pkgver=1.2.10
-pkgrel=48
+pkgrel=49
 pkgdesc="Convert between Dhall and YAML"
 url="https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-yaml;
 license=("GPL3")



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

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:22:47
  Author: felixonmars
Revision: 1239511

upgpkg: dhall-lsp-server 1.0.18-58: rebuild with repline 0.4.2.0

Modified:
  dhall-lsp-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 08:22:30 UTC (rev 1239510)
+++ PKGBUILD2022-06-26 08:22:47 UTC (rev 1239511)
@@ -2,7 +2,7 @@
 
 pkgname=dhall-lsp-server
 pkgver=1.0.18
-pkgrel=57
+pkgrel=58
 pkgdesc="Language Server Protocol (LSP) server for Dhall"
 
url="https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-lsp-server#readme;
 license=("custom:MIT")



[arch-commits] Commit in dhall-lsp-server/repos (2 files)

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:23:00
  Author: felixonmars
Revision: 1239512

archrelease: copy trunk to community-staging-x86_64

Added:
  dhall-lsp-server/repos/community-staging-x86_64/
  dhall-lsp-server/repos/community-staging-x86_64/PKGBUILD
(from rev 1239511, dhall-lsp-server/trunk/PKGBUILD)

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

Copied: dhall-lsp-server/repos/community-staging-x86_64/PKGBUILD (from rev 
1239511, dhall-lsp-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-26 08:23:00 UTC (rev 1239512)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+pkgname=dhall-lsp-server
+pkgver=1.0.18
+pkgrel=58
+pkgdesc="Language Server Protocol (LSP) server for Dhall"
+url="https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-lsp-server#readme;
+license=("custom:MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 
'haskell-data-default' 'dhall'
+ 'dhall-json' 'haskell-lsp0' 'haskell-hslogger' 'haskell-lens' 
'haskell-lens-family-core'
+ 'haskell-megaparsec' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-prettyprinter' 'haskell-rope-utf16-splay' 
'haskell-unordered-containers'
+ 'haskell-uri-encode')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-doctest' 'haskell-hspec' 
'haskell-lsp0-types'
+ 'haskell-lsp0-test' 'haskell-tasty' 'haskell-tasty-hspec')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('c0f5ac4c7d2a5c0f228968df354c0a55cff7f8d021a8fbffe9ff97657c5ad2528ad1969468fed43fdc10c369668ca795a9997494b8a5df4e942d11bdc22d2fa9')
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname-$pkgver
+  LD_LIBRARY_PATH="$PWD/dist/build" 
PATH="$PWD/dist/build/dhall-lsp-server:$PATH" runhaskell Setup test 
--show-details=direct
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:22:18
  Author: felixonmars
Revision: 1239509

upgpkg: dhall-docs 1.0.9-53: rebuild with repline 0.4.2.0

Modified:
  dhall-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 08:22:10 UTC (rev 1239508)
+++ PKGBUILD2022-06-26 08:22:18 UTC (rev 1239509)
@@ -2,7 +2,7 @@
 
 pkgname=dhall-docs
 pkgver=1.0.9
-pkgrel=52
+pkgrel=53
 pkgdesc="Generate HTML docs from a dhall package"
 url="https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-docs;
 license=("BSD")



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

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:22:10
  Author: felixonmars
Revision: 1239508

archrelease: copy trunk to community-staging-x86_64

Added:
  dhall-bash/repos/community-staging-x86_64/
  dhall-bash/repos/community-staging-x86_64/PKGBUILD
(from rev 1239507, dhall-bash/trunk/PKGBUILD)

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

Copied: dhall-bash/repos/community-staging-x86_64/PKGBUILD (from rev 1239507, 
dhall-bash/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-26 08:22:10 UTC (rev 1239508)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+pkgname=dhall-bash
+pkgver=1.0.40
+pkgrel=53
+pkgdesc='Compile Dhall to Bash'
+url='https://dhall-lang.org'
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'dhall' 'haskell-neat-interpolation' 'haskell-shell-escape'
+ 'haskell-optparse-generic')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('1936c795f843af2fd5556f0e2cb041218bdb3a205a0e35d215a24d235a615c2e6267f06cb4e58848c2dc6319bfbd306e3cae8321e41f25e9326f28737071b9a6')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $pkgname-$pkgver
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:21:37
  Author: felixonmars
Revision: 1239505

upgpkg: dhall-json 1.7.10-48: rebuild with repline 0.4.2.0

Modified:
  dhall-json/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 08:20:25 UTC (rev 1239504)
+++ PKGBUILD2022-06-26 08:21:37 UTC (rev 1239505)
@@ -2,7 +2,7 @@
 
 pkgname=dhall-json
 pkgver=1.7.10
-pkgrel=47
+pkgrel=48
 pkgdesc='Convert between Dhall and JSON or YAML'
 url='https://dhall-lang.org'
 license=('BSD')



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

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:21:58
  Author: felixonmars
Revision: 1239507

upgpkg: dhall-bash 1.0.40-53: rebuild with repline 0.4.2.0

Modified:
  dhall-bash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 08:21:49 UTC (rev 1239506)
+++ PKGBUILD2022-06-26 08:21:58 UTC (rev 1239507)
@@ -2,7 +2,7 @@
 
 pkgname=dhall-bash
 pkgver=1.0.40
-pkgrel=52
+pkgrel=53
 pkgdesc='Compile Dhall to Bash'
 url='https://dhall-lang.org'
 license=('BSD')



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

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:21:49
  Author: felixonmars
Revision: 1239506

archrelease: copy trunk to community-staging-x86_64

Added:
  dhall-json/repos/community-staging-x86_64/
  dhall-json/repos/community-staging-x86_64/PKGBUILD
(from rev 1239505, dhall-json/trunk/PKGBUILD)

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

Copied: dhall-json/repos/community-staging-x86_64/PKGBUILD (from rev 1239505, 
dhall-json/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-26 08:21:49 UTC (rev 1239506)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+pkgname=dhall-json
+pkgver=1.7.10
+pkgrel=48
+pkgdesc='Convert between Dhall and JSON or YAML'
+url='https://dhall-lang.org'
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 
'haskell-aeson-yaml' 'dhall'
+ 'haskell-lens-family-core' 'haskell-optparse-applicative' 
'haskell-prettyprinter'
+ 'haskell-scientific' 'haskell-unordered-containers' 
'haskell-prettyprinter-ansi-terminal')
+makedepends=('ghc' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-silver')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('4e1e524c28604743f2f767dee72b31a328bf01cd6ee5d297dc1fa97b99cd0200a9a3e791a084ad3b9b4e402754b2060d9f461c104f82bfb6ae50944b6c20781b')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+# https://github.com/dhall-lang/dhall-haskell/issues/2151
+runhaskell Setup test || echo "Tests failed"
+}
+
+package() {
+cd $pkgname-$pkgver
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:20:25
  Author: felixonmars
Revision: 1239504

archrelease: copy trunk to community-staging-x86_64

Added:
  dhall/repos/community-staging-x86_64/
  dhall/repos/community-staging-x86_64/PKGBUILD
(from rev 1239503, dhall/trunk/PKGBUILD)

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

Copied: dhall/repos/community-staging-x86_64/PKGBUILD (from rev 1239503, 
dhall/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-26 08:20:25 UTC (rev 1239504)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+
+pkgname=dhall
+pkgver=1.41.1
+pkgrel=45
+pkgdesc='A configuration language guaranteed to terminate'
+url='https://dhall-lang.org'
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 
'haskell-ansi-terminal'
+ 'haskell-atomic-write' 'haskell-base16-bytestring' 
'haskell-case-insensitive'
+ 'haskell-cborg' 'haskell-cborg-json' 'haskell-contravariant' 
'haskell-cryptohash-sha256'
+ 'haskell-data-fix' 'haskell-diff' 'haskell-dotgen' 'haskell-either' 
'haskell-half'
+ 'haskell-hashable' 'haskell-lens-family-core' 'haskell-megaparsec' 
'haskell-mmorph'
+ 'haskell-network-uri' 'haskell-optparse-applicative' 'haskell-parsers'
+ 'haskell-parser-combinators' 'haskell-prettyprinter' 
'haskell-prettyprinter-ansi-terminal'
+ 'haskell-pretty-simple' 'haskell-profunctors' 'haskell-repline' 
'haskell-serialise'
+ 'haskell-scientific' 'haskell-text-manipulate' 
'haskell-th-lift-instances'
+ 'haskell-unordered-containers' 'haskell-uri-encode' 'haskell-vector' 
'haskell-cryptonite'
+ 'haskell-http-types' 'haskell-http-client' 'haskell-http-client-tls')
+makedepends=('ghc' 'uusi' 'haskell-doctest' 'haskell-foldl' 
'haskell-generic-random' 'haskell-mockery'
+ 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-special-values'
+ 'haskell-spoon' 'haskell-system-filepath' 'haskell-tasty'
+ 'haskell-tasty-expected-failure' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-silver' 'haskell-temporary' 'haskell-turtle')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('c5f58d47ae9acb6fd8fe4c267963ad5c2eb0091354bcbeda43a193b12b5db1ec456597cc42357b571b869fc39cb9929a19c62b59aa3682da3c3e594dac8541a0')
+
+prepare() {
+cd $pkgname-$pkgver
+uusi -u pretty-simple $pkgname.cabal
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $pkgname-$pkgver
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:20:13
  Author: felixonmars
Revision: 1239503

upgpkg: dhall 1.41.1-45: rebuild with repline 0.4.2.0

Modified:
  dhall/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 08:17:11 UTC (rev 1239502)
+++ PKGBUILD2022-06-26 08:20:13 UTC (rev 1239503)
@@ -2,7 +2,7 @@
 
 pkgname=dhall
 pkgver=1.41.1
-pkgrel=44
+pkgrel=45
 pkgdesc='A configuration language guaranteed to terminate'
 url='https://dhall-lang.org'
 license=('BSD')



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

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:16:56
  Author: felixonmars
Revision: 1239501

upgpkg: python-uncertainties 3.1.7-1

Modified:
  python-uncertainties/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-26 08:15:40 UTC (rev 1239500)
+++ PKGBUILD2022-06-26 08:16:56 UTC (rev 1239501)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-uncertainties
-pkgver=3.1.6
-pkgrel=3
+pkgver=3.1.7
+pkgrel=1
 pkgdesc="Transparent calculations with uncertainties on the quantities 
involved (aka error propagation); fast calculation of derivatives."
 arch=('any')
 license=('BSD')
@@ -12,7 +12,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-nose' 'python-numpy' 'python-tests')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/lebigot/uncertainties/archive/$pkgver.tar.gz;)
-sha512sums=('0454e82bbd9bfa63fc940c181edcda6a0c73e91744ffaa2da7036b572b7dc5357e7f87a0c2bb446531f69f2c34ba0815e5d398526c2ec3986e9eea6b9a55a7b5')
+sha512sums=('debfa1bcad4d6785f8a26c92f9de1032e40c7672a61763a65f0c1eaed2f4b572394c7db4e45a411ea43239e3a311a2defa7d6a7f4b0cb4368cfcfbc4f050886e')
 
 build() {
   cd uncertainties-$pkgver



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

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:17:11
  Author: felixonmars
Revision: 1239502

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 08:16:56 UTC (rev 1239501)
+++ PKGBUILD2022-06-26 08:17:11 UTC (rev 1239502)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-uncertainties
-pkgver=3.1.6
-pkgrel=3
-pkgdesc="Transparent calculations with uncertainties on the quantities 
involved (aka error propagation); fast calculation of derivatives."
-arch=('any')
-license=('BSD')
-url="https://github.com/lebigot/uncertainties;
-depends=('python-future')
-optdepends=('python-numpy: additional support for NumPy arrays and matrices')
-makedepends=('python-setuptools')
-checkdepends=('python-nose' 'python-numpy' 'python-tests')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/lebigot/uncertainties/archive/$pkgver.tar.gz;)
-sha512sums=('0454e82bbd9bfa63fc940c181edcda6a0c73e91744ffaa2da7036b572b7dc5357e7f87a0c2bb446531f69f2c34ba0815e5d398526c2ec3986e9eea6b9a55a7b5')
-
-build() {
-  cd uncertainties-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd uncertainties-$pkgver
-  nosetests
-}
-
-package() {
-  cd uncertainties-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
-}

Copied: python-uncertainties/repos/community-any/PKGBUILD (from rev 1239501, 
python-uncertainties/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 08:17:11 UTC (rev 1239502)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-uncertainties
+pkgver=3.1.7
+pkgrel=1
+pkgdesc="Transparent calculations with uncertainties on the quantities 
involved (aka error propagation); fast calculation of derivatives."
+arch=('any')
+license=('BSD')
+url="https://github.com/lebigot/uncertainties;
+depends=('python-future')
+optdepends=('python-numpy: additional support for NumPy arrays and matrices')
+makedepends=('python-setuptools')
+checkdepends=('python-nose' 'python-numpy' 'python-tests')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lebigot/uncertainties/archive/$pkgver.tar.gz;)
+sha512sums=('debfa1bcad4d6785f8a26c92f9de1032e40c7672a61763a65f0c1eaed2f4b572394c7db4e45a411ea43239e3a311a2defa7d6a7f4b0cb4368cfcfbc4f050886e')
+
+build() {
+  cd uncertainties-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd uncertainties-$pkgver
+  nosetests
+}
+
+package() {
+  cd uncertainties-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE.txt 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.txt
+}



[arch-commits] Commit in v2ray-domain-list-community/repos/community-any (2 files)

2022-06-26 Thread Felix Yan via arch-commits
Date: Sunday, June 26, 2022 @ 08:15:40
  Author: felixonmars
Revision: 1239500

archrelease: copy trunk to community-any

Added:
  v2ray-domain-list-community/repos/community-any/PKGBUILD
(from rev 1239499, v2ray-domain-list-community/trunk/PKGBUILD)
Deleted:
  v2ray-domain-list-community/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-26 08:15:26 UTC (rev 1239499)
+++ PKGBUILD2022-06-26 08:15:40 UTC (rev 1239500)
@@ -1,23 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=v2ray-domain-list-community
-pkgver=20220623025756
-pkgrel=1
-pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
-arch=('any')
-url="https://github.com/v2fly/domain-list-community;
-license=('MIT')
-makedepends=('go' 'git')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/v2fly/domain-list-community/archive/$pkgver.tar.gz;)
-sha512sums=('bd55c706a15a00269a01022fc161b0be3b05587b58a36edde0b60e0601b98b1c9582b6fd577b15960afd575d9781cad2780711a6b495acff27dfc786031fbfaa')
-
-build() {
-  cd domain-list-community-$pkgver
-  ASSUME_NO_MOVING_GC_UNSAFE_RISK_IT_WITH=go1.18 go run main.go
-}
-
-package() {
-  cd domain-list-community-$pkgver
-  install -Dm644 dlc.dat "$pkgdir"/usr/share/v2ray/geosite.dat
-  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: v2ray-domain-list-community/repos/community-any/PKGBUILD (from rev 
1239499, v2ray-domain-list-community/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-26 08:15:40 UTC (rev 1239500)
@@ -0,0 +1,23 @@
+# Maintainer: Felix Yan 
+
+pkgname=v2ray-domain-list-community
+pkgver=20220625171737
+pkgrel=1
+pkgdesc="A list of domains to be used as geosites for routing purpose in 
Project V"
+arch=('any')
+url="https://github.com/v2fly/domain-list-community;
+license=('MIT')
+makedepends=('go' 'git')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/v2fly/domain-list-community/archive/$pkgver.tar.gz;)
+sha512sums=('9dfa62f9320ffc4dd5b6c9d6cbdecad376f8c759e90e6e4a6c8c9517413887dd9d7be4c8c3883ba2425216d85379f6a8b5edb8837125195b3b3ba3da378c98f0')
+
+build() {
+  cd domain-list-community-$pkgver
+  ASSUME_NO_MOVING_GC_UNSAFE_RISK_IT_WITH=go1.18 go run main.go
+}
+
+package() {
+  cd domain-list-community-$pkgver
+  install -Dm644 dlc.dat "$pkgdir"/usr/share/v2ray/geosite.dat
+  install -Dm644 "$srcdir"/domain-list-community-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



  1   2   >