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

2022-04-16 Thread George Rawlinson via arch-commits
Date: Sunday, April 17, 2022 @ 00:29:05
  Author: grawlinson
Revision: 1186840

archrelease: copy trunk to community-x86_64

Added:
  mold/repos/community-x86_64/PKGBUILD
(from rev 1186839, mold/trunk/PKGBUILD)
Deleted:
  mold/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-17 00:28:08 UTC (rev 1186839)
+++ PKGBUILD2022-04-17 00:29:05 UTC (rev 1186840)
@@ -1,66 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Adrian Perez de Castro 
-
-pkgname=mold
-pkgver=1.1.1
-pkgrel=1
-pkgdesc='A Modern Linker'
-arch=('x86_64')
-url="https://github.com/rui314/mold;
-license=('AGPL3')
-depends=('gcc-libs' 'mimalloc' 'openssl' 'zlib' 'tbb') # xxhash is bundled
-makedepends=('git')
-checkdepends=('clang')
-options=('debug')
-_commit='c1af9c97e763a1d521889191a83b27bd6c43b351' # v1.1.1
-source=("$pkgname::git+$url.git#commit=$_commit")
-b2sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  git describe --tags | sed 's/^v//'
-}
-
-prepare() {
-  cd "$pkgname"
-
-  # use /usr/lib instead of /usr/libexec
-  sed -i "s/libexec/lib/" Makefile
-}
-
-build() {
-  make \
--C "$pkgname" \
-PREFIX=/usr \
-LTO=1 \
-SYSTEM_MIMALLOC=1 \
-SYSTEM_TBB=1
-}
-
-check() {
-  cd "$pkgname"
-
-  # temporarily remove failing tests
-  for failing_test in exception; do
-rm -vf "test/elf/$failing_test.sh"
-  done
-
-  make \
-PREFIX=/usr \
-LTO=1 \
-SYSTEM_MIMALLOC=1 \
-SYSTEM_TBB=1 \
-check
-}
-
-package() {
-  make \
--C "$pkgname" \
-PREFIX=/usr \
-LTO=1 \
-SYSTEM_MIMALLOC=1 \
-SYSTEM_TBB=1 \
-DESTDIR="$pkgdir" \
-install
-}

Copied: mold/repos/community-x86_64/PKGBUILD (from rev 1186839, 
mold/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-17 00:29:05 UTC (rev 1186840)
@@ -0,0 +1,67 @@
+# Maintainer: George Rawlinson 
+# Contributor: Adrian Perez de Castro 
+
+pkgname=mold
+pkgver=1.2.0
+pkgrel=1
+pkgdesc='A Modern Linker'
+arch=('x86_64')
+url="https://github.com/rui314/mold;
+license=('AGPL3')
+depends=('gcc-libs' 'mimalloc' 'openssl' 'zlib' 'tbb') # xxhash is bundled
+makedepends=('git')
+checkdepends=('clang' 'libdwarf')
+options=('debug')
+_commit='f86868cb389d9d45fab99e200f51f2682a4f5956'
+source=("$pkgname::git+$url.git#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  # current commit has multiple tags (v1.2 & v1.2.0)
+  git describe --tags --exclude=v1.2 | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # use /usr/lib instead of /usr/libexec
+  sed -i "s/libexec/lib/" Makefile
+}
+
+build() {
+  make \
+-C "$pkgname" \
+PREFIX=/usr \
+LTO=1 \
+SYSTEM_MIMALLOC=1 \
+SYSTEM_TBB=1
+}
+
+check() {
+  cd "$pkgname"
+
+  # temporarily remove failing tests
+  for failing_test in exception; do
+rm -vf "test/elf/$failing_test.sh"
+  done
+
+  make \
+PREFIX=/usr \
+LTO=1 \
+SYSTEM_MIMALLOC=1 \
+SYSTEM_TBB=1 \
+check
+}
+
+package() {
+  make \
+-C "$pkgname" \
+PREFIX=/usr \
+LTO=1 \
+SYSTEM_MIMALLOC=1 \
+SYSTEM_TBB=1 \
+DESTDIR="$pkgdir" \
+install
+}



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

2022-04-16 Thread George Rawlinson via arch-commits
Date: Sunday, April 17, 2022 @ 00:28:08
  Author: grawlinson
Revision: 1186839

upgpkg: mold 1.2.0-1

* New upstream release.
* Add checkdepends: libdwarf.

Modified:
  mold/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 23:55:28 UTC (rev 1186838)
+++ PKGBUILD2022-04-17 00:28:08 UTC (rev 1186839)
@@ -2,7 +2,7 @@
 # Contributor: Adrian Perez de Castro 
 
 pkgname=mold
-pkgver=1.1.1
+pkgver=1.2.0
 pkgrel=1
 pkgdesc='A Modern Linker'
 arch=('x86_64')
@@ -10,9 +10,9 @@
 license=('AGPL3')
 depends=('gcc-libs' 'mimalloc' 'openssl' 'zlib' 'tbb') # xxhash is bundled
 makedepends=('git')
-checkdepends=('clang')
+checkdepends=('clang' 'libdwarf')
 options=('debug')
-_commit='c1af9c97e763a1d521889191a83b27bd6c43b351' # v1.1.1
+_commit='f86868cb389d9d45fab99e200f51f2682a4f5956'
 source=("$pkgname::git+$url.git#commit=$_commit")
 b2sums=('SKIP')
 
@@ -19,7 +19,8 @@
 pkgver() {
   cd "$pkgname"
 
-  git describe --tags | sed 's/^v//'
+  # current commit has multiple tags (v1.2 & v1.2.0)
+  git describe --tags --exclude=v1.2 | sed 's/^v//'
 }
 
 prepare() {



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

2022-04-16 Thread Orhun Parmaksiz via arch-commits
Date: Saturday, April 16, 2022 @ 23:55:28
  Author: orhun
Revision: 1186838

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 23:54:52 UTC (rev 1186837)
+++ PKGBUILD2022-04-16 23:55:28 UTC (rev 1186838)
@@ -1,37 +0,0 @@
-# Maintainer: kpcyrd 
-# Maintainer: Orhun Parmaksız 
-# Contributor: Jian Zeng 
-# Contributor: Alexandre Bury 
-# Contributor: Vlad M. 
-
-pkgname=cargo-outdated
-pkgver=0.11.0
-pkgrel=1
-pkgdesc="A cargo subcommand for displaying when Rust dependencies are out of 
date"
-url="https://github.com/kbknapp/cargo-outdated;
-arch=('x86_64')
-license=('MIT')
-depends=('cargo' 'libgit2')
-makedepends=('libssh2')
-source=("${pkgname}-${pkgver}.tar.gz::https://crates.io/api/v1/crates/${pkgname}/${pkgver}/download;)
-sha256sums=('9801739baf47a4e509367bd4c229d87e1bff4e23cd52346d014b74cd24713acd')
-b2sums=('4584e35d880609d3c65a02263b3e3339eb87c4015075b6bb8774bbff4a74d40196686aced8954870dd5f4ab0c9930e3bf6a44a190662e17bb217625772d99dea')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  export LIBSSH2_SYS_USE_PKG_CONFIG=1
-  cargo build --frozen --release
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: cargo-outdated/repos/community-x86_64/PKGBUILD (from rev 1186837, 
cargo-outdated/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 23:55:28 UTC (rev 1186838)
@@ -0,0 +1,37 @@
+# Maintainer: kpcyrd 
+# Maintainer: Orhun Parmaksız 
+# Contributor: Jian Zeng 
+# Contributor: Alexandre Bury 
+# Contributor: Vlad M. 
+
+pkgname=cargo-outdated
+pkgver=0.11.1
+pkgrel=1
+pkgdesc="A cargo subcommand for displaying when Rust dependencies are out of 
date"
+url="https://github.com/kbknapp/cargo-outdated;
+arch=('x86_64')
+license=('MIT')
+depends=('cargo' 'libgit2')
+makedepends=('libssh2')
+source=("${pkgname}-${pkgver}.tar.gz::https://crates.io/api/v1/crates/${pkgname}/${pkgver}/download;)
+sha256sums=('c017ec7c7fda169c802e2374ae1c74078696eb07d12a1fbf04801c4e70acb78d')
+b2sums=('6dd2a164a27e3eb6b6dd70ec15356b1057a94b41ff509acbf302c0966e6f39a1d7482f9ab39f1643272d527d6be8090c32aebc047a8c75cb93fd97db11c96805')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  export LIBSSH2_SYS_USE_PKG_CONFIG=1
+  cargo build --frozen --release
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 LICENSE-MIT -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-04-16 Thread Orhun Parmaksiz via arch-commits
Date: Saturday, April 16, 2022 @ 23:54:52
  Author: orhun
Revision: 1186837

upgpkg: cargo-outdated 0.11.1-1: upstream release

Modified:
  cargo-outdated/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 23:43:20 UTC (rev 1186836)
+++ PKGBUILD2022-04-16 23:54:52 UTC (rev 1186837)
@@ -5,7 +5,7 @@
 # Contributor: Vlad M. 
 
 pkgname=cargo-outdated
-pkgver=0.11.0
+pkgver=0.11.1
 pkgrel=1
 pkgdesc="A cargo subcommand for displaying when Rust dependencies are out of 
date"
 url="https://github.com/kbknapp/cargo-outdated;
@@ -14,8 +14,8 @@
 depends=('cargo' 'libgit2')
 makedepends=('libssh2')
 
source=("${pkgname}-${pkgver}.tar.gz::https://crates.io/api/v1/crates/${pkgname}/${pkgver}/download;)
-sha256sums=('9801739baf47a4e509367bd4c229d87e1bff4e23cd52346d014b74cd24713acd')
-b2sums=('4584e35d880609d3c65a02263b3e3339eb87c4015075b6bb8774bbff4a74d40196686aced8954870dd5f4ab0c9930e3bf6a44a190662e17bb217625772d99dea')
+sha256sums=('c017ec7c7fda169c802e2374ae1c74078696eb07d12a1fbf04801c4e70acb78d')
+b2sums=('6dd2a164a27e3eb6b6dd70ec15356b1057a94b41ff509acbf302c0966e6f39a1d7482f9ab39f1643272d527d6be8090c32aebc047a8c75cb93fd97db11c96805')
 
 prepare() {
   cd "${pkgname}-${pkgver}"



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

2022-04-16 Thread George Rawlinson via arch-commits
Date: Saturday, April 16, 2022 @ 23:43:20
  Author: grawlinson
Revision: 1186836

archrelease: copy trunk to community-any

Added:
  fnlfmt/repos/community-any/
  fnlfmt/repos/community-any/PKGBUILD
(from rev 1186835, fnlfmt/trunk/PKGBUILD)

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

Copied: fnlfmt/repos/community-any/PKGBUILD (from rev 1186835, 
fnlfmt/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-04-16 23:43:20 UTC (rev 1186836)
@@ -0,0 +1,42 @@
+# Maintainer: George Rawlinson 
+
+pkgname=fnlfmt
+pkgver=0.2.2
+pkgrel=2
+pkgdesc='A formatter for Fennel code'
+arch=('any')
+url='https://git.sr.ht/~technomancy/fnlfmt'
+license=('GPL3')
+depends=('lua')
+makedepends=('git')
+_commit='6325724f26fa48e5e60ca3064ae87eefb9e2e66b'
+source=("$pkgname::git+$url#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd "$pkgname"
+
+  make
+}
+
+check() {
+  cd "$pkgname"
+
+  make test
+}
+
+package() {
+  cd "$pkgname"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" fnlfmt
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+}



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

2022-04-16 Thread George Rawlinson via arch-commits
Date: Saturday, April 16, 2022 @ 23:42:26
  Author: grawlinson
Revision: 1186835

archrelease: copy trunk to community-any

Added:
  fennel/repos/community-any/
  fennel/repos/community-any/PKGBUILD
(from rev 1186834, fennel/trunk/PKGBUILD)

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

Copied: fennel/repos/community-any/PKGBUILD (from rev 1186834, 
fennel/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-04-16 23:42:26 UTC (rev 1186835)
@@ -0,0 +1,45 @@
+# Maintainer: George Rawlinson 
+# Contributor: Katie Wolfe 
+
+pkgname=fennel
+pkgver=1.1.0
+pkgrel=2
+pkgdesc='A Lua Lisp language'
+arch=('any')
+url='https://fennel-lang.org'
+license=('MIT')
+depends=('lua')
+makedepends=('git')
+_commit='21c429235d49b2908c7e46442660b6f22da90efc'
+source=("$pkgname::git+https://git.sr.ht/~technomancy/fennel#commit=$_commit;)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd "$pkgname"
+
+  make build
+}
+
+check() {
+  cd "$pkgname"
+
+  make test
+}
+
+package() {
+  cd "$pkgname"
+
+  make DESTDIR="$pkgdir" PREFIX=/usr MAN_DIR=/usr/share/man/man1 install
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" *.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}



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

2022-04-16 Thread George Rawlinson via arch-commits
Date: Saturday, April 16, 2022 @ 23:41:50
  Author: grawlinson
Revision: 1186834

addpkg: fnlfmt 0.2.2-2

Added:
  fnlfmt/
  fnlfmt/repos/
  fnlfmt/trunk/
  fnlfmt/trunk/PKGBUILD

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

Added: fnlfmt/trunk/PKGBUILD
===
--- fnlfmt/trunk/PKGBUILD   (rev 0)
+++ fnlfmt/trunk/PKGBUILD   2022-04-16 23:41:50 UTC (rev 1186834)
@@ -0,0 +1,42 @@
+# Maintainer: George Rawlinson 
+
+pkgname=fnlfmt
+pkgver=0.2.2
+pkgrel=2
+pkgdesc='A formatter for Fennel code'
+arch=('any')
+url='https://git.sr.ht/~technomancy/fnlfmt'
+license=('GPL3')
+depends=('lua')
+makedepends=('git')
+_commit='6325724f26fa48e5e60ca3064ae87eefb9e2e66b'
+source=("$pkgname::git+$url#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd "$pkgname"
+
+  make
+}
+
+check() {
+  cd "$pkgname"
+
+  make test
+}
+
+package() {
+  cd "$pkgname"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" fnlfmt
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+}



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

2022-04-16 Thread George Rawlinson via arch-commits
Date: Saturday, April 16, 2022 @ 23:40:26
  Author: grawlinson
Revision: 1186833

addpkg: fennel 1.1.0-2

Added:
  fennel/
  fennel/repos/
  fennel/trunk/
  fennel/trunk/PKGBUILD

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

Added: fennel/trunk/PKGBUILD
===
--- fennel/trunk/PKGBUILD   (rev 0)
+++ fennel/trunk/PKGBUILD   2022-04-16 23:40:26 UTC (rev 1186833)
@@ -0,0 +1,45 @@
+# Maintainer: George Rawlinson 
+# Contributor: Katie Wolfe 
+
+pkgname=fennel
+pkgver=1.1.0
+pkgrel=2
+pkgdesc='A Lua Lisp language'
+arch=('any')
+url='https://fennel-lang.org'
+license=('MIT')
+depends=('lua')
+makedepends=('git')
+_commit='21c429235d49b2908c7e46442660b6f22da90efc'
+source=("$pkgname::git+https://git.sr.ht/~technomancy/fennel#commit=$_commit;)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd "$pkgname"
+
+  make build
+}
+
+check() {
+  cd "$pkgname"
+
+  make test
+}
+
+package() {
+  cd "$pkgname"
+
+  make DESTDIR="$pkgdir" PREFIX=/usr MAN_DIR=/usr/share/man/man1 install
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" *.md
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 23:30:47
  Author: arojas
Revision: 442821

archrelease: copy trunk to staging-x86_64

Added:
  krita/repos/staging-x86_64/
  krita/repos/staging-x86_64/PKGBUILD
(from rev 442820, krita/trunk/PKGBUILD)

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

Copied: krita/repos/staging-x86_64/PKGBUILD (from rev 442820, 
krita/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-04-16 23:30:47 UTC (rev 442821)
@@ -0,0 +1,36 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=krita
+_pkgver=5.0.5
+pkgver=${_pkgver/-/}
+pkgrel=2
+pkgdesc='Edit and paint images'
+arch=(x86_64)
+url='https://krita.org'
+license=(GPL3)
+depends=(kitemviews kitemmodels ki18n kcompletion kguiaddons kcrash qt5-svg 
qt5-multimedia quazip
+ gsl libraw exiv2 openexr fftw openjpeg2 opencolorio libwebp 
hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools boost eigen vc poppler-qt5 
python-pyqt5 libheif
+ qt5-tools sip kseexpr libmypaint)
+optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations'
+'python-pyqt5: for the Python plugins' 'libheif: HEIF filter'
+'kseexpr: SeExpr generator layer' 'kimageformats: PSD support' 
'libmypaint: support for MyPaint brushes'
+'krita-plugin-gmic: GMic plugin')
+source=(https://download.kde.org/stable/krita/$_pkgver/$pkgname-$_pkgver.tar.gz{,.sig})
+sha256sums=('162fff4596484e688655d4636373b1a77bcea39824c655b477afc1463aaf2dae'
+'SKIP')
+validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD'  # Boudewijn Rempt 

+  'E9FB29E74ADEACC5E3035B8AB69EB4CF7468332F'  # Dmitry Kazakov 
(main key) 
+  '064182440C674D9F8D0F6F8B4DA79EDA231C852B') # Stichting Krita 
Foundation 
+options=(debug)
+
+build() {
+  cmake -B build -S $pkgname-$_pkgver \
+-DBUILD_TESTING=OFF \
+-DBUILD_KRITA_QT_DESIGNER_PLUGINS=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 23:30:29
  Author: arojas
Revision: 442820

quazip 1.3 rebuild

Modified:
  krita/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 23:12:12 UTC (rev 442819)
+++ PKGBUILD2022-04-16 23:30:29 UTC (rev 442820)
@@ -3,7 +3,7 @@
 pkgname=krita
 _pkgver=5.0.5
 pkgver=${_pkgver/-/}
-pkgrel=1
+pkgrel=2
 pkgdesc='Edit and paint images'
 arch=(x86_64)
 url='https://krita.org'



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 23:15:02
  Author: arojas
Revision: 1186832

archrelease: copy trunk to community-x86_64

Added:
  strawberry/repos/community-x86_64/PKGBUILD
(from rev 1186831, strawberry/trunk/PKGBUILD)
Deleted:
  strawberry/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 23:14:51 UTC (rev 1186831)
+++ PKGBUILD2022-04-16 23:15:02 UTC (rev 1186832)
@@ -1,28 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Fabio 'Lolix' Loli  -> 
https://github.com/FabioLolix
-
-pkgname=strawberry
-pkgver=1.0.3
-pkgrel=1
-pkgdesc='A music player aimed at audio enthusiasts and music collectors'
-arch=(x86_64)
-url='https://www.strawbs.org/'
-license=(GPL3)
-depends=(qt6-base chromaprint protobuf gst-plugins-base gst-plugins-good 
udisks2 libcdio libgpod libmtp fftw)
-makedepends=(cmake boost qt6-tools)
-optdepends=('gst-libav: additional codecs'
-'gst-plugins-bad: additional codecs'
-'gst-plugins-ugly: additional codecs')
-source=(https://github.com/strawberrymusicplayer/strawberry/releases/download/$pkgver/$pkgname-$pkgver.tar.xz)
-sha256sums=('5bf952efab4de4cb9569a091db359eb994bf31ad03f0677f93a40eff85eb9c6a')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DBUILD_WITH_QT6=ON
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: strawberry/repos/community-x86_64/PKGBUILD (from rev 1186831, 
strawberry/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 23:15:02 UTC (rev 1186832)
@@ -0,0 +1,28 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Fabio 'Lolix' Loli  -> 
https://github.com/FabioLolix
+
+pkgname=strawberry
+pkgver=1.0.4
+pkgrel=1
+pkgdesc='A music player aimed at audio enthusiasts and music collectors'
+arch=(x86_64)
+url='https://www.strawbs.org/'
+license=(GPL3)
+depends=(qt6-base chromaprint protobuf gst-plugins-base gst-plugins-good 
udisks2 libcdio libgpod libmtp fftw)
+makedepends=(cmake boost qt6-tools)
+optdepends=('gst-libav: additional codecs'
+'gst-plugins-bad: additional codecs'
+'gst-plugins-ugly: additional codecs')
+source=(https://github.com/strawberrymusicplayer/strawberry/releases/download/$pkgver/$pkgname-$pkgver.tar.xz)
+sha256sums=('ec68f42326b70870d1c9c0ad1182136897e299d7d187fbc2994467c19afac07e')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DBUILD_WITH_QT6=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 23:14:51
  Author: arojas
Revision: 1186831

Update to 1.0.4

Modified:
  strawberry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:43:51 UTC (rev 1186830)
+++ PKGBUILD2022-04-16 23:14:51 UTC (rev 1186831)
@@ -2,7 +2,7 @@
 # Contributor: Fabio 'Lolix' Loli  -> 
https://github.com/FabioLolix
 
 pkgname=strawberry
-pkgver=1.0.3
+pkgver=1.0.4
 pkgrel=1
 pkgdesc='A music player aimed at audio enthusiasts and music collectors'
 arch=(x86_64)
@@ -14,7 +14,7 @@
 'gst-plugins-bad: additional codecs'
 'gst-plugins-ugly: additional codecs')
 
source=(https://github.com/strawberrymusicplayer/strawberry/releases/download/$pkgver/$pkgname-$pkgver.tar.xz)
-sha256sums=('5bf952efab4de4cb9569a091db359eb994bf31ad03f0677f93a40eff85eb9c6a')
+sha256sums=('ec68f42326b70870d1c9c0ad1182136897e299d7d187fbc2994467c19afac07e')
 
 build() {
   cmake -B build -S $pkgname-$pkgver \



[arch-commits] Commit in suitesparse/repos/extra-x86_64 (4 files)

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 23:12:12
  Author: arojas
Revision: 442819

archrelease: copy trunk to extra-x86_64

Added:
  suitesparse/repos/extra-x86_64/PKGBUILD
(from rev 442818, suitesparse/trunk/PKGBUILD)
  suitesparse/repos/extra-x86_64/suitesparse-no-demo.patch
(from rev 442818, suitesparse/trunk/suitesparse-no-demo.patch)
Deleted:
  suitesparse/repos/extra-x86_64/PKGBUILD
  suitesparse/repos/extra-x86_64/suitesparse-no-demo.patch

---+
 PKGBUILD  |   80 ++--
 suitesparse-no-demo.patch |   22 ++--
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 23:12:00 UTC (rev 442818)
+++ PKGBUILD2022-04-16 23:12:12 UTC (rev 442819)
@@ -1,40 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Maintainer: Antonio Rojas 
-
-pkgname=suitesparse
-pkgver=5.11.0
-pkgrel=1
-pkgdesc='A collection of sparse matrix libraries'
-url='http://faculty.cse.tamu.edu/davis/suitesparse.html'
-arch=(x86_64)
-depends=(metis lapack mpfr)
-makedepends=(gcc-fortran cmake chrpath)
-license=(GPL)
-options=(staticlibs)
-source=(https://github.com/DrTimothyAldenDavis/SuiteSparse/archive/v$pkgver/$pkgname-$pkgver.tar.gz
-suitesparse-no-demo.patch)
-sha256sums=('fdd957ed06019465f7de73ce931afaf5d40e96e14ae57d91f60868b8c123c4c8'
-'409b32e546ec4936d0d88e39c59ee68dfd9f630d8c454ce1e3d58243df7ad396')
-
-prepare() {
-  cd SuiteSparse-$pkgver
-  patch -p1 -i ../suitesparse-no-demo.patch # Don't run demo
-}
-
-build() {
-  cd SuiteSparse-$pkgver
-
-  BLAS=-lblas LAPACK=-llapack MY_METIS_LIB=/usr/lib/libmetis.so make
-}
-
-
-package() {
-  cd SuiteSparse-$pkgver
-  install -dm755 "${pkgdir}"/usr/{include,lib}
-
-  BLAS=-lblas LAPACK=-llapack MY_METIS_LIB=/usr/lib/libmetis.so \
-  make INSTALL_LIB="${pkgdir}"/usr/lib INSTALL_INCLUDE="${pkgdir}"/usr/include 
install
-
-  # fix RPATH
-  chrpath -d "$pkgdir"/usr/lib/*
-}

Copied: suitesparse/repos/extra-x86_64/PKGBUILD (from rev 442818, 
suitesparse/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 23:12:12 UTC (rev 442819)
@@ -0,0 +1,40 @@
+# Maintainer: Ronald van Haren 
+# Maintainer: Antonio Rojas 
+
+pkgname=suitesparse
+pkgver=5.12.0
+pkgrel=1
+pkgdesc='A collection of sparse matrix libraries'
+url='http://faculty.cse.tamu.edu/davis/suitesparse.html'
+arch=(x86_64)
+depends=(metis lapack mpfr)
+makedepends=(gcc-fortran cmake chrpath)
+license=(GPL)
+options=(staticlibs)
+source=(https://github.com/DrTimothyAldenDavis/SuiteSparse/archive/v$pkgver/$pkgname-$pkgver.tar.gz
+suitesparse-no-demo.patch)
+sha256sums=('5fb0064a3398111976f30c5908a8c0b40df44c6dd8f0cc4bfa7b9e45d8c647de'
+'409b32e546ec4936d0d88e39c59ee68dfd9f630d8c454ce1e3d58243df7ad396')
+
+prepare() {
+  cd SuiteSparse-$pkgver
+  patch -p1 -i ../suitesparse-no-demo.patch # Don't run demo
+}
+
+build() {
+  cd SuiteSparse-$pkgver
+
+  BLAS=-lblas LAPACK=-llapack MY_METIS_LIB=/usr/lib/libmetis.so make
+}
+
+
+package() {
+  cd SuiteSparse-$pkgver
+  install -dm755 "${pkgdir}"/usr/{include,lib}
+
+  BLAS=-lblas LAPACK=-llapack MY_METIS_LIB=/usr/lib/libmetis.so \
+  make INSTALL_LIB="${pkgdir}"/usr/lib INSTALL_INCLUDE="${pkgdir}"/usr/include 
install
+
+  # fix RPATH
+  chrpath -d "$pkgdir"/usr/lib/*
+}

Deleted: suitesparse-no-demo.patch
===
--- suitesparse-no-demo.patch   2022-04-16 23:12:00 UTC (rev 442818)
+++ suitesparse-no-demo.patch   2022-04-16 23:12:12 UTC (rev 442819)
@@ -1,11 +0,0 @@
 SuiteSparse-5.6.0/Makefile.orig2019-11-05 22:37:26.086135974 +
-+++ SuiteSparse-5.6.0/Makefile 2019-11-05 22:37:37.549632429 +
-@@ -16,7 +16,7 @@
- # installs all libraries SuiteSparse/lib.
- go: metis
-   ( cd SuiteSparse_config && $(MAKE) )
--  ( cd Mongoose && $(MAKE) CMAKE_OPTIONS='$(CMAKE_OPTIONS)' )
-+  ( cd Mongoose && $(MAKE) library CMAKE_OPTIONS='$(CMAKE_OPTIONS)' )
-   ( cd AMD && $(MAKE) )
-   ( cd BTF && $(MAKE) )
-   ( cd CAMD && $(MAKE) )

Copied: suitesparse/repos/extra-x86_64/suitesparse-no-demo.patch (from rev 
442818, suitesparse/trunk/suitesparse-no-demo.patch)
===
--- suitesparse-no-demo.patch   (rev 0)
+++ suitesparse-no-demo.patch   2022-04-16 23:12:12 UTC (rev 442819)
@@ -0,0 +1,11 @@
+--- SuiteSparse-5.6.0/Makefile.orig2019-11-05 22:37:26.086135974 +
 SuiteSparse-5.6.0/Makefile 2019-11-05 22:37:37.549632429 +
+@@ -16,7 +16,7 @@
+ # installs all libraries SuiteSparse/lib.
+ go: metis
+   ( cd SuiteSparse_config && $(MAKE) )
+-  ( cd Mongoose && $(MAKE) CMAKE_OPTIONS='$(CMAKE_OPTIONS)' )
++  ( cd Mongoose && $(MAKE) library CMAKE_OPTIONS='$(CMAKE_OPTIONS)' )
+ 

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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 23:12:00
  Author: arojas
Revision: 442818

Update to 5.12.0

Modified:
  suitesparse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:56:35 UTC (rev 442817)
+++ PKGBUILD2022-04-16 23:12:00 UTC (rev 442818)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=suitesparse
-pkgver=5.11.0
+pkgver=5.12.0
 pkgrel=1
 pkgdesc='A collection of sparse matrix libraries'
 url='http://faculty.cse.tamu.edu/davis/suitesparse.html'
@@ -13,7 +13,7 @@
 options=(staticlibs)
 
source=(https://github.com/DrTimothyAldenDavis/SuiteSparse/archive/v$pkgver/$pkgname-$pkgver.tar.gz
 suitesparse-no-demo.patch)
-sha256sums=('fdd957ed06019465f7de73ce931afaf5d40e96e14ae57d91f60868b8c123c4c8'
+sha256sums=('5fb0064a3398111976f30c5908a8c0b40df44c6dd8f0cc4bfa7b9e45d8c647de'
 '409b32e546ec4936d0d88e39c59ee68dfd9f630d8c454ce1e3d58243df7ad396')
 
 prepare() {



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:56:35
  Author: arojas
Revision: 442817

archrelease: copy trunk to staging-x86_64

Added:
  quazip/repos/staging-x86_64/
  quazip/repos/staging-x86_64/PKGBUILD
(from rev 442816, quazip/trunk/PKGBUILD)

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

Copied: quazip/repos/staging-x86_64/PKGBUILD (from rev 442816, 
quazip/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2022-04-16 22:56:35 UTC (rev 442817)
@@ -0,0 +1,42 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Felix Yan 
+# Contributor: Andrea Scarpino 
+# Contributor: trya 
+
+pkgbase=quazip
+pkgname=(quazip-qt5 quazip-qt6)
+pkgver=1.3
+pkgrel=1
+pkgdesc='C++ wrapper for the ZIP/UNZIP C package'
+url='https://stachenov.github.io/quazip/'
+license=(LGPL)
+arch=(x86_64)
+makedepends=(cmake qt5-base qt6-5compat)
+source=(https://github.com/stachenov/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz)
+sha256sums=('c1239559cd6860cab80a0fd81f4204e606f9324f702dab6166b0960676ee1754')
+
+build() {
+  cmake -B build5 -S $pkgbase-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr
+  cmake --build build5
+
+  cmake -B build6 -S $pkgbase-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DQUAZIP_QT_MAJOR_VERSION=6
+  cmake --build build6
+}
+
+package_quazip-qt5() {
+  depends=(qt5-base)
+  provides=(quazip)
+  replaces=(quazip)
+
+  DESTDIR="$pkgdir" cmake --install build5
+}
+
+package_quazip-qt6() {
+  depends=(qt6-5compat)
+
+  DESTDIR="$pkgdir" cmake --install build6
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:56:18
  Author: arojas
Revision: 442816

Update to 1.3

Modified:
  quazip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:53:58 UTC (rev 442815)
+++ PKGBUILD2022-04-16 22:56:18 UTC (rev 442816)
@@ -6,8 +6,8 @@
 
 pkgbase=quazip
 pkgname=(quazip-qt5 quazip-qt6)
-pkgver=1.2
-pkgrel=2
+pkgver=1.3
+pkgrel=1
 pkgdesc='C++ wrapper for the ZIP/UNZIP C package'
 url='https://stachenov.github.io/quazip/'
 license=(LGPL)
@@ -14,7 +14,7 @@
 arch=(x86_64)
 makedepends=(cmake qt5-base qt6-5compat)
 
source=(https://github.com/stachenov/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz)
-sha256sums=('2dfb911d6b27545de0b98798d967c40430312377e6ade57096d6ec80c720cb61')
+sha256sums=('c1239559cd6860cab80a0fd81f4204e606f9324f702dab6166b0960676ee1754')
 
 build() {
   cmake -B build5 -S $pkgbase-$pkgver \



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:53:58
  Author: arojas
Revision: 442815

archrelease: copy trunk to extra-x86_64

Added:
  pyqt6-webengine/repos/extra-x86_64/PKGBUILD
(from rev 442814, pyqt6-webengine/trunk/PKGBUILD)
Deleted:
  pyqt6-webengine/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:53:48 UTC (rev 442814)
+++ PKGBUILD2022-04-16 22:53:58 UTC (rev 442815)
@@ -1,30 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgbase=pyqt6-webengine
-pkgname=(python-pyqt6-webengine)
-pkgver=6.2.1
-pkgrel=3
-pkgdesc='Python bindings for QtWebEngine'
-arch=(x86_64)
-url='https://www.riverbankcomputing.com/software/pyqtwebengine/intro'
-license=(GPL3)
-groups=(pyqt6)
-depends=(qt6-webengine python-pyqt6)
-makedepends=(sip pyqt-builder)
-source=(https://pypi.python.org/packages/source/P/PyQt6-WebEngine/PyQt6_WebEngine-$pkgver.tar.gz)
-sha256sums=('6f6d7cb612f20d1f1f8ea1bbe7ebb8bbaa3f7fcd56f0e9c41582851998be20c3')
-options=(debug)
-
-build() {
-  cd PyQt6_WebEngine-$pkgver
-  sip-build \
---no-make \
---qmake=/usr/bin/qmake6
-  cd build
-  make
-}
-
-package_python-pyqt6-webengine() {
-  cd PyQt6_WebEngine-$pkgver/build
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: pyqt6-webengine/repos/extra-x86_64/PKGBUILD (from rev 442814, 
pyqt6-webengine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:53:58 UTC (rev 442815)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+
+pkgbase=pyqt6-webengine
+pkgname=(python-pyqt6-webengine)
+pkgver=6.3.0
+pkgrel=1
+pkgdesc='Python bindings for QtWebEngine'
+arch=(x86_64)
+url='https://www.riverbankcomputing.com/software/pyqtwebengine/intro'
+license=(GPL3)
+groups=(pyqt6)
+depends=(qt6-webengine python-pyqt6)
+makedepends=(sip pyqt-builder)
+source=(https://pypi.python.org/packages/source/P/PyQt6-WebEngine/PyQt6_WebEngine-$pkgver.tar.gz)
+sha256sums=('ab2aedbeec54f1bcff872f7dfc236aa0fce4b55cd30f608ca89b408ee9e8147b')
+options=(debug)
+
+build() {
+  cd PyQt6_WebEngine-$pkgver
+  sip-build \
+--no-make \
+--qmake=/usr/bin/qmake6
+  cd build
+  make
+}
+
+package_python-pyqt6-webengine() {
+  cd PyQt6_WebEngine-$pkgver/build
+  make INSTALL_ROOT="$pkgdir" install
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:53:48
  Author: arojas
Revision: 442814

Update to 6.3.0

Modified:
  pyqt6-webengine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:50:21 UTC (rev 442813)
+++ PKGBUILD2022-04-16 22:53:48 UTC (rev 442814)
@@ -2,8 +2,8 @@
 
 pkgbase=pyqt6-webengine
 pkgname=(python-pyqt6-webengine)
-pkgver=6.2.1
-pkgrel=3
+pkgver=6.3.0
+pkgrel=1
 pkgdesc='Python bindings for QtWebEngine'
 arch=(x86_64)
 url='https://www.riverbankcomputing.com/software/pyqtwebengine/intro'
@@ -12,7 +12,7 @@
 depends=(qt6-webengine python-pyqt6)
 makedepends=(sip pyqt-builder)
 
source=(https://pypi.python.org/packages/source/P/PyQt6-WebEngine/PyQt6_WebEngine-$pkgver.tar.gz)
-sha256sums=('6f6d7cb612f20d1f1f8ea1bbe7ebb8bbaa3f7fcd56f0e9c41582851998be20c3')
+sha256sums=('ab2aedbeec54f1bcff872f7dfc236aa0fce4b55cd30f608ca89b408ee9e8147b')
 options=(debug)
 
 build() {



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:50:21
  Author: arojas
Revision: 442813

archrelease: copy trunk to extra-x86_64

Added:
  pyqt6-networkauth/repos/extra-x86_64/PKGBUILD
(from rev 442812, pyqt6-networkauth/trunk/PKGBUILD)
Deleted:
  pyqt6-networkauth/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:50:09 UTC (rev 442812)
+++ PKGBUILD2022-04-16 22:50:21 UTC (rev 442813)
@@ -1,30 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgbase=pyqt6-networkauth
-pkgname=(python-pyqt6-networkauth)
-pkgver=6.2.0
-pkgrel=3
-pkgdesc='Python bindings for QtNetworkAuth'
-arch=(x86_64)
-url='https://www.riverbankcomputing.com/software/pyqtnetworkauth/intro'
-license=(GPL3)
-groups=(pyqt6)
-depends=(qt6-networkauth python-pyqt6)
-makedepends=(sip pyqt-builder)
-source=(https://pypi.python.org/packages/source/P/PyQt6-NetworkAuth/PyQt6_NetworkAuth-$pkgver.tar.gz)
-sha256sums=('23e730cc0d6b828bec2f92d9fac3607871e6033a8af4620e5d4e3afc13bd6c3c')
-options=(debug)
-
-build() {
-  cd PyQt6_NetworkAuth-$pkgver
-  sip-build \
---no-make \
---qmake=/usr/bin/qmake6
-  cd build
-  make
-}
-
-package_python-pyqt6-networkauth(){
-  cd PyQt6_NetworkAuth-$pkgver/build
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: pyqt6-networkauth/repos/extra-x86_64/PKGBUILD (from rev 442812, 
pyqt6-networkauth/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:50:21 UTC (rev 442813)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+
+pkgbase=pyqt6-networkauth
+pkgname=(python-pyqt6-networkauth)
+pkgver=6.3.0
+pkgrel=1
+pkgdesc='Python bindings for QtNetworkAuth'
+arch=(x86_64)
+url='https://www.riverbankcomputing.com/software/pyqtnetworkauth/intro'
+license=(GPL3)
+groups=(pyqt6)
+depends=(qt6-networkauth python-pyqt6)
+makedepends=(sip pyqt-builder)
+source=(https://pypi.python.org/packages/source/P/PyQt6-NetworkAuth/PyQt6_NetworkAuth-$pkgver.tar.gz)
+sha256sums=('b1434b349e0820649341accf78689e9efd2c73543ed7d5474f660aaea2708454')
+options=(debug)
+
+build() {
+  cd PyQt6_NetworkAuth-$pkgver
+  sip-build \
+--no-make \
+--qmake=/usr/bin/qmake6
+  cd build
+  make
+}
+
+package_python-pyqt6-networkauth(){
+  cd PyQt6_NetworkAuth-$pkgver/build
+  make INSTALL_ROOT="$pkgdir" install
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:50:09
  Author: arojas
Revision: 442812

Update to 6.3.0

Modified:
  pyqt6-networkauth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:48:57 UTC (rev 442811)
+++ PKGBUILD2022-04-16 22:50:09 UTC (rev 442812)
@@ -2,8 +2,8 @@
 
 pkgbase=pyqt6-networkauth
 pkgname=(python-pyqt6-networkauth)
-pkgver=6.2.0
-pkgrel=3
+pkgver=6.3.0
+pkgrel=1
 pkgdesc='Python bindings for QtNetworkAuth'
 arch=(x86_64)
 url='https://www.riverbankcomputing.com/software/pyqtnetworkauth/intro'
@@ -12,7 +12,7 @@
 depends=(qt6-networkauth python-pyqt6)
 makedepends=(sip pyqt-builder)
 
source=(https://pypi.python.org/packages/source/P/PyQt6-NetworkAuth/PyQt6_NetworkAuth-$pkgver.tar.gz)
-sha256sums=('23e730cc0d6b828bec2f92d9fac3607871e6033a8af4620e5d4e3afc13bd6c3c')
+sha256sums=('b1434b349e0820649341accf78689e9efd2c73543ed7d5474f660aaea2708454')
 options=(debug)
 
 build() {



[arch-commits] Commit in pyqt6-datavisualization/repos/extra-x86_64 (2 files)

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:48:57
  Author: arojas
Revision: 442811

archrelease: copy trunk to extra-x86_64

Added:
  pyqt6-datavisualization/repos/extra-x86_64/PKGBUILD
(from rev 442810, pyqt6-datavisualization/trunk/PKGBUILD)
Deleted:
  pyqt6-datavisualization/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:48:46 UTC (rev 442810)
+++ PKGBUILD2022-04-16 22:48:57 UTC (rev 442811)
@@ -1,30 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgbase=pyqt6-datavisualization
-pkgname=(python-pyqt6-datavisualization)
-pkgver=6.2.0
-pkgrel=3
-pkgdesc='Python bindings for QtDataVisualization'
-arch=(x86_64)
-url='https://www.riverbankcomputing.com/software/pyqtdatavisualization/intro'
-license=(GPL3)
-groups=(pyqt6)
-depends=(qt6-datavis3d python-pyqt6)
-makedepends=(qt6-declarative sip pyqt-builder)
-source=(https://pypi.python.org/packages/source/P/PyQt6-DataVisualization/PyQt6_DataVisualization-$pkgver.tar.gz)
-sha256sums=('7526bfd9433acb8eabdb354ba9e027d1bb34b8fa9d14f299d4b3b4c81a21e37a')
-options=(debug)
-
-build() {
-  cd PyQt6_DataVisualization-$pkgver
-  sip-build \
---no-make \
---qmake=/usr/bin/qmake6
-  cd build
-  make
-}
-
-package_python-pyqt6-datavisualization(){
-  cd PyQt6_DataVisualization-$pkgver/build
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: pyqt6-datavisualization/repos/extra-x86_64/PKGBUILD (from rev 442810, 
pyqt6-datavisualization/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:48:57 UTC (rev 442811)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+
+pkgbase=pyqt6-datavisualization
+pkgname=(python-pyqt6-datavisualization)
+pkgver=6.3.0
+pkgrel=1
+pkgdesc='Python bindings for QtDataVisualization'
+arch=(x86_64)
+url='https://www.riverbankcomputing.com/software/pyqtdatavisualization/intro'
+license=(GPL3)
+groups=(pyqt6)
+depends=(qt6-datavis3d python-pyqt6)
+makedepends=(qt6-declarative sip pyqt-builder)
+source=(https://pypi.python.org/packages/source/P/PyQt6-DataVisualization/PyQt6_DataVisualization-$pkgver.tar.gz)
+sha256sums=('f3e39f04e15fa022d8343db108af03c462de81d98c07efccb0e4b6d29292f537')
+options=(debug)
+
+build() {
+  cd PyQt6_DataVisualization-$pkgver
+  sip-build \
+--no-make \
+--qmake=/usr/bin/qmake6
+  cd build
+  make
+}
+
+package_python-pyqt6-datavisualization(){
+  cd PyQt6_DataVisualization-$pkgver/build
+  make INSTALL_ROOT="$pkgdir" install
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:48:46
  Author: arojas
Revision: 442810

Update to 6.3.0

Modified:
  pyqt6-datavisualization/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:46:50 UTC (rev 442809)
+++ PKGBUILD2022-04-16 22:48:46 UTC (rev 442810)
@@ -2,8 +2,8 @@
 
 pkgbase=pyqt6-datavisualization
 pkgname=(python-pyqt6-datavisualization)
-pkgver=6.2.0
-pkgrel=3
+pkgver=6.3.0
+pkgrel=1
 pkgdesc='Python bindings for QtDataVisualization'
 arch=(x86_64)
 url='https://www.riverbankcomputing.com/software/pyqtdatavisualization/intro'
@@ -12,7 +12,7 @@
 depends=(qt6-datavis3d python-pyqt6)
 makedepends=(qt6-declarative sip pyqt-builder)
 
source=(https://pypi.python.org/packages/source/P/PyQt6-DataVisualization/PyQt6_DataVisualization-$pkgver.tar.gz)
-sha256sums=('7526bfd9433acb8eabdb354ba9e027d1bb34b8fa9d14f299d4b3b4c81a21e37a')
+sha256sums=('f3e39f04e15fa022d8343db108af03c462de81d98c07efccb0e4b6d29292f537')
 options=(debug)
 
 build() {



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:46:50
  Author: arojas
Revision: 442809

archrelease: copy trunk to extra-x86_64

Added:
  pyqt6-charts/repos/extra-x86_64/PKGBUILD
(from rev 442808, pyqt6-charts/trunk/PKGBUILD)
Deleted:
  pyqt6-charts/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:46:39 UTC (rev 442808)
+++ PKGBUILD2022-04-16 22:46:50 UTC (rev 442809)
@@ -1,30 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgbase=pyqt6-charts
-pkgname=(python-pyqt6-charts)
-pkgver=6.2.0
-pkgrel=3
-pkgdesc='Python bindings for QtChart'
-arch=(x86_64)
-url='https://www.riverbankcomputing.com/software/pyqtchart/intro'
-license=(GPL3)
-groups=(pyqt6)
-depends=(qt6-charts python-pyqt6)
-makedepends=(sip pyqt-builder)
-source=(https://pypi.python.org/packages/source/P/PyQt6-Charts/PyQt6_Charts-$pkgver.tar.gz)
-sha256sums=('4ea4b6b2a6c2ae7643a33534acda9bee0b5308748a34529c9f09523167b3379c')
-options=(debug)
-
-build() {
-  cd PyQt6_Charts-$pkgver
-  sip-build \
---no-make \
---qmake=/usr/bin/qmake6
-  cd build
-  make
-}
-
-package_python-pyqt6-charts(){
-  cd PyQt6_Charts-$pkgver/build
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: pyqt6-charts/repos/extra-x86_64/PKGBUILD (from rev 442808, 
pyqt6-charts/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:46:50 UTC (rev 442809)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+
+pkgbase=pyqt6-charts
+pkgname=(python-pyqt6-charts)
+pkgver=6.3.0
+pkgrel=1
+pkgdesc='Python bindings for QtChart'
+arch=(x86_64)
+url='https://www.riverbankcomputing.com/software/pyqtchart/intro'
+license=(GPL3)
+groups=(pyqt6)
+depends=(qt6-charts python-pyqt6)
+makedepends=(sip pyqt-builder)
+source=(https://pypi.python.org/packages/source/P/PyQt6-Charts/PyQt6_Charts-$pkgver.tar.gz)
+sha256sums=('65f0abd36305884bcae6ac837f8bbcf301873cbeeea7af9f0269f4a7c1a8ae2b')
+options=(debug)
+
+build() {
+  cd PyQt6_Charts-$pkgver
+  sip-build \
+--no-make \
+--qmake=/usr/bin/qmake6
+  cd build
+  make
+}
+
+package_python-pyqt6-charts(){
+  cd PyQt6_Charts-$pkgver/build
+  make INSTALL_ROOT="$pkgdir" install
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:46:39
  Author: arojas
Revision: 442808

Update to 6.3.0

Modified:
  pyqt6-charts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:44:20 UTC (rev 442807)
+++ PKGBUILD2022-04-16 22:46:39 UTC (rev 442808)
@@ -2,8 +2,8 @@
 
 pkgbase=pyqt6-charts
 pkgname=(python-pyqt6-charts)
-pkgver=6.2.0
-pkgrel=3
+pkgver=6.3.0
+pkgrel=1
 pkgdesc='Python bindings for QtChart'
 arch=(x86_64)
 url='https://www.riverbankcomputing.com/software/pyqtchart/intro'
@@ -12,7 +12,7 @@
 depends=(qt6-charts python-pyqt6)
 makedepends=(sip pyqt-builder)
 
source=(https://pypi.python.org/packages/source/P/PyQt6-Charts/PyQt6_Charts-$pkgver.tar.gz)
-sha256sums=('4ea4b6b2a6c2ae7643a33534acda9bee0b5308748a34529c9f09523167b3379c')
+sha256sums=('65f0abd36305884bcae6ac837f8bbcf301873cbeeea7af9f0269f4a7c1a8ae2b')
 options=(debug)
 
 build() {



[arch-commits] Commit in pyqt6-3d/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:44:20
  Author: arojas
Revision: 442807

archrelease: copy trunk to extra-x86_64

Added:
  pyqt6-3d/repos/extra-x86_64/PKGBUILD
(from rev 442806, pyqt6-3d/trunk/PKGBUILD)
Deleted:
  pyqt6-3d/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:44:09 UTC (rev 442806)
+++ PKGBUILD2022-04-16 22:44:20 UTC (rev 442807)
@@ -1,30 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgbase=pyqt6-3d
-pkgname=(python-pyqt6-3d)
-pkgver=6.2.0
-pkgrel=3
-pkgdesc='Python bindings for Qt3D'
-arch=(x86_64)
-url='https://www.riverbankcomputing.com/software/pyqt3d/intro'
-license=(GPL3)
-groups=(pyqt6)
-depends=(qt6-3d python-pyqt6)
-makedepends=(sip pyqt-builder)
-source=(https://pypi.python.org/packages/source/P/PyQt6-3D/PyQt6_3D-$pkgver.tar.gz)
-sha256sums=('12b5c843a94fe1521d71a0c6a7ebd0a9f1f32c6fbaed896e5cda378b1831121c')
-options=(debug)
-
-build() {
-  cd PyQt6_3D-$pkgver
-  sip-build \
---no-make \
---qmake=/usr/bin/qmake6
-  cd build
-  make
-}
-
-package_python-pyqt6-3d(){
-  cd PyQt6_3D-$pkgver/build
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: pyqt6-3d/repos/extra-x86_64/PKGBUILD (from rev 442806, 
pyqt6-3d/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:44:20 UTC (rev 442807)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+
+pkgbase=pyqt6-3d
+pkgname=(python-pyqt6-3d)
+pkgver=6.3.0
+pkgrel=1
+pkgdesc='Python bindings for Qt3D'
+arch=(x86_64)
+url='https://www.riverbankcomputing.com/software/pyqt3d/intro'
+license=(GPL3)
+groups=(pyqt6)
+depends=(qt6-3d python-pyqt6)
+makedepends=(sip pyqt-builder)
+source=(https://pypi.python.org/packages/source/P/PyQt6-3D/PyQt6_3D-$pkgver.tar.gz)
+sha256sums=('fab024b7fb3245d9b463029ef46cff95f0bdab603b875fabcaa53d9fe63f')
+options=(debug)
+
+build() {
+  cd PyQt6_3D-$pkgver
+  sip-build \
+--no-make \
+--qmake=/usr/bin/qmake6
+  cd build
+  make
+}
+
+package_python-pyqt6-3d(){
+  cd PyQt6_3D-$pkgver/build
+  make INSTALL_ROOT="$pkgdir" install
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:44:09
  Author: arojas
Revision: 442806

Update to 6.3.0

Modified:
  pyqt6-3d/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:39:19 UTC (rev 442805)
+++ PKGBUILD2022-04-16 22:44:09 UTC (rev 442806)
@@ -2,8 +2,8 @@
 
 pkgbase=pyqt6-3d
 pkgname=(python-pyqt6-3d)
-pkgver=6.2.0
-pkgrel=3
+pkgver=6.3.0
+pkgrel=1
 pkgdesc='Python bindings for Qt3D'
 arch=(x86_64)
 url='https://www.riverbankcomputing.com/software/pyqt3d/intro'
@@ -12,7 +12,7 @@
 depends=(qt6-3d python-pyqt6)
 makedepends=(sip pyqt-builder)
 
source=(https://pypi.python.org/packages/source/P/PyQt6-3D/PyQt6_3D-$pkgver.tar.gz)
-sha256sums=('12b5c843a94fe1521d71a0c6a7ebd0a9f1f32c6fbaed896e5cda378b1831121c')
+sha256sums=('fab024b7fb3245d9b463029ef46cff95f0bdab603b875fabcaa53d9fe63f')
 options=(debug)
 
 build() {



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

2022-04-16 Thread Lukas Fleischer via arch-commits
Date: Saturday, April 16, 2022 @ 22:43:51
  Author: lfleischer
Revision: 1186830

archrelease: copy trunk to community-x86_64

Added:
  calcurse/repos/community-x86_64/2E36D8620221482FC45CB7F2A91764759326B440.asc
(from rev 1186829, 
calcurse/trunk/2E36D8620221482FC45CB7F2A91764759326B440.asc)
  calcurse/repos/community-x86_64/PKGBUILD
(from rev 1186829, calcurse/trunk/PKGBUILD)
Deleted:
  calcurse/repos/community-x86_64/2E36D8620221482FC45CB7F2A91764759326B440.asc
  calcurse/repos/community-x86_64/PKGBUILD

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

Deleted: 2E36D8620221482FC45CB7F2A91764759326B440.asc
===
(Binary files differ)

Copied: 
calcurse/repos/community-x86_64/2E36D8620221482FC45CB7F2A91764759326B440.asc 
(from rev 1186829, calcurse/trunk/2E36D8620221482FC45CB7F2A91764759326B440.asc)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:43:37 UTC (rev 1186829)
+++ PKGBUILD2022-04-16 22:43:51 UTC (rev 1186830)
@@ -1,43 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Ronald van Haren 
-# Contributor: wain 
-
-pkgname=calcurse
-pkgver=4.7.1
-pkgrel=2
-pkgdesc='A text-based personal organizer'
-arch=('x86_64')
-url='https://calcurse.org/'
-license=('BSD')
-depends=('ncurses')
-optdepends=(
-  'python: for CalDAV support'
-  'python-httplib2: for CalDAV support'
-  'python-pyparsing: for CalDAV support'
-)
-source=("https://calcurse.org/files/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha512sums=('8b5574d2909128c745b2d6367b517c5fb04a1c451e666dc9ee0652b3793b519576af5700d4fd073de0ccd5e5dced6b69c45dbfaf98b35a99784093208512b68e'
-'SKIP')
-b2sums=('438741b9e0f61438d235fa60d13816d83c19f7d1b612619fe20a78812e77657b003ad0b9416bcc766f0e38e7868b3543972ed65eee43d8f9d6b1d80ba1872091'
-'SKIP')
-validpgpkeys=('2E36D8620221482FC45CB7F2A91764759326B440') # Lukas Fleischer 

-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure \
---enable-docs \
---without-asciidoc \
---prefix=/usr \
---mandir=/usr/share/man
-
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" COPYING
-}

Copied: calcurse/repos/community-x86_64/PKGBUILD (from rev 1186829, 
calcurse/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:43:51 UTC (rev 1186830)
@@ -0,0 +1,48 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Ronald van Haren 
+# Contributor: wain 
+
+pkgname=calcurse
+pkgver=4.8.0
+pkgrel=1
+pkgdesc='A text-based personal organizer'
+arch=('x86_64')
+url='https://calcurse.org/'
+license=('BSD')
+depends=('ncurses')
+optdepends=(
+  'python: for CalDAV support'
+  'python-httplib2: for CalDAV support'
+  'python-pyparsing: for CalDAV support'
+)
+source=("https://calcurse.org/files/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha512sums=('ea156c4320abf97fdb5abc29ff1f9bc659a3cab0e571295ed04b42dd742c4c45a7d5958dc2d386fc0ee7bd733969a6275405d5cf10cd645c75cb97b6b9e571d6'
+'SKIP')
+b2sums=('3fc703626d5e17b78ff42c0ef4f554585efd8223c2bd9d8c2f7add681602dc585cf066ed7c55a040b2585ad07513b26a5297b3b41f4c94a043f61ad2ad9094c2'
+'SKIP')
+validpgpkeys=('2E36D8620221482FC45CB7F2A91764759326B440') # Lukas Fleischer 

+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure \
+--enable-docs \
+--without-asciidoc \
+--prefix=/usr \
+--mandir=/usr/share/man
+
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" COPYING
+}



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

2022-04-16 Thread Lukas Fleischer via arch-commits
Date: Saturday, April 16, 2022 @ 22:43:37
  Author: lfleischer
Revision: 1186829

upgpkg: calcurse 4.8.0-1: upstream update

Modified:
  calcurse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:13:52 UTC (rev 1186828)
+++ PKGBUILD2022-04-16 22:43:37 UTC (rev 1186829)
@@ -3,8 +3,8 @@
 # Contributor: wain 
 
 pkgname=calcurse
-pkgver=4.7.1
-pkgrel=2
+pkgver=4.8.0
+pkgrel=1
 pkgdesc='A text-based personal organizer'
 arch=('x86_64')
 url='https://calcurse.org/'
@@ -16,9 +16,9 @@
   'python-pyparsing: for CalDAV support'
 )
 source=("https://calcurse.org/files/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha512sums=('8b5574d2909128c745b2d6367b517c5fb04a1c451e666dc9ee0652b3793b519576af5700d4fd073de0ccd5e5dced6b69c45dbfaf98b35a99784093208512b68e'
+sha512sums=('ea156c4320abf97fdb5abc29ff1f9bc659a3cab0e571295ed04b42dd742c4c45a7d5958dc2d386fc0ee7bd733969a6275405d5cf10cd645c75cb97b6b9e571d6'
 'SKIP')
-b2sums=('438741b9e0f61438d235fa60d13816d83c19f7d1b612619fe20a78812e77657b003ad0b9416bcc766f0e38e7868b3543972ed65eee43d8f9d6b1d80ba1872091'
+b2sums=('3fc703626d5e17b78ff42c0ef4f554585efd8223c2bd9d8c2f7add681602dc585cf066ed7c55a040b2585ad07513b26a5297b3b41f4c94a043f61ad2ad9094c2'
 'SKIP')
 validpgpkeys=('2E36D8620221482FC45CB7F2A91764759326B440') # Lukas Fleischer 

 
@@ -34,6 +34,11 @@
   make
 }
 
+check() {
+  cd "$pkgname-$pkgver"
+  make check
+}
+
 package() {
   cd "$pkgname-$pkgver"
 



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:39:19
  Author: arojas
Revision: 442805

archrelease: copy trunk to extra-x86_64

Added:
  pyqt6/repos/extra-x86_64/PKGBUILD
(from rev 442804, pyqt6/trunk/PKGBUILD)
Deleted:
  pyqt6/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:39:08 UTC (rev 442804)
+++ PKGBUILD2022-04-16 22:39:19 UTC (rev 442805)
@@ -1,50 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgbase=pyqt6
-pkgname=python-pyqt6
-pkgdesc='A set of Python bindings for the Qt6 toolkit'
-pkgver=6.2.3
-pkgrel=1
-arch=(x86_64)
-url='https://riverbankcomputing.com/software/pyqt/intro'
-license=(GPL)
-groups=(pyqt6)
-depends=(qt6-base python-pyqt6-sip)
-optdepends=('qt6-tools: QtHelp, QtDesigner bindings'
-'qt6-svg: QtSvg bindings'
-'qt6-declarative: QtQml bindings, qmlplugin'
-'qt6-quick3d: QtQuick3D bindings'
-'qt6-connectivity: QtBluetooth, QtNfc bindings'
-'qt6-multimedia: QtMultimedia bindings'
-'qt6-positioning: QtPositioning bindings'
-'qt6-remoteobjects: QtRemoteObjects bindings'
-'qt6-sensors: QtSensors bindings'
-'qt6-serialport: QtSerialPort bindings'
-'qt6-webchannel: QtWebChannel bindings'
-'qt6-websockets: QtWebSockets bindings'
-'dbus-python: for python-dbus mainloop support')
-makedepends=(sip pyqt-builder python-opengl dbus-python
- qt6-tools qt6-svg qt6-declarative qt6-quick3d qt6-shadertools 
qt6-multimedia qt6-remoteobjects
- qt6-positioning qt6-sensors qt6-serialport qt6-webchannel 
qt6-websockets qt6-connectivity)
-source=(https://pypi.python.org/packages/source/P/PyQt6/PyQt6-$pkgver.tar.gz)
-sha256sums=('a9bfcac198fe4b703706f809bb686c7cef5f60a7c802fc145c6b57929c7a6a34')
-options=(debug)
-
-build() {
-  cd PyQt6-$pkgver
-  sip-build \
---confirm-license \
---no-make \
---qmake=/usr/bin/qmake6
-  cd build
-  make
-}
-
-package_python-pyqt6(){
-  cd PyQt6-$pkgver/build
-  make INSTALL_ROOT="$pkgdir" install
-
-  # compile Python bytecode
-  python -m compileall -d / "$pkgdir"/usr/lib
-  python -O -m compileall -d / "$pkgdir"/usr/lib
-}

Copied: pyqt6/repos/extra-x86_64/PKGBUILD (from rev 442804, 
pyqt6/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:39:19 UTC (rev 442805)
@@ -0,0 +1,50 @@
+# Maintainer: Antonio Rojas 
+
+pkgbase=pyqt6
+pkgname=python-pyqt6
+pkgdesc='A set of Python bindings for the Qt6 toolkit'
+pkgver=6.3.0
+pkgrel=1
+arch=(x86_64)
+url='https://riverbankcomputing.com/software/pyqt/intro'
+license=(GPL)
+groups=(pyqt6)
+depends=(qt6-base python-pyqt6-sip)
+optdepends=('qt6-tools: QtHelp, QtDesigner bindings'
+'qt6-svg: QtSvg bindings'
+'qt6-declarative: QtQml bindings, qmlplugin'
+'qt6-quick3d: QtQuick3D bindings'
+'qt6-connectivity: QtBluetooth, QtNfc bindings'
+'qt6-multimedia: QtMultimedia bindings'
+'qt6-positioning: QtPositioning bindings'
+'qt6-remoteobjects: QtRemoteObjects bindings'
+'qt6-sensors: QtSensors bindings'
+'qt6-serialport: QtSerialPort bindings'
+'qt6-webchannel: QtWebChannel bindings'
+'qt6-websockets: QtWebSockets bindings'
+'dbus-python: for python-dbus mainloop support')
+makedepends=(sip pyqt-builder python-opengl dbus-python
+ qt6-tools qt6-svg qt6-declarative qt6-quick3d qt6-shadertools 
qt6-multimedia qt6-remoteobjects
+ qt6-positioning qt6-sensors qt6-serialport qt6-webchannel 
qt6-websockets qt6-connectivity)
+source=(https://pypi.python.org/packages/source/P/PyQt6/PyQt6-$pkgver.tar.gz)
+sha256sums=('4fd85dcb15ea4e734b6e4e216fe9a6246779761edaf2cf7c0cce1a2303a8d31b')
+options=(debug)
+
+build() {
+  cd PyQt6-$pkgver
+  sip-build \
+--confirm-license \
+--no-make \
+--qmake=/usr/bin/qmake6
+  cd build
+  make
+}
+
+package_python-pyqt6(){
+  cd PyQt6-$pkgver/build
+  make INSTALL_ROOT="$pkgdir" install
+
+  # compile Python bytecode
+  python -m compileall -d / "$pkgdir"/usr/lib
+  python -O -m compileall -d / "$pkgdir"/usr/lib
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:39:08
  Author: arojas
Revision: 442804

Update to 6.3.0

Modified:
  pyqt6/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:26:43 UTC (rev 442803)
+++ PKGBUILD2022-04-16 22:39:08 UTC (rev 442804)
@@ -3,7 +3,7 @@
 pkgbase=pyqt6
 pkgname=python-pyqt6
 pkgdesc='A set of Python bindings for the Qt6 toolkit'
-pkgver=6.2.3
+pkgver=6.3.0
 pkgrel=1
 arch=(x86_64)
 url='https://riverbankcomputing.com/software/pyqt/intro'
@@ -27,7 +27,7 @@
  qt6-tools qt6-svg qt6-declarative qt6-quick3d qt6-shadertools 
qt6-multimedia qt6-remoteobjects
  qt6-positioning qt6-sensors qt6-serialport qt6-webchannel 
qt6-websockets qt6-connectivity)
 source=(https://pypi.python.org/packages/source/P/PyQt6/PyQt6-$pkgver.tar.gz)
-sha256sums=('a9bfcac198fe4b703706f809bb686c7cef5f60a7c802fc145c6b57929c7a6a34')
+sha256sums=('4fd85dcb15ea4e734b6e4e216fe9a6246779761edaf2cf7c0cce1a2303a8d31b')
 options=(debug)
 
 build() {



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:26:43
  Author: arojas
Revision: 442803

archrelease: copy trunk to extra-x86_64

Added:
  sip/repos/extra-x86_64/PKGBUILD
(from rev 442802, sip/trunk/PKGBUILD)
Deleted:
  sip/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:26:25 UTC (rev 442802)
+++ PKGBUILD2022-04-16 22:26:43 UTC (rev 442803)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=sip
-pkgver=6.6.1
-pkgrel=1
-arch=(x86_64)
-pkgdesc='A tool that makes it easy to create Python bindings for C and C++ 
libraries'
-url='https://www.riverbankcomputing.com/software/sip/intro'
-license=('custom:"sip"')
-depends=(python-toml python-packaging python-setuptools)
-conflicts=(sip5)
-replaces=(sip5)
-source=(https://pypi.python.org/packages/source/s/sip/$pkgname-$pkgver.tar.gz)
-sha256sums=('696c575c72144122701171f2cc767fe6cc87050ea755a04909152a8508ae10c3')
-options=(debug)
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-}

Copied: sip/repos/extra-x86_64/PKGBUILD (from rev 442802, sip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:26:43 UTC (rev 442803)
@@ -0,0 +1,23 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=sip
+pkgver=6.6.1
+pkgrel=2
+arch=(x86_64)
+pkgdesc='A tool that makes it easy to create Python bindings for C and C++ 
libraries'
+url='https://www.riverbankcomputing.com/software/sip/intro'
+license=('custom:"sip"')
+depends=(python-toml python-packaging python-setuptools python-ply)
+source=(https://pypi.python.org/packages/source/s/sip/$pkgname-$pkgver.tar.gz)
+sha256sums=('696c575c72144122701171f2cc767fe6cc87050ea755a04909152a8508ae10c3')
+options=(debug)
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:26:25
  Author: arojas
Revision: 442802

Add ply dependency

Modified:
  sip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:22:16 UTC (rev 442801)
+++ PKGBUILD2022-04-16 22:26:25 UTC (rev 442802)
@@ -2,14 +2,12 @@
 
 pkgname=sip
 pkgver=6.6.1
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 pkgdesc='A tool that makes it easy to create Python bindings for C and C++ 
libraries'
 url='https://www.riverbankcomputing.com/software/sip/intro'
 license=('custom:"sip"')
-depends=(python-toml python-packaging python-setuptools)
-conflicts=(sip5)
-replaces=(sip5)
+depends=(python-toml python-packaging python-setuptools python-ply)
 source=(https://pypi.python.org/packages/source/s/sip/$pkgname-$pkgver.tar.gz)
 sha256sums=('696c575c72144122701171f2cc767fe6cc87050ea755a04909152a8508ae10c3')
 options=(debug)



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:22:16
  Author: arojas
Revision: 442801

archrelease: copy trunk to extra-x86_64

Added:
  sip/repos/extra-x86_64/PKGBUILD
(from rev 442800, sip/trunk/PKGBUILD)
Deleted:
  sip/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:22:04 UTC (rev 442800)
+++ PKGBUILD2022-04-16 22:22:16 UTC (rev 442801)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=sip
-pkgver=6.5.1
-pkgrel=1
-arch=(x86_64)
-pkgdesc='A tool that makes it easy to create Python bindings for C and C++ 
libraries'
-url='https://www.riverbankcomputing.com/software/sip/intro'
-license=('custom:"sip"')
-depends=(python-toml python-packaging python-setuptools)
-conflicts=(sip5)
-replaces=(sip5)
-source=(https://pypi.python.org/packages/source/s/sip/$pkgname-$pkgver.tar.gz)
-sha256sums=('204f0240db8999a749d638a987b351861843e69239b811ec3d1881412c3706a6')
-options=(debug)
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1
-}

Copied: sip/repos/extra-x86_64/PKGBUILD (from rev 442800, sip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:22:16 UTC (rev 442801)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=sip
+pkgver=6.6.1
+pkgrel=1
+arch=(x86_64)
+pkgdesc='A tool that makes it easy to create Python bindings for C and C++ 
libraries'
+url='https://www.riverbankcomputing.com/software/sip/intro'
+license=('custom:"sip"')
+depends=(python-toml python-packaging python-setuptools)
+conflicts=(sip5)
+replaces=(sip5)
+source=(https://pypi.python.org/packages/source/s/sip/$pkgname-$pkgver.tar.gz)
+sha256sums=('696c575c72144122701171f2cc767fe6cc87050ea755a04909152a8508ae10c3')
+options=(debug)
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:22:04
  Author: arojas
Revision: 442800

Update to 6.6.1

Modified:
  sip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:10:42 UTC (rev 442799)
+++ PKGBUILD2022-04-16 22:22:04 UTC (rev 442800)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=sip
-pkgver=6.5.1
+pkgver=6.6.1
 pkgrel=1
 arch=(x86_64)
 pkgdesc='A tool that makes it easy to create Python bindings for C and C++ 
libraries'
@@ -11,7 +11,7 @@
 conflicts=(sip5)
 replaces=(sip5)
 source=(https://pypi.python.org/packages/source/s/sip/$pkgname-$pkgver.tar.gz)
-sha256sums=('204f0240db8999a749d638a987b351861843e69239b811ec3d1881412c3706a6')
+sha256sums=('696c575c72144122701171f2cc767fe6cc87050ea755a04909152a8508ae10c3')
 options=(debug)
 
 build() {



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:13:52
  Author: arojas
Revision: 1186828

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:13:42 UTC (rev 1186827)
+++ PKGBUILD2022-04-16 22:13:52 UTC (rev 1186828)
@@ -1,34 +0,0 @@
-# Maintainer: Kyle Keen 
-
-pkgname=python-ipykernel
-pkgver=6.12.1
-pkgrel=1
-pkgdesc="The ipython kernel for Jupyter"
-arch=('any')
-url="https://pypi.org/project/ipykernel/;
-license=('BSD')
-depends=('python-traitlets' 'python-tornado' 'ipython' 'python-jupyter_client' 
'python-debugpy' 'python-psutil')
-makedepends=('python-build' 'python-installer' 'python-wheel')
-checkdepends=('python-pytest-timeout' 'python-mock' 'python-flaky' 
'python-ipyparallel')
-source=("ipykernel-$pkgver.tgz::https://github.com/ipython/ipykernel/archive/v$pkgver.tar.gz;)
-sha256sums=('436a01da9fc5d376a379011798054e2280a96841c8ef7c0fca9ef6369d9d99ff')
-
-# dep cycle with python-jupyter_client
-
-build() {
-  cd ipykernel-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd ipykernel-$pkgver
-  pytest -v
-}
-
-package() {
-  cd ipykernel-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  find "$pkgdir" -name METADATA | xargs sed -e '/setuptools/d' -i # Remove 
versioned setuptools dependency
-}

Copied: python-ipykernel/repos/community-any/PKGBUILD (from rev 1186827, 
python-ipykernel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:13:52 UTC (rev 1186828)
@@ -0,0 +1,34 @@
+# Maintainer: Kyle Keen 
+
+pkgname=python-ipykernel
+pkgver=6.13.0
+pkgrel=1
+pkgdesc="The ipython kernel for Jupyter"
+arch=('any')
+url="https://pypi.org/project/ipykernel/;
+license=('BSD')
+depends=('python-traitlets' 'python-tornado' 'ipython' 'python-jupyter_client' 
'python-debugpy' 'python-psutil')
+makedepends=('python-build' 'python-installer' 'python-wheel')
+checkdepends=('python-pytest-timeout' 'python-mock' 'python-flaky' 
'python-ipyparallel')
+source=("ipykernel-$pkgver.tgz::https://github.com/ipython/ipykernel/archive/v$pkgver.tar.gz;)
+sha256sums=('5aea9337287119ec625381477f05dc0613bb9ea95fb42de5774dc5a44ad64bac')
+
+# dep cycle with python-jupyter_client
+
+build() {
+  cd ipykernel-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd ipykernel-$pkgver
+  pytest -v
+}
+
+package() {
+  cd ipykernel-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  find "$pkgdir" -name METADATA | xargs sed -e '/setuptools/d' -i # Remove 
versioned setuptools dependency
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:13:42
  Author: arojas
Revision: 1186827

Update to 6.13.0

Modified:
  python-ipykernel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:07:43 UTC (rev 1186826)
+++ PKGBUILD2022-04-16 22:13:42 UTC (rev 1186827)
@@ -1,7 +1,7 @@
 # Maintainer: Kyle Keen 
 
 pkgname=python-ipykernel
-pkgver=6.12.1
+pkgver=6.13.0
 pkgrel=1
 pkgdesc="The ipython kernel for Jupyter"
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('python-build' 'python-installer' 'python-wheel')
 checkdepends=('python-pytest-timeout' 'python-mock' 'python-flaky' 
'python-ipyparallel')
 
source=("ipykernel-$pkgver.tgz::https://github.com/ipython/ipykernel/archive/v$pkgver.tar.gz;)
-sha256sums=('436a01da9fc5d376a379011798054e2280a96841c8ef7c0fca9ef6369d9d99ff')
+sha256sums=('5aea9337287119ec625381477f05dc0613bb9ea95fb42de5774dc5a44ad64bac')
 
 # dep cycle with python-jupyter_client
 



[arch-commits] Commit in python-pyqt6-sip/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:10:42
  Author: arojas
Revision: 442799

archrelease: copy trunk to extra-x86_64

Added:
  python-pyqt6-sip/repos/extra-x86_64/PKGBUILD
(from rev 442798, python-pyqt6-sip/trunk/PKGBUILD)
Deleted:
  python-pyqt6-sip/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:10:31 UTC (rev 442798)
+++ PKGBUILD2022-04-16 22:10:42 UTC (rev 442799)
@@ -1,24 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=python-pyqt6-sip
-pkgver=13.2.1
-pkgrel=1
-arch=(x86_64)
-pkgdesc='The sip module support for PyQt6'
-url='https://riverbankcomputing.com/software/pyqt/intro'
-license=(GPL)
-depends=(python)
-makedepends=(python-setuptools)
-source=(https://pypi.python.org/packages/source/P/PyQt6-sip/PyQt6_sip-$pkgver.tar.gz)
-sha256sums=('b7bce59900b2e0a04f70246de2ccf79ee7933036b6b9183cf039b62eeae2b858')
-options=(debug)
-
-build() {
-  cd PyQt6_sip-$pkgver
-  python setup.py build
-}
-
-package()  {
-  cd PyQt6_sip-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: python-pyqt6-sip/repos/extra-x86_64/PKGBUILD (from rev 442798, 
python-pyqt6-sip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:10:42 UTC (rev 442799)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=python-pyqt6-sip
+pkgver=13.3.1
+pkgrel=1
+arch=(x86_64)
+pkgdesc='The sip module support for PyQt6'
+url='https://riverbankcomputing.com/software/pyqt/intro'
+license=(GPL)
+depends=(python)
+makedepends=(python-setuptools)
+source=(https://pypi.python.org/packages/source/P/PyQt6-sip/PyQt6_sip-$pkgver.tar.gz)
+sha256sums=('d629c0e39d5ccfdae567b92ba74d92f9180b7c55535f82251f1a12a9076a9e01')
+options=(debug)
+
+build() {
+  cd PyQt6_sip-$pkgver
+  python setup.py build
+}
+
+package()  {
+  cd PyQt6_sip-$pkgver
+  python setup.py install --root="$pkgdir"
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:10:31
  Author: arojas
Revision: 442798

Update to 13.3.1

Modified:
  python-pyqt6-sip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:09:05 UTC (rev 442797)
+++ PKGBUILD2022-04-16 22:10:31 UTC (rev 442798)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=python-pyqt6-sip
-pkgver=13.2.1
+pkgver=13.3.1
 pkgrel=1
 arch=(x86_64)
 pkgdesc='The sip module support for PyQt6'
@@ -10,7 +10,7 @@
 depends=(python)
 makedepends=(python-setuptools)
 
source=(https://pypi.python.org/packages/source/P/PyQt6-sip/PyQt6_sip-$pkgver.tar.gz)
-sha256sums=('b7bce59900b2e0a04f70246de2ccf79ee7933036b6b9183cf039b62eeae2b858')
+sha256sums=('d629c0e39d5ccfdae567b92ba74d92f9180b7c55535f82251f1a12a9076a9e01')
 options=(debug)
 
 build() {



[arch-commits] Commit in python-pyqt5-sip/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:09:05
  Author: arojas
Revision: 442797

archrelease: copy trunk to extra-x86_64

Added:
  python-pyqt5-sip/repos/extra-x86_64/PKGBUILD
(from rev 442796, python-pyqt5-sip/trunk/PKGBUILD)
Deleted:
  python-pyqt5-sip/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:08:54 UTC (rev 442796)
+++ PKGBUILD2022-04-16 22:09:05 UTC (rev 442797)
@@ -1,24 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=python-pyqt5-sip
-pkgver=12.9.1
-pkgrel=1
-arch=(x86_64)
-pkgdesc='The sip module support for PyQt5'
-url='https://riverbankcomputing.com/software/pyqt/intro'
-license=(GPL)
-depends=(python)
-makedepends=(python-setuptools)
-source=(https://pypi.python.org/packages/source/P/PyQt5-sip/PyQt5_sip-$pkgver.tar.gz)
-sha256sums=('2f24f299b44c511c23796aafbbb581bfdebf78d0905657b7cee2141b4982030e')
-options=(debug)
-
-build() {
-  cd PyQt5_sip-$pkgver
-  python setup.py build
-}
-
-package()  {
-  cd PyQt5_sip-$pkgver
-  python setup.py install --root="$pkgdir"
-}

Copied: python-pyqt5-sip/repos/extra-x86_64/PKGBUILD (from rev 442796, 
python-pyqt5-sip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:09:05 UTC (rev 442797)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=python-pyqt5-sip
+pkgver=12.10.1
+pkgrel=1
+arch=(x86_64)
+pkgdesc='The sip module support for PyQt5'
+url='https://riverbankcomputing.com/software/pyqt/intro'
+license=(GPL)
+depends=(python)
+makedepends=(python-setuptools)
+source=(https://pypi.python.org/packages/source/P/PyQt5-sip/PyQt5_sip-$pkgver.tar.gz)
+sha256sums=('97e008795c453488f51a5c97dbff29cda7841afb1ca842c9e819d8e6cc0ae724')
+options=(debug)
+
+build() {
+  cd PyQt5_sip-$pkgver
+  python setup.py build
+}
+
+package()  {
+  cd PyQt5_sip-$pkgver
+  python setup.py install --root="$pkgdir"
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:08:54
  Author: arojas
Revision: 442796

Update to 12.10.1

Modified:
  python-pyqt5-sip/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:02:21 UTC (rev 442795)
+++ PKGBUILD2022-04-16 22:08:54 UTC (rev 442796)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=python-pyqt5-sip
-pkgver=12.9.1
+pkgver=12.10.1
 pkgrel=1
 arch=(x86_64)
 pkgdesc='The sip module support for PyQt5'
@@ -10,7 +10,7 @@
 depends=(python)
 makedepends=(python-setuptools)
 
source=(https://pypi.python.org/packages/source/P/PyQt5-sip/PyQt5_sip-$pkgver.tar.gz)
-sha256sums=('2f24f299b44c511c23796aafbbb581bfdebf78d0905657b7cee2141b4982030e')
+sha256sums=('97e008795c453488f51a5c97dbff29cda7841afb1ca842c9e819d8e6cc0ae724')
 options=(debug)
 
 build() {



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:07:43
  Author: arojas
Revision: 1186826

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:07:31 UTC (rev 1186825)
+++ PKGBUILD2022-04-16 22:07:43 UTC (rev 1186826)
@@ -1,29 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Lukasz Pozarlik 
-
-pkgname=python-igraph
-pkgver=0.9.9
-pkgrel=1
-url='https://igraph.org/python/'
-license=(GPL)
-arch=(x86_64)
-pkgdesc='Python bindings for the igraph library'
-depends=(python-texttable igraph)
-makedepends=(python-setuptools)
-source=(https://files.pythonhosted.org/packages/source/i/igraph/igraph-$pkgver.tar.gz)
-sha256sums=('3f84b57fbaab37efa965f8dc1e1e28aad181357f1a6aa8204fe7c91ee9615092')
-
-build() {
-  cd igraph-$pkgver
-  python setup.py build --use-pkg-config
-}
-
-check() {
-  cd igraph-$pkgver
-  PYTHONPATH="$PWD"/`ls -d build/lib.*` python -m unittest
-}
-
-package() {
-  cd igraph-$pkgver
-  python setup.py install --skip-build --root="$pkgdir" --optimize=1 
-}

Copied: python-igraph/repos/community-x86_64/PKGBUILD (from rev 1186825, 
python-igraph/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:07:43 UTC (rev 1186826)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Lukasz Pozarlik 
+
+pkgname=python-igraph
+pkgver=0.9.10
+pkgrel=1
+url='https://igraph.org/python/'
+license=(GPL)
+arch=(x86_64)
+pkgdesc='Python bindings for the igraph library'
+depends=(python-texttable igraph)
+makedepends=(python-setuptools)
+source=(https://files.pythonhosted.org/packages/source/i/igraph/igraph-$pkgver.tar.gz)
+sha256sums=('6f9d8e1d6105b34298591820e94d4d8b3f33f38068523769e7a555bf7c96accb')
+
+build() {
+  cd igraph-$pkgver
+  python setup.py build --use-pkg-config
+}
+
+check() {
+  cd igraph-$pkgver
+  PYTHONPATH="$PWD"/`ls -d build/lib.*` python -m unittest
+}
+
+package() {
+  cd igraph-$pkgver
+  python setup.py install --skip-build --root="$pkgdir" --optimize=1 
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:07:31
  Author: arojas
Revision: 1186825

Update to 0.9.10

Modified:
  python-igraph/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 21:42:14 UTC (rev 1186824)
+++ PKGBUILD2022-04-16 22:07:31 UTC (rev 1186825)
@@ -2,7 +2,7 @@
 # Contributor: Lukasz Pozarlik 
 
 pkgname=python-igraph
-pkgver=0.9.9
+pkgver=0.9.10
 pkgrel=1
 url='https://igraph.org/python/'
 license=(GPL)
@@ -11,7 +11,7 @@
 depends=(python-texttable igraph)
 makedepends=(python-setuptools)
 
source=(https://files.pythonhosted.org/packages/source/i/igraph/igraph-$pkgver.tar.gz)
-sha256sums=('3f84b57fbaab37efa965f8dc1e1e28aad181357f1a6aa8204fe7c91ee9615092')
+sha256sums=('6f9d8e1d6105b34298591820e94d4d8b3f33f38068523769e7a555bf7c96accb')
 
 build() {
   cd igraph-$pkgver



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:02:21
  Author: arojas
Revision: 442795

archrelease: copy trunk to extra-x86_64

Added:
  openexr/repos/extra-x86_64/PKGBUILD
(from rev 442794, openexr/trunk/PKGBUILD)
Deleted:
  openexr/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:02:09 UTC (rev 442794)
+++ PKGBUILD2022-04-16 22:02:21 UTC (rev 442795)
@@ -1,25 +0,0 @@
-# Maintainer: Tobias Powalowski 
-
-pkgname=openexr
-pkgver=3.1.4
-pkgrel=1
-pkgdesc='A high dynamic-range image file format library'
-url='https://www.openexr.com/'
-arch=(x86_64)
-license=(BSD)
-depends=(zlib imath)
-makedepends=(cmake)
-source=(https://github.com/openexr/openexr/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('cb019c3c69ada47fe340f7fa6c8b863ca0515804dc60bdb25c942c1da886930b')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=None
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-  install -Dm644 $pkgname-$pkgver/LICENSE.md -t 
"$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: openexr/repos/extra-x86_64/PKGBUILD (from rev 442794, 
openexr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:02:21 UTC (rev 442795)
@@ -0,0 +1,25 @@
+# Maintainer: Tobias Powalowski 
+
+pkgname=openexr
+pkgver=3.1.5
+pkgrel=1
+pkgdesc='A high dynamic-range image file format library'
+url='https://www.openexr.com/'
+arch=(x86_64)
+license=(BSD)
+depends=(zlib imath)
+makedepends=(cmake)
+source=(https://github.com/openexr/openexr/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('93925805c1fc4f8162b35f0ae109c4a75344e6decae5a240afdfce25f8a433ec')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+  install -Dm644 $pkgname-$pkgver/LICENSE.md -t 
"$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:02:09
  Author: arojas
Revision: 442794

Update to 3.1.5

Modified:
  openexr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 22:00:36 UTC (rev 442793)
+++ PKGBUILD2022-04-16 22:02:09 UTC (rev 442794)
@@ -1,7 +1,7 @@
 # Maintainer: Tobias Powalowski 
 
 pkgname=openexr
-pkgver=3.1.4
+pkgver=3.1.5
 pkgrel=1
 pkgdesc='A high dynamic-range image file format library'
 url='https://www.openexr.com/'
@@ -10,7 +10,7 @@
 depends=(zlib imath)
 makedepends=(cmake)
 
source=(https://github.com/openexr/openexr/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('cb019c3c69ada47fe340f7fa6c8b863ca0515804dc60bdb25c942c1da886930b')
+sha256sums=('93925805c1fc4f8162b35f0ae109c4a75344e6decae5a240afdfce25f8a433ec')
 
 build() {
   cmake -B build -S $pkgname-$pkgver \



[arch-commits] Commit in maxima/repos/extra-x86_64 (7 files)

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:00:36
  Author: arojas
Revision: 442793

archrelease: copy trunk to extra-x86_64

Added:
  maxima/repos/extra-x86_64/PKGBUILD
(from rev 442792, maxima/trunk/PKGBUILD)
  maxima/repos/extra-x86_64/matrixexp.patch
(from rev 442792, maxima/trunk/matrixexp.patch)
  maxima/repos/extra-x86_64/maxima-sbcl-gmp.patch
(from rev 442792, maxima/trunk/maxima-sbcl-gmp.patch)
Deleted:
  maxima/repos/extra-x86_64/PKGBUILD
  maxima/repos/extra-x86_64/build-fasl.patch
  maxima/repos/extra-x86_64/matrixexp.patch
  maxima/repos/extra-x86_64/maxima-sbcl-gmp.patch

---+
 PKGBUILD  |  179 +++-
 build-fasl.patch  |   23 --
 matrixexp.patch   |   26 +++---
 maxima-sbcl-gmp.patch |   38 +-
 4 files changed, 120 insertions(+), 146 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 22:00:21 UTC (rev 442792)
+++ PKGBUILD2022-04-16 22:00:36 UTC (rev 442793)
@@ -1,91 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Ronald van Haren 
-# Contributor: Damir Perisa 
-
-pkgbase=maxima
-pkgname=($pkgbase{,-sbcl,-ecl,-fas})
-pkgver=5.45.1
-_sbclver=2.2.2
-_eclver=21.2.1
-pkgrel=12
-pkgdesc='A sophisticated computer algebra system'
-arch=(x86_64)
-license=(GPL)
-url='http://maxima.sourceforge.net'
-depends=(texinfo shared-mime-info)
-makedepends=(python emacs ecl sbcl)
-# needs rebuild when bash changes version
-# needs a rebuild when ecl or sbcl changes version
-options=(!zipman) # don't zip info pages or they won't work inside maxima
-source=(https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz
-build-fasl.patch
-matrixexp.patch
-maxima-sbcl-gmp.patch)
-sha256sums=('fe9016276970bef214a1a244348558644514d7fdfaa4fc8b9d0e87afcbb4e7dc'
-'90ced3b33361fa24c2b417e0aeba8956892f0965b4a22d57d0c04115f2a3274b'
-'ef1bc6a15fc982ff8c6aa1800bbbd3284d9e060ca27abf9d8c1266632c0c2619'
-'7e85da0b6672b096d7aefac861573a57323dfe805e08d033781448f7ca6ed856')
-
-prepare() {
-  patch -d $pkgname-$pkgver -p1 < build-fasl.patch # build maxima ecl library
-  patch -d $pkgname-$pkgver -p1 < matrixexp.patch # fix matrix exponentiation
-  patch -d $pkgname-$pkgver -p1 < maxima-sbcl-gmp.patch # Use GMP arithmetic 
with sbcl (Void Linux)
-}
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure \
---prefix=/usr \
---mandir=/usr/share/man \
---infodir=/usr/share/info \
---libexecdir=/usr/lib \
---enable-sbcl \
---enable-ecl \
---with-default-lisp=sbcl
-
-  # help avoid (re)running makeinfo/tex
-  touch doc/info/maxima.info
-  make
-}
-
-#check() {  # test 23&129 fail from rtest_taylor
-#  cd $pkgname-$pkgver
-#  make check
-#}
-
-package_maxima() {
-  depends+=(maxima-backend)
-  replaces=('maxima-ecl<5.45.1-9')
-  optdepends=('gnuplot: plotting capabilities'
-  'rlwrap: readline support via /usr/bin/rmaxima'
-  'tk: graphical xmaxima interface')
-
-  cd $pkgbase-$pkgver
-  make DESTDIR="$pkgdir" emacsdir=/usr/share/emacs/site-lisp/maxima install
-
-# Remove backends
-  rm -r "$pkgdir"/usr/lib/maxima/$pkgver/binary-*
-}
-
-package_maxima-sbcl() {
-  pkgdesc='SBCL backend for Maxima'
-  depends=(gmp sbcl=$_sbclver)
-  provides=(maxima-backend)
-
-  install -Dm755 $pkgbase-$pkgver/src/binary-sbcl/maxima.core -t 
"$pkgdir"/usr/lib/maxima/$pkgver/binary-sbcl
-}
-
-package_maxima-ecl() {
-  pkgdesc='ECL backend for Maxima'
-  depends=(ecl=$_eclver)
-  provides=(maxima-backend)
-
-  install -Dm755 $pkgbase-$pkgver/src/binary-ecl/maxima -t 
"$pkgdir"/usr/lib/maxima/$pkgver/binary-ecl
-}
-
-package_maxima-fas() {
-  pkgdesc='Maxima FAS module for ECL'
-  depends=(ecl=$_eclver maxima)
-
-  install -Dm644 $pkgbase-$pkgver/src/binary-ecl/maxima.fas -t 
"$pkgdir"/usr/lib/ecl-$_eclver
-}

Copied: maxima/repos/extra-x86_64/PKGBUILD (from rev 442792, 
maxima/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 22:00:36 UTC (rev 442793)
@@ -0,0 +1,88 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Ronald van Haren 
+# Contributor: Damir Perisa 
+
+pkgbase=maxima
+pkgname=($pkgbase{,-sbcl,-ecl,-fas})
+pkgver=5.46.0
+_sbclver=2.2.2
+_eclver=21.2.1
+pkgrel=1
+pkgdesc='A sophisticated computer algebra system'
+arch=(x86_64)
+license=(GPL)
+url='http://maxima.sourceforge.net'
+depends=(texinfo shared-mime-info)
+makedepends=(python emacs ecl sbcl)
+# needs rebuild when bash changes version
+# needs a rebuild when ecl or sbcl changes version
+options=(!zipman) # don't zip info pages or they won't work inside maxima
+source=(https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz
+matrixexp.patch
+maxima-sbcl-gmp.patch)
+sha256sums=('7390f06b48da65c9033e8b2f629b978b90056454a54022db7de70e2225aa8b07'

[arch-commits] Commit in maxima/trunk (PKGBUILD build-fasl.patch)

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 22:00:21
  Author: arojas
Revision: 442792

Update to 5.46.0

Modified:
  maxima/trunk/PKGBUILD
Deleted:
  maxima/trunk/build-fasl.patch

--+
 PKGBUILD |9 +++--
 build-fasl.patch |   23 ---
 2 files changed, 3 insertions(+), 29 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 21:51:12 UTC (rev 442791)
+++ PKGBUILD2022-04-16 22:00:21 UTC (rev 442792)
@@ -4,10 +4,10 @@
 
 pkgbase=maxima
 pkgname=($pkgbase{,-sbcl,-ecl,-fas})
-pkgver=5.45.1
+pkgver=5.46.0
 _sbclver=2.2.2
 _eclver=21.2.1
-pkgrel=12
+pkgrel=1
 pkgdesc='A sophisticated computer algebra system'
 arch=(x86_64)
 license=(GPL)
@@ -18,16 +18,13 @@
 # needs a rebuild when ecl or sbcl changes version
 options=(!zipman) # don't zip info pages or they won't work inside maxima
 
source=(https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz
-build-fasl.patch
 matrixexp.patch
 maxima-sbcl-gmp.patch)
-sha256sums=('fe9016276970bef214a1a244348558644514d7fdfaa4fc8b9d0e87afcbb4e7dc'
-'90ced3b33361fa24c2b417e0aeba8956892f0965b4a22d57d0c04115f2a3274b'
+sha256sums=('7390f06b48da65c9033e8b2f629b978b90056454a54022db7de70e2225aa8b07'
 'ef1bc6a15fc982ff8c6aa1800bbbd3284d9e060ca27abf9d8c1266632c0c2619'
 '7e85da0b6672b096d7aefac861573a57323dfe805e08d033781448f7ca6ed856')
 
 prepare() {
-  patch -d $pkgname-$pkgver -p1 < build-fasl.patch # build maxima ecl library
   patch -d $pkgname-$pkgver -p1 < matrixexp.patch # fix matrix exponentiation
   patch -d $pkgname-$pkgver -p1 < maxima-sbcl-gmp.patch # Use GMP arithmetic 
with sbcl (Void Linux)
 }

Deleted: build-fasl.patch
===
--- build-fasl.patch2022-04-16 21:51:12 UTC (rev 442791)
+++ build-fasl.patch2022-04-16 22:00:21 UTC (rev 442792)
@@ -1,23 +0,0 @@
-Build a fasl library for ecl in addition to an executable program.
-
-References:
-* http://trac.sagemath.org/ticket/16178
-* https://github.com/cschwan/sage-on-gentoo/issues/226
-* https://bugs.gentoo.org/show_bug.cgi?id=499634
-
-Index: maxima-5.29.1/src/maxima.system
-===
 maxima-5.29.1.orig/src/maxima.system
-+++ maxima-5.29.1/src/maxima.system
-@@ -75,6 +75,11 @@
-;; Convert dir/foo.fas to dir/foo.o
-(make-pathname :type "o" :defaults p))
-files)))
-+  (c::build-fasl "binary-ecl/maxima" :lisp-files obj
-+:ld-flags
-+(let ((x (symbol-value (find-symbol 
"*AUTOCONF-LD-FLAGS*"
-+(find-package 
"MAXIMA")
-+  (if (and x (not (string= x ""))) (list x
-   (c::build-program "binary-ecl/maxima" :lisp-files obj
- :ld-flags
- (let ((x (symbol-value (find-symbol 
"*AUTOCONF-LD-FLAGS*"



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

2022-04-16 Thread Jan Steffens via arch-commits
Date: Saturday, April 16, 2022 @ 21:51:12
  Author: heftig
Revision: 442791

archrelease: copy trunk to extra-x86_64

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

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

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

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



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

2022-04-16 Thread Jan Steffens via arch-commits
Date: Saturday, April 16, 2022 @ 21:51:03
  Author: heftig
Revision: 442790

42.1-1

Modified:
  ghex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 21:49:03 UTC (rev 442789)
+++ PKGBUILD2022-04-16 21:51:03 UTC (rev 442790)
@@ -4,7 +4,7 @@
 
 pkgbase=ghex
 pkgname=(ghex ghex-docs)
-pkgver=42.0
+pkgver=42.1
 pkgrel=1
 pkgdesc="A simple binary editor for the Gnome desktop"
 url="https://wiki.gnome.org/Apps/Ghex;
@@ -13,7 +13,7 @@
 depends=(gtk4)
 makedepends=(git meson yelp-tools gobject-introspection gi-docgen)
 options=(debug)
-_commit=c28eaa930ee7f88e56b003e81037dd9828ccc5b1  # tags/42.0^0
+_commit=6f5e3b2729d383c43582453778b96b02ad647458  # tags/42.1^0
 source=("git+https://gitlab.gnome.org/GNOME/ghex.git#commit=$_commit;)
 sha256sums=('SKIP')
 



[arch-commits] Commit in lapack/repos/extra-x86_64 (4 files)

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:49:03
  Author: arojas
Revision: 442789

archrelease: copy trunk to extra-x86_64

Added:
  lapack/repos/extra-x86_64/LICENSE.blas
(from rev 442788, lapack/trunk/LICENSE.blas)
  lapack/repos/extra-x86_64/PKGBUILD
(from rev 442788, lapack/trunk/PKGBUILD)
Deleted:
  lapack/repos/extra-x86_64/LICENSE.blas
  lapack/repos/extra-x86_64/PKGBUILD

--+
 LICENSE.blas |   38 +++---
 PKGBUILD |  152 -
 2 files changed, 95 insertions(+), 95 deletions(-)

Deleted: LICENSE.blas
===
--- LICENSE.blas2022-04-16 21:48:49 UTC (rev 442788)
+++ LICENSE.blas2022-04-16 21:49:03 UTC (rev 442789)
@@ -1,19 +0,0 @@
-From: http://www.netlib.org/blas/faq.html
-
- 2) Are there legal restrictions on the use of BLAS reference
-implementation software? 
-
-The reference BLAS is a freely-available software package. It is
-available from netlib via anonymous ftp and the World Wide Web. Thus,
-it can be included in commercial software packages (and has been). We
-only ask that proper credit be given to the authors. 
-
-Like all software, it is copyrighted. It is not trademarked, but we do
-ask the following: 
-
-If you modify the source for these routines we ask that you change the
-name of the routine and comment the changes made to the original. 
-
-We will gladly answer any questions regarding the software. If a
-modification is done, however, it is the responsibility of the person
-who modified the routine to provide support. 

Copied: lapack/repos/extra-x86_64/LICENSE.blas (from rev 442788, 
lapack/trunk/LICENSE.blas)
===
--- LICENSE.blas(rev 0)
+++ LICENSE.blas2022-04-16 21:49:03 UTC (rev 442789)
@@ -0,0 +1,19 @@
+From: http://www.netlib.org/blas/faq.html
+
+ 2) Are there legal restrictions on the use of BLAS reference
+implementation software? 
+
+The reference BLAS is a freely-available software package. It is
+available from netlib via anonymous ftp and the World Wide Web. Thus,
+it can be included in commercial software packages (and has been). We
+only ask that proper credit be given to the authors. 
+
+Like all software, it is copyrighted. It is not trademarked, but we do
+ask the following: 
+
+If you modify the source for these routines we ask that you change the
+name of the routine and comment the changes made to the original. 
+
+We will gladly answer any questions regarding the software. If a
+modification is done, however, it is the responsibility of the person
+who modified the routine to provide support. 

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 21:48:49 UTC (rev 442788)
+++ PKGBUILD2022-04-16 21:49:03 UTC (rev 442789)
@@ -1,76 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Jan de Groot 
-# Contributor: damir 
-# Contributor: Jason Taylor 
-
-pkgbase=lapack
-pkgname=(lapack blas cblas lapacke lapack-doc)
-pkgver=3.10.0
-pkgrel=1
-url='https://www.netlib.org/lapack'
-pkgdesc='Linear Algebra PACKage'
-makedepends=(gcc-fortran cmake python doxygen)
-arch=(x86_64)
-license=(custom)
-source=(https://github.com/Reference-LAPACK/lapack/archive/v$pkgver/$pkgname-$pkgver.tar.gz
 LICENSE.blas)
-sha256sums=('328c1bea493a32cac5257d84157dc686cc3ab0b004e2bea22044e0a59f6f8a19'
-'2420cd1331c5754071966389b26e6196c5cb086a2ade0080953af62e0c6d4107')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_SKIP_RPATH=ON \
--DBUILD_SHARED_LIBS=ON \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_Fortran_COMPILER=gfortran \
--DLAPACKE_WITH_TMG=ON \
--DCBLAS=ON \
--DBUILD_DEPRECATED=ON
-  cmake --build build
-
-# Build man pages
-  cd $pkgname-$pkgver
-  doxygen DOCS/Doxyfile_man
-}
-
-package_lapack() {
-  depends=(blas)
-  
-  DESTDIR="$pkgdir" cmake --install build
-
-  rm -r "$pkgdir"/usr/lib/{libblas.*,libcblas.*,liblapacke.*}
-  rm -r "$pkgdir"/usr/lib/pkgconfig/{blas.*,cblas.*,lapacke.*}
-  rm -r "$pkgdir"/usr/lib/cmake/{cblas*,lapacke*}
-  rm -r "$pkgdir"/usr/include
-}
-
-package_blas() {
-  pkgdesc="Basic Linear Algebra Subprograms"
-  depends=(gcc-libs)
-
-  DESTDIR="$pkgdir" cmake --install build/BLAS
-  
-  install -Dm644 LICENSE.blas -t "$pkgdir"/usr/share/licenses/blas/
-}
-
-package_cblas() {
-  pkgdesc="C interface to BLAS"
-  depends=(blas)
-
-  DESTDIR="$pkgdir" cmake --install build/CBLAS
-}
-
-package_lapacke() {
-  pkgdesc="C interface to LAPACK"
-  depends=(lapack)
-
-  DESTDIR="$pkgdir" cmake --install build/LAPACKE
-}
-
-package_lapack-doc() {
-  pkgdesc="Man pages for BLAS/LAPACK"
-
-  mkdir -p "$pkgdir"/usr/share
-  cp -r lapack-$pkgver/DOCS/man "$pkgdir"/usr/share
-  rm "$pkgdir"/usr/share/man/man3/{MIN,MAX}.3 # conflict with man-pages
-}

Copied: 

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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:48:49
  Author: arojas
Revision: 442788

Update to 3.10.1

Modified:
  lapack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 21:45:01 UTC (rev 442787)
+++ PKGBUILD2022-04-16 21:48:49 UTC (rev 442788)
@@ -5,7 +5,7 @@
 
 pkgbase=lapack
 pkgname=(lapack blas cblas lapacke lapack-doc)
-pkgver=3.10.0
+pkgver=3.10.1
 pkgrel=1
 url='https://www.netlib.org/lapack'
 pkgdesc='Linear Algebra PACKage'
@@ -13,7 +13,7 @@
 arch=(x86_64)
 license=(custom)
 
source=(https://github.com/Reference-LAPACK/lapack/archive/v$pkgver/$pkgname-$pkgver.tar.gz
 LICENSE.blas)
-sha256sums=('328c1bea493a32cac5257d84157dc686cc3ab0b004e2bea22044e0a59f6f8a19'
+sha256sums=('cd005cd021f144d7d5f7f33c943942db9f03a28d110d6a3b80d718a295f7f714'
 '2420cd1331c5754071966389b26e6196c5cb086a2ade0080953af62e0c6d4107')
 
 build() {



[arch-commits] Commit in edk2/repos/extra-any (30 files)

2022-04-16 Thread David Runge via arch-commits
Date: Saturday, April 16, 2022 @ 21:45:01
  Author: dvzrv
Revision: 442787

archrelease: copy trunk to extra-any

Added:
  edk2/repos/extra-any/50-edk2-ovmf-i386-secure.json
(from rev 442786, edk2/trunk/50-edk2-ovmf-i386-secure.json)
  edk2/repos/extra-any/50-edk2-ovmf-x86_64-secure.json
(from rev 442786, edk2/trunk/50-edk2-ovmf-x86_64-secure.json)
  edk2/repos/extra-any/60-edk2-armvirt-aarch64.json
(from rev 442786, edk2/trunk/60-edk2-armvirt-aarch64.json)
  edk2/repos/extra-any/60-edk2-ovmf-i386.json
(from rev 442786, edk2/trunk/60-edk2-ovmf-i386.json)
  edk2/repos/extra-any/60-edk2-ovmf-x86_64.json
(from rev 442786, edk2/trunk/60-edk2-ovmf-x86_64.json)
  edk2/repos/extra-any/70-edk2-ovmf-i386-csm.json
(from rev 442786, edk2/trunk/70-edk2-ovmf-i386-csm.json)
  edk2/repos/extra-any/70-edk2-ovmf-x86_64-csm.json
(from rev 442786, edk2/trunk/70-edk2-ovmf-x86_64-csm.json)
  edk2/repos/extra-any/80-edk2-ovmf-ia32-on-x86_64-secure.json
(from rev 442786, edk2/trunk/80-edk2-ovmf-ia32-on-x86_64-secure.json)
  edk2/repos/extra-any/81-edk2-ovmf-ia32-on-x86_64.json
(from rev 442786, edk2/trunk/81-edk2-ovmf-ia32-on-x86_64.json)
  edk2/repos/extra-any/82-edk2-ovmf-ia32-on-x86_64-csm.json
(from rev 442786, edk2/trunk/82-edk2-ovmf-ia32-on-x86_64-csm.json)
  edk2/repos/extra-any/PKGBUILD
(from rev 442786, edk2/trunk/PKGBUILD)
  edk2/repos/extra-any/edk2-202202-brotli.patch
(from rev 442786, edk2/trunk/edk2-202202-brotli.patch)
  edk2/repos/extra-any/edk2-202202-ovmfpkgia32.patch
(from rev 442786, edk2/trunk/edk2-202202-ovmfpkgia32.patch)
  edk2/repos/extra-any/edk2-ovmf.install
(from rev 442786, edk2/trunk/edk2-ovmf.install)
  edk2/repos/extra-any/edk2-shell.install
(from rev 442786, edk2/trunk/edk2-shell.install)
Deleted:
  edk2/repos/extra-any/50-edk2-ovmf-i386-secure.json
  edk2/repos/extra-any/50-edk2-ovmf-x86_64-secure.json
  edk2/repos/extra-any/60-edk2-armvirt-aarch64.json
  edk2/repos/extra-any/60-edk2-ovmf-i386.json
  edk2/repos/extra-any/60-edk2-ovmf-x86_64.json
  edk2/repos/extra-any/70-edk2-ovmf-i386-csm.json
  edk2/repos/extra-any/70-edk2-ovmf-x86_64-csm.json
  edk2/repos/extra-any/80-edk2-ovmf-ia32-on-x86_64-secure.json
  edk2/repos/extra-any/81-edk2-ovmf-ia32-on-x86_64.json
  edk2/repos/extra-any/82-edk2-ovmf-ia32-on-x86_64-csm.json
  edk2/repos/extra-any/PKGBUILD
  edk2/repos/extra-any/edk2-202202-brotli.patch
  edk2/repos/extra-any/edk2-202202-ovmfpkgia32.patch
  edk2/repos/extra-any/edk2-ovmf.install
  edk2/repos/extra-any/edk2-shell.install

-+
 50-edk2-ovmf-i386-secure.json   |   70 +--
 50-edk2-ovmf-x86_64-secure.json |   72 +--
 60-edk2-armvirt-aarch64.json|   62 +--
 60-edk2-ovmf-i386.json  |   68 +--
 60-edk2-ovmf-x86_64.json|   70 +--
 70-edk2-ovmf-i386-csm.json  |   68 +--
 70-edk2-ovmf-x86_64-csm.json|   70 +--
 80-edk2-ovmf-ia32-on-x86_64-secure.json |   70 +--
 81-edk2-ovmf-ia32-on-x86_64.json|   68 +--
 82-edk2-ovmf-ia32-on-x86_64-csm.json|   68 +--
 PKGBUILD|  581 +++---
 edk2-202202-brotli.patch|   30 -
 edk2-202202-ovmfpkgia32.patch   |   20 -
 edk2-ovmf.install   |   12 
 edk2-shell.install  |2 
 15 files changed, 666 insertions(+), 665 deletions(-)

Deleted: 50-edk2-ovmf-i386-secure.json
===
--- 50-edk2-ovmf-i386-secure.json   2022-04-16 21:44:38 UTC (rev 442786)
+++ 50-edk2-ovmf-i386-secure.json   2022-04-16 21:45:01 UTC (rev 442787)
@@ -1,35 +0,0 @@
-{
-"description": "IA32 UEFI for i386, with Secure Boot and SMM",
-"interface-types": [
-"uefi"
-],
-"mapping": {
-"device": "flash",
-"executable": {
-"filename": "/usr/share/edk2-ovmf/ia32/OVMF_CODE.secboot.fd",
-"format": "raw"
-},
-"nvram-template": {
-"filename": "/usr/share/edk2-ovmf/ia32/OVMF_VARS.fd",
-"format": "raw"
-}
-},
-"targets": [
-{
-"architecture": "i386",
-"machines": [
-"pc-q35-*"
-]
-}
-],
-"features": [
-"acpi-s3",
-"acpi-s4",
-"requires-smm",
-"secure-boot",
-"verbose-dynamic"
-],
-"tags": [
-
-]
-}

Copied: edk2/repos/extra-any/50-edk2-ovmf-i386-secure.json (from rev 442786, 
edk2/trunk/50-edk2-ovmf-i386-secure.json)
===
--- 50-edk2-ovmf-i386-secure.json   (rev 0)
+++ 50-edk2-ovmf-i386-secure.json   2022-04-16 21:45:01 UTC (rev 442787)
@@ -0,0 +1,35 @@
+{
+"description": "IA32 UEFI for i386, with Secure Boot and SMM",
+"interface-types": [
+"uefi"
+],
+"mapping": {

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

2022-04-16 Thread David Runge via arch-commits
Date: Saturday, April 16, 2022 @ 21:44:38
  Author: dvzrv
Revision: 442786

upgpkg: edk2 202202-2: Rebuild to adapt to new TPM build options 
(https://bugs.archlinux.org/task/74421).

Modified:
  edk2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 21:13:50 UTC (rev 442785)
+++ PKGBUILD2022-04-16 21:44:38 UTC (rev 442786)
@@ -6,7 +6,7 @@
 pkgbase=edk2
 pkgname=(edk2-armvirt edk2-shell edk2-ovmf)
 pkgver=202202
-pkgrel=1
+pkgrel=2
 pkgdesc="Modern, feature-rich firmware development environment for the UEFI 
specifications"
 arch=(any)
 url="https://github.com/tianocore/edk2;
@@ -104,7 +104,8 @@
   local _efi_args=(
 -D NETWORK_IP6_ENABLE
 -D TPM_CONFIG_ENABLE
--D TPM_ENABLE
+-D TPM1_ENABLE
+-D TPM2_ENABLE
   )
   # shared targets x86_64 and i686
   local _x86_args=(



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:42:14
  Author: arojas
Revision: 1186824

archrelease: copy trunk to community-any

Added:
  jupyterlab/repos/community-any/PKGBUILD
(from rev 1186823, jupyterlab/trunk/PKGBUILD)
  jupyterlab/repos/community-any/no-nbclassic.patch
(from rev 1186823, jupyterlab/trunk/no-nbclassic.patch)
Deleted:
  jupyterlab/repos/community-any/PKGBUILD
  jupyterlab/repos/community-any/no-nbclassic.patch

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 21:42:02 UTC (rev 1186823)
+++ PKGBUILD2022-04-16 21:42:14 UTC (rev 1186824)
@@ -1,41 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=jupyterlab
-_pipname=jupyterlab
-pkgver=3.3.3
-pkgrel=2
-pkgdesc='JupyterLab computational environment'
-arch=(any)
-url='https://github.com/jupyterlab/jupyterlab'
-license=(custom)
-makedepends=(python-build python-installer)
-depends=(python-jupyterlab_server python-jupyter_packaging 
jupyter-notebook-shim nodejs)
-optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets 
support')
-checkdepends=('python-pytest-tornasync' 'npm')
-source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz
-no-nbclassic.patch)
-sha256sums=('294d67126015ba397f6b1c80563deec862e47e042623851bbe2a7d870d69eb6a'
-'c81b7b957622b7ea68589daa568bba96a8955e768aea0bce60c27fa041e07cc4')
-
-prepare() {
-  patch -d $pkgname-$pkgver -p1 < no-nbclassic.patch # Drop nbclassic 
dependency
-  sed -e '/nbclassic/d' -i $pkgname-$pkgver/setup.cfg
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd $pkgname-$pkgver
-  pytest -v -k 'not test_build'
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  mv "$pkgdir"/usr/etc "$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: jupyterlab/repos/community-any/PKGBUILD (from rev 1186823, 
jupyterlab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 21:42:14 UTC (rev 1186824)
@@ -0,0 +1,41 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=jupyterlab
+_pipname=jupyterlab
+pkgver=3.3.4
+pkgrel=1
+pkgdesc='JupyterLab computational environment'
+arch=(any)
+url='https://github.com/jupyterlab/jupyterlab'
+license=(custom)
+makedepends=(python-build python-installer python-pre-commit)
+depends=(python-jupyterlab_server python-jupyter_packaging 
jupyter-notebook-shim nodejs)
+optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets 
support')
+checkdepends=('python-pytest-tornasync' 'npm')
+source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz
+no-nbclassic.patch)
+sha256sums=('e04355848b3d91ac4d95c2e3846a0429b33e9c2edc79668fb4fc4d212f1e5107'
+'c81b7b957622b7ea68589daa568bba96a8955e768aea0bce60c27fa041e07cc4')
+
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < no-nbclassic.patch # Drop nbclassic 
dependency
+  sed -e '/nbclassic/d' -i $pkgname-$pkgver/setup.cfg
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd $pkgname-$pkgver
+  pytest -v -k 'not test_build'
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  mv "$pkgdir"/usr/etc "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: no-nbclassic.patch
===
--- no-nbclassic.patch  2022-04-16 21:42:02 UTC (rev 1186823)
+++ no-nbclassic.patch  2022-04-16 21:42:14 UTC (rev 1186824)
@@ -1,13 +0,0 @@
-diff --git a/jupyterlab/labapp.py b/jupyterlab/labapp.py
-index 1eb56b22fe..5a401a0fdf 100644
 a/jupyterlab/labapp.py
-+++ b/jupyterlab/labapp.py
-@@ -19,7 +19,7 @@ from jupyterlab_server import (
- WorkspaceImportApp,
- WorkspaceListApp,
- )
--from nbclassic.shim import NBClassicConfigShimMixin
-+from notebook_shim.shim import NotebookConfigShimMixin as 
NBClassicConfigShimMixin
- from traitlets import Bool, Instance, Unicode, default
- 
- from ._version import __version__

Copied: jupyterlab/repos/community-any/no-nbclassic.patch (from rev 1186823, 
jupyterlab/trunk/no-nbclassic.patch)
===
--- no-nbclassic.patch  (rev 0)
+++ no-nbclassic.patch  2022-04-16 21:42:14 UTC (rev 1186824)
@@ -0,0 +1,13 @@
+diff --git a/jupyterlab/labapp.py b/jupyterlab/labapp.py
+index 1eb56b22fe..5a401a0fdf 100644
+--- a/jupyterlab/labapp.py
 b/jupyterlab/labapp.py
+@@ -19,7 +19,7 @@ from jupyterlab_server import (
+ WorkspaceImportApp,

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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:42:02
  Author: arojas
Revision: 1186823

Update to 3.3.4

Modified:
  jupyterlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 21:37:12 UTC (rev 1186822)
+++ PKGBUILD2022-04-16 21:42:02 UTC (rev 1186823)
@@ -2,19 +2,19 @@
 
 pkgname=jupyterlab
 _pipname=jupyterlab
-pkgver=3.3.3
-pkgrel=2
+pkgver=3.3.4
+pkgrel=1
 pkgdesc='JupyterLab computational environment'
 arch=(any)
 url='https://github.com/jupyterlab/jupyterlab'
 license=(custom)
-makedepends=(python-build python-installer)
+makedepends=(python-build python-installer python-pre-commit)
 depends=(python-jupyterlab_server python-jupyter_packaging 
jupyter-notebook-shim nodejs)
 optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets 
support')
 checkdepends=('python-pytest-tornasync' 'npm')
 
source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz
 no-nbclassic.patch)
-sha256sums=('294d67126015ba397f6b1c80563deec862e47e042623851bbe2a7d870d69eb6a'
+sha256sums=('e04355848b3d91ac4d95c2e3846a0429b33e9c2edc79668fb4fc4d212f1e5107'
 'c81b7b957622b7ea68589daa568bba96a8955e768aea0bce60c27fa041e07cc4')
 
 prepare() {



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:37:12
  Author: arojas
Revision: 1186822

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 21:37:00 UTC (rev 1186821)
+++ PKGBUILD2022-04-16 21:37:12 UTC (rev 1186822)
@@ -1,34 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: James Spencer 
-
-pkgbase=jmol
-pkgname=(jmol jsmol)
-pkgver=14.32.47
-pkgrel=1
-arch=(any)
-url='https://jmol.sourceforge.net'
-license=(LGPL)
-makedepends=(unzip)
-source=(https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.zip)
-sha256sums=('6eab53d459242a3bc7b1cfeb2765075705fa1807efc8d4e74d357d7807ef1b39')
-
-package_jmol() {
-  pkgdesc='A Java 3D viewer for chemical structures'
-  depends=(java-runtime)
-
-  cd $pkgbase-$pkgver
-
-  mkdir -p "$pkgdir"/usr/share/$pkgname
-  mkdir -p "$pkgdir"/usr/bin
-
-  cp *.jar jmol.sh "$pkgdir"/usr/share/$pkgname
-  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
-}
-
-package_jsmol() {
-  pkgdesc='A JavaScript 3D viewer for chemical structures'
-  cd $pkgbase-$pkgver
-
-  mkdir -p "$pkgdir"/usr/share
-  unzip jsmol.zip -d "$pkgdir"/usr/share/
-}

Copied: jmol/repos/community-any/PKGBUILD (from rev 1186821, 
jmol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 21:37:12 UTC (rev 1186822)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+# Contributor: James Spencer 
+
+pkgbase=jmol
+pkgname=(jmol jsmol)
+pkgver=14.32.49
+pkgrel=1
+arch=(any)
+url='https://jmol.sourceforge.net'
+license=(LGPL)
+makedepends=(unzip)
+source=(https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.zip)
+sha256sums=('dfd77a1a178659d05ec847d85fcd8135f8b3682de2f411cb050d2dd1169a17c6')
+
+package_jmol() {
+  pkgdesc='A Java 3D viewer for chemical structures'
+  depends=(java-runtime)
+
+  cd $pkgbase-$pkgver
+
+  mkdir -p "$pkgdir"/usr/share/$pkgname
+  mkdir -p "$pkgdir"/usr/bin
+
+  cp *.jar jmol.sh "$pkgdir"/usr/share/$pkgname
+  ln -s /usr/share/$pkgname/$pkgname.sh "$pkgdir"/usr/bin/$pkgname
+}
+
+package_jsmol() {
+  pkgdesc='A JavaScript 3D viewer for chemical structures'
+  cd $pkgbase-$pkgver
+
+  mkdir -p "$pkgdir"/usr/share
+  unzip jsmol.zip -d "$pkgdir"/usr/share/
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:37:00
  Author: arojas
Revision: 1186821

Update to 14.32.49

Modified:
  jmol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 21:31:37 UTC (rev 1186820)
+++ PKGBUILD2022-04-16 21:37:00 UTC (rev 1186821)
@@ -3,7 +3,7 @@
 
 pkgbase=jmol
 pkgname=(jmol jsmol)
-pkgver=14.32.47
+pkgver=14.32.49
 pkgrel=1
 arch=(any)
 url='https://jmol.sourceforge.net'
@@ -10,7 +10,7 @@
 license=(LGPL)
 makedepends=(unzip)
 
source=(https://sourceforge.net/projects/jmol/files/Jmol/Version%20${pkgver%.*}/Jmol%20$pkgver/Jmol-$pkgver-binary.zip)
-sha256sums=('6eab53d459242a3bc7b1cfeb2765075705fa1807efc8d4e74d357d7807ef1b39')
+sha256sums=('dfd77a1a178659d05ec847d85fcd8135f8b3682de2f411cb050d2dd1169a17c6')
 
 package_jmol() {
   pkgdesc='A Java 3D viewer for chemical structures'



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:31:37
  Author: arojas
Revision: 1186820

archrelease: copy trunk to community-any

Added:
  jupyter-nbclient/repos/community-any/PKGBUILD
(from rev 1186819, jupyter-nbclient/trunk/PKGBUILD)
Deleted:
  jupyter-nbclient/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 21:31:26 UTC (rev 1186819)
+++ PKGBUILD2022-04-16 21:31:37 UTC (rev 1186820)
@@ -1,31 +0,0 @@
-# Maintainer: Kyle Keen 
-
-pkgname=jupyter-nbclient
-pkgver=0.5.13
-pkgrel=2
-pkgdesc="A tool for running Jupyter Notebooks in different execution contexts."
-arch=('any')
-url="https://github.com/jupyter/nbclient;
-license=('BSD')
-depends=('python-nest-asyncio' 'python-traitlets' 'python-async_generator' 
'python-jupyter_client' 'jupyter-nbformat')
-makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel' 'jupyter-nbconvert')
-checkdepends=('python-pytest-asyncio' 'python-xmltodict')
-source=("https://github.com/jupyter/nbclient/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('3caa3a63a2f6d7e9f4ffd61eb924a3ba353224719525677eabee8c97ae3341a1')
-
-build() {
-  cd nbclient-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd nbclient-$pkgver
-  pytest -v
-}
-
-package() {
-  cd nbclient-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-
-  install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: jupyter-nbclient/repos/community-any/PKGBUILD (from rev 1186819, 
jupyter-nbclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 21:31:37 UTC (rev 1186820)
@@ -0,0 +1,31 @@
+# Maintainer: Kyle Keen 
+
+pkgname=jupyter-nbclient
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="A tool for running Jupyter Notebooks in different execution contexts."
+arch=('any')
+url="https://github.com/jupyter/nbclient;
+license=('BSD')
+depends=('python-nest-asyncio' 'python-traitlets' 'python-async_generator' 
'python-jupyter_client' 'jupyter-nbformat' 'python-testpath')
+makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
+checkdepends=('python-pytest-asyncio' 'python-xmltodict' 'jupyter-nbconvert' 
'python-ipywidgets')
+source=("https://github.com/jupyter/nbclient/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('7f7d20fa6070ab87e3725d2c63f50e481e11240855f2522beb5be9acf5b01865')
+
+build() {
+  cd nbclient-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd nbclient-$pkgver
+  pytest -v
+}
+
+package() {
+  cd nbclient-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:31:26
  Author: arojas
Revision: 1186819

Update to 0.6.0

Modified:
  jupyter-nbclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 21:23:51 UTC (rev 1186818)
+++ PKGBUILD2022-04-16 21:31:26 UTC (rev 1186819)
@@ -1,17 +1,17 @@
 # Maintainer: Kyle Keen 
 
 pkgname=jupyter-nbclient
-pkgver=0.5.13
-pkgrel=2
+pkgver=0.6.0
+pkgrel=1
 pkgdesc="A tool for running Jupyter Notebooks in different execution contexts."
 arch=('any')
 url="https://github.com/jupyter/nbclient;
 license=('BSD')
-depends=('python-nest-asyncio' 'python-traitlets' 'python-async_generator' 
'python-jupyter_client' 'jupyter-nbformat')
+depends=('python-nest-asyncio' 'python-traitlets' 'python-async_generator' 
'python-jupyter_client' 'jupyter-nbformat' 'python-testpath')
 makedepends=('python-build' 'python-installer' 'python-setuptools' 
'python-wheel')
-checkdepends=('python-pytest-asyncio' 'python-xmltodict' 'jupyter-nbconvert')
+checkdepends=('python-pytest-asyncio' 'python-xmltodict' 'jupyter-nbconvert' 
'python-ipywidgets')
 
source=("https://github.com/jupyter/nbclient/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('3caa3a63a2f6d7e9f4ffd61eb924a3ba353224719525677eabee8c97ae3341a1')
+sha256sums=('7f7d20fa6070ab87e3725d2c63f50e481e11240855f2522beb5be9acf5b01865')
 
 build() {
   cd nbclient-$pkgver



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:23:51
  Author: arojas
Revision: 1186818

archrelease: copy trunk to community-any

Added:
  jupyter-nbconvert/repos/community-any/PKGBUILD
(from rev 1186817, jupyter-nbconvert/trunk/PKGBUILD)
Deleted:
  jupyter-nbconvert/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 21:23:39 UTC (rev 1186817)
+++ PKGBUILD2022-04-16 21:23:51 UTC (rev 1186818)
@@ -1,53 +0,0 @@
-# Maintainer: Kyle Keen 
-
-pkgname=jupyter-nbconvert
-_name=nbconvert
-pkgver=6.4.5
-pkgrel=5
-pkgdesc="Jupyter Notebook Conversion"
-arch=('any')
-url="https://pypi.python.org/pypi/nbconvert;
-license=('BSD')
-depends=(
-  'jupyter-nbformat'
-  'jupyter-nbclient'
-  'jupyterlab_pygments'
-  'python-beautifulsoup4'
-  'python-bleach'
-  'python-defusedxml'
-  'python-entrypoints'
-  'python-jinja'
-  'python-pandocfilters'
-  'python-mistune1'
-  'python-pygments'
-  'python-testpath'
-  'python-traitlets'
-)
-makedepends=('python-pyppeteer' 'python-build' 'python-installer' 
'python-wheel')
-checkdepends=('python-pytest' 'python-ipywidgets')
-optdepends=('pandoc: non-html conversion output'
-'python-pyppeteer: for webPDF conversion support')
-source=("https://github.com/jupyter/nbconvert/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('7e61f0fe3b7c84acc403dd8e81cb300abb274f8026c3437842bc813621602599')
-
-build() {
-  cd nbconvert-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd nbconvert-$pkgver
-  export PYTHONPATH="$PWD" # Make sure system nbconvert is not used
-  # disable tests that download chromium and (probably) require a graphical 
session
-  pytest -vv -k 'TestWebPDFExporter and not (test_export or 
test_webpdf_without_pyppeteer)'
-  pytest -vv -k 'TestNbConvertApp and not test_webpdf_with_chromium'
-  # run all remaining tests
-  pytest -vv -k 'not TestWebPDFExporter and not TestNbConvertApp'
-}
-
-package() {
-  cd nbconvert-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
-}

Copied: jupyter-nbconvert/repos/community-any/PKGBUILD (from rev 1186817, 
jupyter-nbconvert/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 21:23:51 UTC (rev 1186818)
@@ -0,0 +1,57 @@
+# Maintainer: Kyle Keen 
+
+pkgname=jupyter-nbconvert
+_name=nbconvert
+pkgver=6.5.0
+pkgrel=1
+pkgdesc="Jupyter Notebook Conversion"
+arch=('any')
+url="https://pypi.python.org/pypi/nbconvert;
+license=('BSD')
+depends=(
+  'jupyter-nbformat'
+  'jupyter-nbclient'
+  'jupyterlab_pygments'
+  'python-beautifulsoup4'
+  'python-bleach'
+  'python-defusedxml'
+  'python-entrypoints'
+  'python-jinja'
+  'python-pandocfilters'
+  'python-mistune1'
+  'python-pygments'
+  'python-traitlets'
+)
+makedepends=('python-pyppeteer' 'python-build' 'python-installer' 
'python-wheel')
+checkdepends=('python-pytest' 'python-ipywidgets')
+optdepends=('pandoc: non-html conversion output'
+'python-pyppeteer: for webPDF conversion support')
+source=("https://github.com/jupyter/nbconvert/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('548bfb47a15ab12b7c68e6be7c702db791effa8d524707152249a562a019b8f5')
+
+prepare() {
+  cd nbconvert-$pkgver
+  sed -e 's|setuptools>=60.0|setuptools|' -i pyproject.toml
+}
+
+build() {
+  cd nbconvert-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd nbconvert-$pkgver
+  export PYTHONPATH="$PWD" # Make sure system nbconvert is not used
+  # disable tests that download chromium and (probably) require a graphical 
session
+  pytest -v -k 'TestWebPDFExporter and not (test_export or 
test_webpdf_without_pyppeteer)' -W ignore::DeprecationWarning
+  pytest -v -k 'TestNbConvertApp and not test_webpdf_with_chromium' -W 
ignore::DeprecationWarning
+  # run all remaining tests
+  pytest -v -k 'not TestWebPDFExporter and not TestNbConvertApp' -W 
ignore::DeprecationWarning
+}
+
+package() {
+  cd nbconvert-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:23:39
  Author: arojas
Revision: 1186817

Update to 6.5.0

Modified:
  jupyter-nbconvert/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 21:15:00 UTC (rev 1186816)
+++ PKGBUILD2022-04-16 21:23:39 UTC (rev 1186817)
@@ -2,8 +2,8 @@
 
 pkgname=jupyter-nbconvert
 _name=nbconvert
-pkgver=6.4.5
-pkgrel=5
+pkgver=6.5.0
+pkgrel=1
 pkgdesc="Jupyter Notebook Conversion"
 arch=('any')
 url="https://pypi.python.org/pypi/nbconvert;
@@ -20,7 +20,6 @@
   'python-pandocfilters'
   'python-mistune1'
   'python-pygments'
-  'python-testpath'
   'python-traitlets'
 )
 makedepends=('python-pyppeteer' 'python-build' 'python-installer' 
'python-wheel')
@@ -28,8 +27,13 @@
 optdepends=('pandoc: non-html conversion output'
 'python-pyppeteer: for webPDF conversion support')
 
source=("https://github.com/jupyter/nbconvert/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('7e61f0fe3b7c84acc403dd8e81cb300abb274f8026c3437842bc813621602599')
+sha256sums=('548bfb47a15ab12b7c68e6be7c702db791effa8d524707152249a562a019b8f5')
 
+prepare() {
+  cd nbconvert-$pkgver
+  sed -e 's|setuptools>=60.0|setuptools|' -i pyproject.toml
+}
+
 build() {
   cd nbconvert-$pkgver
   python -m build --wheel --no-isolation
@@ -39,10 +43,10 @@
   cd nbconvert-$pkgver
   export PYTHONPATH="$PWD" # Make sure system nbconvert is not used
   # disable tests that download chromium and (probably) require a graphical 
session
-  pytest -vv -k 'TestWebPDFExporter and not (test_export or 
test_webpdf_without_pyppeteer)'
-  pytest -vv -k 'TestNbConvertApp and not test_webpdf_with_chromium'
+  pytest -v -k 'TestWebPDFExporter and not (test_export or 
test_webpdf_without_pyppeteer)' -W ignore::DeprecationWarning
+  pytest -v -k 'TestNbConvertApp and not test_webpdf_with_chromium' -W 
ignore::DeprecationWarning
   # run all remaining tests
-  pytest -vv -k 'not TestWebPDFExporter and not TestNbConvertApp'
+  pytest -v -k 'not TestWebPDFExporter and not TestNbConvertApp' -W 
ignore::DeprecationWarning
 }
 
 package() {



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:10:07
  Author: arojas
Revision: 442734

archrelease: copy trunk to extra-x86_64

Added:
  freetds/repos/extra-x86_64/PKGBUILD
(from rev 442733, freetds/trunk/PKGBUILD)
Deleted:
  freetds/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 21:09:55 UTC (rev 442733)
+++ PKGBUILD2022-04-16 21:10:07 UTC (rev 442734)
@@ -1,27 +0,0 @@
-# Maintainer:
-
-pkgname=freetds
-pkgver=1.3.9
-pkgrel=1
-pkgdesc='Library for accessing Sybase and MS SQL Server databases'
-url='https://www.freetds.org'
-arch=(x86_64)
-license=(LGPL)
-depends=(openssl unixodbc)
-backup=(etc/freetds/freetds.conf
-etc/freetds/locales.conf
-etc/freetds/pool.conf)
-source=(ftp://ftp.freetds.org/pub/freetds/stable/$pkgname-$pkgver.tar.bz2)
-sha256sums=('a81c8a986a7a2f0b94599ebd7a1785d72017dea6d796a7f44b6ac681ee77c2e7')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc/freetds --enable-msdblib \
---with-unixodbc=/usr --with-openssl
-  make 
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: freetds/repos/extra-x86_64/PKGBUILD (from rev 442733, 
freetds/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 21:10:07 UTC (rev 442734)
@@ -0,0 +1,27 @@
+# Maintainer:
+
+pkgname=freetds
+pkgver=1.3.10
+pkgrel=1
+pkgdesc='Library for accessing Sybase and MS SQL Server databases'
+url='https://www.freetds.org'
+arch=(x86_64)
+license=(LGPL)
+depends=(openssl unixodbc)
+backup=(etc/freetds/freetds.conf
+etc/freetds/locales.conf
+etc/freetds/pool.conf)
+source=(ftp://ftp.freetds.org/pub/freetds/stable/$pkgname-$pkgver.tar.bz2)
+sha256sums=('819aeaf7feaa1bfdbc2213f81ad067061dd4c56245996a4e2b529d87296a5d63')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc/freetds --enable-msdblib \
+--with-unixodbc=/usr --with-openssl
+  make 
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:09:55
  Author: arojas
Revision: 442733

Update to 1.3.10

Modified:
  freetds/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 20:48:56 UTC (rev 442732)
+++ PKGBUILD2022-04-16 21:09:55 UTC (rev 442733)
@@ -1,7 +1,7 @@
 # Maintainer:
 
 pkgname=freetds
-pkgver=1.3.9
+pkgver=1.3.10
 pkgrel=1
 pkgdesc='Library for accessing Sybase and MS SQL Server databases'
 url='https://www.freetds.org'
@@ -12,7 +12,7 @@
 etc/freetds/locales.conf
 etc/freetds/pool.conf)
 source=(ftp://ftp.freetds.org/pub/freetds/stable/$pkgname-$pkgver.tar.bz2)
-sha256sums=('a81c8a986a7a2f0b94599ebd7a1785d72017dea6d796a7f44b6ac681ee77c2e7')
+sha256sums=('819aeaf7feaa1bfdbc2213f81ad067061dd4c56245996a4e2b529d87296a5d63')
 
 build() {
   cd $pkgname-$pkgver



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:07:24
  Author: arojas
Revision: 1186740

archrelease: copy trunk to community-x86_64

Added:
  giac/repos/community-x86_64/PKGBUILD
(from rev 1186739, giac/trunk/PKGBUILD)
  giac/repos/community-x86_64/giac-test-pari-2.11.patch
(from rev 1186739, giac/trunk/giac-test-pari-2.11.patch)
Deleted:
  giac/repos/community-x86_64/PKGBUILD
  giac/repos/community-x86_64/giac-test-pari-2.11.patch

---+
 PKGBUILD  |   84 ++--
 giac-test-pari-2.11.patch |   34 -
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 21:07:12 UTC (rev 1186739)
+++ PKGBUILD2022-04-16 21:07:24 UTC (rev 1186740)
@@ -1,42 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=giac
-_pkgver=1.7.0-57
-pkgver=${_pkgver//-/.}
-pkgrel=1
-pkgdesc='A free computer algebra system'
-arch=(x86_64)
-url='http://www-fourier.ujf-grenoble.fr/~parisse/giac.html'
-license=(GPL3)
-depends=(fltk mpfi gsl pari ntl lapack curl glpk libao gmp-ecm libsamplerate)
-makedepends=(python libjpeg texlive-core texlive-science hevea nauty)
-optdepends=('perl: for pgiac')
-replaces=(libgiac xcas)
-provides=(libgiac xcas)
-source=(http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgname}_$_pkgver.tar.gz
-giac-test-pari-2.11.patch)
-sha256sums=('54c50aa869f05e72c4258fa01c7c6d88fb5c7575d9fdc302dcdb722589f8d3d7'
-'c5f091986f0a0807fc1ae5a3b7454132816e9bc3ed64411f0a7bdf90a8c8e624')
-
-prepare() {
-  cd $pkgname-${pkgver%.*}
-  patch -p1 < ../giac-test-pari-2.11.patch # Fix tests with pari 2.11
-}
-
-build() {
-  cd $pkgname-${pkgver%.*}
-  CXXFLAGS+=" -Wp,-U_GLIBCXX_ASSERTIONS" # Fix crashes
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd $pkgname-${pkgver%.*}
-
-  make check
-}
-
-package() {
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-}

Copied: giac/repos/community-x86_64/PKGBUILD (from rev 1186739, 
giac/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 21:07:24 UTC (rev 1186740)
@@ -0,0 +1,42 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=giac
+_pkgver=1.9.0-5
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc='A free computer algebra system'
+arch=(x86_64)
+url='http://www-fourier.ujf-grenoble.fr/~parisse/giac.html'
+license=(GPL3)
+depends=(fltk mpfi gsl pari ntl lapack curl glpk libao gmp-ecm libsamplerate)
+makedepends=(python libjpeg texlive-core texlive-science hevea nauty)
+optdepends=('perl: for pgiac')
+replaces=(libgiac xcas)
+provides=(libgiac xcas)
+source=(http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgname}_$_pkgver.tar.gz
+giac-test-pari-2.11.patch)
+sha256sums=('10ff30462f1064faebd657ca37a75af3bb35142cbc02e0d86f372fb09096c8b1'
+'c5f091986f0a0807fc1ae5a3b7454132816e9bc3ed64411f0a7bdf90a8c8e624')
+
+prepare() {
+  cd $pkgname-${pkgver%.*}
+  patch -p1 < ../giac-test-pari-2.11.patch # Fix tests with pari 2.11
+}
+
+build() {
+  cd $pkgname-${pkgver%.*}
+  CXXFLAGS+=" -Wp,-U_GLIBCXX_ASSERTIONS" # Fix crashes
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd $pkgname-${pkgver%.*}
+
+  make check
+}
+
+package() {
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+}

Deleted: giac-test-pari-2.11.patch
===
--- giac-test-pari-2.11.patch   2022-04-16 21:07:12 UTC (rev 1186739)
+++ giac-test-pari-2.11.patch   2022-04-16 21:07:24 UTC (rev 1186740)
@@ -1,17 +0,0 @@
-Change test output for PARI 2.11
-
-See https://trac.sagemath.org/ticket/25567
-and https://xcas.univ-grenoble-alpes.fr/forum/viewtopic.php?f=4=2102
-
-diff -ru a/check/TP11-sol.cas.out1 b/check/TP11-sol.cas.out1
 a/check/TP11-sol.cas.out1  2014-10-21 10:51:48.0 +0200
-+++ b/check/TP11-sol.cas.out1  2018-08-07 17:04:12.528052773 +0200
-@@ -10,7 +10,7 @@
- 107374182400061203284109008409,
- 2^3*3*389*733*156904374622257604823879982847602392900751802349981470895277241,
- "Done",
--matrix[[2,7,1],[3,2,1],[389,2,1],[733,2,1],[156904374622257604823879982847602392900751802349981470895277241,2,matrix[[2,13,1],[3,3,1],[5,2,1],[7,2,1],[56467,2,1],[6553084925887974620811527,2,matrix[[2,5,1],[19,2,1],[71,2,1],[126823,2,1]],
-+1,
- 0,
- [],
- 1,

Copied: giac/repos/community-x86_64/giac-test-pari-2.11.patch (from rev 
1186739, giac/trunk/giac-test-pari-2.11.patch)
===
--- giac-test-pari-2.11.patch   (rev 0)
+++ giac-test-pari-2.11.patch   2022-04-16 21:07:24 UTC (rev 1186740)
@@ -0,0 +1,17 @@
+Change test output for PARI 2.11
+
+See https://trac.sagemath.org/ticket/25567
+and 

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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 21:07:12
  Author: arojas
Revision: 1186739

Update to 1.9.0.5

Modified:
  giac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 20:58:05 UTC (rev 1186738)
+++ PKGBUILD2022-04-16 21:07:12 UTC (rev 1186739)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=giac
-_pkgver=1.7.0-57
+_pkgver=1.9.0-5
 pkgver=${_pkgver//-/.}
 pkgrel=1
 pkgdesc='A free computer algebra system'
@@ -15,7 +15,7 @@
 provides=(libgiac xcas)
 
source=(http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgname}_$_pkgver.tar.gz
 giac-test-pari-2.11.patch)
-sha256sums=('54c50aa869f05e72c4258fa01c7c6d88fb5c7575d9fdc302dcdb722589f8d3d7'
+sha256sums=('10ff30462f1064faebd657ca37a75af3bb35142cbc02e0d86f372fb09096c8b1'
 'c5f091986f0a0807fc1ae5a3b7454132816e9bc3ed64411f0a7bdf90a8c8e624')
 
 prepare() {



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:58:05
  Author: arojas
Revision: 1186738

archrelease: copy trunk to community-x86_64

Added:
  geogebra/repos/community-x86_64/PKGBUILD
(from rev 1186737, geogebra/trunk/PKGBUILD)
  geogebra/repos/community-x86_64/geogebra
(from rev 1186737, geogebra/trunk/geogebra)
  geogebra/repos/community-x86_64/geogebra-mime.xml
(from rev 1186737, geogebra/trunk/geogebra-mime.xml)
  geogebra/repos/community-x86_64/geogebra.desktop
(from rev 1186737, geogebra/trunk/geogebra.desktop)
Deleted:
  geogebra/repos/community-x86_64/PKGBUILD
  geogebra/repos/community-x86_64/geogebra
  geogebra/repos/community-x86_64/geogebra-mime.xml
  geogebra/repos/community-x86_64/geogebra.desktop

---+
 PKGBUILD  |   72 ++--
 geogebra  |6 ++--
 geogebra-mime.xml |   54 +++
 geogebra.desktop  |   22 +++
 4 files changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 20:57:49 UTC (rev 1186737)
+++ PKGBUILD2022-04-16 20:58:05 UTC (rev 1186738)
@@ -1,36 +0,0 @@
-# Maintainer: Evgeniy Alekseev 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Felipe Hommen 
-# Contributor: moostik 
-
-pkgname=geogebra
-pkgver=6.0.697.0
-pkgrel=1
-pkgdesc='Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet'
-arch=(x86_64)
-url='https://www.geogebra.org/'
-license=(GPL3 'CCPL:by-sa' 'CCPL:by-nc')
-depends=(electron17)
-source=(https://download.geogebra.org/installers/6.0/GeoGebra-Linux64-Portable-${pkgver//./-}.zip
-https://static.geogebra.org/images/geogebra-logo.svg
-geogebra
-geogebra.desktop
-geogebra-mime.xml)
-sha256sums=('a9e83d21978d1def7acc2d25eef1511fb549bfa453b53b37288da958c0f26198'
-'55ded6b5ec9ad382494f858d8ab5def0ed6c7d529481cd212863b2edde3b5e07'
-'a7ede76c24127988a0d6f9835ed11e190c4891ceda6afa297b423c404fd812f1'
-'e8f3ac2c91daf1bb38ef4dddf705d341c3d8028aa4afb9b74a2d1a78a9953b98'
-'100dd83e61057b9a104630ea39a84d967475d459ab38e29783a7587b3acfb6a4')
-
-package() {
-  cd GeoGebra-linux-x64
-
-  install -Dm755 "$srcdir"/geogebra "$pkgdir"/usr/bin/geogebra
-  install -dm755 "$pkgdir"/usr/lib/geogebra
-  cp -dpr --no-preserve=ownership resources "$pkgdir"/usr/lib/geogebra
-  cp -dpr --no-preserve=ownership locales "$pkgdir"/usr/lib/geogebra
-
-  install -Dm644 "$srcdir"/geogebra.desktop -t 
"$pkgdir"/usr/share/applications/
-  install -Dm644 "$srcdir"/geogebra-logo.svg 
"$pkgdir"/usr/share/icons/hicolor/scalable/apps/geogebra.svg
-  install -Dm644 "$srcdir"/geogebra-mime.xml 
"$pkgdir"/usr/share/mime/packages/geogebra.xml
-}

Copied: geogebra/repos/community-x86_64/PKGBUILD (from rev 1186737, 
geogebra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 20:58:05 UTC (rev 1186738)
@@ -0,0 +1,36 @@
+# Maintainer: Evgeniy Alekseev 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Felipe Hommen 
+# Contributor: moostik 
+
+pkgname=geogebra
+pkgver=6.0.700.0
+pkgrel=1
+pkgdesc='Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet'
+arch=(x86_64)
+url='https://www.geogebra.org/'
+license=(GPL3 'CCPL:by-sa' 'CCPL:by-nc')
+depends=(electron17)
+source=(https://download.geogebra.org/installers/6.0/GeoGebra-Linux64-Portable-${pkgver//./-}.zip
+https://static.geogebra.org/images/geogebra-logo.svg
+geogebra
+geogebra.desktop
+geogebra-mime.xml)
+sha256sums=('c306f6ccf45c6ac705edba8d77cba53be60ba37962818ef8d7bb51dbb48c98b5'
+'55ded6b5ec9ad382494f858d8ab5def0ed6c7d529481cd212863b2edde3b5e07'
+'a7ede76c24127988a0d6f9835ed11e190c4891ceda6afa297b423c404fd812f1'
+'e8f3ac2c91daf1bb38ef4dddf705d341c3d8028aa4afb9b74a2d1a78a9953b98'
+'100dd83e61057b9a104630ea39a84d967475d459ab38e29783a7587b3acfb6a4')
+
+package() {
+  cd GeoGebra-linux-x64
+
+  install -Dm755 "$srcdir"/geogebra "$pkgdir"/usr/bin/geogebra
+  install -dm755 "$pkgdir"/usr/lib/geogebra
+  cp -dpr --no-preserve=ownership resources "$pkgdir"/usr/lib/geogebra
+  cp -dpr --no-preserve=ownership locales "$pkgdir"/usr/lib/geogebra
+
+  install -Dm644 "$srcdir"/geogebra.desktop -t 
"$pkgdir"/usr/share/applications/
+  install -Dm644 "$srcdir"/geogebra-logo.svg 
"$pkgdir"/usr/share/icons/hicolor/scalable/apps/geogebra.svg
+  install -Dm644 "$srcdir"/geogebra-mime.xml 
"$pkgdir"/usr/share/mime/packages/geogebra.xml
+}

Deleted: geogebra
===
--- geogebra2022-04-16 20:57:49 UTC (rev 1186737)
+++ geogebra2022-04-16 20:58:05 UTC (rev 1186738)
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-electron17 "/usr/lib/geogebra/resources/app" $@

Copied: 

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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:57:49
  Author: arojas
Revision: 1186737

Update to 6.0.700.0

Modified:
  geogebra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 20:54:16 UTC (rev 1186736)
+++ PKGBUILD2022-04-16 20:57:49 UTC (rev 1186737)
@@ -4,7 +4,7 @@
 # Contributor: moostik 
 
 pkgname=geogebra
-pkgver=6.0.697.0
+pkgver=6.0.700.0
 pkgrel=1
 pkgdesc='Dynamic mathematics software with interactive graphics, algebra and 
spreadsheet'
 arch=(x86_64)
@@ -16,7 +16,7 @@
 geogebra
 geogebra.desktop
 geogebra-mime.xml)
-sha256sums=('a9e83d21978d1def7acc2d25eef1511fb549bfa453b53b37288da958c0f26198'
+sha256sums=('c306f6ccf45c6ac705edba8d77cba53be60ba37962818ef8d7bb51dbb48c98b5'
 '55ded6b5ec9ad382494f858d8ab5def0ed6c7d529481cd212863b2edde3b5e07'
 'a7ede76c24127988a0d6f9835ed11e190c4891ceda6afa297b423c404fd812f1'
 'e8f3ac2c91daf1bb38ef4dddf705d341c3d8028aa4afb9b74a2d1a78a9953b98'



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:54:16
  Author: arojas
Revision: 1186736

archrelease: copy trunk to community-x86_64

Added:
  e-antic/repos/community-x86_64/PKGBUILD
(from rev 1186735, e-antic/trunk/PKGBUILD)
Deleted:
  e-antic/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 20:54:04 UTC (rev 1186735)
+++ PKGBUILD2022-04-16 20:54:16 UTC (rev 1186736)
@@ -1,45 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=e-antic
-pkgver=1.1.1
-pkgrel=1
-pkgdesc='Embedded algebraic number fields (on top of antic)'
-arch=(x86_64)
-url='https://github.com/flatsurf/e-antic/'
-license=(LGPL)
-depends=(arb antic)
-makedepends=(boost catch2)
-source=(https://github.com/flatsurf/e-antic/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('2d178ae9641c07ca9a5fb4ee0739e0db1a0b6c627543bf7e3472504174bf996d')
-
-prepare() {
-  cd $pkgname-$pkgver
-# Unbundle catch2 to fix build with glibc 2.35
-  rm -r libeantic/test/external/catch2/single_include/catch2
-  ln -s /usr/include/catch2 libeantic/test/external/catch2/single_include
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---without-benchmark \
---without-byexample \
---without-pytest \
---without-doc
-# https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libeantic/libtool
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: e-antic/repos/community-x86_64/PKGBUILD (from rev 1186735, 
e-antic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 20:54:16 UTC (rev 1186736)
@@ -0,0 +1,45 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=e-antic
+pkgver=1.2.0
+pkgrel=1
+pkgdesc='Embedded algebraic number fields (on top of antic)'
+arch=(x86_64)
+url='https://github.com/flatsurf/e-antic/'
+license=(LGPL)
+depends=(arb antic)
+makedepends=(boost catch2)
+source=(https://github.com/flatsurf/e-antic/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('2c00fec3601611d7b82a17ce09828ad4689ef28b4be491fc12d8c58c2c1deed8')
+
+prepare() {
+  cd $pkgname-$pkgver
+# Unbundle catch2 to fix build with glibc 2.35
+  rm -r libeantic/test/external/catch2/single_include/catch2
+  ln -s /usr/include/catch2 libeantic/test/external/catch2/single_include
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--without-benchmark \
+--without-byexample \
+--without-pytest \
+--without-doc
+# https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libeantic/libtool
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:54:04
  Author: arojas
Revision: 1186735

Update to 1.2.0

Modified:
  e-antic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 20:51:29 UTC (rev 1186734)
+++ PKGBUILD2022-04-16 20:54:04 UTC (rev 1186735)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=e-antic
-pkgver=1.1.1
+pkgver=1.2.0
 pkgrel=1
 pkgdesc='Embedded algebraic number fields (on top of antic)'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(arb antic)
 makedepends=(boost catch2)
 
source=(https://github.com/flatsurf/e-antic/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('2d178ae9641c07ca9a5fb4ee0739e0db1a0b6c627543bf7e3472504174bf996d')
+sha256sums=('2c00fec3601611d7b82a17ce09828ad4689ef28b4be491fc12d8c58c2c1deed8')
 
 prepare() {
   cd $pkgname-$pkgver



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:51:29
  Author: arojas
Revision: 1186734

archrelease: copy trunk to community-x86_64

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

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

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

Copied: appstream-generator/repos/community-x86_64/PKGBUILD (from rev 1186733, 
appstream-generator/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 20:51:29 UTC (rev 1186734)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=appstream-generator
+pkgver=0.8.8
+pkgrel=1
+pkgdesc='A fast AppStream metadata generator'
+arch=(x86_64)
+url='https://github.com/ximion/appstream-generator'
+license=(GPL3)
+depends=(appstream libarchive librsvg optipng glibd lmdb)
+makedepends=(ldc meson ninja mustache-d curl gir-to-d gobject-introspection 
docbook-xsl)
+options=(debug)
+source=(https://github.com/ximion/appstream-generator/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('3b5d8d24c377d265ff3ae765fd361c943db88c2f7fcfe453d02779718fc40850')
+
+build() {
+  export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
+  arch-meson $pkgname-$pkgver build -D download-js=false
+  meson compile -C build
+}
+
+package() {
+  meson install -C build --destdir="$pkgdir"
+}

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



[arch-commits] Commit in appstream-generator/trunk (PKGBUILD stack-size.diff)

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:51:15
  Author: arojas
Revision: 1186733

Update to 0.8.8

Modified:
  appstream-generator/trunk/PKGBUILD
Deleted:
  appstream-generator/trunk/stack-size.diff

-+
 PKGBUILD|   18 --
 stack-size.diff |   12 
 2 files changed, 4 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 20:21:44 UTC (rev 1186732)
+++ PKGBUILD2022-04-16 20:51:15 UTC (rev 1186733)
@@ -1,8 +1,8 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=appstream-generator
-pkgver=0.8.7
-pkgrel=3
+pkgver=0.8.8
+pkgrel=1
 pkgdesc='A fast AppStream metadata generator'
 arch=(x86_64)
 url='https://github.com/ximion/appstream-generator'
@@ -10,19 +10,9 @@
 depends=(appstream libarchive librsvg optipng glibd lmdb)
 makedepends=(ldc meson ninja mustache-d curl gir-to-d gobject-introspection 
docbook-xsl)
 options=(debug)
-source=(https://github.com/ximion/appstream-generator/archive/v$pkgver/$pkgname-$pkgver.tar.gz
-stack-size.diff)
-sha256sums=('0e8432549e55b653ebd971421aac208956ec8e197dc23c5533a6c1932f125793'
-'73f68b4b85611ddabbcac7189266e49af4bc012d4fb610fb6fc87bae57970c2a')
+source=(https://github.com/ximion/appstream-generator/archive/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('3b5d8d24c377d265ff3ae765fd361c943db88c2f7fcfe453d02779718fc40850')
 
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Fix crash due to stack exhaustion trying to initialize iconv in a 
Generator fiber
-  # https://github.com/ximion/appstream-generator/issues/101
-  patch -Np1 -i ../stack-size.diff
-}
-
 build() {
   export LDFLAGS="$(echo -ne $LDFLAGS | sed -e 's/-flto=auto/--flto=full/')"
   arch-meson $pkgname-$pkgver build -D download-js=false

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



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:48:56
  Author: arojas
Revision: 442732

archrelease: copy trunk to extra-x86_64

Added:
  appstream/repos/extra-x86_64/PKGBUILD
(from rev 442731, appstream/trunk/PKGBUILD)
  appstream/repos/extra-x86_64/update-appstream-cache.hook
(from rev 442731, appstream/trunk/update-appstream-cache.hook)
Deleted:
  appstream/repos/extra-x86_64/PKGBUILD
  appstream/repos/extra-x86_64/update-appstream-cache.hook

-+
 PKGBUILD|  100 +-
 update-appstream-cache.hook |   34 +++---
 2 files changed, 67 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 20:48:44 UTC (rev 442731)
+++ PKGBUILD2022-04-16 20:48:56 UTC (rev 442732)
@@ -1,50 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Jameson Pugh 
-# Contributor: Tim Jester-Pfadt gmx.de>
-
-pkgbase=appstream
-pkgname=(appstream appstream-qt)
-pkgver=0.15.2
-pkgrel=1
-pkgdesc='Provides a standard for creating app stores across distributions'
-arch=(x86_64)
-url='https://distributions.freedesktop.org/wiki/AppStream'
-license=(GPL)
-depends=(curl librsvg libyaml libxmlb libsoup)
-makedepends=(meson xmlto gobject-introspection gtk-doc qt5-tools itstool vala 
gperf)
-source=(https://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz{,.asc}
-update-appstream-cache.hook)
-sha256sums=('8f6c1cd288c7c59f5bf21746a6cfd1424cd9d7cbeb0b7920dbcdf9ef10e9c74a'
-'SKIP'
-'3a96a1479cfd18dad36c2ca3181aabe46af9bf772c00b965d86ec5f55cd0e0eb')
-validpgpkeys=(D33A3F0CA16B0ACC51A60738494C8A5FBF4DECEB) # Matthias Klumpp 

-options=(debug)
-
-build() {
-  meson build AppStream-$pkgver \
---prefix=/usr \
---libexecdir=lib \
--Dqt=true \
--Dvapi=true \
--Dcompose=true
-  meson compile -C build
-}
-
-package_appstream() {
-  meson install --destdir "$pkgdir" -C build
-
-# provided by -qt subpackage
-  rm -r "$pkgdir"/usr/{include/AppStreamQt,lib/cmake,lib/libAppStreamQt.*}
-
-  install -Dm644 update-appstream-cache.hook 
"$pkgdir"/usr/share/libalpm/hooks/90-update-appstream-cache.hook
-}
-
-package_appstream-qt() {
-  pkgdesc='Qt5 interface for AppStream'
-  depends=(appstream qt5-base)
-
-  meson install --destdir "$pkgdir" -C build
-
-# provided by appstream
-  rm -r 
"$pkgdir"{/etc,/usr/{bin,include/appstream{,-compose},lib/{appstreamcli-compose,girepository-1.0,libappstream*,pkgconfig},share}}
-}

Copied: appstream/repos/extra-x86_64/PKGBUILD (from rev 442731, 
appstream/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 20:48:56 UTC (rev 442732)
@@ -0,0 +1,50 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Jameson Pugh 
+# Contributor: Tim Jester-Pfadt gmx.de>
+
+pkgbase=appstream
+pkgname=(appstream appstream-qt)
+pkgver=0.15.3
+pkgrel=1
+pkgdesc='Provides a standard for creating app stores across distributions'
+arch=(x86_64)
+url='https://distributions.freedesktop.org/wiki/AppStream'
+license=(GPL)
+depends=(curl librsvg libyaml libxmlb libsoup)
+makedepends=(meson xmlto gobject-introspection gtk-doc qt5-tools itstool vala 
gperf)
+source=(https://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz{,.asc}
+update-appstream-cache.hook)
+sha256sums=('3e676c3368aebe9618f394c58a7f0a6c73d1a15efd9ba2d230c229a959e8a25d'
+'SKIP'
+'3a96a1479cfd18dad36c2ca3181aabe46af9bf772c00b965d86ec5f55cd0e0eb')
+validpgpkeys=(D33A3F0CA16B0ACC51A60738494C8A5FBF4DECEB) # Matthias Klumpp 

+options=(debug)
+
+build() {
+  meson build AppStream-$pkgver \
+--prefix=/usr \
+--libexecdir=lib \
+-Dqt=true \
+-Dvapi=true \
+-Dcompose=true
+  meson compile -C build
+}
+
+package_appstream() {
+  meson install --destdir "$pkgdir" -C build
+
+# provided by -qt subpackage
+  rm -r "$pkgdir"/usr/{include/AppStreamQt,lib/cmake,lib/libAppStreamQt.*}
+
+  install -Dm644 update-appstream-cache.hook 
"$pkgdir"/usr/share/libalpm/hooks/90-update-appstream-cache.hook
+}
+
+package_appstream-qt() {
+  pkgdesc='Qt5 interface for AppStream'
+  depends=(appstream qt5-base)
+
+  meson install --destdir "$pkgdir" -C build
+
+# provided by appstream
+  rm -r 
"$pkgdir"{/etc,/usr/{bin,include/appstream{,-compose},lib/{appstreamcli-compose,girepository-1.0,libappstream*,pkgconfig},share}}
+}

Deleted: update-appstream-cache.hook
===
--- update-appstream-cache.hook 2022-04-16 20:48:44 UTC (rev 442731)
+++ update-appstream-cache.hook 2022-04-16 20:48:56 UTC (rev 442732)
@@ -1,17 +0,0 @@
-[Trigger]
-Type = Path
-Operation = Install
-Operation = Upgrade
-Operation = Remove
-Target = usr/share/app-info/*
-
-[Trigger]
-Type = Package
-Operation = Install
-Operation = Upgrade
-Target = appstream
-

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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:48:44
  Author: arojas
Revision: 442731

Update to 0.15.3

Modified:
  appstream/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 20:44:31 UTC (rev 442730)
+++ PKGBUILD2022-04-16 20:48:44 UTC (rev 442731)
@@ -4,7 +4,7 @@
 
 pkgbase=appstream
 pkgname=(appstream appstream-qt)
-pkgver=0.15.2
+pkgver=0.15.3
 pkgrel=1
 pkgdesc='Provides a standard for creating app stores across distributions'
 arch=(x86_64)
@@ -14,7 +14,7 @@
 makedepends=(meson xmlto gobject-introspection gtk-doc qt5-tools itstool vala 
gperf)
 
source=(https://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz{,.asc}
 update-appstream-cache.hook)
-sha256sums=('8f6c1cd288c7c59f5bf21746a6cfd1424cd9d7cbeb0b7920dbcdf9ef10e9c74a'
+sha256sums=('3e676c3368aebe9618f394c58a7f0a6c73d1a15efd9ba2d230c229a959e8a25d'
 'SKIP'
 '3a96a1479cfd18dad36c2ca3181aabe46af9bf772c00b965d86ec5f55cd0e0eb')
 validpgpkeys=(D33A3F0CA16B0ACC51A60738494C8A5FBF4DECEB) # Matthias Klumpp 




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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:44:31
  Author: arojas
Revision: 442730

archrelease: copy trunk to extra-x86_64

Added:
  krita/repos/extra-x86_64/PKGBUILD
(from rev 442729, krita/trunk/PKGBUILD)
Deleted:
  krita/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 20:44:15 UTC (rev 442729)
+++ PKGBUILD2022-04-16 20:44:31 UTC (rev 442730)
@@ -1,36 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=krita
-_pkgver=5.0.2
-pkgver=${_pkgver/-/}
-pkgrel=3
-pkgdesc='Edit and paint images'
-arch=(x86_64)
-url='https://krita.org'
-license=(GPL3)
-depends=(kitemviews kitemmodels ki18n kcompletion kguiaddons kcrash qt5-svg 
qt5-multimedia quazip
- gsl libraw exiv2 openexr fftw openjpeg2 opencolorio libwebp 
hicolor-icon-theme)
-makedepends=(extra-cmake-modules kdoctools boost eigen vc poppler-qt5 
python-pyqt5 libheif
- qt5-tools sip kseexpr libmypaint)
-optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations'
-'python-pyqt5: for the Python plugins' 'libheif: HEIF filter'
-'kseexpr: SeExpr generator layer' 'kimageformats: PSD support' 
'libmypaint: support for MyPaint brushes'
-'krita-plugin-gmic: GMic plugin')
-source=(https://download.kde.org/stable/krita/$_pkgver/$pkgname-$_pkgver.tar.gz{,.sig})
-sha256sums=('e6751fc7eb504977a4880a376ebbd3995c87dad154486084e82397e65d499cbf'
-'SKIP')
-validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD'  # Boudewijn Rempt 

-  'E9FB29E74ADEACC5E3035B8AB69EB4CF7468332F'  # Dmitry Kazakov 
(main key) 
-  '064182440C674D9F8D0F6F8B4DA79EDA231C852B') # Stichting Krita 
Foundation 
-options=(debug)
-
-build() {
-  cmake -B build -S $pkgname-$_pkgver \
--DBUILD_TESTING=OFF \
--DBUILD_KRITA_QT_DESIGNER_PLUGINS=ON
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: krita/repos/extra-x86_64/PKGBUILD (from rev 442729, 
krita/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 20:44:31 UTC (rev 442730)
@@ -0,0 +1,36 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=krita
+_pkgver=5.0.5
+pkgver=${_pkgver/-/}
+pkgrel=1
+pkgdesc='Edit and paint images'
+arch=(x86_64)
+url='https://krita.org'
+license=(GPL3)
+depends=(kitemviews kitemmodels ki18n kcompletion kguiaddons kcrash qt5-svg 
qt5-multimedia quazip
+ gsl libraw exiv2 openexr fftw openjpeg2 opencolorio libwebp 
hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools boost eigen vc poppler-qt5 
python-pyqt5 libheif
+ qt5-tools sip kseexpr libmypaint)
+optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations'
+'python-pyqt5: for the Python plugins' 'libheif: HEIF filter'
+'kseexpr: SeExpr generator layer' 'kimageformats: PSD support' 
'libmypaint: support for MyPaint brushes'
+'krita-plugin-gmic: GMic plugin')
+source=(https://download.kde.org/stable/krita/$_pkgver/$pkgname-$_pkgver.tar.gz{,.sig})
+sha256sums=('162fff4596484e688655d4636373b1a77bcea39824c655b477afc1463aaf2dae'
+'SKIP')
+validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD'  # Boudewijn Rempt 

+  'E9FB29E74ADEACC5E3035B8AB69EB4CF7468332F'  # Dmitry Kazakov 
(main key) 
+  '064182440C674D9F8D0F6F8B4DA79EDA231C852B') # Stichting Krita 
Foundation 
+options=(debug)
+
+build() {
+  cmake -B build -S $pkgname-$_pkgver \
+-DBUILD_TESTING=OFF \
+-DBUILD_KRITA_QT_DESIGNER_PLUGINS=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:44:15
  Author: arojas
Revision: 442729

Update to 5.0.5

Modified:
  krita/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 20:13:47 UTC (rev 442728)
+++ PKGBUILD2022-04-16 20:44:15 UTC (rev 442729)
@@ -1,9 +1,9 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=krita
-_pkgver=5.0.2
+_pkgver=5.0.5
 pkgver=${_pkgver/-/}
-pkgrel=3
+pkgrel=1
 pkgdesc='Edit and paint images'
 arch=(x86_64)
 url='https://krita.org'
@@ -17,7 +17,7 @@
 'kseexpr: SeExpr generator layer' 'kimageformats: PSD support' 
'libmypaint: support for MyPaint brushes'
 'krita-plugin-gmic: GMic plugin')
 
source=(https://download.kde.org/stable/krita/$_pkgver/$pkgname-$_pkgver.tar.gz{,.sig})
-sha256sums=('e6751fc7eb504977a4880a376ebbd3995c87dad154486084e82397e65d499cbf'
+sha256sums=('162fff4596484e688655d4636373b1a77bcea39824c655b477afc1463aaf2dae'
 'SKIP')
 validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD'  # Boudewijn Rempt 

   'E9FB29E74ADEACC5E3035B8AB69EB4CF7468332F'  # Dmitry Kazakov 
(main key) 



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:21:44
  Author: arojas
Revision: 1186732

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 20:21:32 UTC (rev 1186731)
+++ PKGBUILD2022-04-16 20:21:44 UTC (rev 1186732)
@@ -1,38 +0,0 @@
-# Maintainer: Kyle Keen 
-
-pkgname=python-entrypoints
-_name=entrypoints
-pkgver=0.4
-pkgrel=1
-pkgdesc="Discover and load entry points from installed packages."
-arch=('any')
-url="https://github.com/takluyver/entrypoints;
-#url="https://pypi.python.org/pypi/entrypoints;
-license=('MIT')
-depends=('python')
-makedepends=('python')
-#makedepends=('python-pip')
-# several sources because the WHL doesn't come with a license
-# and pypi version is the only one with setup.py
-source=("$pkgname-$pkgver.tgz::https://github.com/takluyver/entrypoints/archive/$pkgver.tar.gz;
-
"https://files.pythonhosted.org/packages/py3/e/$_name/$_name-$pkgver-py3-none-any.whl;
-
"$pkgname-pypi-$pkgver.tgz::https://pypi.io/packages/source/e/$_name/$_name-$pkgver.tar.gz;)
-md5sums=('9d37abd7147c6b7e0af55adc95691062'
- '1c8f717951f0d2f0125739753eda6bdc'
- '3acd8b72119a8fb1eac7030c24ac6b49')
-
-package() {
-  cd "$srcdir"
-  # install is like this because of dist-info related bug report
-  # pip actually doesn't do much and is remarkably slow
-  #pip install --compile --no-deps --ignore-installed --root="$pkgdir" *.whl
-  install -Dm644 entrypoints.py 
"$pkgdir/usr/lib/python3.10/site-packages/entrypoints.py"
-  _dist="entrypoints-$pkgver.dist-info"
-  cd $_dist
-  for _i in ./*; do
-install -Dm644 $_i "$pkgdir/usr/lib/python3.10/site-packages/$_dist/$_i"
-  done
-
-  cd "$srcdir/entrypoints-$pkgver"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-entrypoints/repos/community-any/PKGBUILD (from rev 1186731, 
python-entrypoints/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 20:21:44 UTC (rev 1186732)
@@ -0,0 +1,32 @@
+# Maintainer: Kyle Keen 
+
+pkgname=python-entrypoints
+_name=entrypoints
+pkgver=0.4
+pkgrel=2
+pkgdesc="Discover and load entry points from installed packages."
+arch=('any')
+url="https://github.com/takluyver/entrypoints;
+license=('MIT')
+depends=('python')
+makedepends=('python-build' 'python-installer' 'python-flit-core')
+checkdepends=('python-pytest')
+source=(https://github.com/takluyver/entrypoints/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('d2197a94aa73e70a7f60600e654ac9918ca2a0ee5480eb875296c42220a02272')
+
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd $_name-$pkgver
+  pytest -v
+}
+
+package() {
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:21:32
  Author: arojas
Revision: 1186731

Rebuild, simplify, run tests, switch to PEP517

Modified:
  python-entrypoints/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 20:04:50 UTC (rev 1186730)
+++ PKGBUILD2022-04-16 20:21:32 UTC (rev 1186731)
@@ -3,36 +3,30 @@
 pkgname=python-entrypoints
 _name=entrypoints
 pkgver=0.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Discover and load entry points from installed packages."
 arch=('any')
 url="https://github.com/takluyver/entrypoints;
-#url="https://pypi.python.org/pypi/entrypoints;
 license=('MIT')
 depends=('python')
-makedepends=('python')
-#makedepends=('python-pip')
-# several sources because the WHL doesn't come with a license
-# and pypi version is the only one with setup.py
-source=("$pkgname-$pkgver.tgz::https://github.com/takluyver/entrypoints/archive/$pkgver.tar.gz;
-
"https://files.pythonhosted.org/packages/py3/e/$_name/$_name-$pkgver-py3-none-any.whl;
-
"$pkgname-pypi-$pkgver.tgz::https://pypi.io/packages/source/e/$_name/$_name-$pkgver.tar.gz;)
-md5sums=('9d37abd7147c6b7e0af55adc95691062'
- '1c8f717951f0d2f0125739753eda6bdc'
- '3acd8b72119a8fb1eac7030c24ac6b49')
+makedepends=('python-build' 'python-installer' 'python-flit-core')
+checkdepends=('python-pytest')
+source=(https://github.com/takluyver/entrypoints/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('d2197a94aa73e70a7f60600e654ac9918ca2a0ee5480eb875296c42220a02272')
 
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd $_name-$pkgver
+  pytest -v
+}
+
 package() {
-  cd "$srcdir"
-  # install is like this because of dist-info related bug report
-  # pip actually doesn't do much and is remarkably slow
-  #pip install --compile --no-deps --ignore-installed --root="$pkgdir" *.whl
-  install -Dm644 entrypoints.py 
"$pkgdir/usr/lib/python3.10/site-packages/entrypoints.py"
-  _dist="entrypoints-$pkgver.dist-info"
-  cd $_dist
-  for _i in ./*; do
-install -Dm644 $_i "$pkgdir/usr/lib/python3.10/site-packages/$_dist/$_i"
-  done
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
-  cd "$srcdir/entrypoints-$pkgver"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
 }



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

2022-04-16 Thread Christian Hesse via arch-commits
Date: Saturday, April 16, 2022 @ 20:13:47
  Author: eworm
Revision: 442728

archrelease: copy trunk to testing-x86_64

Added:
  libnl/repos/testing-x86_64/
  libnl/repos/testing-x86_64/PKGBUILD
(from rev 442727, libnl/trunk/PKGBUILD)

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

Copied: libnl/repos/testing-x86_64/PKGBUILD (from rev 442727, 
libnl/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-04-16 20:13:47 UTC (rev 442728)
@@ -0,0 +1,35 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Thomas Bächler 
+
+pkgname=libnl
+pkgver=3.6.0
+pkgrel=1
+pkgdesc='Library for applications dealing with netlink sockets'
+arch=('x86_64')
+url='https://github.com/thom311/libnl/'
+license=('GPL')
+depends=('glibc')
+backup=('etc/libnl/classid'
+' etc/libnl/pktloc')
+validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller
+source=("https://github.com/thom311/libnl/releases/download/libnl${pkgver//./_}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+sha256sums=('532155fd011e5a805bd67121b87a01c757e2bb24112ac17e69cb86013b970009'
+'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--disable-static
+  make
+}
+
+check() {
+  make -C $pkgname-$pkgver check
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}



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

2022-04-16 Thread Christian Hesse via arch-commits
Date: Saturday, April 16, 2022 @ 20:13:44
  Author: eworm
Revision: 442727

upgpkg: libnl 3.6.0-1: new upstream release

Modified:
  libnl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 20:13:23 UTC (rev 442726)
+++ PKGBUILD2022-04-16 20:13:44 UTC (rev 442727)
@@ -2,18 +2,19 @@
 # Contributor: Thomas Bächler 
 
 pkgname=libnl
-pkgver=3.5.0
-pkgrel=3
+pkgver=3.6.0
+pkgrel=1
 pkgdesc='Library for applications dealing with netlink sockets'
-arch=(x86_64)
+arch=('x86_64')
 url='https://github.com/thom311/libnl/'
-license=(GPL)
-depends=(glibc)
-backup=(etc/libnl/classid etc/libnl/pktloc)
-source=(https://github.com/thom311/libnl/releases/download/libnl${pkgver//./_}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('352133ec9545da76f77e70ccb48c9d7e5324d67f6474744647a7ed382b5e05fa'
+license=('GPL')
+depends=('glibc')
+backup=('etc/libnl/classid'
+' etc/libnl/pktloc')
+validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller
+source=("https://github.com/thom311/libnl/releases/download/libnl${pkgver//./_}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+sha256sums=('532155fd011e5a805bd67121b87a01c757e2bb24112ac17e69cb86013b970009'
 'SKIP')
-validpgpkeys=('49EA7C670E0850E7419514F629C2366E4DFC5728') # Thomas Haller
 
 build() {
   cd $pkgname-$pkgver



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

2022-04-16 Thread Christian Hesse via arch-commits
Date: Saturday, April 16, 2022 @ 20:13:23
  Author: eworm
Revision: 442726

archrelease: copy trunk to testing-x86_64

Added:
  rsync/repos/testing-x86_64/
  rsync/repos/testing-x86_64/PKGBUILD
(from rev 442725, rsync/trunk/PKGBUILD)
  rsync/repos/testing-x86_64/rsyncd.conf
(from rev 442725, rsync/trunk/rsyncd.conf)

-+
 PKGBUILD|   49 +
 rsyncd.conf |   10 ++
 2 files changed, 59 insertions(+)

Copied: rsync/repos/testing-x86_64/PKGBUILD (from rev 442725, 
rsync/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-04-16 20:13:23 UTC (rev 442726)
@@ -0,0 +1,49 @@
+# Maintainer: Christian Hesse 
+
+pkgname=rsync
+_tag='db2a0aed76cfedeb87179017167c29cc2ab7a1e8' # git rev-parse v${pkgver}
+pkgver=3.2.4
+pkgrel=1
+pkgdesc='A fast and versatile file copying tool for remote and local files'
+arch=('x86_64')
+url='https://rsync.samba.org/'
+license=('GPL3')
+depends=('acl' 'libacl.so' 'lz4' 'openssl' 'perl' 'popt' 'xxhash' 
'libxxhash.so'
+ 'zlib' 'zstd')
+makedepends=('git' 'python-commonmark')
+backup=('etc/rsyncd.conf'
+'etc/xinetd.d/rsync')
+validpgpkeys=('0048C8B026D4C96F0E589C2F6C859FB14B96A8C5') # Wayne Davison 

+source=("git+https://github.com/WayneD/rsync#tag=${_tag}?signed;
+'rsyncd.conf')
+sha256sums=('SKIP'
+'733ccb571721433c3a6262c58b658253ca6553bec79c2bdd0011810bb4f2156b')
+
+build() {
+   cd "$srcdir/rsync"
+
+   ./configure \
+   --prefix=/usr \
+   --disable-debug \
+   --with-included-popt=no \
+   --with-included-zlib=no
+   make
+}
+
+check() {
+   cd "$srcdir/rsync"
+
+   make test
+}
+
+package() {
+   cd "$srcdir/rsync"
+
+   make DESTDIR="$pkgdir" install
+   install -Dm0644 ../rsyncd.conf "$pkgdir/etc/rsyncd.conf"
+   install -Dm0644 packaging/lsb/rsync.xinetd "$pkgdir/etc/xinetd.d/rsync"
+   install -Dm0644 packaging/systemd/rsync.service 
"$pkgdir/usr/lib/systemd/system/rsyncd.service"
+   install -Dm0644 packaging/systemd/rsync.socket 
"$pkgdir/usr/lib/systemd/system/rsyncd.socket"
+   install -Dm0644 packaging/systemd/rsync@.service 
"$pkgdir/usr/lib/systemd/system/rsyncd@.service"
+   install -Dm0755 support/rrsync "$pkgdir/usr/lib/rsync/rrsync"
+}

Copied: rsync/repos/testing-x86_64/rsyncd.conf (from rev 442725, 
rsync/trunk/rsyncd.conf)
===
--- testing-x86_64/rsyncd.conf  (rev 0)
+++ testing-x86_64/rsyncd.conf  2022-04-16 20:13:23 UTC (rev 442726)
@@ -0,0 +1,10 @@
+uid = nobody
+gid = nobody
+use chroot = no
+max connections = 4
+syslog facility = local5
+pid file = /run/rsyncd.pid
+
+[ftp]
+path = /srv/ftp
+comment = ftp area



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

2022-04-16 Thread Christian Hesse via arch-commits
Date: Saturday, April 16, 2022 @ 20:13:14
  Author: eworm
Revision: 442725

upgpkg: rsync 3.2.4-1: new upstream release

Modified:
  rsync/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 20:06:49 UTC (rev 442724)
+++ PKGBUILD2022-04-16 20:13:14 UTC (rev 442725)
@@ -1,9 +1,9 @@
 # Maintainer: Christian Hesse 
 
 pkgname=rsync
-_tag='1a2d16c0bd161481cbf0acc06dceb1ce788f0d09' # git rev-parse v${pkgver}
-pkgver=3.2.3
-pkgrel=4
+_tag='db2a0aed76cfedeb87179017167c29cc2ab7a1e8' # git rev-parse v${pkgver}
+pkgver=3.2.4
+pkgrel=1
 pkgdesc='A fast and versatile file copying tool for remote and local files'
 arch=('x86_64')
 url='https://rsync.samba.org/'
@@ -19,22 +19,6 @@
 sha256sums=('SKIP'
 '733ccb571721433c3a6262c58b658253ca6553bec79c2bdd0011810bb4f2156b')
 
-prepare() {
-   cd "$srcdir/rsync"
-
-   # rsync-ssl: Verify the hostname in the certificate when using openssl.
-   git cherry-pick -n c3f7414c450faaf6a8281cc4a4403529aeb7d859
-
-   # Force HAVE_LCHMOD off for Linux (for now).
-   # Work around glibc's lchmod() issue a better way.
-   git cherry-pick -n \
-   85b8dc8abaca96fc3ea7421e09101b6ac41b6718 \
-   9dd62525f3b98d692e031f22c02be8f775966503
-
-   # Add test and fix regression for --delay-updates (#192) (#204)
-   git cherry-pick -n efc81c93a9fca45ba08119145a2d282f477f01b4
-}
-
 build() {
cd "$srcdir/rsync"
 



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:06:49
  Author: arojas
Revision: 442724

archrelease: copy trunk to extra-x86_64

Added:
  kwayland/repos/extra-x86_64/PKGBUILD
(from rev 442723, kwayland/trunk/PKGBUILD)
Deleted:
  kwayland/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 20:06:39 UTC (rev 442723)
+++ PKGBUILD2022-04-16 20:06:49 UTC (rev 442724)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kwayland
-pkgver=5.93.0
-pkgrel=1
-pkgdesc='Qt-style Client and Server library wrapper for the Wayland libraries'
-arch=(x86_64)
-url='https://www.kde.org'
-license=(LGPL)
-depends=(qt5-wayland)
-makedepends=(extra-cmake-modules doxygen qt5-tools qt5-doc wayland-protocols 
plasma-wayland-protocols)
-groups=(kf5)
-source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('1648a273ad1c0c1895a0edff9a3e97eb151e1e3533362e0f01d72706ac0a7abe'
-'SKIP')
-validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

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

Copied: kwayland/repos/extra-x86_64/PKGBUILD (from rev 442723, 
kwayland/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 20:06:49 UTC (rev 442724)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kwayland
+pkgver=5.93.0
+pkgrel=2
+pkgdesc='Qt-style Client and Server library wrapper for the Wayland libraries'
+arch=(x86_64)
+url='https://www.kde.org'
+license=(LGPL)
+depends=(qt5-wayland)
+makedepends=(extra-cmake-modules doxygen qt5-tools qt5-doc wayland-protocols 
plasma-wayland-protocols)
+groups=(kf5)
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}
+https://invent.kde.org/frameworks/kwayland/-/commit/9e70125d.patch)
+sha256sums=('1648a273ad1c0c1895a0edff9a3e97eb151e1e3533362e0f01d72706ac0a7abe'
+'SKIP'
+'a4099ee6a6b4cdb9b2303f087460c90816bc4b26b66b67896bfb786d04af743f')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+options=(debug)
+
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < 9e70125d.patch # Fix pkgconfig file
+}
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:06:39
  Author: arojas
Revision: 442723

Fix pkgconfig file

Modified:
  kwayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 20:02:28 UTC (rev 442722)
+++ PKGBUILD2022-04-16 20:06:39 UTC (rev 442723)
@@ -4,7 +4,7 @@
 
 pkgname=kwayland
 pkgver=5.93.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Qt-style Client and Server library wrapper for the Wayland libraries'
 arch=(x86_64)
 url='https://www.kde.org'
@@ -12,12 +12,18 @@
 depends=(qt5-wayland)
 makedepends=(extra-cmake-modules doxygen qt5-tools qt5-doc wayland-protocols 
plasma-wayland-protocols)
 groups=(kf5)
-source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}
+https://invent.kde.org/frameworks/kwayland/-/commit/9e70125d.patch)
 sha256sums=('1648a273ad1c0c1895a0edff9a3e97eb151e1e3533362e0f01d72706ac0a7abe'
-'SKIP')
+'SKIP'
+'a4099ee6a6b4cdb9b2303f087460c90816bc4b26b66b67896bfb786d04af743f')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

 options=(debug)
 
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < 9e70125d.patch # Fix pkgconfig file
+}
+
 build() {
   cmake -B build -S $pkgname-$pkgver \
 -DCMAKE_INSTALL_LIBEXECDIR=lib \



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

2022-04-16 Thread David Runge via arch-commits
Date: Saturday, April 16, 2022 @ 20:04:50
  Author: dvzrv
Revision: 1186730

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 20:04:40 UTC (rev 1186729)
+++ PKGBUILD2022-04-16 20:04:50 UTC (rev 1186730)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-cerberus
-pkgver=1.3.4
-pkgrel=3
-pkgdesc="Lightweight, extensible schema and data validation tool for Python 
dictionaries"
-url="https://github.com/pyeve/cerberus;
-license=('ISC')
-arch=('any')
-depends=('python')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'python-pytest-benchmark')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pyeve/cerberus/archive/$pkgver.tar.gz;)
-sha512sums=('c816b426ed1b32367d1e8f1c26d6ddd4b49c6578540e688baf693e3094a05800f645cfe879be6378c1e9be9899cad7bc2ad1ed9844d6762d2ef6e0cc54a7476a')
-
-build() {
-  cd cerberus-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd cerberus-$pkgver
-  python setup.py pytest --addopts cerberus
-}
-
-package() {
-  cd cerberus-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: python-cerberus/repos/community-any/PKGBUILD (from rev 1186729, 
python-cerberus/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 20:04:50 UTC (rev 1186730)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-cerberus
+pkgver=1.3.4
+pkgrel=4
+pkgdesc="Lightweight, extensible schema and data validation tool for Python 
dictionaries"
+url="https://github.com/pyeve/cerberus;
+license=('ISC')
+arch=('any')
+depends=('python-setuptools')
+makedepends=('python-build' 'python-installer' 'python-wheel')
+checkdepends=('python-pytest-runner' 'python-pytest-benchmark')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pyeve/cerberus/archive/$pkgver.tar.gz;)
+sha512sums=('c816b426ed1b32367d1e8f1c26d6ddd4b49c6578540e688baf693e3094a05800f645cfe879be6378c1e9be9899cad7bc2ad1ed9844d6762d2ef6e0cc54a7476a')
+
+build() {
+  cd cerberus-$pkgver
+  python -m build --wheel --no-isolation
+  # NOTE: remove build dir as pytest otherwise chokes on duplicate imports
+  rm -frv build
+}
+
+check() {
+  cd cerberus-$pkgver
+  pytest -vv
+}
+
+package() {
+  cd cerberus-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2022-04-16 Thread David Runge via arch-commits
Date: Saturday, April 16, 2022 @ 20:04:40
  Author: dvzrv
Revision: 1186729

upgpkg: python-cerberus 1.3.4-4: Rebuild to add python-setuptools to depends.

As cerberus uses pkg_resources it requires python-setuptools.
Switch to PEP517.
Simplify call to pytest and do not use legacy way via setup.py.

Modified:
  python-cerberus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 19:50:28 UTC (rev 1186728)
+++ PKGBUILD2022-04-16 20:04:40 UTC (rev 1186729)
@@ -2,13 +2,13 @@
 
 pkgname=python-cerberus
 pkgver=1.3.4
-pkgrel=3
+pkgrel=4
 pkgdesc="Lightweight, extensible schema and data validation tool for Python 
dictionaries"
 url="https://github.com/pyeve/cerberus;
 license=('ISC')
 arch=('any')
-depends=('python')
-makedepends=('python-setuptools')
+depends=('python-setuptools')
+makedepends=('python-build' 'python-installer' 'python-wheel')
 checkdepends=('python-pytest-runner' 'python-pytest-benchmark')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/pyeve/cerberus/archive/$pkgver.tar.gz;)
 
sha512sums=('c816b426ed1b32367d1e8f1c26d6ddd4b49c6578540e688baf693e3094a05800f645cfe879be6378c1e9be9899cad7bc2ad1ed9844d6762d2ef6e0cc54a7476a')
@@ -15,17 +15,19 @@
 
 build() {
   cd cerberus-$pkgver
-  python setup.py build
+  python -m build --wheel --no-isolation
+  # NOTE: remove build dir as pytest otherwise chokes on duplicate imports
+  rm -frv build
 }
 
 check() {
   cd cerberus-$pkgver
-  python setup.py pytest --addopts cerberus
+  pytest -vv
 }
 
 package() {
   cd cerberus-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
+  python -m installer --destdir="$pkgdir" dist/*.whl
 
   install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
 }



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:02:28
  Author: arojas
Revision: 442722

archrelease: copy trunk to extra-x86_64

Added:
  plasma-framework/repos/extra-x86_64/PKGBUILD
(from rev 442721, plasma-framework/trunk/PKGBUILD)
Deleted:
  plasma-framework/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 20:02:18 UTC (rev 442721)
+++ PKGBUILD2022-04-16 20:02:28 UTC (rev 442722)
@@ -1,30 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=plasma-framework
-pkgver=5.93.0
-pkgrel=1
-pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
-arch=(x86_64)
-url='https://community.kde.org/Frameworks'
-license=(LGPL)
-depends=(kactivities kdeclarative kwayland kirigami2)
-makedepends=(extra-cmake-modules qt5-tools qt5-doc kdoctools doxygen)
-groups=(kf5)
-source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
-sha256sums=('d4a2c687ea2ea8dfe7c256eb58441fc458102ed4b445dc24685513dd96b5c322'
-'SKIP')
-validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

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

Copied: plasma-framework/repos/extra-x86_64/PKGBUILD (from rev 442721, 
plasma-framework/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 20:02:28 UTC (rev 442722)
@@ -0,0 +1,36 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=plasma-framework
+pkgver=5.93.0
+pkgrel=2
+pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kactivities kdeclarative kwayland kirigami2)
+makedepends=(extra-cmake-modules qt5-tools qt5-doc kdoctools doxygen)
+groups=(kf5)
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}
+
https://invent.kde.org/frameworks/plasma-framework/-/commit/b62d83be.patch)
+sha256sums=('d4a2c687ea2ea8dfe7c256eb58441fc458102ed4b445dc24685513dd96b5c322'
+'SKIP'
+'441555e3bda01c0f6d13985df8b033df7661b1410817b85a18e595250369b68e')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

+options=(debug)
+
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < b62d83be.patch # Fix plasmoid sizes
+}
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DBUILD_TESTING=OFF \
+-DBUILD_QCH=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 20:02:18
  Author: arojas
Revision: 442721

Fix plasmoid sizes

Modified:
  plasma-framework/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 19:58:22 UTC (rev 442720)
+++ PKGBUILD2022-04-16 20:02:18 UTC (rev 442721)
@@ -4,7 +4,7 @@
 
 pkgname=plasma-framework
 pkgver=5.93.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'
@@ -12,12 +12,18 @@
 depends=(kactivities kdeclarative kwayland kirigami2)
 makedepends=(extra-cmake-modules qt5-tools qt5-doc kdoctools doxygen)
 groups=(kf5)
-source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}
+
https://invent.kde.org/frameworks/plasma-framework/-/commit/b62d83be.patch)
 sha256sums=('d4a2c687ea2ea8dfe7c256eb58441fc458102ed4b445dc24685513dd96b5c322'
-'SKIP')
+'SKIP'
+'441555e3bda01c0f6d13985df8b033df7661b1410817b85a18e595250369b68e')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure 

 options=(debug)
 
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < b62d83be.patch # Fix plasmoid sizes
+}
+
 build() {
   cmake -B build -S $pkgname-$pkgver \
 -DBUILD_TESTING=OFF \



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 19:58:22
  Author: arojas
Revision: 442720

archrelease: copy trunk to extra-x86_64

Added:
  qt5-wayland/repos/extra-x86_64/PKGBUILD
(from rev 442719, qt5-wayland/trunk/PKGBUILD)
Deleted:
  qt5-wayland/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 19:58:03 UTC (rev 442719)
+++ PKGBUILD2022-04-16 19:58:22 UTC (rev 442720)
@@ -1,48 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgname=qt5-wayland
-_basever=5.15.3
-pkgver=5.15.3+kde+r41
-pkgrel=1
-_commit=a06fde8dae162166435833fca7844e2695e8480b
-arch=('x86_64')
-url='https://www.qt.io'
-license=('GPL3' 'LGPL3' 'FDL' 'custom')
-pkgdesc='Provides APIs for Wayland'
-depends=('qt5-declarative' 'libxcomposite')
-makedepends=('vulkan-headers' 'git')
-groups=('qt' 'qt5')
-_pkgfqn=${pkgname/5-/}
-source=(git+https://invent.kde.org/qt/qt/$_pkgfqn#commit=$_commit)
-sha256sums=('SKIP')
-options=(debug)
-
-pkgver() {
-  cd $_pkgfqn
-  echo "$_basever+kde+r"`git rev-list --count v$_basever-lts-lgpl..$_commit`
-}
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  qmake ../${_pkgfqn}
-  make
-}
-
-package() {
-  cd build
-
-  make INSTALL_ROOT="$pkgdir" install
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "$pkgdir/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  install -d "$pkgdir"/usr/share/licenses
-  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
-}

Copied: qt5-wayland/repos/extra-x86_64/PKGBUILD (from rev 442719, 
qt5-wayland/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 19:58:22 UTC (rev 442720)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt5-wayland
+_basever=5.15.3
+pkgver=5.15.3+kde+r44
+pkgrel=1
+_commit=398040301e439cc20bcd537bad7095d7eb6f285a
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides APIs for Wayland'
+depends=('qt5-declarative' 'libxcomposite')
+makedepends=('vulkan-headers' 'git')
+groups=('qt' 'qt5')
+_pkgfqn=${pkgname/5-/}
+source=(git+https://invent.kde.org/qt/qt/$_pkgfqn#commit=$_commit)
+sha256sums=('SKIP')
+options=(debug)
+
+pkgver() {
+  cd $_pkgfqn
+  echo "$_basever+kde+r"`git rev-list --count v$_basever-lts-lgpl..$_commit`
+}
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  qmake ../${_pkgfqn}
+  make
+}
+
+package() {
+  cd build
+
+  make INSTALL_ROOT="$pkgdir" install
+
+  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
+  find "$pkgdir/usr/lib" -type f -name '*.prl' \
+-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
+}



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

2022-04-16 Thread Antonio Rojas via arch-commits
Date: Saturday, April 16, 2022 @ 19:58:03
  Author: arojas
Revision: 442719

Bump revision

Modified:
  qt5-wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 12:22:01 UTC (rev 442718)
+++ PKGBUILD2022-04-16 19:58:03 UTC (rev 442719)
@@ -3,9 +3,9 @@
 
 pkgname=qt5-wayland
 _basever=5.15.3
-pkgver=5.15.3+kde+r41
+pkgver=5.15.3+kde+r44
 pkgrel=1
-_commit=a06fde8dae162166435833fca7844e2695e8480b
+_commit=398040301e439cc20bcd537bad7095d7eb6f285a
 arch=('x86_64')
 url='https://www.qt.io'
 license=('GPL3' 'LGPL3' 'FDL' 'custom')



[arch-commits] Commit in intel-compute-runtime/repos/community-x86_64 (2 files)

2022-04-16 Thread Bruno Pagani via arch-commits
Date: Saturday, April 16, 2022 @ 19:50:28
  Author: archange
Revision: 1186728

archrelease: copy trunk to community-x86_64

Added:
  intel-compute-runtime/repos/community-x86_64/PKGBUILD
(from rev 1186727, intel-compute-runtime/trunk/PKGBUILD)
Deleted:
  intel-compute-runtime/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 19:50:01 UTC (rev 1186727)
+++ PKGBUILD2022-04-16 19:50:28 UTC (rev 1186728)
@@ -1,42 +0,0 @@
-# Maintainer: Daniel Bermond 
-# Maintainer: Bruno Pagani 
-
-pkgname=intel-compute-runtime
-pkgver=22.14.22890
-pkgrel=1
-pkgdesc="Intel(R) Graphics Compute Runtime for oneAPI Level Zero and 
OpenCL(TM) Driver"
-arch=(x86_64)
-url="https://01.org/compute-runtime;
-license=(MIT)
-depends=(gcc-libs intel-gmmlib intel-graphics-compiler)
-makedepends=(cmake libva level-zero-headers igsc)
-optdepends=('libva: for cl_intel_va_api_media_sharing'
-'libdrm: for cl_intel_va_api_media_sharing')
-provides=(opencl-driver level-zero-driver)
-# https://github.com/intel/compute-runtime/issues/528
-options=(!lto)
-source=(https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('16a0fab74f6732c63cf8f666d40db5bbeecfaaf73061f69fd608a7f058ba1738')
-
-build() {
-  # ${${pkgver#*.}%.*} not supported by bash?
-  cmake -B build -S compute-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DNEO_OCL_VERSION_MAJOR=${pkgver%%.*} \
--DNEO_OCL_VERSION_MINOR=$(echo ${pkgver} | cut -d . -f2) \
--DNEO_VERSION_BUILD=${pkgver##*.} \
--DSUPPORT_DG1=ON \
--DSKIP_UNIT_TESTS=1 \
--Wno-dev
-  make -C build
-}
-
-package() {
-  make -C build DESTDIR="${pkgdir}" install
-  install -Dm755 build/bin/libocloc.so -t "${pkgdir}"/usr/lib/intel-opencl
-  install -Dm644 compute-runtime-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
-  
-  ln -s $(find "${pkgdir}"/usr/lib -regex '.*libze_intel_gpu.so.[0-9]*' -exec 
basename {} \;) "${pkgdir}"/usr/lib/libze_intel_gpu.so
-}

Copied: intel-compute-runtime/repos/community-x86_64/PKGBUILD (from rev 
1186727, intel-compute-runtime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 19:50:28 UTC (rev 1186728)
@@ -0,0 +1,42 @@
+# Maintainer: Daniel Bermond 
+# Maintainer: Bruno Pagani 
+
+pkgname=intel-compute-runtime
+pkgver=22.15.22905
+pkgrel=1
+pkgdesc="Intel(R) Graphics Compute Runtime for oneAPI Level Zero and 
OpenCL(TM) Driver"
+arch=(x86_64)
+url="https://01.org/compute-runtime;
+license=(MIT)
+depends=(gcc-libs intel-gmmlib intel-graphics-compiler)
+makedepends=(cmake libva level-zero-headers igsc)
+optdepends=('libva: for cl_intel_va_api_media_sharing'
+'libdrm: for cl_intel_va_api_media_sharing')
+provides=(opencl-driver level-zero-driver)
+# https://github.com/intel/compute-runtime/issues/528
+options=(!lto)
+source=(https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('a42ad82d6097a2c4c927cc9682bd0b7157b0995be0929048152cfcf66a30b5ea')
+
+build() {
+  # ${${pkgver#*.}%.*} not supported by bash?
+  cmake -B build -S compute-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DNEO_OCL_VERSION_MAJOR=${pkgver%%.*} \
+-DNEO_OCL_VERSION_MINOR=$(echo ${pkgver} | cut -d . -f2) \
+-DNEO_VERSION_BUILD=${pkgver##*.} \
+-DSUPPORT_DG1=ON \
+-DSKIP_UNIT_TESTS=1 \
+-Wno-dev
+  make -C build
+}
+
+package() {
+  make -C build DESTDIR="${pkgdir}" install
+  install -Dm755 build/bin/libocloc.so -t "${pkgdir}"/usr/lib/intel-opencl
+  install -Dm644 compute-runtime-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
+  
+  ln -s $(find "${pkgdir}"/usr/lib -regex '.*libze_intel_gpu.so.[0-9]*' -exec 
basename {} \;) "${pkgdir}"/usr/lib/libze_intel_gpu.so
+}



[arch-commits] Commit in intel-compute-runtime/trunk (PKGBUILD)

2022-04-16 Thread Bruno Pagani via arch-commits
Date: Saturday, April 16, 2022 @ 19:50:01
  Author: archange
Revision: 1186727

upgpkg: intel-compute-runtime 22.15.22905-1

Modified:
  intel-compute-runtime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 19:41:34 UTC (rev 1186726)
+++ PKGBUILD2022-04-16 19:50:01 UTC (rev 1186727)
@@ -2,7 +2,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=intel-compute-runtime
-pkgver=22.14.22890
+pkgver=22.15.22905
 pkgrel=1
 pkgdesc="Intel(R) Graphics Compute Runtime for oneAPI Level Zero and 
OpenCL(TM) Driver"
 arch=(x86_64)
@@ -16,7 +16,7 @@
 # https://github.com/intel/compute-runtime/issues/528
 options=(!lto)
 
source=(https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('16a0fab74f6732c63cf8f666d40db5bbeecfaaf73061f69fd608a7f058ba1738')
+sha256sums=('a42ad82d6097a2c4c927cc9682bd0b7157b0995be0929048152cfcf66a30b5ea')
 
 build() {
   # ${${pkgver#*.}%.*} not supported by bash?



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

2022-04-16 Thread Bruno Pagani via arch-commits
Date: Saturday, April 16, 2022 @ 19:41:34
  Author: archange
Revision: 1186726

archrelease: copy trunk to community-any

Added:
  python-lsp-black/repos/community-any/PKGBUILD
(from rev 1186725, python-lsp-black/trunk/PKGBUILD)
Deleted:
  python-lsp-black/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 19:41:09 UTC (rev 1186725)
+++ PKGBUILD2022-04-16 19:41:34 UTC (rev 1186726)
@@ -1,32 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=python-lsp-black
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="python-lsp-server plugin that adds support to black autoformatter, 
forked from pyls-black"
-arch=(any)
-url="https://github.com/python-lsp/python-lsp-black;
-license=(MIT)
-depends=(python-black python-lsp-server python-toml)
-makedepends=(python-setuptools)
-checkdepends=(python-pytest)
-source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('2eac50f70397d1abea33f7ba53122d41cf2b50633132648243775bd03b3d76c6')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  python -m venv --system-site-packages test-env
-  test-env/bin/python setup.py install --skip-build
-  test-env/bin/python -m pytest -vv --color=yes tests
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  python setup.py install --root=${pkgdir} --optimize=1 --skip-build
-  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: python-lsp-black/repos/community-any/PKGBUILD (from rev 1186725, 
python-lsp-black/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 19:41:34 UTC (rev 1186726)
@@ -0,0 +1,32 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=python-lsp-black
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="python-lsp-server plugin that adds support to black autoformatter, 
forked from pyls-black"
+arch=(any)
+url="https://github.com/python-lsp/python-lsp-black;
+license=(MIT)
+depends=(python-black python-lsp-server python-toml)
+makedepends=(python-setuptools)
+checkdepends=(python-pytest)
+source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('1df12c5d3f6407040dd0020a918ed98b20c1ba68720e662f7c8044ed15f87186')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  python -m venv --system-site-packages test-env
+  test-env/bin/python setup.py install --skip-build
+  test-env/bin/python -m pytest -vv --color=yes tests
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  python setup.py install --root=${pkgdir} --optimize=1 --skip-build
+  install -Dm644 LICENSE -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}



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

2022-04-16 Thread Bruno Pagani via arch-commits
Date: Saturday, April 16, 2022 @ 19:41:09
  Author: archange
Revision: 1186725

upgpkg: python-lsp-black 1.2.1-1

Modified:
  python-lsp-black/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 19:40:24 UTC (rev 1186724)
+++ PKGBUILD2022-04-16 19:41:09 UTC (rev 1186725)
@@ -1,7 +1,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=python-lsp-black
-pkgver=1.2.0
+pkgver=1.2.1
 pkgrel=1
 pkgdesc="python-lsp-server plugin that adds support to black autoformatter, 
forked from pyls-black"
 arch=(any)
@@ -11,7 +11,7 @@
 makedepends=(python-setuptools)
 checkdepends=(python-pytest)
 source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('2eac50f70397d1abea33f7ba53122d41cf2b50633132648243775bd03b3d76c6')
+sha256sums=('1df12c5d3f6407040dd0020a918ed98b20c1ba68720e662f7c8044ed15f87186')
 
 build() {
   cd ${pkgname}-${pkgver}



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

2022-04-16 Thread Bruno Pagani via arch-commits
Date: Saturday, April 16, 2022 @ 19:40:24
  Author: archange
Revision: 1186724

archrelease: copy trunk to community-x86_64

Added:
  libfabric/repos/community-x86_64/PKGBUILD
(from rev 1186723, libfabric/trunk/PKGBUILD)
Deleted:
  libfabric/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 19:39:58 UTC (rev 1186723)
+++ PKGBUILD2022-04-16 19:40:24 UTC (rev 1186724)
@@ -1,34 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-pkgname=libfabric
-pkgver=1.14.0
-pkgrel=1
-pkgdesc="User-space API for OpenFabrics Interfaces (OFI)"
-arch=(x86_64)
-url="https://ofiwg.github.io/libfabric/;
-license=(GPL2)
-depends=(glibc)
-source=(https://github.com/ofiwg/libfabric/releases/download/v${pkgver}/libfabric-${pkgver}.tar.bz2)
-sha512sums=('827fee42bdae1b226d2b3c3b7c2b9b29866791c7a8e9a20239459e6c5a2927d8674367bb075cfe00cc609f538c4630e3af9f566b89d00e337ae224c725cf5f85')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  autoreconf -fvi
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make test
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: libfabric/repos/community-x86_64/PKGBUILD (from rev 1186723, 
libfabric/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 19:40:24 UTC (rev 1186724)
@@ -0,0 +1,34 @@
+# Maintainer: Bruno Pagani 
+
+pkgname=libfabric
+pkgver=1.14.1
+pkgrel=1
+pkgdesc="User-space API for OpenFabrics Interfaces (OFI)"
+arch=(x86_64)
+url="https://ofiwg.github.io/libfabric/;
+license=(GPL2)
+depends=(glibc gcc-libs)
+source=(https://github.com/ofiwg/libfabric/releases/download/v${pkgver}/libfabric-${pkgver}.tar.bz2)
+sha512sums=('6ce2863b4dee58648a0aa1108c0f41ea6fc7d610686c3e66d7c3b75d8aa2ee019786a3843ebf652fe31f9945300d32a6b56f447c957abb49d6f7a8a567a39167')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  autoreconf -fvi
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make test
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}



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

2022-04-16 Thread Bruno Pagani via arch-commits
Date: Saturday, April 16, 2022 @ 19:39:58
  Author: archange
Revision: 1186723

upgpkg: libfabric 1.14.1-1

Modified:
  libfabric/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 19:36:39 UTC (rev 1186722)
+++ PKGBUILD2022-04-16 19:39:58 UTC (rev 1186723)
@@ -1,15 +1,15 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=libfabric
-pkgver=1.14.0
+pkgver=1.14.1
 pkgrel=1
 pkgdesc="User-space API for OpenFabrics Interfaces (OFI)"
 arch=(x86_64)
 url="https://ofiwg.github.io/libfabric/;
 license=(GPL2)
-depends=(glibc)
+depends=(glibc gcc-libs)
 
source=(https://github.com/ofiwg/libfabric/releases/download/v${pkgver}/libfabric-${pkgver}.tar.bz2)
-sha512sums=('827fee42bdae1b226d2b3c3b7c2b9b29866791c7a8e9a20239459e6c5a2927d8674367bb075cfe00cc609f538c4630e3af9f566b89d00e337ae224c725cf5f85')
+sha512sums=('6ce2863b4dee58648a0aa1108c0f41ea6fc7d610686c3e66d7c3b75d8aa2ee019786a3843ebf652fe31f9945300d32a6b56f447c957abb49d6f7a8a567a39167')
 
 prepare() {
   cd ${pkgname}-${pkgver}



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

2022-04-16 Thread Bruno Pagani via arch-commits
Date: Saturday, April 16, 2022 @ 19:36:39
  Author: archange
Revision: 1186722

archrelease: copy trunk to community-x86_64

Added:
  pdfpc/repos/community-x86_64/PKGBUILD
(from rev 1186721, pdfpc/trunk/PKGBUILD)
Deleted:
  pdfpc/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 19:36:12 UTC (rev 1186721)
+++ PKGBUILD2022-04-16 19:36:39 UTC (rev 1186722)
@@ -1,36 +0,0 @@
-# Maintainer: Jiachen Yang 
-# Contributor: Andreas Bilke 
-
-pkgname=pdfpc
-pkgver=4.5.0
-_pkgver=${pkgver}
-pkgrel=1
-pkgdesc='A presenter console with multi-monitor support for PDF files'
-arch=('x86_64')
-url='https://pdfpc.github.io/'
-license=('GPL')
-depends=('gtk3' 'poppler-glib' 'libgee' 'gstreamer' 'gst-plugins-base' 
'webkit2gtk' 'discount')
-optdepends=('gst-plugin-gtk: for video playback'
-'gst-plugins-good: more codecs for video playback support'
-'gst-libav: more codecs for video playback support')
-makedepends=('cmake' 'vala')
-source=("$pkgname-$_pkgver.tar.gz::https://github.com/pdfpc/pdfpc/archive/v$_pkgver.tar.gz;)
-
-sha256sums=('e53ede1576da55403bba23671df5b946c756ec83ba30fbeb0cb7302f28b54a64')
-
-#prepare() {
-#cd "$srcdir/$pkgname-$_pkgver"
-#}
-
-build() {
-cd "$srcdir/$pkgname-$_pkgver"
-cmake -DCMAKE_INSTALL_PREFIX="/usr/" -DSYSCONFDIR="/etc" .
-make
-}
-
-package() {
-cd "$srcdir/$pkgname-$_pkgver"
-make DESTDIR="$pkgdir/" install
-}
-
-# vim:set ts=4 sw=4 et:

Copied: pdfpc/repos/community-x86_64/PKGBUILD (from rev 1186721, 
pdfpc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-16 19:36:39 UTC (rev 1186722)
@@ -0,0 +1,35 @@
+# Maintainer: Jiachen Yang 
+# Maintainer: Bruno Pagani 
+# Contributor: Andreas Bilke 
+
+pkgname=pdfpc
+pkgver=4.5.0
+_pkgver=${pkgver}
+pkgrel=2
+pkgdesc="Presenter console with multi-monitor support for PDF files"
+arch=(x86_64)
+url="https://pdfpc.github.io/;
+license=(GPL)
+depends=(gtk3 poppler-glib libgee gstreamer gst-plugins-base webkit2gtk 
discount)
+optdepends=('gst-plugin-gtk: for video playback'
+'gst-plugins-good: more codecs for video playback support'
+'gst-libav: more codecs for video playback support')
+makedepends=(cmake vala)
+source=(https://github.com/pdfpc/pdfpc/archive/v$_pkgver/$pkgname-$_pkgver.tar.gz)
+sha256sums=('e53ede1576da55403bba23671df5b946c756ec83ba30fbeb0cb7302f28b54a64')
+
+#prepare() {
+#cd $pkgname-$_pkgver
+#}
+
+build() {
+cmake -B build -S $pkgname-$_pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr
+make -C build
+}
+
+package() {
+make -C build DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=4 sw=4 et:



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

2022-04-16 Thread Bruno Pagani via arch-commits
Date: Saturday, April 16, 2022 @ 19:36:12
  Author: archange
Revision: 1186721

Signing rebuild + PKGBUILD linting

Modified:
  pdfpc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 15:52:28 UTC (rev 1186720)
+++ PKGBUILD2022-04-16 19:36:12 UTC (rev 1186721)
@@ -1,36 +1,35 @@
 # Maintainer: Jiachen Yang 
+# Maintainer: Bruno Pagani 
 # Contributor: Andreas Bilke 
 
 pkgname=pdfpc
 pkgver=4.5.0
 _pkgver=${pkgver}
-pkgrel=1
-pkgdesc='A presenter console with multi-monitor support for PDF files'
-arch=('x86_64')
-url='https://pdfpc.github.io/'
-license=('GPL')
-depends=('gtk3' 'poppler-glib' 'libgee' 'gstreamer' 'gst-plugins-base' 
'webkit2gtk' 'discount')
+pkgrel=2
+pkgdesc="Presenter console with multi-monitor support for PDF files"
+arch=(x86_64)
+url="https://pdfpc.github.io/;
+license=(GPL)
+depends=(gtk3 poppler-glib libgee gstreamer gst-plugins-base webkit2gtk 
discount)
 optdepends=('gst-plugin-gtk: for video playback'
 'gst-plugins-good: more codecs for video playback support'
 'gst-libav: more codecs for video playback support')
-makedepends=('cmake' 'vala')
-source=("$pkgname-$_pkgver.tar.gz::https://github.com/pdfpc/pdfpc/archive/v$_pkgver.tar.gz;)
-
+makedepends=(cmake vala)
+source=(https://github.com/pdfpc/pdfpc/archive/v$_pkgver/$pkgname-$_pkgver.tar.gz)
 sha256sums=('e53ede1576da55403bba23671df5b946c756ec83ba30fbeb0cb7302f28b54a64')
 
 #prepare() {
-#cd "$srcdir/$pkgname-$_pkgver"
+#cd $pkgname-$_pkgver
 #}
 
 build() {
-cd "$srcdir/$pkgname-$_pkgver"
-cmake -DCMAKE_INSTALL_PREFIX="/usr/" -DSYSCONFDIR="/etc" .
-make
+cmake -B build -S $pkgname-$_pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr
+make -C build
 }
 
 package() {
-cd "$srcdir/$pkgname-$_pkgver"
-make DESTDIR="$pkgdir/" install
+make -C build DESTDIR="$pkgdir" install
 }
 
 # vim:set ts=4 sw=4 et:



[arch-commits] Commit in squid/repos/community-x86_64 (12 files)

2022-04-16 Thread Sergej Pupykin via arch-commits
Date: Saturday, April 16, 2022 @ 15:52:28
  Author: spupykin
Revision: 1186720

archrelease: copy trunk to community-x86_64

Added:
  squid/repos/community-x86_64/PKGBUILD
(from rev 1186719, squid/trunk/PKGBUILD)
  squid/repos/community-x86_64/squid-rotate.service
(from rev 1186719, squid/trunk/squid-rotate.service)
  squid/repos/community-x86_64/squid-rotate.timer
(from rev 1186719, squid/trunk/squid-rotate.timer)
  squid/repos/community-x86_64/squid.pam
(from rev 1186719, squid/trunk/squid.pam)
  squid/repos/community-x86_64/squid.sysusers
(from rev 1186719, squid/trunk/squid.sysusers)
  squid/repos/community-x86_64/squid.tmpfiles
(from rev 1186719, squid/trunk/squid.tmpfiles)
Deleted:
  squid/repos/community-x86_64/PKGBUILD
  squid/repos/community-x86_64/squid-rotate.service
  squid/repos/community-x86_64/squid-rotate.timer
  squid/repos/community-x86_64/squid.pam
  squid/repos/community-x86_64/squid.sysusers
  squid/repos/community-x86_64/squid.tmpfiles

--+
 PKGBUILD |  220 -
 squid-rotate.service |   18 ++--
 squid-rotate.timer   |   20 ++--
 squid.pam|8 -
 squid.sysusers   |2 
 squid.tmpfiles   |6 -
 6 files changed, 137 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-16 15:52:13 UTC (rev 1186719)
+++ PKGBUILD2022-04-16 15:52:28 UTC (rev 1186720)
@@ -1,110 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Mark Coolen 
-# Contributor: Tom Newsom 
-# Contributor: Kevin Piche 
-
-pkgname=squid
-pkgver=5.4.1
-pkgrel=1
-pkgdesc='Full-featured Web proxy cache server'
-arch=('x86_64')
-url='http://www.squid-cache.org'
-depends=('openssl' 'pam' 'perl' 'libltdl' 'libcap' 'nettle' 'gnutls' 'libnsl' 
'libxml2'
-   'systemd-libs')
-makedepends=('krb5' 'libldap' 'systemd')
-optdepends=('libldap')
-license=('GPL')
-options=('emptydirs')
-backup=('etc/squid/squid.conf'
-   'etc/squid/cachemgr.conf'
-   'etc/squid/errorpage.css'
-   'etc/squid/mime.conf')
-validpgpkeys=('EA31CC5E9488E5168D2DCC5EB268E706FF5CF463'
- 'B06884EDB779C89B044E64E3CD6DBF8EF3B17D3E')
-source=("http://www.squid-cache.org/Versions/v5/$pkgname-$pkgver.tar.xz"{,.asc}
-'squid.pam'
-'squid.tmpfiles'
-'squid.sysusers'
-'squid-rotate.service'
-'squid-rotate.timer')
-sha256sums=('df4d310a91663ae59c29b0f8183f22623c5e6f731869af793805987ab94ca41c'
-'SKIP'
-'11fb388f8679fd6461e0de006810ea608a3686fffda16904b0ed71f412be499c'
-'495f54e51f6ec1e4dce87090d76718aea1eb37559c4439d876dd39598163062a'
-'c903eb86e6968b9d3bd0a9ad3335e8ce76a718b6217251e9dd7e66d5cf1ac94a'
-'3a97aa6bf6dcdc427e73bb2f36afdeaaf2bbf7dd2c0bbb7f1a948850198a8b7c'
-'8bc77fa1f653a17a4956feac042be9577ba30a8a43480b443fbd67640ae711ee')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i 's|/var/run/|/run/|g' tools/systemd/squid.service
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---datadir=/usr/share/squid \
---sysconfdir=/etc/squid \
---libexecdir=/usr/lib/squid \
---localstatedir=/var \
---with-logdir=/var/log/squid \
---with-pidfile=/run/squid.pid \
---enable-auth \
---enable-auth-basic \
---enable-auth-ntlm \
---enable-auth-digest \
---enable-auth-negotiate \
---enable-removal-policies="lru,heap" \
---enable-storeio="aufs,ufs,diskd,rock" \
---enable-delay-pools \
---enable-arp-acl \
---with-openssl \
---enable-snmp \
---enable-linux-netfilter \
---enable-ident-lookups \
---enable-useragent-log \
---enable-cache-digests \
---enable-referer-log \
---enable-arp-acl \
---enable-htcp \
---enable-carp \
---enable-epoll \
---with-large-files \
---enable-arp-acl \
---with-default-user=proxy \
---enable-async-io \
---enable-truncate \
---enable-icap-client \
---enable-ssl-crtd \
---disable-arch-native \
---disable-strict-error-checking \
---enable-wccpv2
-  make
-}
-
-package() {
-  cd "$srcdir"
-
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-
-  chmod 07755 "$pkgdir"/usr/lib/squid/basic_pam_auth
-  
-  install -Dm644 "$srcdir/squid.pam" "$pkgdir/usr/lib/pam.d/squid"
-  install -Dm644 "$srcdir/squid.tmpfiles" 
"$pkgdir/usr/lib/tmpfiles.d/squid.conf"
-  install -Dm644 "$srcdir/squid.sysusers" 
"$pkgdir/usr/lib/sysusers.d/squid.conf"
-  install -Dm644 "$pkgname-$pkgver/tools/systemd/squid.service" \
-"$pkgdir/usr/lib/systemd/system/squid.service"
-  install -Dm644 "$srcdir/squid-rotate.service" \
-"$pkgdir/usr/lib/systemd/system/squid-rotate.service"
-  install -Dm644 "$srcdir/squid-rotate.timer" \
-"$pkgdir/usr/lib/systemd/system/squid-rotate.timer"
-#  install -dm755 

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

2022-04-16 Thread Sergej Pupykin via arch-commits
Date: Saturday, April 16, 2022 @ 15:52:13
  Author: spupykin
Revision: 1186719

upgpkg: squid 5.5-1

Modified:
  squid/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 15:52:07 UTC (rev 1186718)
+++ PKGBUILD2022-04-16 15:52:13 UTC (rev 1186719)
@@ -4,7 +4,7 @@
 # Contributor: Kevin Piche 
 
 pkgname=squid
-pkgver=5.4.1
+pkgver=5.5
 pkgrel=1
 pkgdesc='Full-featured Web proxy cache server'
 arch=('x86_64')
@@ -27,7 +27,7 @@
 'squid.sysusers'
 'squid-rotate.service'
 'squid-rotate.timer')
-sha256sums=('df4d310a91663ae59c29b0f8183f22623c5e6f731869af793805987ab94ca41c'
+sha256sums=('4e1d484d6476bdd67d4db17b17392112c93d5d989323751085a171421349106c'
 'SKIP'
 '11fb388f8679fd6461e0de006810ea608a3686fffda16904b0ed71f412be499c'
 '495f54e51f6ec1e4dce87090d76718aea1eb37559c4439d876dd39598163062a'



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

2022-04-16 Thread Sergej Pupykin via arch-commits
Date: Saturday, April 16, 2022 @ 15:52:07
  Author: spupykin
Revision: 1186718

archrelease: copy trunk to community-any

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

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

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

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



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

2022-04-16 Thread Sergej Pupykin via arch-commits
Date: Saturday, April 16, 2022 @ 15:51:54
  Author: spupykin
Revision: 1186717

upgpkg: nextcloud-app-bookmarks 1:10.3.0-1

Modified:
  nextcloud-app-bookmarks/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-16 15:04:06 UTC (rev 1186716)
+++ PKGBUILD2022-04-16 15:51:54 UTC (rev 1186717)
@@ -3,7 +3,7 @@
 pkgname=nextcloud-app-bookmarks
 _name=bookmarks
 epoch=1
-pkgver=10.2.1
+pkgver=10.3.0
 pkgrel=1
 pkgdesc="Bookmarks app for nextcloud"
 arch=(any)
@@ -14,8 +14,8 @@
 groups=(nextcloud-apps)
 options=(!strip)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nextcloud/bookmarks/releases/download/v$pkgver/bookmarks-$pkgver.tar.gz;)
-sha256sums=('b54c8dc127c922aa88387b3a3dfc2936e55f1f0225f0dd593b3cf001a317cc9b')
-b2sums=('74f5dd9d17306a6926b78360924cfe3e4a24b96fb1a102b5d32ce9038b68419219038410255f0738b840472a8c04d6ac3c19a101b3da74008fd9647b5d54c463')
+sha256sums=('8272a47c322c7eae90243ca86797aef703fdab39ace54e933721ea7a7bf38a5d')
+b2sums=('61c999663291681bd8c2d2747f64a939837bdcf4067a6d51edbbf33214993551a1ef832a89cde28509b55d11dc9a0cb47cc9bfe157f3c129b2e8ec652b33863e')
 
 _get_nextcloud_versions() {
   _app_min_major_version="$(xq '.info.dependencies.nextcloud["@min-version"]' 
"${_name}/appinfo/info.xml"| sed 's/"//g')"



  1   2   >