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

2022-04-04 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 5, 2022 @ 00:40:48
  Author: polyzen
Revision: 1181420

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-05 00:40:26 UTC (rev 1181419)
+++ PKGBUILD2022-04-05 00:40:48 UTC (rev 1181420)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Sergey A. 
-
-pkgname=rust-analyzer
-_pkgver=2022-03-28
-pkgver=${_pkgver//-}
-pkgrel=1
-pkgdesc='Rust compiler front-end for IDEs'
-arch=('x86_64')
-url=https://rust-analyzer.github.io/
-license=('Apache' 'MIT')
-depends=('gcc-libs' 'rust-src')
-makedepends=('git')
-source=("git+https://github.com/$pkgname/$pkgname.git#tag=$_pkgver;)
-b2sums=('SKIP')
-
-prepare() {
-  cd $pkgname
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd $pkgname
-  RUST_ANALYZER_REV=$_pkgver cargo build --release --locked --offline
-}
-
-package() {
-  cd $pkgname
-  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust-analyzer/repos/community-x86_64/PKGBUILD (from rev 1181419, 
rust-analyzer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-05 00:40:48 UTC (rev 1181420)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Sergey A. 
+
+pkgname=rust-analyzer
+_pkgver=2022-04-04
+pkgver=${_pkgver//-}
+pkgrel=1
+pkgdesc='Rust compiler front-end for IDEs'
+arch=('x86_64')
+url=https://rust-analyzer.github.io/
+license=('Apache' 'MIT')
+depends=('gcc-libs' 'rust-src')
+makedepends=('git')
+source=("git+https://github.com/$pkgname/$pkgname.git#tag=$_pkgver;)
+b2sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd $pkgname
+  RUST_ANALYZER_REV=$_pkgver cargo build --release --locked --offline
+}
+
+package() {
+  cd $pkgname
+  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE-MIT
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-04-04 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 5, 2022 @ 00:40:26
  Author: polyzen
Revision: 1181419

upgpkg: rust-analyzer 20220404-1

Modified:
  rust-analyzer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-05 00:30:08 UTC (rev 1181418)
+++ PKGBUILD2022-04-05 00:40:26 UTC (rev 1181419)
@@ -2,7 +2,7 @@
 # Contributor: Sergey A. 
 
 pkgname=rust-analyzer
-_pkgver=2022-03-28
+_pkgver=2022-04-04
 pkgver=${_pkgver//-}
 pkgrel=1
 pkgdesc='Rust compiler front-end for IDEs'



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

2022-04-04 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 5, 2022 @ 00:30:08
  Author: polyzen
Revision: 1181418

archrelease: copy trunk to community-any

Added:
  pyright/repos/community-any/PKGBUILD
(from rev 1181417, pyright/trunk/PKGBUILD)
Deleted:
  pyright/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-05 00:29:49 UTC (rev 1181417)
+++ PKGBUILD2022-04-05 00:30:08 UTC (rev 1181418)
@@ -1,41 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Kaizhao Zhang 
-
-pkgname=pyright
-pkgver=1.1.234
-pkgrel=1
-pkgdesc='Type checker for the Python language'
-arch=('any')
-url=https://github.com/microsoft/pyright
-license=('MIT')
-depends=('nodejs>=12')
-makedepends=('npm')
-source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-b2sums=('a94a68d04b03628ff93e5fdd865ec66d5f45d7b261b7b982b73572f1eb1cad8784f513e74373a30894d4b7135e5e98663ed7e3dbfcbba96121aee2ed70ab51a6')
-
-prepare() {
-  cd $pkgname-$pkgver
-  npm ci
-}
-
-build() {
-  cd $pkgname-$pkgver/packages/$pkgname
-  npm run build
-}
-
-package() {
-  local _npmdir=/usr/lib/node_modules/$pkgname
-  install -d "$pkgdir"/{usr/bin,$_npmdir,usr/share/doc/$pkgname}
-  ln -s $_npmdir/index.js "$pkgdir"/usr/bin/$pkgname
-  ln -s $_npmdir/langserver.index.js \
-"$pkgdir"/usr/bin/$pkgname-langserver
-
-  cd $pkgname-$pkgver
-  cp -r {CONTRIBUTING,README}.md docs "$pkgdir"/usr/share/doc/$pkgname
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE.txt
-
-  cd packages/$pkgname
-  cp -r dist {,langserver.}index.js "$pkgdir"/$_npmdir
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pyright/repos/community-any/PKGBUILD (from rev 1181417, 
pyright/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-05 00:30:08 UTC (rev 1181418)
@@ -0,0 +1,41 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Kaizhao Zhang 
+
+pkgname=pyright
+pkgver=1.1.235
+pkgrel=1
+pkgdesc='Type checker for the Python language'
+arch=('any')
+url=https://github.com/microsoft/pyright
+license=('MIT')
+depends=('nodejs>=12')
+makedepends=('npm')
+source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+b2sums=('769e98848743fd4433f81007eac935d26f69ac12137d4d7f149df54630d73c721db7419500e9d4de2e6a4f72d1bcb99b5b40e3155b2c74ef71ec3056e10e')
+
+prepare() {
+  cd $pkgname-$pkgver
+  npm ci
+}
+
+build() {
+  cd $pkgname-$pkgver/packages/$pkgname
+  npm run build
+}
+
+package() {
+  local _npmdir=/usr/lib/node_modules/$pkgname
+  install -d "$pkgdir"/{usr/bin,$_npmdir,usr/share/doc/$pkgname}
+  ln -s $_npmdir/index.js "$pkgdir"/usr/bin/$pkgname
+  ln -s $_npmdir/langserver.index.js \
+"$pkgdir"/usr/bin/$pkgname-langserver
+
+  cd $pkgname-$pkgver
+  cp -r {CONTRIBUTING,README}.md docs "$pkgdir"/usr/share/doc/$pkgname
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE.txt
+
+  cd packages/$pkgname
+  cp -r dist {,langserver.}index.js "$pkgdir"/$_npmdir
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-04-04 Thread Daniel M. Capella via arch-commits
Date: Tuesday, April 5, 2022 @ 00:29:49
  Author: polyzen
Revision: 1181417

upgpkg: pyright 1.1.235-1

Modified:
  pyright/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 23:09:08 UTC (rev 1181416)
+++ PKGBUILD2022-04-05 00:29:49 UTC (rev 1181417)
@@ -2,7 +2,7 @@
 # Contributor: Kaizhao Zhang 
 
 pkgname=pyright
-pkgver=1.1.234
+pkgver=1.1.235
 pkgrel=1
 pkgdesc='Type checker for the Python language'
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('nodejs>=12')
 makedepends=('npm')
 source=("$url/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-b2sums=('a94a68d04b03628ff93e5fdd865ec66d5f45d7b261b7b982b73572f1eb1cad8784f513e74373a30894d4b7135e5e98663ed7e3dbfcbba96121aee2ed70ab51a6')
+b2sums=('769e98848743fd4433f81007eac935d26f69ac12137d4d7f149df54630d73c721db7419500e9d4de2e6a4f72d1bcb99b5b40e3155b2c74ef71ec3056e10e')
 
 prepare() {
   cd $pkgname-$pkgver



[arch-commits] Commit in keycloak/repos/community-any (15 files)

2022-04-04 Thread Leonidas Spyropoulos via arch-commits
Date: Monday, April 4, 2022 @ 23:09:08
  Author: artafinde
Revision: 1181416

archrelease: copy trunk to community-any

Added:
  
keycloak/repos/community-any/0001-KEYCLOAK-19177-Disable-ECP-flow-by-default-for-all-S.patch
(from rev 1181415, 
keycloak/trunk/0001-KEYCLOAK-19177-Disable-ECP-flow-by-default-for-all-S.patch)
  keycloak/repos/community-any/PKGBUILD
(from rev 1181415, keycloak/trunk/PKGBUILD)
  keycloak/repos/community-any/common.sh
(from rev 1181415, keycloak/trunk/common.sh)
  keycloak/repos/community-any/keycloak.install
(from rev 1181415, keycloak/trunk/keycloak.install)
  keycloak/repos/community-any/keycloak.service
(from rev 1181415, keycloak/trunk/keycloak.service)
  keycloak/repos/community-any/keycloak.sysusers
(from rev 1181415, keycloak/trunk/keycloak.sysusers)
  keycloak/repos/community-any/keycloak.tmpfiles
(from rev 1181415, keycloak/trunk/keycloak.tmpfiles)
  keycloak/repos/community-any/pin-java-version.patch
(from rev 1181415, keycloak/trunk/pin-java-version.patch)
Deleted:
  keycloak/repos/community-any/PKGBUILD
  keycloak/repos/community-any/common.sh
  keycloak/repos/community-any/keycloak.install
  keycloak/repos/community-any/keycloak.service
  keycloak/repos/community-any/keycloak.sysusers
  keycloak/repos/community-any/keycloak.tmpfiles
  keycloak/repos/community-any/pin-java-version.patch

-+
 0001-KEYCLOAK-19177-Disable-ECP-flow-by-default-for-all-S.patch |  367 
++
 PKGBUILD|  173 ++--
 common.sh   |6 
 keycloak.install|   14 
 keycloak.service|  102 +-
 keycloak.sysusers   |2 
 keycloak.tmpfiles   |6 
 pin-java-version.patch  |  112 +--
 8 files changed, 576 insertions(+), 206 deletions(-)

Copied: 
keycloak/repos/community-any/0001-KEYCLOAK-19177-Disable-ECP-flow-by-default-for-all-S.patch
 (from rev 1181415, 
keycloak/trunk/0001-KEYCLOAK-19177-Disable-ECP-flow-by-default-for-all-S.patch)
===
--- 0001-KEYCLOAK-19177-Disable-ECP-flow-by-default-for-all-S.patch 
(rev 0)
+++ 0001-KEYCLOAK-19177-Disable-ECP-flow-by-default-for-all-S.patch 
2022-04-04 23:09:08 UTC (rev 1181416)
@@ -0,0 +1,367 @@
+From 44000caaf5051d7f218d1ad79573bd3d175cad0d Mon Sep 17 00:00:00 2001
+From: Michal Hajas 
+Date: Mon, 4 Oct 2021 15:26:29 +0200
+Subject: [PATCH] KEYCLOAK-19177 Disable ECP flow by default for all Saml
+ clients; ecp flow creates only transient users sessions
+
+---
+ .../keycloak/protocol/saml/SamlClient.java|  8 ++
+ .../protocol/saml/SamlConfigAttributes.java   |  1 +
+ .../protocol/saml/SamlProtocolFactory.java|  4 +
+ .../saml/SamlRepresentationAttributes.java|  5 ++
+ .../profile/ecp/SamlEcpProfileService.java| 11 ++-
+ .../testsuite/saml/SOAPBindingTest.java   | 79 ++-
+ .../adapter-test/keycloak-saml/testsaml.json  |  3 +-
+ .../clients/settings/ClientSettingsForm.java  |  2 +
+ .../console/clients/AbstractClientTest.java   |  3 +-
+ .../messages/admin-messages_en.properties |  2 +
+ .../admin/resources/js/controllers/clients.js | 14 
+ .../resources/partials/client-detail.html |  7 ++
+ 12 files changed, 135 insertions(+), 4 deletions(-)
+
+diff --git a/services/src/main/java/org/keycloak/protocol/saml/SamlClient.java 
b/services/src/main/java/org/keycloak/protocol/saml/SamlClient.java
+index 1b8f23495e..9cf0cd1847 100755
+--- a/services/src/main/java/org/keycloak/protocol/saml/SamlClient.java
 b/services/src/main/java/org/keycloak/protocol/saml/SamlClient.java
+@@ -120,6 +120,14 @@ public class SamlClient extends ClientConfigResolver {
+ 
client.setAttribute(SamlConfigAttributes.SAML_FORCE_NAME_ID_FORMAT_ATTRIBUTE, 
Boolean.toString(val));
+ }
+ 
++public boolean allowECPFlow() {
++return 
"true".equals(resolveAttribute(SamlConfigAttributes.SAML_ALLOW_ECP_FLOW));
++}
++
++public void setAllowECPFlow(boolean val) {
++client.setAttribute(SamlConfigAttributes.SAML_ALLOW_ECP_FLOW, 
Boolean.toString(val));
++}
++
+ public boolean forceArtifactBinding(){
+ return 
"true".equals(resolveAttribute(SamlConfigAttributes.SAML_ARTIFACT_BINDING));
+ }
+diff --git 
a/services/src/main/java/org/keycloak/protocol/saml/SamlConfigAttributes.java 
b/services/src/main/java/org/keycloak/protocol/saml/SamlConfigAttributes.java
+index 59f27f50ab..02a41c4831 100755
+--- 
a/services/src/main/java/org/keycloak/protocol/saml/SamlConfigAttributes.java
 
b/services/src/main/java/org/keycloak/protocol/saml/SamlConfigAttributes.java
+@@ -44,4 

[arch-commits] Commit in keycloak/trunk (2 files)

2022-04-04 Thread Leonidas Spyropoulos via arch-commits
Date: Monday, April 4, 2022 @ 23:08:06
  Author: artafinde
Revision: 1181415

keycloak: backport fix for CVE-2021-3827

https://security.archlinux.org/CVE-2021-3827

Added:
  keycloak/trunk/0001-KEYCLOAK-19177-Disable-ECP-flow-by-default-for-all-S.patch
Modified:
  keycloak/trunk/PKGBUILD

-+
 0001-KEYCLOAK-19177-Disable-ECP-flow-by-default-for-all-S.patch |  367 
++
 PKGBUILD|9 
 2 files changed, 373 insertions(+), 3 deletions(-)

Added: 0001-KEYCLOAK-19177-Disable-ECP-flow-by-default-for-all-S.patch
===
--- 0001-KEYCLOAK-19177-Disable-ECP-flow-by-default-for-all-S.patch 
(rev 0)
+++ 0001-KEYCLOAK-19177-Disable-ECP-flow-by-default-for-all-S.patch 
2022-04-04 23:08:06 UTC (rev 1181415)
@@ -0,0 +1,367 @@
+From 44000caaf5051d7f218d1ad79573bd3d175cad0d Mon Sep 17 00:00:00 2001
+From: Michal Hajas 
+Date: Mon, 4 Oct 2021 15:26:29 +0200
+Subject: [PATCH] KEYCLOAK-19177 Disable ECP flow by default for all Saml
+ clients; ecp flow creates only transient users sessions
+
+---
+ .../keycloak/protocol/saml/SamlClient.java|  8 ++
+ .../protocol/saml/SamlConfigAttributes.java   |  1 +
+ .../protocol/saml/SamlProtocolFactory.java|  4 +
+ .../saml/SamlRepresentationAttributes.java|  5 ++
+ .../profile/ecp/SamlEcpProfileService.java| 11 ++-
+ .../testsuite/saml/SOAPBindingTest.java   | 79 ++-
+ .../adapter-test/keycloak-saml/testsaml.json  |  3 +-
+ .../clients/settings/ClientSettingsForm.java  |  2 +
+ .../console/clients/AbstractClientTest.java   |  3 +-
+ .../messages/admin-messages_en.properties |  2 +
+ .../admin/resources/js/controllers/clients.js | 14 
+ .../resources/partials/client-detail.html |  7 ++
+ 12 files changed, 135 insertions(+), 4 deletions(-)
+
+diff --git a/services/src/main/java/org/keycloak/protocol/saml/SamlClient.java 
b/services/src/main/java/org/keycloak/protocol/saml/SamlClient.java
+index 1b8f23495e..9cf0cd1847 100755
+--- a/services/src/main/java/org/keycloak/protocol/saml/SamlClient.java
 b/services/src/main/java/org/keycloak/protocol/saml/SamlClient.java
+@@ -120,6 +120,14 @@ public class SamlClient extends ClientConfigResolver {
+ 
client.setAttribute(SamlConfigAttributes.SAML_FORCE_NAME_ID_FORMAT_ATTRIBUTE, 
Boolean.toString(val));
+ }
+ 
++public boolean allowECPFlow() {
++return 
"true".equals(resolveAttribute(SamlConfigAttributes.SAML_ALLOW_ECP_FLOW));
++}
++
++public void setAllowECPFlow(boolean val) {
++client.setAttribute(SamlConfigAttributes.SAML_ALLOW_ECP_FLOW, 
Boolean.toString(val));
++}
++
+ public boolean forceArtifactBinding(){
+ return 
"true".equals(resolveAttribute(SamlConfigAttributes.SAML_ARTIFACT_BINDING));
+ }
+diff --git 
a/services/src/main/java/org/keycloak/protocol/saml/SamlConfigAttributes.java 
b/services/src/main/java/org/keycloak/protocol/saml/SamlConfigAttributes.java
+index 59f27f50ab..02a41c4831 100755
+--- 
a/services/src/main/java/org/keycloak/protocol/saml/SamlConfigAttributes.java
 
b/services/src/main/java/org/keycloak/protocol/saml/SamlConfigAttributes.java
+@@ -44,4 +44,5 @@ public interface SamlConfigAttributes {
+ String SAML_ENCRYPTION_PRIVATE_KEY_ATTRIBUTE = "saml.encryption." + 
CertificateInfoHelper.PRIVATE_KEY;
+ String SAML_ASSERTION_LIFESPAN = "saml.assertion.lifespan";
+ String SAML_ARTIFACT_BINDING_IDENTIFIER = 
"saml.artifact.binding.identifier";
++String SAML_ALLOW_ECP_FLOW = "saml.allow.ecp.flow";
+ }
+diff --git 
a/services/src/main/java/org/keycloak/protocol/saml/SamlProtocolFactory.java 
b/services/src/main/java/org/keycloak/protocol/saml/SamlProtocolFactory.java
+index fae3e4de09..772885553b 100755
+--- 
a/services/src/main/java/org/keycloak/protocol/saml/SamlProtocolFactory.java
 
b/services/src/main/java/org/keycloak/protocol/saml/SamlProtocolFactory.java
+@@ -154,6 +154,10 @@ public class SamlProtocolFactory extends 
AbstractLoginProtocolFactory {
+ client.setForceNameIDFormat(false);
+ }
+ 
++if (rep.getAllowEcpFlow() == null) {
++client.setAllowECPFlow(false);
++}
++
+ if (rep.getSamlServerSignature() == null) {
+ client.setRequiresRealmSignature(true);
+ }
+diff --git 
a/services/src/main/java/org/keycloak/protocol/saml/SamlRepresentationAttributes.java
 
b/services/src/main/java/org/keycloak/protocol/saml/SamlRepresentationAttributes.java
+index a64b847b80..e4da38eee9 100755
+--- 
a/services/src/main/java/org/keycloak/protocol/saml/SamlRepresentationAttributes.java
 
b/services/src/main/java/org/keycloak/protocol/saml/SamlRepresentationAttributes.java
+@@ -61,6 +61,11 @@ public class SamlRepresentationAttributes {
+ return 

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

2022-04-04 Thread Jonas Witschel via arch-commits
Date: Monday, April 4, 2022 @ 22:35:38
  Author: diabonas
Revision: 1181414

archrelease: copy trunk to community-any

Added:
  weechat-matrix/repos/community-any/PKGBUILD
(from rev 1181413, weechat-matrix/trunk/PKGBUILD)
  weechat-matrix/repos/community-any/weechat-matrix.install
(from rev 1181413, weechat-matrix/trunk/weechat-matrix.install)
Deleted:
  weechat-matrix/repos/community-any/PKGBUILD
  weechat-matrix/repos/community-any/weechat-matrix.install

+
 PKGBUILD   |  119 ---
 weechat-matrix.install |   28 +--
 2 files changed, 75 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 22:35:20 UTC (rev 1181413)
+++ PKGBUILD2022-04-04 22:35:38 UTC (rev 1181414)
@@ -1,58 +0,0 @@
-# Maintainer: Jonas Witschel 
-pkgname=weechat-matrix
-pkgver=0.3.0
-_tag=ebf792a233a50d639b13e5f7c9a1c1fe988e7476 # git rev-parse "$pkgver"
-pkgrel=6
-pkgdesc='WeeChat Matrix protocol script written in Python'
-arch=('any')
-url='https://github.com/poljar/weechat-matrix'
-license=('ISC')
-depends=('python' 'python-atomicwrites' 'python-attrs' 'python-logbook' 
'python-matrix-nio'
- 'python-pygments' 'python-pyopenssl' 'python-webcolors' 'weechat')
-makedepends=('git' 'python-build' 'python-installer' 'python-poetry')
-checkdepends=('python-hypothesis' 'python-pytest')
-optdepends=('python-aiohttp: matrix_sso_helper support'
-'python-magic: matrix_upload support'
-'python-requests: matrix_decrypt and matrix_upload support'
-'xdg-utils: default plumber for matrix_decrypt')
-install='weechat-matrix.install'
-source=("git+$url.git?signed#tag=$_tag"
-
"weechat-matrix-0.3.0_remove-set_npn_protocols.patch::$url/commit/4e585d5f4628e6fbeba9ec4560b440d731e076f5.patch")
-sha512sums=('SKIP'
-
'a374aae0e3df0c47476ea100bd7bb570a46530a6daa5318a445e1c0becff64cdb0a62368e18c076bdb7a06a05e7ba8f02f806f0aa0062b4dacc98af3a26d978f')
-validpgpkeys=('689A3B5BC6560AB4C99A2A0581314DA807EF4E22') # Damir Jelić 
(poljar) 
-
-pkgver() {
-   cd "$pkgname"
-   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
-}
-
-prepare() {
-   cd "$pkgname"
-   sed -ri 's|#!/usr/bin/env( -S)? python3|#!/usr/bin/python3|' 
contrib/*.py
-
-   # SSLContext.set_npn_protocols broken in Python 3.10
-   # (https://github.com/poljar/weechat-matrix/issues/308)
-   patch --forward --strip=1 
--input="$srcdir/weechat-matrix-0.3.0_remove-set_npn_protocols.patch"
-}
-
-build() {
-   cd "$pkgname"
-   python -m build --wheel --no-isolation --skip-dependency-check
-}
-
-check() {
-   cd "$pkgname"
-   python -m pytest
-}
-
-package() {
-   cd "$pkgname"
-   python -m installer --destdir="$pkgdir" dist/*.whl
-   install -Dm755 main.py 
"$pkgdir/usr/share/weechat/python/weechat-matrix.py"
-   for _script in matrix_decrypt matrix_sso_helper matrix_upload
-   do
-   install -Dm755 "contrib/$_script.py" "$pkgdir/usr/bin/$_script"
-   done
-   install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: weechat-matrix/repos/community-any/PKGBUILD (from rev 1181413, 
weechat-matrix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 22:35:38 UTC (rev 1181414)
@@ -0,0 +1,61 @@
+# Maintainer: Jonas Witschel 
+pkgname=weechat-matrix
+pkgver=0.3.0
+_tag=ebf792a233a50d639b13e5f7c9a1c1fe988e7476 # git rev-parse "$pkgver"
+pkgrel=7
+pkgdesc='WeeChat Matrix protocol script written in Python'
+arch=('any')
+url='https://github.com/poljar/weechat-matrix'
+license=('ISC')
+depends=('python' 'python-atomicwrites' 'python-attrs' 'python-logbook' 
'python-matrix-nio'
+ 'python-pygments' 'python-pyopenssl' 'python-webcolors' 'weechat')
+makedepends=('git' 'python-build' 'python-installer' 'python-poetry')
+checkdepends=('python-hypothesis' 'python-pytest')
+optdepends=('python-aiohttp: matrix_sso_helper support'
+'python-magic: matrix_upload support'
+'python-requests: matrix_decrypt and matrix_upload support'
+'xdg-utils: default plumber for matrix_decrypt')
+install='weechat-matrix.install'
+source=("git+$url.git?signed#tag=$_tag"
+
"weechat-matrix-0.3.0_remove-set_npn_protocols.patch::$url/commit/4e585d5f4628e6fbeba9ec4560b440d731e076f5.patch")
+sha512sums=('SKIP'
+
'a374aae0e3df0c47476ea100bd7bb570a46530a6daa5318a445e1c0becff64cdb0a62368e18c076bdb7a06a05e7ba8f02f806f0aa0062b4dacc98af3a26d978f')
+validpgpkeys=('689A3B5BC6560AB4C99A2A0581314DA807EF4E22') # Damir Jelić 
(poljar) 
+
+pkgver() {
+   cd "$pkgname"
+   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+prepare() {
+   cd "$pkgname"
+   sed -ri 's|#!/usr/bin/env( -S)? python3|#!/usr/bin/python3|' 

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

2022-04-04 Thread Jonas Witschel via arch-commits
Date: Monday, April 4, 2022 @ 22:35:20
  Author: diabonas
Revision: 1181413

upgpkg: weechat-matrix 0.3.0-7: remove dependency version pinning

Upstream pins the dependency versions to the minor version that was used during
development. Since the Arch repositories contain some newer versions, importing
the module can fail. Try e.g.

from pkg_resources import require
require("matrix")

This fails with

pkg_resources.ContextualVersionConflict: (matrix-nio 0.19.0 
(/usr/lib/python3.10/site-packages), 
Requirement.parse('matrix-nio[e2e]<0.19.0,>=0.18.0'), {'matrix'})

The package works fine with the latest versions available in the repositories
(that is what we run the test suite for after all), so remove the dependency
version pinning altogether.

Modified:
  weechat-matrix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 22:30:17 UTC (rev 1181412)
+++ PKGBUILD2022-04-04 22:35:20 UTC (rev 1181413)
@@ -2,7 +2,7 @@
 pkgname=weechat-matrix
 pkgver=0.3.0
 _tag=ebf792a233a50d639b13e5f7c9a1c1fe988e7476 # git rev-parse "$pkgver"
-pkgrel=6
+pkgrel=7
 pkgdesc='WeeChat Matrix protocol script written in Python'
 arch=('any')
 url='https://github.com/poljar/weechat-matrix'
@@ -31,6 +31,9 @@
cd "$pkgname"
sed -ri 's|#!/usr/bin/env( -S)? python3|#!/usr/bin/python3|' 
contrib/*.py
 
+   # Remove unnecessary dependency version pinning
+   sed -i 's/= "^[0-9.]*"/= "*"/' pyproject.toml
+
# SSLContext.set_npn_protocols broken in Python 3.10
# (https://github.com/poljar/weechat-matrix/issues/308)
patch --forward --strip=1 
--input="$srcdir/weechat-matrix-0.3.0_remove-set_npn_protocols.patch"



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

2022-04-04 Thread Jonas Witschel via arch-commits
Date: Monday, April 4, 2022 @ 22:30:17
  Author: diabonas
Revision: 1181412

archrelease: copy trunk to community-any

Added:
  python-matrix-nio/repos/community-any/PKGBUILD
(from rev 1181411, python-matrix-nio/trunk/PKGBUILD)
Deleted:
  python-matrix-nio/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 22:30:02 UTC (rev 1181411)
+++ PKGBUILD2022-04-04 22:30:17 UTC (rev 1181412)
@@ -1,39 +0,0 @@
-# Maintainer: Jonas Witschel 
-pkgname=python-matrix-nio
-pkgver=0.19.0
-_tag=52109a160765f1a9e7f78be1aed8a282a83515f1 # git rev-parse "$pkgver"
-pkgrel=2
-pkgdesc='Python Matrix client library, designed according to sans I/O 
principles'
-arch=('any')
-url='https://github.com/poljar/matrix-nio'
-license=('ISC')
-depends=('python' 'python-aiofiles' 'python-aiohttp' 'python-aiohttp-socks' 
'python-atomicwrites' 
- 'python-cachetools' 'python-future' 'python-h11' 'python-h2' 
'python-jsonschema' 'python-logbook' 
- 'python-olm' 'python-peewee' 'python-pycryptodome' 
'python-unpaddedbase64')
-makedepends=('git' 'python-build' 'python-installer' 'python-poetry-core')
-checkdepends=('python-aioresponses' 'python-faker' 'python-hpack' 
'python-hyperframe' 'python-hypothesis'
-  'python-pytest' 'python-pytest-aiohttp' 
'python-pytest-benchmark')
-source=("git+$url.git?signed#tag=$_tag")
-sha512sums=('SKIP')
-validpgpkeys=('689A3B5BC6560AB4C99A2A0581314DA807EF4E22') # Damir Jelić 
(poljar) 
-
-pkgver() {
-   cd "${pkgname#python-}"
-   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
-}
-
-build() {
-   cd "${pkgname#python-}"
-   python -m build --wheel --no-isolation
-}
-
-check() {
-   cd "${pkgname#python-}"
-   python -m pytest
-}
-
-package() {
-   cd "${pkgname#python-}"
-   python -m installer --destdir="$pkgdir" dist/*.whl
-   install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-matrix-nio/repos/community-any/PKGBUILD (from rev 1181411, 
python-matrix-nio/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 22:30:17 UTC (rev 1181412)
@@ -0,0 +1,45 @@
+# Maintainer: Jonas Witschel 
+pkgname=python-matrix-nio
+pkgver=0.19.0
+_tag=52109a160765f1a9e7f78be1aed8a282a83515f1 # git rev-parse "$pkgver"
+pkgrel=3
+pkgdesc='Python Matrix client library, designed according to sans I/O 
principles'
+arch=('any')
+url='https://github.com/poljar/matrix-nio'
+license=('ISC')
+depends=('python' 'python-aiofiles' 'python-aiohttp' 'python-aiohttp-socks' 
'python-atomicwrites' 
+ 'python-cachetools' 'python-future' 'python-h11' 'python-h2' 
'python-jsonschema' 'python-logbook' 
+ 'python-olm' 'python-peewee' 'python-pycryptodome' 
'python-unpaddedbase64')
+makedepends=('git' 'python-build' 'python-installer' 'python-poetry-core')
+checkdepends=('python-aioresponses' 'python-faker' 'python-hpack' 
'python-hyperframe' 'python-hypothesis'
+  'python-pytest' 'python-pytest-aiohttp' 
'python-pytest-benchmark')
+source=("git+$url.git?signed#tag=$_tag")
+sha512sums=('SKIP')
+validpgpkeys=('689A3B5BC6560AB4C99A2A0581314DA807EF4E22') # Damir Jelić 
(poljar) 
+
+pkgver() {
+   cd "${pkgname#python-}"
+   git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
+}
+
+prepare() {
+   cd "${pkgname#python-}"
+   # Remove unnecessary dependency version pinning
+   sed -i 's/= "^[0-9.]*"/= "*"/' pyproject.toml
+}
+
+build() {
+   cd "${pkgname#python-}"
+   python -m build --wheel --no-isolation
+}
+
+check() {
+   cd "${pkgname#python-}"
+   python -m pytest
+}
+
+package() {
+   cd "${pkgname#python-}"
+   python -m installer --destdir="$pkgdir" dist/*.whl
+   install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-04-04 Thread Jonas Witschel via arch-commits
Date: Monday, April 4, 2022 @ 22:30:02
  Author: diabonas
Revision: 1181411

upgpkg: python-matrix-nio 0.19.0-3: remove dependency version pinning

Upstream pins the dependency versions to the minor version that was used during
development. Since the Arch repositories contain some newer versions, importing
the module can fail. Try e.g.

from pkg_resources import require
require("matrix-nio")

This fails with

pkg_resources.ContextualVersionConflict: (aiofiles 0.8.0 
(/usr/lib/python3.10/site-packages), 
Requirement.parse('aiofiles<0.7.0,>=0.6.0'), {'matrix-nio'})

The package works fine with the latest versions available in the repositories
(that is what we run the test suite for after all), so remove the dependency
version pinning altogether.

Modified:
  python-matrix-nio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 22:11:10 UTC (rev 1181410)
+++ PKGBUILD2022-04-04 22:30:02 UTC (rev 1181411)
@@ -2,7 +2,7 @@
 pkgname=python-matrix-nio
 pkgver=0.19.0
 _tag=52109a160765f1a9e7f78be1aed8a282a83515f1 # git rev-parse "$pkgver"
-pkgrel=2
+pkgrel=3
 pkgdesc='Python Matrix client library, designed according to sans I/O 
principles'
 arch=('any')
 url='https://github.com/poljar/matrix-nio'
@@ -22,6 +22,12 @@
git describe | sed 's/\([^-]*-\)g/r\1/;s/-/./g'
 }
 
+prepare() {
+   cd "${pkgname#python-}"
+   # Remove unnecessary dependency version pinning
+   sed -i 's/= "^[0-9.]*"/= "*"/' pyproject.toml
+}
+
 build() {
cd "${pkgname#python-}"
python -m build --wheel --no-isolation



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 22:11:10
  Author: dvzrv
Revision: 1181410

archrelease: copy trunk to community-x86_64

Added:
  cardinal/repos/community-x86_64/PKGBUILD
(from rev 1181409, cardinal/trunk/PKGBUILD)
Deleted:
  cardinal/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  284 ++---
 1 file changed, 142 insertions(+), 142 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 22:10:45 UTC (rev 1181409)
+++ PKGBUILD2022-04-04 22:11:10 UTC (rev 1181410)
@@ -1,142 +0,0 @@
-# Maintainer: David Runge 
-
-pkgbase=cardinal
-pkgname=(cardinal cardinal-data cardinal-jack cardinal-lv2 cardinal-vst 
cardinal-vst3)
-pkgver=22.03
-pkgrel=1
-pkgdesc="Virtual modular synthesizer"
-arch=(x86_64)
-url="https://github.com/DISTRHO/Cardinal;
-license=(GPL3)
-makedepends=(dbus file gcc-libs gendesk git glibc jansson libarchive libglvnd
-liblo libsndfile libsamplerate libx11 libxext libxrandr mold python speexdsp)
-# lv2lint needs the additional lv2-extensions from mod-sdk:
-# https://github.com/moddevices/mod-sdk/blob/master/mod.lv2/mod.ttl#L174
-# checkdepends=(kxstudio-lv2-extensions lv2 lv2lint xorg-server-xvfb)
-options=(debug)
-source=(
-  
https://github.com/DISTRHO/$pkgbase/releases/download/$pkgver/$pkgbase-$pkgver.tar.xz
-  
$pkgbase.svg::https://raw.githubusercontent.com/DISTRHO/Cardinal/eb95b5990cf734c10f2caab1a246eac893f0266d/plugins/Cardinal/orig/distrho.svg
-)
-sha512sums=('1b0428d7d6a285ef63bd2d6d6a5b2cdc7f7afdb9142393c2bc98d39b260bc00caf3535277819ef89076d6861a8aeb6b8e7e43dcb76be0782aaf53a843a6ab5eb'
-
'31a7d1e548285af0ead1bc844fbb1d35b50f6284159047cb401a829d4068992fa328770e42c377c08d013f6787e55ac12b94eba4d5af4b90373b157971fc8835')
-b2sums=('3e209dead61f01244f54cdcf2e20c9c1ffa308f4134f35d8196897bd5261c091cc4d095fd287ce7bd8b25e455406b9e669ed40a1d5c1761a5eec8c25c4efdd29'
-
'd82fefe15234c1ed3a4d487c6082a2e3ac73b60f11041314e99c5a5de5b3ea141efbd5afd18851510bd4f801fd71f7cd89d54d86258d1ba750bbfd762aa37a8d')
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-prepare() {
-  gendesk -n \
-  --exec Cardinal \
-  --name Cardinal \
-  --pkgname studio.kx.distrho.Cardinal \
-  --pkgdesc "$pkgdesc JACK standalone" \
-  --icon $pkgbase \
-  --genericname "Virtual modular synthesizer"
-}
-
-build() {
-  export CFLAGS+=" -B/usr/lib/mold"
-  export CXXFLAGS+=" -B/usr/lib/mold"
-  make PREFIX=/usr SYSDEPS=true WITH_LTO=true -C $pkgname-$pkgver
-}
-
-# check() {
-#   declare -A _links=(
-# ["Cardinal"]="https://distrho.kx.studio/plugins/cardinal;
-# ["CardinalFX"]="https://distrho.kx.studio/plugins/cardinal#fx;
-# ["CardinalSynth"]="https://distrho.kx.studio/plugins/cardinal#synth;
-#   )
-# 
-#   for _name in Cardinal{,FX,Synth}; do
-# xvfb-run lv2lint -s "lv2_generate_ttl" -Mpack -I 
$pkgname-$pkgver/bin/$_name.lv2 "${_links[$_name]}"
-#   done
-# }
-
-package_cardinal() {
-  depends=(cardinal-jack cardinal-lv2 cardinal-vst cardinal-vst3)
-
-  make PREFIX=/usr SYSDEPS=true DESTDIR="$pkgdir" install -C $pkgbase-$pkgver
-
-  (
-cd "$pkgdir"
-_pick $pkgbase-data usr/share/$pkgbase
-_pick $pkgbase-data usr/share/doc
-_pick $pkgbase-jack usr/bin/
-_pick $pkgbase-lv2 usr/lib/lv2/
-_pick $pkgbase-vst usr/lib/vst/
-_pick $pkgbase-vst3 usr/lib/vst3/
-  )
-}
-
-package_cardinal-data() {
-  pkgdesc+=" - data"
-
-  mv -v $pkgbase-data/* "$pkgdir"
-}
-
-package_cardinal-jack() {
-  pkgdesc+=" - JACK standalone"
-  groups=(pro-audio)
-  depends=(cardinal-data gcc-libs glibc jack jansson libglvnd libx11 libxext
-  libxrandr speexdsp libdbus-1.so libarchive.so liblo.so libmagic.so
-  libsndfile.so libsamplerate.so)
-  optdepends=(
-'carla: for carla module and ildaeil plugin host'
-'mpv: for experimental video support'
-  )
-
-  mv -v $pkgbase-jack/* "$pkgdir"
-  install -vDm 644 *.desktop -t "$pkgdir/usr/share/applications"
-  install -vDm 644 $pkgbase.svg -t 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/"
-}
-
-package_cardinal-lv2() {
-  pkgdesc+=" - LV2 plugin"
-  groups=(lv2-plugins pro-audio)
-  depends=(cardinal-data gcc-libs glibc jansson libglvnd libx11 libxext
-  libxrandr lv2-host speexdsp libdbus-1.so libarchive.so liblo.so libmagic.so
-  libsndfile.so libsamplerate.so)
-  optdepends=(
-'carla: for carla module and ildaeil plugin host'
-'mpv: for experimental video support'
-  )
-
-  mv -v $pkgbase-lv2/* "$pkgdir"
-}
-
-package_cardinal-vst() {
-  pkgdesc+=" - VST2 plugin"
-  groups=(pro-audio vst-plugins)
-  depends=(cardinal-data gcc-libs glibc jansson libglvnd libx11 libxext
-  libxrandr speexdsp vst-host libdbus-1.so libarchive.so liblo.so libmagic.so
-  libsndfile.so libsamplerate.so)
-  

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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 22:10:45
  Author: dvzrv
Revision: 1181409

upgpkg: cardinal 22.04-1: Upgrade to 22.04.

Modified:
  cardinal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 22:00:47 UTC (rev 1181408)
+++ PKGBUILD2022-04-04 22:10:45 UTC (rev 1181409)
@@ -2,7 +2,7 @@
 
 pkgbase=cardinal
 pkgname=(cardinal cardinal-data cardinal-jack cardinal-lv2 cardinal-vst 
cardinal-vst3)
-pkgver=22.03
+pkgver=22.04
 pkgrel=1
 pkgdesc="Virtual modular synthesizer"
 arch=(x86_64)
@@ -18,10 +18,10 @@
   
https://github.com/DISTRHO/$pkgbase/releases/download/$pkgver/$pkgbase-$pkgver.tar.xz
   
$pkgbase.svg::https://raw.githubusercontent.com/DISTRHO/Cardinal/eb95b5990cf734c10f2caab1a246eac893f0266d/plugins/Cardinal/orig/distrho.svg
 )
-sha512sums=('1b0428d7d6a285ef63bd2d6d6a5b2cdc7f7afdb9142393c2bc98d39b260bc00caf3535277819ef89076d6861a8aeb6b8e7e43dcb76be0782aaf53a843a6ab5eb'
-
'31a7d1e548285af0ead1bc844fbb1d35b50f6284159047cb401a829d4068992fa328770e42c377c08d013f6787e55ac12b94eba4d5af4b90373b157971fc8835')
-b2sums=('3e209dead61f01244f54cdcf2e20c9c1ffa308f4134f35d8196897bd5261c091cc4d095fd287ce7bd8b25e455406b9e669ed40a1d5c1761a5eec8c25c4efdd29'
-
'd82fefe15234c1ed3a4d487c6082a2e3ac73b60f11041314e99c5a5de5b3ea141efbd5afd18851510bd4f801fd71f7cd89d54d86258d1ba750bbfd762aa37a8d')
+sha512sums=('a7888e69b92d0d4b6a446d6ec8044c0a5b57055821ad8084dba705efd61496cbfb0a66a452906b847a0dfd6b6a6ed8e38d08e09ed8fef81bbc35612871e7a2a1'
+
'e2b68f76aba6847e7fba7ae087f7019dfa129d685a4ffe8af41c69db295603dd03c8fe65deb024f7f3f956253d7dd6bd2c38fdd0a9c61f35c11df9df5e42659a')
+b2sums=('f5367efa6739f47b2de8c07440939fcfed9535abeedba63f9523959f0c8536c27ea16200b653e4124a7583228a45094a99ff33e72639627f1ffce40a2c3c816f'
+
'4dc447e473f30714316a0c6d0e385b3c39145258a13cb7dae83b54a1c8118d3090972505b490bbe97c00171ed9954ab23f5bc18e6a6f4f28929d69dd89e042b4')
 
 _pick() {
   local p="$1" f d; shift



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

2022-04-04 Thread Bruno Pagani via arch-commits
Date: Monday, April 4, 2022 @ 21:59:13
  Author: archange
Revision: 1181406

archrelease: copy trunk to community-testing-any

Added:
  spyder/repos/community-testing-any/PKGBUILD
(from rev 1181405, spyder/trunk/PKGBUILD)
Deleted:
  spyder/repos/community-testing-any/PKGBUILD

--+
 PKGBUILD |  317 ++---
 1 file changed, 159 insertions(+), 158 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 21:58:45 UTC (rev 1181405)
+++ PKGBUILD2022-04-04 21:59:13 UTC (rev 1181406)
@@ -1,158 +0,0 @@
-# Maintainer: Muflone http://www.muflone.com/contacts/english/
-# Maintainer: Bruno Pagani 
-# Contributor: Francois Boulogne 
-# Contributor: TDY 
-
-pkgname=spyder
-pkgver=5.3.0
-pkgrel=1
-pkgdesc="The Scientific Python Development Environment"
-arch=(any)
-url="https://www.spyder-ide.org/;
-license=(MIT)
-makedepends=(python-sphinx python-setuptools-scm python-wheel)
-depends=(
-python-atomicwrites
-python-chardet
-python-cloudpickle
-   python-cookiecutter
-python-diff-match-patch
-python-intervaltree
-ipython
-python-jedi
-python-jellyfish
-python-jsonschema
-python-keyring
-jupyter-nbconvert
-python-numpydoc
-python-parso
-python-pexpect
-python-pickleshare
-python-psutil
-python-pygments
-python-pylint
-python-pyqt5
-python-pyqtwebengine
-qt5-webkit
-python-lsp-server
-python-lsp-black
-python-pyls-spyder
-python-xdg
-python-pyzmq
-python-qdarkstyle
-python-qstylizer
-python-qtawesome
-python-qtconsole
-python-qtpy
-python-rtree
-python-setuptools
-python-sphinx
-python-spyder-kernels
-python-textdistance
-python-three-merge
-python-watchdog
-autopep8
-flake8
-python-pycodestyle
-python-pydocstyle
-python-pyflakes
-python-rope
-yapf
-)
-# Starting from autopep8, required optdeps of python-language-server
-optdepends=(
-'cython: run Cython files in the IPython Console'
-'python-matplotlib: 2D/3D plotting in the IPython Console'
-'python-numpy: support for N-dimensional arrays in the Variable Explorer'
-'python-pandas: support for DataFrames and Series in the Variable Explorer'
-'python-scipy: support for Matlab workspace in the Variable Explorer'
-'python-sympy: symbolic mathematics in the IPython Console'
-)
-checkdepends=(
-python-pytest
-python-pytest-qt
-python-pytest-mock
-python-pytest-cov
-python-pytest-order
-python-pytest-lazy-fixture
-python-flaky
-python-pandas
-python-scipy
-python-sympy
-python-pillow
-python-matplotlib
-cython
-git
-tk
-xorg-server-xvfb
-)
-source=(https://github.com/spyder-ide/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha512sums=('c556deb8bed91ad6c59761e70e1e69f2402a216d8c87a57b3fc55f3624418d95114b015f5fc5baf0cb7e405955cd2ae82372105830b405ea52c50d7329ba7f42')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # Allow our python libraries versions
-  sed 's|IPYTHON_REQVER = ">=7.31.1;<8.0.0"|IPYTHON_REQVER = ">=7.31.1"|' -i 
spyder/dependencies.py
-  sed "s|JEDI_REQVER = '>=0.17.2;<0.19.0'|JEDI_REQVER = '>=0.17.2'|" -i 
spyder/dependencies.py
-  sed "s|PARSO_REQVER = '>=0.7.0;<0.9.0'|PARSO_REQVER = '>=0.7.0'|" -i 
spyder/dependencies.py
-  sed "s|PYLSP_REQVER = '>=1.4.1;<1.5.0'|PYLSP_REQVER = '>=1.4.1'|" -i 
spyder/dependencies.py
-  sed "s|QDARKSTYLE_REQVER = '>=3.0.2;<3.1.0'|QDARKSTYLE_REQVER = '>=3.0.2'|" 
-i spyder/dependencies.py
-  sed "s|QTCONSOLE_REQVER = '>=5.3.0;<5.4.0'|QTCONSOLE_REQVER = '>=5.3.0'|" -i 
spyder/dependencies.py
-  sed "s|ipython>=7.31.1,<8.0.0|ipython>=7.31.1|" -i setup.py
-  sed "s|jedi>=0.17.2,<0.19.0|jedi>=0.17.2|" -i setup.py
-  sed "s|parso>=0.7.0,<0.9.0|parso>=0.7.0|" -i setup.py
-  sed 
"s|python-lsp-server\[all\]>=1.4.1,<1.5.0|python-lsp-server\[all\]>=1.4.1|" -i 
setup.py
-  sed "s|qdarkstyle>=3.0.2,<3.1.0|qdarkstyle>=3.0.2|" -i setup.py
-  sed "s|qtconsole>=5.3.0,<5.4.0|qtconsole>=5.3.0|" -i setup.py
-  # Required change for ipython
-  sed "s|extra_extension|extra_extensions|" -i 
spyder/plugins/ipythonconsole/tests/test_ipythonconsole.py
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  # Required per above patching
-  sed "s|ipython >=7.31.1,<8.0.0|ipython >=7.31.1|" -i binder/environment.yml
-  sed "s|jedi >=0.17.2,<0.19.0|jedi >=0.17.2|" -i binder/environment.yml
-  sed "s|parso >=0.7.0,<0.9.0|parso >=0.7.0|" -i binder/environment.yml
-  sed "s|python-lsp-server >=1.4.1,<1.5.0|python-lsp-server >=1.4.1|" -i 
binder/environment.yml
-  sed "s|qdarkstyle >=3.0.2,<3.1.0|qdarkstyle >=3.0.2|" -i 
binder/environment.yml
-  sed "s|qtconsole >=5.3.0,<5.4.0|qtconsole >=5.3.0|" -i binder/environment.yml
-  sed "s|IPython >=7.31.1,<8.0.0|IPython >=7.31.1|" -i 

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

2022-04-04 Thread Bruno Pagani via arch-commits
Date: Monday, April 4, 2022 @ 21:58:45
  Author: archange
Revision: 1181405

upgpkg: spyder 5.3.0-2

Modified:
  spyder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 20:48:20 UTC (rev 1181404)
+++ PKGBUILD2022-04-04 21:58:45 UTC (rev 1181405)
@@ -5,7 +5,7 @@
 
 pkgname=spyder
 pkgver=5.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="The Scientific Python Development Environment"
 arch=(any)
 url="https://www.spyder-ide.org/;
@@ -85,6 +85,8 @@
 git
 tk
 xorg-server-xvfb
+# Missing from jupyter-nbformat
+python-fastjsonschema
 )
 
source=(https://github.com/spyder-ide/${pkgname}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
 
sha512sums=('c556deb8bed91ad6c59761e70e1e69f2402a216d8c87a57b3fc55f3624418d95114b015f5fc5baf0cb7e405955cd2ae82372105830b405ea52c50d7329ba7f42')
@@ -142,8 +144,7 @@
   disabled_tests+=' and not 
test_connection_dialog_remembers_input_with_ssh_passphrase'
   disabled_tests+=' and not 
test_connection_dialog_remembers_input_with_password' 
   disabled_tests+=' and not test_store_user_credentials'
-  # Same ipykernel failures as in spyder-kernels
-  xvfb-run --auto-servernum python runtests.py --color=yes -k 
"${disabled_tests}" || echo "Tests failed"
+  xvfb-run --auto-servernum python runtests.py --color=yes -k 
"${disabled_tests}"
 }
 
 package() {



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

2022-04-04 Thread Justin Kromlinger via arch-commits
Date: Monday, April 4, 2022 @ 20:48:18
  Author: hashworks
Revision: 1181403

upgpkg: trivy 0.25.1-1

Modified:
  trivy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 20:35:58 UTC (rev 1181402)
+++ PKGBUILD2022-04-04 20:48:18 UTC (rev 1181403)
@@ -2,8 +2,8 @@
 # Contributor: Hao Long 
 
 pkgname=trivy
-pkgver=0.25.0
-pkgrel=2
+pkgver=0.25.1
+pkgrel=1
 pkgdesc='A Simple and Comprehensive Vulnerability Scanner for Containers, 
Suitable for CI'
 arch=('x86_64')
 url='https://github.com/aquasecurity/trivy'
@@ -14,7 +14,7 @@
 provides=('trivy')
 conflicts=('trivy')
 source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-b2sums=('38cda5c6def31ea7c27207cd618daf069c79321830ed5bd0e53778f5b4fb55d1f777a3788e8d6cc201f540cb99b60f6ce6b4304f22478e83a08ea2f5674d5cb6')
+b2sums=('bd06862845a2b37b7eaa5733b48973038ef418407d322144b318afea5e2c3062a3e6ddc1c1647e99c120dfead30875ce2e85d1b6bf83b44f96b524f413cbc69f')
 
 prepare() {
   cd ${pkgname}-${pkgver}



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

2022-04-04 Thread Justin Kromlinger via arch-commits
Date: Monday, April 4, 2022 @ 20:48:20
  Author: hashworks
Revision: 1181404

archrelease: copy trunk to community-x86_64

Added:
  trivy/repos/community-x86_64/PKGBUILD
(from rev 1181403, trivy/trunk/PKGBUILD)
Deleted:
  trivy/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 20:48:18 UTC (rev 1181403)
+++ PKGBUILD2022-04-04 20:48:20 UTC (rev 1181404)
@@ -1,47 +0,0 @@
-# Maintainer: Justin Kromlinger 
-# Contributor: Hao Long 
-
-pkgname=trivy
-pkgver=0.25.0
-pkgrel=2
-pkgdesc='A Simple and Comprehensive Vulnerability Scanner for Containers, 
Suitable for CI'
-arch=('x86_64')
-url='https://github.com/aquasecurity/trivy'
-license=('Apache')
-depends=('device-mapper')
-optdepends=('rpm: RHEL/CentOS based image support')
-makedepends=('go' 'btrfs-progs')
-provides=('trivy')
-conflicts=('trivy')
-source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-b2sums=('38cda5c6def31ea7c27207cd618daf069c79321830ed5bd0e53778f5b4fb55d1f777a3788e8d6cc201f540cb99b60f6ce6b4304f22478e83a08ea2f5674d5cb6')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  find docs -type f -name "*.md" \
--exec sed 
"s|\(../\)*imgs/\(.*\.[a-z]\{3\}\)|${url}/raw/main/docs/imgs/\2|g" -i {} \;
-
-  rm -Rf docs/{build,imgs}
-}
-
-build() {
-  cd ${pkgname}-${pkgver}/cmd/trivy
-
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
-  go build .
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm755 "cmd/trivy/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-
-  mkdir -p "${pkgdir}/usr/share/doc"
-  cp -r docs "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: trivy/repos/community-x86_64/PKGBUILD (from rev 1181403, 
trivy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 20:48:20 UTC (rev 1181404)
@@ -0,0 +1,47 @@
+# Maintainer: Justin Kromlinger 
+# Contributor: Hao Long 
+
+pkgname=trivy
+pkgver=0.25.1
+pkgrel=1
+pkgdesc='A Simple and Comprehensive Vulnerability Scanner for Containers, 
Suitable for CI'
+arch=('x86_64')
+url='https://github.com/aquasecurity/trivy'
+license=('Apache')
+depends=('device-mapper')
+optdepends=('rpm: RHEL/CentOS based image support')
+makedepends=('go' 'btrfs-progs')
+provides=('trivy')
+conflicts=('trivy')
+source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
+b2sums=('bd06862845a2b37b7eaa5733b48973038ef418407d322144b318afea5e2c3062a3e6ddc1c1647e99c120dfead30875ce2e85d1b6bf83b44f96b524f413cbc69f')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  find docs -type f -name "*.md" \
+-exec sed 
"s|\(../\)*imgs/\(.*\.[a-z]\{3\}\)|${url}/raw/main/docs/imgs/\2|g" -i {} \;
+
+  rm -Rf docs/{build,imgs}
+}
+
+build() {
+  cd ${pkgname}-${pkgver}/cmd/trivy
+
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+  go build .
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm755 "cmd/trivy/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+
+  mkdir -p "${pkgdir}/usr/share/doc"
+  cp -r docs "${pkgdir}/usr/share/doc/${pkgname}"
+}



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 20:35:58
  Author: dvzrv
Revision: 1181402

archrelease: copy trunk to community-x86_64

Added:
  vmpk/repos/community-x86_64/PKGBUILD
(from rev 1181401, vmpk/trunk/PKGBUILD)
Deleted:
  vmpk/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 20:35:47 UTC (rev 1181401)
+++ PKGBUILD2022-04-04 20:35:58 UTC (rev 1181402)
@@ -1,32 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-
-pkgname=vmpk
-pkgver=0.8.7
-pkgrel=1
-pkgdesc="Virtual MIDI Piano Keyboard"
-arch=(x86_64)
-url="http://vmpk.sourceforge.net/;
-license=(GPL3)
-groups=(pro-audio)
-depends=(gcc-libs glibc libxcb qt5-base qt5-x11extras)
-makedepends=(cmake docbook-xsl drumstick qt5-tools)
-source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/${pkgver/a/}/$pkgname-$pkgver.tar.bz2)
-sha512sums=('83867aed8be8e620e18070d5eba9f5e4026b1f39ff9d7fe55e342d4a040c96e2353844296191c0efb46483254b1d2d30824894077562a165f7474d02a882cfc6')
-b2sums=('788c70034fcfb53edfb4c6b0faf80c06e2ae096c06819bc727359d4597cb217ca60efc9e19b223dc0d7106ddd9083abbce881f175b98203f3b6acc9b44e2')
-
-build() {
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=None \
--Wno-dev \
--B build \
--S $pkgname-$pkgver
-  make VERBOSE=1 -C build
-}
-
-package() {
-  depends+=(libdrumstick-rt.so libdrumstick-widgets.so)
-
-  make DESTDIR="$pkgdir" install -C build
-  install -vDm 644 $pkgname-$pkgver/{AUTHORS,ChangeLog,NEWS,README.md,TODO} -t 
"$pkgdir/usr/share/doc/$pkgname"
-}

Copied: vmpk/repos/community-x86_64/PKGBUILD (from rev 1181401, 
vmpk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 20:35:58 UTC (rev 1181402)
@@ -0,0 +1,33 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+
+pkgname=vmpk
+pkgver=0.8.7
+pkgrel=2
+pkgdesc="Virtual MIDI Piano Keyboard"
+arch=(x86_64)
+url="http://vmpk.sourceforge.net/;
+license=(GPL3)
+groups=(pro-audio)
+depends=(gcc-libs glibc libxcb qt5-base qt5-x11extras)
+makedepends=(cmake docbook-xsl drumstick qt5-tools)
+options=(debug)
+source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/${pkgver/a/}/$pkgname-$pkgver.tar.bz2)
+sha512sums=('83867aed8be8e620e18070d5eba9f5e4026b1f39ff9d7fe55e342d4a040c96e2353844296191c0efb46483254b1d2d30824894077562a165f7474d02a882cfc6')
+b2sums=('788c70034fcfb53edfb4c6b0faf80c06e2ae096c06819bc727359d4597cb217ca60efc9e19b223dc0d7106ddd9083abbce881f175b98203f3b6acc9b44e2')
+
+build() {
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-Wno-dev \
+-B build \
+-S $pkgname-$pkgver
+  make VERBOSE=1 -C build
+}
+
+package() {
+  depends+=(libdrumstick-rt.so libdrumstick-widgets.so)
+
+  make DESTDIR="$pkgdir" install -C build
+  install -vDm 644 $pkgname-$pkgver/{AUTHORS,ChangeLog,NEWS,README.md,TODO} -t 
"$pkgdir/usr/share/doc/$pkgname"
+}



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 20:35:47
  Author: dvzrv
Revision: 1181401

upgpkg: vmpk 0.8.7-2: Rebuild to add debug package.

Modified:
  vmpk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 20:34:25 UTC (rev 1181400)
+++ PKGBUILD2022-04-04 20:35:47 UTC (rev 1181401)
@@ -3,7 +3,7 @@
 
 pkgname=vmpk
 pkgver=0.8.7
-pkgrel=1
+pkgrel=2
 pkgdesc="Virtual MIDI Piano Keyboard"
 arch=(x86_64)
 url="http://vmpk.sourceforge.net/;
@@ -11,6 +11,7 @@
 groups=(pro-audio)
 depends=(gcc-libs glibc libxcb qt5-base qt5-x11extras)
 makedepends=(cmake docbook-xsl drumstick qt5-tools)
+options=(debug)
 
source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/${pkgver/a/}/$pkgname-$pkgver.tar.bz2)
 
sha512sums=('83867aed8be8e620e18070d5eba9f5e4026b1f39ff9d7fe55e342d4a040c96e2353844296191c0efb46483254b1d2d30824894077562a165f7474d02a882cfc6')
 
b2sums=('788c70034fcfb53edfb4c6b0faf80c06e2ae096c06819bc727359d4597cb217ca60efc9e19b223dc0d7106ddd9083abbce881f175b98203f3b6acc9b44e2')



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 20:34:25
  Author: dvzrv
Revision: 1181400

archrelease: copy trunk to community-any

Added:
  nuitka/repos/community-any/PKGBUILD
(from rev 1181399, nuitka/trunk/PKGBUILD)
Deleted:
  nuitka/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 20:34:17 UTC (rev 1181399)
+++ PKGBUILD2022-04-04 20:34:25 UTC (rev 1181400)
@@ -1,43 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: David Runge 
-# Contributor: Panagiotis Mavrogiorgos 
-
-pkgname=nuitka
-pkgver=0.7.6
-pkgrel=1
-pkgdesc='Python compiler with full language support and CPython compatibility'
-arch=(any)
-url='https://nuitka.net/'
-license=(Apache)
-depends=(python-appdirs scons)
-makedepends=(python-setuptools)
-checkdepends=(ccache fuse2 patchelf python-boto3 python-brotli strace)
-optdepends=('ccache: for build caching'
-'chrpath: for building standalone executables'
-'pyside2: for using Qt5 APIs')
-source=("https://files.pythonhosted.org/packages/source/N/${pkgname^}/${pkgname^}-${pkgver}.tar.gz;)
-b2sums=('9b6f236691b0a05fafa4b90af84cb2c11f05c5f96ca4e31124ca40af0912826aa1f1db7334b71a316b71f7a0bc98d92cf7980caacc96a68aabaf6ce1b7b25352')
-
-prepare() {
-  cd ${pkgname^}-$pkgver
-  # in our build environment /etc/os-release will not exist, but 
/usr/lib/os-release will
-  sed -e 's,/etc/os-release,/usr/lib/os-release,' -i nuitka/utils/Utils.py
-}
-
-build() {
-  cd ${pkgname^}-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd ${pkgname^}-$pkgver
-  # skip tests for other interpreters, jinja2 and for those that require 
network access
-  # NOTE: the test uses "strace", which is currently not supported by the 
reproducible build system
-  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test
-}
-
-package() {
-  cd ${pkgname^}-$pkgver
-  python setup.py install --optimize=1 --root="$pkgdir" --skip-build
-  install -Dm644 {Changelog,Developer_Manual,README}.rst -t 
"$pkgdir/usr/share/doc/$pkgname/"
-}

Copied: nuitka/repos/community-any/PKGBUILD (from rev 1181399, 
nuitka/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 20:34:25 UTC (rev 1181400)
@@ -0,0 +1,43 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: David Runge 
+# Contributor: Panagiotis Mavrogiorgos 
+
+pkgname=nuitka
+pkgver=0.7.7
+pkgrel=1
+pkgdesc='Python compiler with full language support and CPython compatibility'
+arch=(any)
+url='https://nuitka.net/'
+license=(Apache)
+depends=(python-appdirs scons)
+makedepends=(python-setuptools)
+checkdepends=(ccache fuse2 patchelf python-boto3 python-brotli strace)
+optdepends=('ccache: for build caching'
+'chrpath: for building standalone executables'
+'pyside2: for using Qt5 APIs')
+source=("https://files.pythonhosted.org/packages/source/N/${pkgname^}/${pkgname^}-${pkgver}.tar.gz;)
+b2sums=('e83b28f23330f07c2c51f865d480fe574bce2cc30222438be9b55fd431f29b1e235f667498b777faf027b410a7ca8c2a007d9715e392ca69baa72a75a73e4b36')
+
+prepare() {
+  cd ${pkgname^}-$pkgver
+  # in our build environment /etc/os-release will not exist, but 
/usr/lib/os-release will
+  sed -e 's,/etc/os-release,/usr/lib/os-release,' -i nuitka/utils/Utils.py
+}
+
+build() {
+  cd ${pkgname^}-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd ${pkgname^}-$pkgver
+  # skip tests for other interpreters, jinja2 and for those that require 
network access
+  # NOTE: the test uses "strace", which is currently not supported by the 
reproducible build system
+  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test
+}
+
+package() {
+  cd ${pkgname^}-$pkgver
+  python setup.py install --optimize=1 --root="$pkgdir" --skip-build
+  install -Dm644 {Changelog,Developer_Manual,README}.rst -t 
"$pkgdir/usr/share/doc/$pkgname/"
+}



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 20:34:17
  Author: dvzrv
Revision: 1181399

upgpkg: nuitka 0.7.7-1: Upgrade to 0.7.7.

Modified:
  nuitka/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 20:30:59 UTC (rev 1181398)
+++ PKGBUILD2022-04-04 20:34:17 UTC (rev 1181399)
@@ -3,7 +3,7 @@
 # Contributor: Panagiotis Mavrogiorgos 
 
 pkgname=nuitka
-pkgver=0.7.6
+pkgver=0.7.7
 pkgrel=1
 pkgdesc='Python compiler with full language support and CPython compatibility'
 arch=(any)
@@ -16,7 +16,7 @@
 'chrpath: for building standalone executables'
 'pyside2: for using Qt5 APIs')
 
source=("https://files.pythonhosted.org/packages/source/N/${pkgname^}/${pkgname^}-${pkgver}.tar.gz;)
-b2sums=('9b6f236691b0a05fafa4b90af84cb2c11f05c5f96ca4e31124ca40af0912826aa1f1db7334b71a316b71f7a0bc98d92cf7980caacc96a68aabaf6ce1b7b25352')
+b2sums=('e83b28f23330f07c2c51f865d480fe574bce2cc30222438be9b55fd431f29b1e235f667498b777faf027b410a7ca8c2a007d9715e392ca69baa72a75a73e4b36')
 
 prepare() {
   cd ${pkgname^}-$pkgver



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

2022-04-04 Thread Frederik Schwan via arch-commits
Date: Monday, April 4, 2022 @ 20:30:59
  Author: freswa
Revision: 1181398

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 20:30:57 UTC (rev 1181397)
+++ PKGBUILD2022-04-04 20:30:59 UTC (rev 1181398)
@@ -1,59 +0,0 @@
-# Maintainer: Frederik Schwan 
-# Contributor: Daniel M. Capella 
-# Contributor: Josip Ponjavic 
-
-pkgname=i3status-rust
-pkgver=0.21.8
-pkgrel=1
-pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
-arch=('x86_64')
-url='https://github.com/greshake/i3status-rust'
-license=('GPL3')
-depends=('libpulse' 'lm_sensors')
-makedepends=('rust')
-optdepends=('alsa-utils: for the volume block'
-'bluez: for the bluetooth block'
-'curl: for the weather block'
-'fakeroot: for the pacman block to show pending updates'
-'ibus: for the ibus block'
-'iw: display wifi signal strength in net block'
-'kdeconnect: for the kdeconnect block'
-'networkmanager: for the networkmanager block'
-'powerline-fonts: for all themes using the Powerline arrow char'
-'pulseaudio: for the volume block'
-'speedtest-cli: for the speedtest block'
-'ttf-font-awesome: for the awesome icons'
-'upower: for the battery block')
-source=("https://github.com/greshake/i3status-rust/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-b2sums=('d3b4c0309b6226b1973d0ff2a8e3bf9b66348e449304488a2641e2196acd4b0478922ab119103954f90929d411a3fa98ad9ce8083317dcc6a9b7045beb14b291')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-
-build() {
-  cd ${pkgname}-${pkgver}
-  export RUSTUP_TOOLCHAIN=stable
-  export CARGO_TARGET_DIR=target
-  cargo build --release --locked --features 'pulseaudio maildir'
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  install -Dm755 -t "${pkgdir}"/usr/bin target/release/i3status-rs
-  install -Dm644 -t "${pkgdir}"/usr/share/man/man1 man/i3status-rs.1
-
-  for icon in files/icons/*.toml; do
-install -Dm644 -t "${pkgdir}"/usr/share/${pkgname}/icons "${icon}"
-  done
-
-  for theme in files/themes/*.toml; do
-install -Dm644 -t "${pkgdir}"/usr/share/${pkgname}/themes "${theme}"
-  done
-
-  for example in examples/*.toml; do
-install -Dm644 -t "${pkgdir}"/usr/share/doc/${pkgname}/examples/ ${example}
-  done
-}

Copied: i3status-rust/repos/community-x86_64/PKGBUILD (from rev 1181397, 
i3status-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 20:30:59 UTC (rev 1181398)
@@ -0,0 +1,59 @@
+# Maintainer: Frederik Schwan 
+# Contributor: Daniel M. Capella 
+# Contributor: Josip Ponjavic 
+
+pkgname=i3status-rust
+pkgver=0.21.9
+pkgrel=1
+pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
+arch=('x86_64')
+url='https://github.com/greshake/i3status-rust'
+license=('GPL3')
+depends=('libpulse' 'lm_sensors')
+makedepends=('rust')
+optdepends=('alsa-utils: for the volume block'
+'bluez: for the bluetooth block'
+'curl: for the weather block'
+'fakeroot: for the pacman block to show pending updates'
+'ibus: for the ibus block'
+'iw: display wifi signal strength in net block'
+'kdeconnect: for the kdeconnect block'
+'networkmanager: for the networkmanager block'
+'powerline-fonts: for all themes using the Powerline arrow char'
+'pulseaudio: for the volume block'
+'speedtest-cli: for the speedtest block'
+'ttf-font-awesome: for the awesome icons'
+'upower: for the battery block')
+source=("https://github.com/greshake/i3status-rust/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+b2sums=('3092c1998eecf0fae959ae880aaafd301be89998d64a643061b97425d2e51be505df91e6462e8d2346d14d9a0dc841917b4b2b6dfbab75cd89c0b9ccfd8d2e70')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+
+build() {
+  cd ${pkgname}-${pkgver}
+  export RUSTUP_TOOLCHAIN=stable
+  export CARGO_TARGET_DIR=target
+  cargo build --release --locked --features 'pulseaudio maildir'
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  install -Dm755 -t "${pkgdir}"/usr/bin target/release/i3status-rs
+  install -Dm644 -t "${pkgdir}"/usr/share/man/man1 man/i3status-rs.1
+
+  for icon in files/icons/*.toml; do
+install -Dm644 -t "${pkgdir}"/usr/share/${pkgname}/icons 

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

2022-04-04 Thread Frederik Schwan via arch-commits
Date: Monday, April 4, 2022 @ 20:30:57
  Author: freswa
Revision: 1181397

upgpkg: i3status-rust 0.21.9-1

Modified:
  i3status-rust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 20:29:15 UTC (rev 1181396)
+++ PKGBUILD2022-04-04 20:30:57 UTC (rev 1181397)
@@ -3,7 +3,7 @@
 # Contributor: Josip Ponjavic 
 
 pkgname=i3status-rust
-pkgver=0.21.8
+pkgver=0.21.9
 pkgrel=1
 pkgdesc='Resourcefriendly and feature-rich replacement for i3status, written 
in pure Rust'
 arch=('x86_64')
@@ -25,7 +25,7 @@
 'ttf-font-awesome: for the awesome icons'
 'upower: for the battery block')
 
source=("https://github.com/greshake/i3status-rust/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-b2sums=('d3b4c0309b6226b1973d0ff2a8e3bf9b66348e449304488a2641e2196acd4b0478922ab119103954f90929d411a3fa98ad9ce8083317dcc6a9b7045beb14b291')
+b2sums=('3092c1998eecf0fae959ae880aaafd301be89998d64a643061b97425d2e51be505df91e6462e8d2346d14d9a0dc841917b4b2b6dfbab75cd89c0b9ccfd8d2e70')
 
 prepare() {
   cd ${pkgname}-${pkgver}



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 20:29:15
  Author: dvzrv
Revision: 1181396

archrelease: copy trunk to community-x86_64

Added:
  vmpk/repos/community-x86_64/PKGBUILD
(from rev 1181395, vmpk/trunk/PKGBUILD)
Deleted:
  vmpk/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 20:29:07 UTC (rev 1181395)
+++ PKGBUILD2022-04-04 20:29:15 UTC (rev 1181396)
@@ -1,32 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-
-pkgname=vmpk
-pkgver=0.8.6
-pkgrel=1
-pkgdesc="Virtual MIDI Piano Keyboard"
-arch=(x86_64)
-url="http://vmpk.sourceforge.net/;
-license=(GPL3)
-groups=(pro-audio)
-depends=(gcc-libs glibc libxcb qt5-base qt5-x11extras)
-makedepends=(cmake docbook-xsl drumstick qt5-tools)
-source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver/a/}/${pkgname}-${pkgver}.tar.bz2;)
-sha512sums=('0b77aabf1dda99c9149a5353fc9d0363469de2678e6089fc7dc13dc349587fd1b1630cf511c4d9ef384a7523b8f023e451d6c543a805dcda0bf5cf9d7a4b4277')
-b2sums=('a2145394a9ad90f567e292e23bd9b7f62e26160b6375a48cea2a84818139865a65fdde172f6a8b6e42015e0ce14127c1f97558e00b56ebc288fa1e3d3bd11eab')
-
-build() {
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=None \
--Wno-dev \
--B build \
--S "${pkgname}-${pkgver}"
-  make VERBOSE=1 -C build
-}
-
-package() {
-  depends+=(libdrumstick-rt.so libdrumstick-widgets.so)
-
-  make DESTDIR="$pkgdir/" install -C build
-  install -vDm 644 
"${pkgname}-${pkgver}/"{AUTHORS,ChangeLog,NEWS,README.md,TODO} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: vmpk/repos/community-x86_64/PKGBUILD (from rev 1181395, 
vmpk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 20:29:15 UTC (rev 1181396)
@@ -0,0 +1,32 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+
+pkgname=vmpk
+pkgver=0.8.7
+pkgrel=1
+pkgdesc="Virtual MIDI Piano Keyboard"
+arch=(x86_64)
+url="http://vmpk.sourceforge.net/;
+license=(GPL3)
+groups=(pro-audio)
+depends=(gcc-libs glibc libxcb qt5-base qt5-x11extras)
+makedepends=(cmake docbook-xsl drumstick qt5-tools)
+source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/${pkgver/a/}/$pkgname-$pkgver.tar.bz2)
+sha512sums=('83867aed8be8e620e18070d5eba9f5e4026b1f39ff9d7fe55e342d4a040c96e2353844296191c0efb46483254b1d2d30824894077562a165f7474d02a882cfc6')
+b2sums=('788c70034fcfb53edfb4c6b0faf80c06e2ae096c06819bc727359d4597cb217ca60efc9e19b223dc0d7106ddd9083abbce881f175b98203f3b6acc9b44e2')
+
+build() {
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-Wno-dev \
+-B build \
+-S $pkgname-$pkgver
+  make VERBOSE=1 -C build
+}
+
+package() {
+  depends+=(libdrumstick-rt.so libdrumstick-widgets.so)
+
+  make DESTDIR="$pkgdir" install -C build
+  install -vDm 644 $pkgname-$pkgver/{AUTHORS,ChangeLog,NEWS,README.md,TODO} -t 
"$pkgdir/usr/share/doc/$pkgname"
+}



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 20:29:07
  Author: dvzrv
Revision: 1181395

upgpkg: vmpk 0.8.7-1: Upgrade to 0.8.7.

Remove unneeded quotes and curly braces.

Modified:
  vmpk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 20:28:00 UTC (rev 1181394)
+++ PKGBUILD2022-04-04 20:29:07 UTC (rev 1181395)
@@ -2,7 +2,7 @@
 # Contributor: speps 
 
 pkgname=vmpk
-pkgver=0.8.6
+pkgver=0.8.7
 pkgrel=1
 pkgdesc="Virtual MIDI Piano Keyboard"
 arch=(x86_64)
@@ -11,9 +11,9 @@
 groups=(pro-audio)
 depends=(gcc-libs glibc libxcb qt5-base qt5-x11extras)
 makedepends=(cmake docbook-xsl drumstick qt5-tools)
-source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver/a/}/${pkgname}-${pkgver}.tar.bz2;)
-sha512sums=('0b77aabf1dda99c9149a5353fc9d0363469de2678e6089fc7dc13dc349587fd1b1630cf511c4d9ef384a7523b8f023e451d6c543a805dcda0bf5cf9d7a4b4277')
-b2sums=('a2145394a9ad90f567e292e23bd9b7f62e26160b6375a48cea2a84818139865a65fdde172f6a8b6e42015e0ce14127c1f97558e00b56ebc288fa1e3d3bd11eab')
+source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/${pkgver/a/}/$pkgname-$pkgver.tar.bz2)
+sha512sums=('83867aed8be8e620e18070d5eba9f5e4026b1f39ff9d7fe55e342d4a040c96e2353844296191c0efb46483254b1d2d30824894077562a165f7474d02a882cfc6')
+b2sums=('788c70034fcfb53edfb4c6b0faf80c06e2ae096c06819bc727359d4597cb217ca60efc9e19b223dc0d7106ddd9083abbce881f175b98203f3b6acc9b44e2')
 
 build() {
   cmake -DCMAKE_INSTALL_PREFIX=/usr \
@@ -20,7 +20,7 @@
 -DCMAKE_BUILD_TYPE=None \
 -Wno-dev \
 -B build \
--S "${pkgname}-${pkgver}"
+-S $pkgname-$pkgver
   make VERBOSE=1 -C build
 }
 
@@ -27,6 +27,6 @@
 package() {
   depends+=(libdrumstick-rt.so libdrumstick-widgets.so)
 
-  make DESTDIR="$pkgdir/" install -C build
-  install -vDm 644 
"${pkgname}-${pkgver}/"{AUTHORS,ChangeLog,NEWS,README.md,TODO} -t 
"${pkgdir}/usr/share/doc/${pkgname}"
+  make DESTDIR="$pkgdir" install -C build
+  install -vDm 644 $pkgname-$pkgver/{AUTHORS,ChangeLog,NEWS,README.md,TODO} -t 
"$pkgdir/usr/share/doc/$pkgname"
 }



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

2022-04-04 Thread Frederik Schwan via arch-commits
Date: Monday, April 4, 2022 @ 20:28:00
  Author: freswa
Revision: 1181394

archrelease: copy trunk to community-x86_64

Added:
  profanity/repos/community-x86_64/PKGBUILD
(from rev 1181393, profanity/trunk/PKGBUILD)
Deleted:
  profanity/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 20:27:58 UTC (rev 1181393)
+++ PKGBUILD2022-04-04 20:28:00 UTC (rev 1181394)
@@ -1,94 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: jason ryan 
-# Contributor: Christian Rebischke 
-
-pkgbase=profanity
-pkgname=('profanity' 'profanity-gtk')
-pkgver=0.12.0
-pkgrel=1
-epoch=1
-pkgdesc='Console based XMPP client'
-url='http://www.profanity.im'
-arch=('x86_64')
-license=('GPL3')
-_clidepends=(
-  'libcurl.so' 'libncursesw.so' 'expat' 'glib2' 'libotr'
-  'libmesode.so' 'libnotify.so' 'libcrypt.so'
-  'libgpgme.so' 'python' 'libgcrypt' 'libsignal-protocol-c'
-  'glibc' 'libreadline.so' 'libassuan' 'libgpg-error' 'libstrophe.so'
-  )
-_gtkdepends=(
-  'libgtk-3.so' 'libxss' 'libx11' 'libpango-1.0.so'
-  'gdk-pixbuf2' 'libatk-1.0.so' 'cairo'
-  )
-makedepends=(
-  ${_clidepends[@]} ${_gtkdepends[@]} 'autoconf-archive'
-  )
-checkdepends=('cmocka')
-source=(https://github.com/profanity-im/profanity/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
-sha256sums=('bd9a5d3b0bf781124e581d823bf52bfb8b8b43c428c5a2717609399b0adec15f')
-sha512sums=('2c644f42d9e9253c4f11f19bb3087dedf473adabb0b91d7b24dbf402af02f66bc3c907235ba9fa8aaf6a08cb2ef6d677a4b2fdf9e19950e7f9d35e923ff5a289')
-b2sums=('a11c56efa7fc2f513c6736ac53e681602f33359ff300783c3d9b097efebbc5d83f7160b273f0510449342962416be44576529a473d7bdc7ab13446c4865d9ce3')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-
-  mkdir -p m4
-  autoreconf -fiv
-  cp -a "${srcdir}"/${pkgname}-${pkgver}{,-gtk}
-}
-
-build() {
-  echo "Building non-gtk variant..."
-  (cd ${pkgname}-${pkgver}
-./configure \
-  --prefix=/usr \
-  --disable-icons-and-clipboard \
-  --without-xscreensaver \
-  --enable-notifications \
-  --enable-python-plugins \
-  --enable-c-plugins \
-  --enable-plugins \
-  --enable-otr \
-  --enable-omemo \
-  --enable-pgp
-make
-  )
-  echo "Building gtk variant..."
-  (cd ${pkgname}-${pkgver}-gtk
-./configure \
-  --prefix=/usr \
-  --enable-icons-and-clipboard \
-  --with-xscreensaver \
-  --enable-notifications \
-  --enable-python-plugins \
-  --enable-c-plugins \
-  --enable-plugins \
-  --enable-otr \
-  --enable-omemo \
-  --enable-pgp
-make
-  )
-}
-
-package_profanity() {
-  depends=(
-${_clidepends[@]}
-  )
-  cd ${pkgbase}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-
-package_profanity-gtk() {
-  pkgdesc+=' (gtk support)'
-  depends=(
-${_clidepends[@]} ${_gtkdepends[@]}
-  )
-  provides=('profanity')
-  conflicts=('profanity')
-  cd ${pkgbase}-${pkgver}-gtk
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: profanity/repos/community-x86_64/PKGBUILD (from rev 1181393, 
profanity/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 20:28:00 UTC (rev 1181394)
@@ -0,0 +1,94 @@
+# Maintainer: Levente Polyak 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: jason ryan 
+# Contributor: Christian Rebischke 
+
+pkgbase=profanity
+pkgname=('profanity' 'profanity-gtk')
+pkgver=0.12.1
+pkgrel=1
+epoch=1
+pkgdesc='Console based XMPP client'
+url='http://www.profanity.im'
+arch=('x86_64')
+license=('GPL3')
+_clidepends=(
+  'libcurl.so' 'libncursesw.so' 'expat' 'glib2' 'libotr'
+  'libmesode.so' 'libnotify.so' 'libcrypt.so'
+  'libgpgme.so' 'python' 'libgcrypt' 'libsignal-protocol-c'
+  'glibc' 'libreadline.so' 'libassuan' 'libgpg-error' 'libstrophe.so'
+  )
+_gtkdepends=(
+  'libgtk-3.so' 'libxss' 'libx11' 'libpango-1.0.so'
+  'gdk-pixbuf2' 'libatk-1.0.so' 'cairo'
+  )
+makedepends=(
+  ${_clidepends[@]} ${_gtkdepends[@]} 'autoconf-archive'
+  )
+checkdepends=('cmocka')
+source=(https://github.com/profanity-im/profanity/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
+sha256sums=('2a271e17dfb7b556d76eb69fb6e8b9676da6f78869172e62339937c9b774b6ea')
+sha512sums=('399105dfe49e3bc711426e77d45f92b347cca6ba47059e33e0ffb3997adf7c223b2959096bbb2419891f061eb2cf63da3b90d2d2b13dcd5a0d06046e851b5c69')
+b2sums=('73d1588d94b293eae9e55274abde4ddbebc890d0e05ab266499fd768c313903e508fd009aec490f740b7a765dc48c5e4056378a0cef1f0f6a71109fee226')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  mkdir -p m4
+  autoreconf -fiv
+  cp -a "${srcdir}"/${pkgname}-${pkgver}{,-gtk}
+}
+
+build() {
+  echo "Building non-gtk variant..."
+  (cd ${pkgname}-${pkgver}
+./configure \
+  

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

2022-04-04 Thread Frederik Schwan via arch-commits
Date: Monday, April 4, 2022 @ 20:27:58
  Author: freswa
Revision: 1181393

upgpkg: profanity 1:0.12.1-1

Modified:
  profanity/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 20:26:25 UTC (rev 1181392)
+++ PKGBUILD2022-04-04 20:27:58 UTC (rev 1181393)
@@ -5,7 +5,7 @@
 
 pkgbase=profanity
 pkgname=('profanity' 'profanity-gtk')
-pkgver=0.12.0
+pkgver=0.12.1
 pkgrel=1
 epoch=1
 pkgdesc='Console based XMPP client'
@@ -27,9 +27,9 @@
   )
 checkdepends=('cmocka')
 
source=(https://github.com/profanity-im/profanity/archive/${pkgver}/${pkgbase}-${pkgver}.tar.gz)
-sha256sums=('bd9a5d3b0bf781124e581d823bf52bfb8b8b43c428c5a2717609399b0adec15f')
-sha512sums=('2c644f42d9e9253c4f11f19bb3087dedf473adabb0b91d7b24dbf402af02f66bc3c907235ba9fa8aaf6a08cb2ef6d677a4b2fdf9e19950e7f9d35e923ff5a289')
-b2sums=('a11c56efa7fc2f513c6736ac53e681602f33359ff300783c3d9b097efebbc5d83f7160b273f0510449342962416be44576529a473d7bdc7ab13446c4865d9ce3')
+sha256sums=('2a271e17dfb7b556d76eb69fb6e8b9676da6f78869172e62339937c9b774b6ea')
+sha512sums=('399105dfe49e3bc711426e77d45f92b347cca6ba47059e33e0ffb3997adf7c223b2959096bbb2419891f061eb2cf63da3b90d2d2b13dcd5a0d06046e851b5c69')
+b2sums=('73d1588d94b293eae9e55274abde4ddbebc890d0e05ab266499fd768c313903e508fd009aec490f740b7a765dc48c5e4056378a0cef1f0f6a71109fee226')
 
 prepare() {
   cd ${pkgname}-${pkgver}



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 20:03:18
  Author: dvzrv
Revision: 1181389

archrelease: copy trunk to community-staging-x86_64

Added:
  kernelshark/repos/community-staging-x86_64/
  kernelshark/repos/community-staging-x86_64/PKGBUILD
(from rev 1181388, kernelshark/trunk/PKGBUILD)

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

Copied: kernelshark/repos/community-staging-x86_64/PKGBUILD (from rev 1181388, 
kernelshark/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-04-04 20:03:18 UTC (rev 1181389)
@@ -0,0 +1,40 @@
+# Maintainer: David Runge 
+
+pkgname=kernelshark
+pkgver=2.1.0
+pkgrel=2
+pkgdesc="GUI frontend for trace-cmd based Linux kernel Ftrace captures"
+arch=(x86_64)
+url="https://kernelshark.org/;
+license=(GPL2)
+depends=(freeglut gcc-libs glibc glu libglvnd qt5-base)
+makedepends=(boost cmake json-c libtracefs libtraceevent trace-cmd 
ttf-fira-sans)
+provides=(libkshark.so libkshark-plot.so libkshark-gui.so)
+source=($pkgname-$pkgver.tar.gz::https://git.kernel.org/pub/scm/utils/trace-cmd/kernel-shark.git/snapshot/kernel-shark-$pkgname-v$pkgver.tar.gz)
+sha512sums=('4b463cf06a919d67fa38ada8221e4702e2fac725d917e7abd12e1d69880ba964881ac549caf90bd7cb22edea4f28d7937494a05f75218f16fe2edcdff7161c3e')
+b2sums=('2798626c598ec2464f018b5808a6da460a552920c373dbf1eaba5d243e2f150da2a9a25668f8cb27e2ddc7dc286d4d5215d942893456de9339a63bde0e4d7381')
+
+prepare() {
+  cd kernel-shark-$pkgname-v$pkgver
+
+  # replace FreeSans with ttf-fira-sans
+  sed -e 's/FreeSans/FiraSans-Regular/g' \
+  -i CMakeLists.txt
+}
+
+build() {
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-D_INSTALL_PREFIX=/usr \
+-D_LIBDIR=/usr/lib \
+-Wno-dev \
+-B build \
+-S kernel-shark-$pkgname-v$pkgver
+  make VERBOSE=1 -C build
+}
+
+package() {
+  depends+=(libjson-c.so libtracefs.so libtracecmd.so libtraceevent.so)
+
+  make DESTDIR="${pkgdir}" prefix=/usr VERBOSE=1 install -C build
+}



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 20:03:11
  Author: dvzrv
Revision: 1181388

upgpkg: kernelshark 2.1.0-2: Rebuild against trace-cmd >= 3.0.3.

Modified:
  kernelshark/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 19:58:44 UTC (rev 1181387)
+++ PKGBUILD2022-04-04 20:03:11 UTC (rev 1181388)
@@ -2,7 +2,7 @@
 
 pkgname=kernelshark
 pkgver=2.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="GUI frontend for trace-cmd based Linux kernel Ftrace captures"
 arch=(x86_64)
 url="https://kernelshark.org/;
@@ -10,13 +10,12 @@
 depends=(freeglut gcc-libs glibc glu libglvnd qt5-base)
 makedepends=(boost cmake json-c libtracefs libtraceevent trace-cmd 
ttf-fira-sans)
 provides=(libkshark.so libkshark-plot.so libkshark-gui.so)
-source=("${pkgname}-${pkgver}.tar.gz::https://git.kernel.org/pub/scm/utils/trace-cmd/kernel-shark.git/snapshot/kernel-shark-${pkgname}-v${pkgver}.tar.gz;)
+source=($pkgname-$pkgver.tar.gz::https://git.kernel.org/pub/scm/utils/trace-cmd/kernel-shark.git/snapshot/kernel-shark-$pkgname-v$pkgver.tar.gz)
 
sha512sums=('4b463cf06a919d67fa38ada8221e4702e2fac725d917e7abd12e1d69880ba964881ac549caf90bd7cb22edea4f28d7937494a05f75218f16fe2edcdff7161c3e')
 
b2sums=('2798626c598ec2464f018b5808a6da460a552920c373dbf1eaba5d243e2f150da2a9a25668f8cb27e2ddc7dc286d4d5215d942893456de9339a63bde0e4d7381')
 
 prepare() {
-  mv -v "kernel-shark-${pkgname}-v${pkgver}" "${pkgname}-${pkgver}"
-  cd "$pkgname-$pkgver"
+  cd kernel-shark-$pkgname-v$pkgver
 
   # replace FreeSans with ttf-fira-sans
   sed -e 's/FreeSans/FiraSans-Regular/g' \
@@ -30,7 +29,7 @@
 -D_LIBDIR=/usr/lib \
 -Wno-dev \
 -B build \
--S "$pkgname-$pkgver"
+-S kernel-shark-$pkgname-v$pkgver
   make VERBOSE=1 -C build
 }
 



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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 20:01:16
  Author: arojas
Revision: 441555

archrelease: copy trunk to extra-x86_64

Added:
  qalculate-qt/repos/extra-x86_64/PKGBUILD
(from rev 441554, qalculate-qt/trunk/PKGBUILD)
Deleted:
  qalculate-qt/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 20:01:06 UTC (rev 441554)
+++ PKGBUILD2022-04-04 20:01:16 UTC (rev 441555)
@@ -1,24 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=qalculate-qt
-pkgver=4.1.0
-pkgrel=1
-pkgdesc='Qt frontend for libqalculate'
-arch=(x86_64)
-url='https://qalculate.github.io/'
-license=(GPL)
-depends=(libqalculate qt6-svg hicolor-icon-theme)
-makedepends=(qt6-tools)
-source=(https://github.com/Qalculate/qalculate-qt/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('b54b880750bf75e756f074c1fb6a38dcfe23ad9a53954b83a8a86981c6cb824e')
-
-build() {
-  cd $pkgname-$pkgver
-  qmake6 PREFIX=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-}

Copied: qalculate-qt/repos/extra-x86_64/PKGBUILD (from rev 441554, 
qalculate-qt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 20:01:16 UTC (rev 441555)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=qalculate-qt
+pkgver=4.1.1
+pkgrel=1
+pkgdesc='Qt frontend for libqalculate'
+arch=(x86_64)
+url='https://qalculate.github.io/'
+license=(GPL)
+depends=(libqalculate qt6-svg hicolor-icon-theme)
+makedepends=(qt6-tools)
+source=(https://github.com/Qalculate/qalculate-qt/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('463e506331e8a49ec5ee355fe74da25d7a5cae945f5228081603be1f6d31f49f')
+
+build() {
+  cd $pkgname-$pkgver
+  qmake6 PREFIX=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+}



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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 20:01:06
  Author: arojas
Revision: 441554

Update to 4.1.1

Modified:
  qalculate-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 19:58:48 UTC (rev 441553)
+++ PKGBUILD2022-04-04 20:01:06 UTC (rev 441554)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=qalculate-qt
-pkgver=4.1.0
+pkgver=4.1.1
 pkgrel=1
 pkgdesc='Qt frontend for libqalculate'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(libqalculate qt6-svg hicolor-icon-theme)
 makedepends=(qt6-tools)
 
source=(https://github.com/Qalculate/qalculate-qt/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('b54b880750bf75e756f074c1fb6a38dcfe23ad9a53954b83a8a86981c6cb824e')
+sha256sums=('463e506331e8a49ec5ee355fe74da25d7a5cae945f5228081603be1f6d31f49f')
 
 build() {
   cd $pkgname-$pkgver



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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 19:58:48
  Author: arojas
Revision: 441553

archrelease: copy trunk to extra-x86_64

Added:
  qalculate-gtk/repos/extra-x86_64/PKGBUILD
(from rev 441552, qalculate-gtk/trunk/PKGBUILD)
Deleted:
  qalculate-gtk/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 19:58:38 UTC (rev 441552)
+++ PKGBUILD2022-04-04 19:58:48 UTC (rev 441553)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Eric Bélanger 
-
-pkgname=qalculate-gtk
-pkgver=4.1.0
-pkgrel=1
-pkgdesc='GTK frontend for libqalculate'
-arch=(x86_64)
-url='https://qalculate.github.io/'
-license=(GPL)
-depends=(libqalculate gtk3)
-makedepends=(intltool python)
-source=(https://github.com/Qalculate/qalculate-gtk/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('8bab126f4f87e9321572f10e9262bf095c7e72470d4b61e2a173d273673bdeca')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: qalculate-gtk/repos/extra-x86_64/PKGBUILD (from rev 441552, 
qalculate-gtk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 19:58:48 UTC (rev 441553)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Eric Bélanger 
+
+pkgname=qalculate-gtk
+pkgver=4.1.1
+pkgrel=1
+pkgdesc='GTK frontend for libqalculate'
+arch=(x86_64)
+url='https://qalculate.github.io/'
+license=(GPL)
+depends=(libqalculate gtk3)
+makedepends=(intltool python)
+source=(https://github.com/Qalculate/qalculate-gtk/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('8bf7dee899ba480e4f82c70cb374ed1229da28f7d3b9b475a089630a8eeb32e5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 19:58:44
  Author: dvzrv
Revision: 1181387

archrelease: copy trunk to community-staging-x86_64

Added:
  trace-cmd/repos/community-staging-x86_64/
  trace-cmd/repos/community-staging-x86_64/PKGBUILD
(from rev 1181386, trace-cmd/trunk/PKGBUILD)
  trace-cmd/repos/community-staging-x86_64/trace-cmd-2.9-make_install.patch
(from rev 1181386, trace-cmd/trunk/trace-cmd-2.9-make_install.patch)
  trace-cmd/repos/community-staging-x86_64/trace-cmd-2.9.3-python3.patch
(from rev 1181386, trace-cmd/trunk/trace-cmd-2.9.3-python3.patch)

--+
 PKGBUILD |   51 +
 trace-cmd-2.9-make_install.patch |   12 
 trace-cmd-2.9.3-python3.patch|9 ++
 3 files changed, 72 insertions(+)

Copied: trace-cmd/repos/community-staging-x86_64/PKGBUILD (from rev 1181386, 
trace-cmd/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-04-04 19:58:44 UTC (rev 1181387)
@@ -0,0 +1,51 @@
+# Maintainer: David Runge 
+
+pkgname=trace-cmd
+pkgver=3.0.3
+pkgrel=1
+pkgdesc="Interact with Ftrace Linux kernel internal tracer"
+arch=(x86_64)
+url="https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git;
+license=(GPL2 LGPL2.1)
+depends=(glibc)
+makedepends=(asciidoc audit bash-completion cunit libtraceevent libtracefs 
python swig xmlto zstd)
+optdepends=('python: for Python plugins')
+provides=(libtracecmd.so)
+options=(debug)
+source=(
+  
https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/snapshot/trace-cmd-v$pkgver.tar.gz
+  $pkgname-2.9-make_install.patch
+  $pkgname-2.9.3-python3.patch
+)
+sha512sums=('896a5b2d230eb0ee19e27bb71e485acd163a3225062015a0dae5b4b55eb48d8d1cdc034f7881751523384f13e20adfd8b7bc0a53392fff8029bf1403445cc785'
+
'c9321b2b885d88557a057d7064690274799ab1d67a8babb78b1c54c4d81546fdea7313286cfd5fb9efbbcf87cf8394dcb17202ac88434a351aa652e7109e1db6'
+
'a1834b382cbee920697d08c7eb7292c4a5ea606e4f32459a60e0b236ad057536c987f3e162c9c99affa46396248e98c8f4ecd21031141f0221dbadf0bd33737d')
+b2sums=('4c45b290d5d8ecb79d60886c24e6dbf4b43ff73792ca14fd30f0dd1ea91aa1fcd61551616ef0b89cd301d4c6c2b20fad1272b2e04ed374c59e2c8f3a9f022683'
+
'8a644be295417b1fd5fb807285a7176ef0ceb737352bbb4c7a88441f9b955a90befe974d890a58f2b8fb6de8a68a1b3c5d207f057c4b08db79caf6e97fa66f50'
+
'dac368fc62d99eba6d36f2c7d81475c28211dfe5d1d59ca5e468daff31d36710637943dc822fb266784feb5355ca0bfb525819bb96095c8e0c0fa91f32558877')
+
+prepare() {
+  cd $pkgname-v$pkgver
+  patch -Np1 -i ../$pkgname-2.9-make_install.patch
+  patch -Np1 -i ../$pkgname-2.9.3-python3.patch
+}
+
+build() {
+  export PYTHON_VERS=python3
+  make prefix=/usr libdir_relative=lib all libs -C $pkgname-v$pkgver
+  make prefix=/usr doc -C $pkgname-v$pkgver
+  make test -C $pkgname-v$pkgver
+}
+
+check() {
+  ./$pkgname-v$pkgver/utest/trace-utest
+}
+
+package() {
+  depends+=(libaudit.so libtraceevent.so libtracefs.so libzstd.so)
+
+  make prefix=/usr libdir_relative=lib DESTDIR="$pkgdir" 
BASH_COMPLETE_DIR="$(pkgconf --variable=completionsdir bash-completion)" 
install_cmd install_libs -C $pkgname-v$pkgver
+  # NOTE: for unknown reasons upstream does not use DESTDIR here...
+  make prefix="$pkgdir/usr" install_doc -C $pkgname-v$pkgver
+  install -vDm 644 $pkgname-v$pkgver/tracecmd/$pkgname.bash 
"$pkgdir/usr/share/bash/bash-completion/completions/$pkgname"
+}

Copied: 
trace-cmd/repos/community-staging-x86_64/trace-cmd-2.9-make_install.patch (from 
rev 1181386, trace-cmd/trunk/trace-cmd-2.9-make_install.patch)
===
--- community-staging-x86_64/trace-cmd-2.9-make_install.patch   
(rev 0)
+++ community-staging-x86_64/trace-cmd-2.9-make_install.patch   2022-04-04 
19:58:44 UTC (rev 1181387)
@@ -0,0 +1,12 @@
+diff -ruN a/Makefile b/Makefile
+--- a/Makefile 2020-07-17 17:14:20.0 +0200
 b/Makefile 2020-07-18 10:37:32.898885286 +0200
+@@ -398,7 +398,7 @@
+ install_bash_completion: force
+   $(Q)$(call 
do_install_data,$(src)/tracecmd/trace-cmd.bash,$(BASH_COMPLETE_DIR))
+ 
+-install_cmd: all_cmd install_plugins install_python install_bash_completion
++install_cmd: all_cmd install_plugins install_python
+   $(Q)$(call do_install,$(obj)/tracecmd/trace-cmd,$(bindir_SQ))
+ 
+ install: install_cmd

Copied: trace-cmd/repos/community-staging-x86_64/trace-cmd-2.9.3-python3.patch 
(from rev 1181386, trace-cmd/trunk/trace-cmd-2.9.3-python3.patch)
===
--- community-staging-x86_64/trace-cmd-2.9.3-python3.patch  
(rev 0)
+++ community-staging-x86_64/trace-cmd-2.9.3-python3.patch  2022-04-04 
19:58:44 UTC (rev 1181387)
@@ -0,0 +1,9 @@
+diff -ruN a/python/event-viewer.py 

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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 19:58:38
  Author: arojas
Revision: 441552

Update to 4.1.1

Modified:
  qalculate-gtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 19:53:17 UTC (rev 441551)
+++ PKGBUILD2022-04-04 19:58:38 UTC (rev 441552)
@@ -2,7 +2,7 @@
 # Contributor: Eric Bélanger 
 
 pkgname=qalculate-gtk
-pkgver=4.1.0
+pkgver=4.1.1
 pkgrel=1
 pkgdesc='GTK frontend for libqalculate'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(libqalculate gtk3)
 makedepends=(intltool python)
 
source=(https://github.com/Qalculate/qalculate-gtk/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('8bab126f4f87e9321572f10e9262bf095c7e72470d4b61e2a173d273673bdeca')
+sha256sums=('8bf7dee899ba480e4f82c70cb374ed1229da28f7d3b9b475a089630a8eeb32e5')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in trace-cmd/trunk (3 files)

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 19:58:33
  Author: dvzrv
Revision: 1181386

upgpkg: trace-cmd 3.0.3-1: Upgrade to 3.0.3.

Remove unneeded patches to fix full RELRO and documentation installation.
Build unit tests and run test suite in check().

Modified:
  trace-cmd/trunk/PKGBUILD
Deleted:
  trace-cmd/trunk/trace-cmd-2.9.3-docs_makefile.patch
  trace-cmd/trunk/trace-cmd-2.9.5-full_relro.patch

-+
 PKGBUILD|   47 +++---
 trace-cmd-2.9.3-docs_makefile.patch |   42 --
 trace-cmd-2.9.5-full_relro.patch|   12 
 3 files changed, 22 insertions(+), 79 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 19:56:19 UTC (rev 1181385)
+++ PKGBUILD2022-04-04 19:58:33 UTC (rev 1181386)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 
 pkgname=trace-cmd
-pkgver=2.9.7
+pkgver=3.0.3
 pkgrel=1
 pkgdesc="Interact with Ftrace Linux kernel internal tracer"
 arch=(x86_64)
@@ -8,47 +8,44 @@
 url="https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git;
 license=(GPL2 LGPL2.1)
 depends=(glibc)
-makedepends=(asciidoc audit bash-completion libtraceevent libtracefs python 
swig xmlto)
+makedepends=(asciidoc audit bash-completion cunit libtraceevent libtracefs 
python swig xmlto zstd)
 optdepends=('python: for Python plugins')
 provides=(libtracecmd.so)
-source=("https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/snapshot/trace-cmd-v${pkgver}.tar.gz;
-"${pkgname}-2.9-make_install.patch"
-"${pkgname}-2.9.3-python3.patch"
-"${pkgname}-2.9.3-docs_makefile.patch"
-"${pkgname}-2.9.5-full_relro.patch")
-sha512sums=('f678ea380c0fe7e4ea9ed43d9024e418376fdf435043937e680d65a3728b9eefda2e6dcff0e02846267485317f764e7f7123812f5d5df5b63761a169f57520b9'
+options=(debug)
+source=(
+  
https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/snapshot/trace-cmd-v$pkgver.tar.gz
+  $pkgname-2.9-make_install.patch
+  $pkgname-2.9.3-python3.patch
+)
+sha512sums=('896a5b2d230eb0ee19e27bb71e485acd163a3225062015a0dae5b4b55eb48d8d1cdc034f7881751523384f13e20adfd8b7bc0a53392fff8029bf1403445cc785'
 
'c9321b2b885d88557a057d7064690274799ab1d67a8babb78b1c54c4d81546fdea7313286cfd5fb9efbbcf87cf8394dcb17202ac88434a351aa652e7109e1db6'
-
'a1834b382cbee920697d08c7eb7292c4a5ea606e4f32459a60e0b236ad057536c987f3e162c9c99affa46396248e98c8f4ecd21031141f0221dbadf0bd33737d'
-
'1d43fc0fec3b386a741467966bcecdcacdfbe36e21c63d644ec281ff9577332e2d6cff95cef22bab85d2209017eb39d36def35f24b86e54720d6913a44fc3cbd'
-
'56f2c7e0e3e20670af58dee7fce3910342cd792a2d8c3da311bad5dfb75b72f1456b1124c2f0ee74a84601434ed9dd6cce98464acfebd17551490f0d3061')
-b2sums=('b0dc72c0194172ce048df7870f82b75af7c0072e9606e844572e6e894eb0abc62958488bd447cc6ff6070c0327b03adfd8325d0cf39bd098fabebf63b6b084f1'
+
'a1834b382cbee920697d08c7eb7292c4a5ea606e4f32459a60e0b236ad057536c987f3e162c9c99affa46396248e98c8f4ecd21031141f0221dbadf0bd33737d')
+b2sums=('4c45b290d5d8ecb79d60886c24e6dbf4b43ff73792ca14fd30f0dd1ea91aa1fcd61551616ef0b89cd301d4c6c2b20fad1272b2e04ed374c59e2c8f3a9f022683'
 
'8a644be295417b1fd5fb807285a7176ef0ceb737352bbb4c7a88441f9b955a90befe974d890a58f2b8fb6de8a68a1b3c5d207f057c4b08db79caf6e97fa66f50'
-
'dac368fc62d99eba6d36f2c7d81475c28211dfe5d1d59ca5e468daff31d36710637943dc822fb266784feb5355ca0bfb525819bb96095c8e0c0fa91f32558877'
-
'86104406eb8694a96cd6ed34f2dcdf06039d4342ebacbb492759945b7b156d41806986fc96e421557a7a224f18a5786ec999c5c07f2a9051351911cc8095'
-
'5d2a4b6f0f1b7f085dbcfcc53b96ef30e9e3d6b676e23c79776a73685ae813d5c92fae2e9b0fd1cf203947c1a06391f518ef462be780e07b5cce2c89c41b46d5')
+
'dac368fc62d99eba6d36f2c7d81475c28211dfe5d1d59ca5e468daff31d36710637943dc822fb266784feb5355ca0bfb525819bb96095c8e0c0fa91f32558877')
 
 prepare() {
   cd $pkgname-v$pkgver
   patch -Np1 -i ../$pkgname-2.9-make_install.patch
-  patch -Np1 -i ../$pkgname-2.9.3-docs_makefile.patch
   patch -Np1 -i ../$pkgname-2.9.3-python3.patch
-  patch -Np1 -i ../$pkgname-2.9.5-full_relro.patch
 }
 
 build() {
   export PYTHON_VERS=python3
   make prefix=/usr libdir_relative=lib all libs -C $pkgname-v$pkgver
-  make -C $pkgname-v$pkgver/Documentation
+  make prefix=/usr doc -C $pkgname-v$pkgver
+  make test -C $pkgname-v$pkgver
 }
 
+check() {
+  ./$pkgname-v$pkgver/utest/trace-utest
+}
+
 package() {
-  depends+=(libaudit.so libtraceevent.so libtracefs.so)
+  depends+=(libaudit.so libtraceevent.so libtracefs.so libzstd.so)
 
-  make prefix=/usr \
-   libdir_relative=lib \
-   DESTDIR="$pkgdir" \
-   BASH_COMPLETE_DIR="$(pkgconf --variable=completionsdir 
bash-completion)" \
-   install_cmd install_libs -C $pkgname-v$pkgver
-  make prefix=/usr DESTDIR="$pkgdir" install -C $pkgname-v$pkgver/Documentation
+  make prefix=/usr libdir_relative=lib DESTDIR="$pkgdir" 

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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 19:56:19
  Author: arojas
Revision: 1181385

archrelease: copy trunk to community-x86_64

Added:
  maliit-framework/repos/community-x86_64/PKGBUILD
(from rev 1181384, maliit-framework/trunk/PKGBUILD)
Deleted:
  maliit-framework/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 19:56:06 UTC (rev 1181384)
+++ PKGBUILD2022-04-04 19:56:19 UTC (rev 1181385)
@@ -1,31 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=maliit-framework
-pkgver=2.2.0
-pkgrel=1
-pkgdesc='Core libraries of Maliit and server'
-arch=(x86_64)
-url='https://maliit.github.io/'
-license=(LGPL)
-depends=(qt5-declarative)
-makedepends=(cmake qt5-wayland wayland-protocols gtk3 python)
-optdepends=('qt5-wayland: wayland-shell integration')
-source=(https://github.com/maliit/framework/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('f55bca572ed932a251d583659aefa9d42d60d86f1603bab55c8fa92166b19bb3')
-options=(debug)
-
-build() {
-  cmake -B build -S framework-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--Denable-tests=OFF \
--Denable-docs=OFF \
--Denable-dbus-activation=ON \
--Denable-wayland-gtk=ON \
--DQT5_PLUGINS_INSTALL_DIR=lib/qt/plugins \
--DQT5_MKSPECS_INSTALL_DIR=lib/qt/mkspecs
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: maliit-framework/repos/community-x86_64/PKGBUILD (from rev 1181384, 
maliit-framework/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 19:56:19 UTC (rev 1181385)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=maliit-framework
+pkgver=2.2.1
+pkgrel=1
+pkgdesc='Core libraries of Maliit and server'
+arch=(x86_64)
+url='https://maliit.github.io/'
+license=(LGPL)
+depends=(qt5-declarative)
+makedepends=(cmake qt5-wayland wayland-protocols gtk3 python)
+optdepends=('qt5-wayland: wayland-shell integration')
+source=(https://github.com/maliit/framework/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('e5d1367f046066facabba9766d8cbeb94b13c5024b0a5056ebbaa6a16f075b23')
+options=(debug)
+
+build() {
+  cmake -B build -S framework-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-Denable-tests=OFF \
+-Denable-docs=OFF \
+-Denable-dbus-activation=ON \
+-Denable-wayland-gtk=ON \
+-DQT5_PLUGINS_INSTALL_DIR=lib/qt/plugins \
+-DQT5_MKSPECS_INSTALL_DIR=lib/qt/mkspecs
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 19:56:06
  Author: arojas
Revision: 1181384

Update to 2.2.1

Modified:
  maliit-framework/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 19:50:24 UTC (rev 1181383)
+++ PKGBUILD2022-04-04 19:56:06 UTC (rev 1181384)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=maliit-framework
-pkgver=2.2.0
+pkgver=2.2.1
 pkgrel=1
 pkgdesc='Core libraries of Maliit and server'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 makedepends=(cmake qt5-wayland wayland-protocols gtk3 python)
 optdepends=('qt5-wayland: wayland-shell integration')
 
source=(https://github.com/maliit/framework/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('f55bca572ed932a251d583659aefa9d42d60d86f1603bab55c8fa92166b19bb3')
+sha256sums=('e5d1367f046066facabba9766d8cbeb94b13c5024b0a5056ebbaa6a16f075b23')
 options=(debug)
 
 build() {



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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 19:53:17
  Author: arojas
Revision: 441551

archrelease: copy trunk to extra-x86_64

Added:
  libqalculate/repos/extra-x86_64/PKGBUILD
(from rev 441550, libqalculate/trunk/PKGBUILD)
Deleted:
  libqalculate/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 19:53:02 UTC (rev 441550)
+++ PKGBUILD2022-04-04 19:53:17 UTC (rev 441551)
@@ -1,26 +0,0 @@
-# Maintainer: Eric Bélanger 
-# Maintainer: Antonio Rojas 
-
-pkgname=libqalculate
-pkgver=4.1.0
-pkgrel=1
-pkgdesc='Multi-purpose desktop calculator'
-arch=(x86_64)
-url='https://qalculate.github.io/'
-license=(GPL)
-depends=(libxml2 curl mpfr)
-makedepends=(intltool doxygen)
-optdepends=('gnuplot: for plotting support')
-source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('d943e5285bdc0b3cd77b8f7a10391d7c753fc19b0ddd48e5d4179decf709d6ff')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: libqalculate/repos/extra-x86_64/PKGBUILD (from rev 441550, 
libqalculate/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 19:53:17 UTC (rev 441551)
@@ -0,0 +1,26 @@
+# Maintainer: Eric Bélanger 
+# Maintainer: Antonio Rojas 
+
+pkgname=libqalculate
+pkgver=4.1.1
+pkgrel=1
+pkgdesc='Multi-purpose desktop calculator'
+arch=(x86_64)
+url='https://qalculate.github.io/'
+license=(GPL)
+depends=(libxml2 curl mpfr)
+makedepends=(intltool doxygen)
+optdepends=('gnuplot: for plotting support')
+source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('b5611a91293be40fbe8723a81937e25ffb54e6ad6e60f282d044ed92f2d97002')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}



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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 19:53:02
  Author: arojas
Revision: 441550

Update to 4.1.1

Modified:
  libqalculate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 19:49:25 UTC (rev 441549)
+++ PKGBUILD2022-04-04 19:53:02 UTC (rev 441550)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=libqalculate
-pkgver=4.1.0
+pkgver=4.1.1
 pkgrel=1
 pkgdesc='Multi-purpose desktop calculator'
 arch=(x86_64)
@@ -12,7 +12,7 @@
 makedepends=(intltool doxygen)
 optdepends=('gnuplot: for plotting support')
 
source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('d943e5285bdc0b3cd77b8f7a10391d7c753fc19b0ddd48e5d4179decf709d6ff')
+sha256sums=('b5611a91293be40fbe8723a81937e25ffb54e6ad6e60f282d044ed92f2d97002')
 
 build() {
   cd $pkgname-$pkgver



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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 19:50:24
  Author: arojas
Revision: 1181383

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 19:50:14 UTC (rev 1181382)
+++ PKGBUILD2022-04-04 19:50:24 UTC (rev 1181383)
@@ -1,30 +0,0 @@
-# Maintainer: Kyle Keen 
-
-pkgname=jupyter-nbformat
-pkgver=5.2.0
-pkgrel=1
-pkgdesc="The base implementation of the Jupyter Notebook format and Python 
APIs for working with notebooks"
-arch=('any')
-url="https://pypi.python.org/pypi/nbformat;
-license=('BSD')
-depends=('python-traitlets' 'python-jupyter_core' 'python-jsonschema')
-makedepends=('python-build' 'python-installer' 'python-wheel')
-checkdepends=('python-pytest' 'python-testpath' 'python-fastjsonschema')
-source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/nbformat/archive/$pkgver.tar.gz;)
-md5sums=('835f4d20224a3327b570c2c8ba1ad941')
-
-build() {
-  cd nbformat-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd nbformat-$pkgver
-  pytest
-}
-
-package() {
-  cd nbformat-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: jupyter-nbformat/repos/community-any/PKGBUILD (from rev 1181382, 
jupyter-nbformat/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 19:50:24 UTC (rev 1181383)
@@ -0,0 +1,35 @@
+# Maintainer: Kyle Keen 
+
+pkgname=jupyter-nbformat
+pkgver=5.3.0
+pkgrel=1
+pkgdesc="The base implementation of the Jupyter Notebook format and Python 
APIs for working with notebooks"
+arch=('any')
+url="https://pypi.python.org/pypi/nbformat;
+license=('BSD')
+depends=('python-traitlets' 'python-jupyter_core' 'python-jsonschema')
+makedepends=('python-build' 'python-installer' 'python-wheel')
+checkdepends=('python-pytest' 'python-testpath' 'python-fastjsonschema')
+source=(https://github.com/jupyter/nbformat/archive/$pkgver/nbformat-$pkgver.tar.gz)
+sha256sums=('b5a31ef91530af8338406884f798400b9c64d8ff85db79b5c6e8d4971885dea8')
+
+prepare() {
+  cd nbformat-$pkgver
+  sed -e 's|setuptools>=60.0|setuptools|' -i pyproject.toml
+}
+
+build() {
+  cd nbformat-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd nbformat-$pkgver
+  pytest
+}
+
+package() {
+  cd nbformat-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 19:50:14
  Author: arojas
Revision: 1181382

Update to 5.3.0

Modified:
  jupyter-nbformat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 19:47:14 UTC (rev 1181381)
+++ PKGBUILD2022-04-04 19:50:14 UTC (rev 1181382)
@@ -1,7 +1,7 @@
 # Maintainer: Kyle Keen 
 
 pkgname=jupyter-nbformat
-pkgver=5.2.0
+pkgver=5.3.0
 pkgrel=1
 pkgdesc="The base implementation of the Jupyter Notebook format and Python 
APIs for working with notebooks"
 arch=('any')
@@ -10,9 +10,14 @@
 depends=('python-traitlets' 'python-jupyter_core' 'python-jsonschema')
 makedepends=('python-build' 'python-installer' 'python-wheel')
 checkdepends=('python-pytest' 'python-testpath' 'python-fastjsonschema')
-source=("$pkgname-$pkgver.tgz::https://github.com/jupyter/nbformat/archive/$pkgver.tar.gz;)
-md5sums=('835f4d20224a3327b570c2c8ba1ad941')
+source=(https://github.com/jupyter/nbformat/archive/$pkgver/nbformat-$pkgver.tar.gz)
+sha256sums=('b5a31ef91530af8338406884f798400b9c64d8ff85db79b5c6e8d4971885dea8')
 
+prepare() {
+  cd nbformat-$pkgver
+  sed -e 's|setuptools>=60.0|setuptools|' -i pyproject.toml
+}
+
 build() {
   cd nbformat-$pkgver
   python -m build --wheel --no-isolation



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

2022-04-04 Thread Andreas Radke via arch-commits
Date: Monday, April 4, 2022 @ 19:49:25
  Author: andyrtr
Revision: 441549

archrelease: copy trunk to extra-x86_64

Added:
  ghostscript/repos/extra-x86_64/2010_add_build_timestamp_setting.patch
(from rev 441548, ghostscript/trunk/2010_add_build_timestamp_setting.patch)
  ghostscript/repos/extra-x86_64/PKGBUILD
(from rev 441548, ghostscript/trunk/PKGBUILD)
Deleted:
  ghostscript/repos/extra-x86_64/2010_add_build_timestamp_setting.patch
  ghostscript/repos/extra-x86_64/PKGBUILD

+
 2010_add_build_timestamp_setting.patch |  238 ++---
 PKGBUILD   |  253 +++
 2 files changed, 243 insertions(+), 248 deletions(-)

Deleted: 2010_add_build_timestamp_setting.patch
===
--- 2010_add_build_timestamp_setting.patch  2022-04-04 19:49:16 UTC (rev 
441548)
+++ 2010_add_build_timestamp_setting.patch  2022-04-04 19:49:25 UTC (rev 
441549)
@@ -1,119 +0,0 @@
-Description: Allow the build timestamp to be externally set
- In order to make Ghostscript output reproducible, we need a way to
- set the build timestamp to other values than the current time.
- We now consistently use gp_get_realtime() instead of directly calling
- time() or gp_get_usertime() and make gp_get_realtime() use the value
- found in the SOURCE_DATE_EPOCH environment variable if set. Also,
- environment timezone is fixed to UTC if SOURCE_DATE_EPOCH is used to
- avoid variations.
-Author: Eduard Sanou 
-Author: Peter De Wachter 
-Bug-Debian: https://bugs.debian.org/794004
-Last-Update: 2015-07-30

-This patch header follows DEP-3: https://dep.debian.net/deps/dep3/
 a/base/gp_unix.c
-+++ b/base/gp_unix.c
-@@ -19,6 +19,7 @@
- #ifdef __MINGW32__
- #  include "windows_.h"
- #endif
-+#include "errno_.h"
- #include "pipe_.h"
- #include "string_.h"
- #include "time_.h"
-@@ -148,6 +149,7 @@
- gp_get_realtime(long *pdt)
- {
- struct timeval tp;
-+const char *env;
- 
- #if gettimeofday_no_timezone/* older versions of SVR4 */
- {
-@@ -167,6 +169,26 @@
- }
- #endif
- 
-+env = getenv("SOURCE_DATE_EPOCH");
-+if (env) {
-+char *end;
-+long timestamp;
-+
-+errno = 0;
-+timestamp = strtol(env, , 10);
-+if (env == end || *end || errno != 0) {
-+lprintf("Ghostscript: SOURCE_DATE_EPOCH is not a number!\n");
-+timestamp = 0;
-+}
-+
-+tp.tv_sec = timestamp;
-+tp.tv_usec = 0;
-+
-+/* We need to fix the environment timezone to get reproducible */
-+/* results when parsing the result of gp_get_realtime. */
-+setenv("TZ", "UTC", 1);
-+}
-+
- /* tp.tv_sec is #secs since Jan 1, 1970 */
- pdt[0] = tp.tv_sec;
- 
 a/devices/vector/gdevpdf.c
-+++ b/devices/vector/gdevpdf.c
-@@ -427,6 +427,7 @@
-  */
- {
- struct tm tms;
-+long secs_ns[2];
- time_t t;
- char buf[1+2+4+2+2+2+2+2+1+2+1+2+1+1+1]; /* 
(D:mmddhhmmssZhh'mm')\0 */
- int timeoffset;
-@@ -438,7 +439,8 @@
- timesign = 'Z';
- timeoffset = 0;
- #else
--time();
-+gp_get_realtime(secs_ns);
-+t = secs_ns[0];
- tms = *gmtime();
- tms.tm_isdst = -1;
- timeoffset = (int)difftime(t, mktime()); /* tz+dst in seconds */
 a/devices/vector/gdevpdfe.c
-+++ b/devices/vector/gdevpdfe.c
-@@ -199,6 +199,7 @@
- {
- /* We don't write a day time because we don't have a time zone. */
- struct tm tms;
-+long secs_ns[2];
- time_t t;
- char buf1[4+1+2+1+2+1]; /* -mm-dd\0 */
- 
-@@ -206,7 +207,8 @@
- memset(, 0, sizeof(t));
- memset(, 0, sizeof(tms));
- #else
--time();
-+gp_get_realtime(secs_ns);
-+t = secs_ns[0];
- tms = *localtime();
- #endif
- gs_sprintf(buf1,
 a/devices/vector/gdevpsu.c
-+++ b/devices/vector/gdevpsu.c
-@@ -183,6 +183,7 @@
- fprintf(f, "Creator: %s %ld (%s)\n", gs_product, (long)gs_revision,
- dev->dname);
- {
-+long secs_ns[2];
- time_t t;
- struct tm tms;
- 
-@@ -190,7 +191,8 @@
- memset(, 0, sizeof(t));
- memset(, 0, sizeof(tms));
- #else
--time();
-+gp_get_realtime(secs_ns);
-+t = secs_ns[0];
- tms = *localtime();
- #endif
- fprintf(f, "CreationDate: %d/%02d/%02d %02d:%02d:%02d\n",

Copied: ghostscript/repos/extra-x86_64/2010_add_build_timestamp_setting.patch 
(from rev 441548, ghostscript/trunk/2010_add_build_timestamp_setting.patch)
===
--- 2010_add_build_timestamp_setting.patch  (rev 0)
+++ 2010_add_build_timestamp_setting.patch  2022-04-04 19:49:25 UTC (rev 
441549)
@@ -0,0 +1,119 @@
+Description: Allow the build timestamp to be externally set
+ In order to make Ghostscript output reproducible, we 

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

2022-04-04 Thread Andreas Radke via arch-commits
Date: Monday, April 4, 2022 @ 19:49:16
  Author: andyrtr
Revision: 441548

upgpkg: ghostscript 9.56.1-1: upstream update 9.56.1

Modified:
  ghostscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 19:36:32 UTC (rev 441547)
+++ PKGBUILD2022-04-04 19:49:16 UTC (rev 441548)
@@ -2,7 +2,7 @@
 
 pkgbase=ghostscript
 pkgname=(ghostscript ghostxps ghostpcl)
-pkgver=9.56.0
+pkgver=9.56.1
 pkgrel=1
 pkgdesc="An interpreter for the PostScript language"
 url="https://www.ghostscript.com/;
@@ -15,11 +15,9 @@
 # https://github.com/ArtifexSoftware/ghostpdl-downloads/releases
 
source=(https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs${pkgver//./}/ghostpdl-${pkgver}.tar.xz
 
#https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/ghostpdl-${pkgver/.0//}/ghostpdl-${pkgver}.tar.xz
-2010_add_build_timestamp_setting.patch
-
https://github.com/ArtifexSoftware/ghostpdl/commit/9aae213ff3ae971942b427062799b009c07ea713.patch)
-sha512sums=('213aaa844533fe28ffde0008ff6e8ae10096efddf480c236407668a6445ef2c146557af8da05d9664f44ff53bd31809e89178dfe464763365a1af9de49edf507'
-
'cd7794ee4f28b11177021b950196385200b610127ed6cb94a45e3202b690b721a0dfcc0276ff39448d4dab64c1b31a76e6c323696a8315aad9edc22077f18a3d'
-
'530a03f3d333a6c45cc024b5ebd57138b4f7fbff8069e8a81f3015aed9d553b1294e529f57e4123d20442e896dde780c120f438e61c1e3a6436d90c03580e982')
+2010_add_build_timestamp_setting.patch)
+sha512sums=('7eb3e6b8de83d0e31cc976151164326cdc110741eb2e9cddb59ab9590e15a6535659e50dea4feb643b9b3b6d90a26d01fe0326a400833e82b22f0091146151cc'
+
'cd7794ee4f28b11177021b950196385200b610127ed6cb94a45e3202b690b721a0dfcc0276ff39448d4dab64c1b31a76e6c323696a8315aad9edc22077f18a3d')
 
 
 ### update jbig2dec first! ###
@@ -62,9 +60,6 @@
 
   # Debian: # allow the build timestamp to be externally set
   patch -Np1 -i ../2010_add_build_timestamp_setting.patch
-
-  # Revert patch breaking build of GTK gsx
-  patch -Rp1 -i ../9aae213ff3ae971942b427062799b009c07ea713.patch
 }
 
 build() {



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

2022-04-04 Thread Bruno Pagani via arch-commits
Date: Monday, April 4, 2022 @ 19:47:14
  Author: archange
Revision: 1181381

archrelease: copy trunk to community-testing-any

Added:
  python-spyder-kernels/repos/community-testing-any/PKGBUILD
(from rev 1181380, python-spyder-kernels/trunk/PKGBUILD)
Deleted:
  python-spyder-kernels/repos/community-testing-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 19:46:45 UTC (rev 1181380)
+++ PKGBUILD2022-04-04 19:47:14 UTC (rev 1181381)
@@ -1,60 +0,0 @@
-# Maintainer: Bruno Pagani 
-
-_pkg=spyder-kernels
-pkgname=python-${_pkg}
-pkgver=2.3.0
-pkgrel=1
-pkgdesc="Jupyter Kernels for the Spyder console"
-arch=(any)
-url="https://github.com/spyder-ide/spyder-kernels/;
-license=(MIT)
-makedepends=(python python-setuptools)
-depends=(
-ipython
-python-cloudpickle
-python-ipykernel
-python-jupyter_client
-python-pyzmq
-python-wurlitzer
-)
-checkdepends=(
-cython
-python-dask
-python-distributed
-python-flaky
-python-matplotlib
-python-mock
-python-numpy
-python-pandas
-python-pillow
-python-pytest
-python-scipy
-python-xarray
-)
-# No tests in pypi tarballs
-#source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
-source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('3fbf18088fdd3c4d3ca1923790b2537d08f52bb7e616a15a544534ef8e22d05f')
-
-prepare() {
-  cd ${_pkg}-${pkgver}
-  sed -i 's|ipython>=7.31.1,<8|ipython>=7.31.1|' setup.py
-}
-
-build() {
-  cd ${_pkg}-${pkgver}
-  python setup.py build
-}
-
-check() {
-  cd ${_pkg}-${pkgver}
-  # https://github.com/ipython/ipykernel/issues/901
-  # https://github.com/spyder-ide/spyder-kernels/issues/380
-  pytest -vv --color=yes spyder_kernels || echo "Tests failed"
-}
-
-package() {
-  cd ${_pkg}-${pkgver}
-  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
-  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: python-spyder-kernels/repos/community-testing-any/PKGBUILD (from rev 
1181380, python-spyder-kernels/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 19:47:14 UTC (rev 1181381)
@@ -0,0 +1,58 @@
+# Maintainer: Bruno Pagani 
+
+_pkg=spyder-kernels
+pkgname=python-${_pkg}
+pkgver=2.3.0
+pkgrel=2
+pkgdesc="Jupyter Kernels for the Spyder console"
+arch=(any)
+url="https://github.com/spyder-ide/spyder-kernels/;
+license=(MIT)
+makedepends=(python python-setuptools)
+depends=(
+ipython
+python-cloudpickle
+python-ipykernel
+python-jupyter_client
+python-pyzmq
+python-wurlitzer
+)
+checkdepends=(
+cython
+python-dask
+python-distributed
+python-flaky
+python-matplotlib
+python-mock
+python-numpy
+python-pandas
+python-pillow
+python-pytest
+python-scipy
+python-xarray
+)
+# No tests in pypi tarballs
+#source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
+source=(${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('3fbf18088fdd3c4d3ca1923790b2537d08f52bb7e616a15a544534ef8e22d05f')
+
+prepare() {
+  cd ${_pkg}-${pkgver}
+  sed -i 's|ipython>=7.31.1,<8|ipython>=7.31.1|' setup.py
+}
+
+build() {
+  cd ${_pkg}-${pkgver}
+  python setup.py build
+}
+
+check() {
+  cd ${_pkg}-${pkgver}
+  pytest -vv --color=yes spyder_kernels
+}
+
+package() {
+  cd ${_pkg}-${pkgver}
+  python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 
--skip-build
+  install -Dm644 LICENSE.txt -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}



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

2022-04-04 Thread Bruno Pagani via arch-commits
Date: Monday, April 4, 2022 @ 19:46:45
  Author: archange
Revision: 1181380

upgpkg: python-spyder-kernels 2.3.0-2

Modified:
  python-spyder-kernels/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 19:42:18 UTC (rev 1181379)
+++ PKGBUILD2022-04-04 19:46:45 UTC (rev 1181380)
@@ -3,7 +3,7 @@
 _pkg=spyder-kernels
 pkgname=python-${_pkg}
 pkgver=2.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Jupyter Kernels for the Spyder console"
 arch=(any)
 url="https://github.com/spyder-ide/spyder-kernels/;
@@ -48,9 +48,7 @@
 
 check() {
   cd ${_pkg}-${pkgver}
-  # https://github.com/ipython/ipykernel/issues/901
-  # https://github.com/spyder-ide/spyder-kernels/issues/380
-  pytest -vv --color=yes spyder_kernels || echo "Tests failed"
+  pytest -vv --color=yes spyder_kernels
 }
 
 package() {



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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 19:42:18
  Author: arojas
Revision: 1181379

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 19:42:09 UTC (rev 1181378)
+++ PKGBUILD2022-04-04 19:42:18 UTC (rev 1181379)
@@ -1,38 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=e-antic
-pkgver=1.1.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)
-source=(https://github.com/flatsurf/e-antic/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('b914d082c486a9d17cd46b38a55170ba7b1838a2ab8a29f986899d2668f8210e')
-
-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 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: e-antic/repos/community-x86_64/PKGBUILD (from rev 1181378, 
e-antic/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 19:42:18 UTC (rev 1181379)
@@ -0,0 +1,45 @@
+# 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
+}



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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 19:42:09
  Author: arojas
Revision: 1181378

Update to 1.1.1

Modified:
  e-antic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 19:30:22 UTC (rev 1181377)
+++ PKGBUILD2022-04-04 19:42:09 UTC (rev 1181378)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=e-antic
-pkgver=1.1.0
+pkgver=1.1.1
 pkgrel=1
 pkgdesc='Embedded algebraic number fields (on top of antic)'
 arch=(x86_64)
@@ -8,10 +8,17 @@
 url='https://github.com/flatsurf/e-antic/'
 license=(LGPL)
 depends=(arb antic)
-makedepends=(boost)
+makedepends=(boost catch2)
 
source=(https://github.com/flatsurf/e-antic/releases/download/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('b914d082c486a9d17cd46b38a55170ba7b1838a2ab8a29f986899d2668f8210e')
+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 \
@@ -34,5 +41,5 @@
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
 
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }



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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 19:30:22
  Author: arojas
Revision: 1181377

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 19:30:12 UTC (rev 1181376)
+++ PKGBUILD2022-04-04 19:30:22 UTC (rev 1181377)
@@ -1,34 +0,0 @@
-# Maintainer: Kyle Keen 
-
-pkgname=python-ipykernel
-pkgver=6.11.0
-pkgrel=2
-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;)
-md5sums=('91f8c927725de3a0673a0e4f6b88566e')
-
-# 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 1181376, 
python-ipykernel/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 19:30:22 UTC (rev 1181377)
@@ -0,0 +1,34 @@
+# 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
+}



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

2022-04-04 Thread Antonio Rojas via arch-commits
Date: Monday, April 4, 2022 @ 19:30:12
  Author: arojas
Revision: 1181376

Update to 6.12.1

Modified:
  python-ipykernel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 19:12:15 UTC (rev 1181375)
+++ PKGBUILD2022-04-04 19:30:12 UTC (rev 1181376)
@@ -1,8 +1,8 @@
 # Maintainer: Kyle Keen 
 
 pkgname=python-ipykernel
-pkgver=6.11.0
-pkgrel=2
+pkgver=6.12.1
+pkgrel=1
 pkgdesc="The ipython kernel for Jupyter"
 arch=('any')
 url="https://pypi.org/project/ipykernel/;
@@ -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;)
-md5sums=('91f8c927725de3a0673a0e4f6b88566e')
+sha256sums=('436a01da9fc5d376a379011798054e2280a96841c8ef7c0fca9ef6369d9d99ff')
 
 # dep cycle with python-jupyter_client
 



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

2022-04-04 Thread Andreas Radke via arch-commits
Date: Monday, April 4, 2022 @ 19:29:15
  Author: andyrtr
Revision: 441546

archrelease: copy trunk to extra-x86_64

Added:
  libnumbertext/repos/extra-x86_64/PKGBUILD
(from rev 441545, libnumbertext/trunk/PKGBUILD)
Deleted:
  libnumbertext/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 19:28:38 UTC (rev 441545)
+++ PKGBUILD2022-04-04 19:29:15 UTC (rev 441546)
@@ -1,36 +0,0 @@
-# Maintainer: Andreas Radke 
-
-pkgname=libnumbertext
-pkgver=1.0.9
-pkgrel=1
-pkgdesc="Number to number name and money text conversion library"
-arch=('x86_64')
-url="https://github.com/Numbertext/libnumbertext;
-license=('LGPL3' 'custom')
-depends=('gcc-libs')
-source=(${pkgname}-${pkgver}::https://github.com/Numbertext/libnumbertext/archive/$pkgver.tar.gz)
-sha256sums=('469868e3993d2d3fc153ef6fe63aedd91bd9bc05b1a7f5db2a30a24ac09b2d90')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  autoreconf -vfi
-}
-
-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 -k check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-  # add dual license file
-  install -Dt "${pkgdir}"/usr/share/licenses/${pkgname} -m644 COPYING
-}

Copied: libnumbertext/repos/extra-x86_64/PKGBUILD (from rev 441545, 
libnumbertext/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 19:29:15 UTC (rev 441546)
@@ -0,0 +1,36 @@
+# Maintainer: Andreas Radke 
+
+pkgname=libnumbertext
+pkgver=1.0.10
+pkgrel=1
+pkgdesc="Number to number name and money text conversion library"
+arch=('x86_64')
+url="https://github.com/Numbertext/libnumbertext;
+license=('LGPL3' 'custom')
+depends=('gcc-libs')
+source=(${pkgname}-${pkgver}::https://github.com/Numbertext/libnumbertext/archive/$pkgver.tar.gz)
+sha256sums=('46a5ea59789ee683c14ceb5339d7fb7d4abd956b2b838ff13d7b8e0ed9af43f1')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  autoreconf -vfi
+}
+
+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 -k check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  # add dual license file
+  install -Dt "${pkgdir}"/usr/share/licenses/${pkgname} -m644 COPYING
+}



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

2022-04-04 Thread Andreas Radke via arch-commits
Date: Monday, April 4, 2022 @ 19:28:38
  Author: andyrtr
Revision: 441545

upgpkg: libnumbertext 1.0.10-1: upstream update 1.0.10

Modified:
  libnumbertext/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 19:04:25 UTC (rev 441544)
+++ PKGBUILD2022-04-04 19:28:38 UTC (rev 441545)
@@ -1,7 +1,7 @@
 # Maintainer: Andreas Radke 
 
 pkgname=libnumbertext
-pkgver=1.0.9
+pkgver=1.0.10
 pkgrel=1
 pkgdesc="Number to number name and money text conversion library"
 arch=('x86_64')
@@ -9,7 +9,7 @@
 license=('LGPL3' 'custom')
 depends=('gcc-libs')
 
source=(${pkgname}-${pkgver}::https://github.com/Numbertext/libnumbertext/archive/$pkgver.tar.gz)
-sha256sums=('469868e3993d2d3fc153ef6fe63aedd91bd9bc05b1a7f5db2a30a24ac09b2d90')
+sha256sums=('46a5ea59789ee683c14ceb5339d7fb7d4abd956b2b838ff13d7b8e0ed9af43f1')
 
 prepare() {
   cd "$pkgname-$pkgver"



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 19:12:15
  Author: dvzrv
Revision: 1181375

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 19:12:07 UTC (rev 1181374)
+++ PKGBUILD2022-04-04 19:12:15 UTC (rev 1181375)
@@ -1,51 +0,0 @@
-# Maintainer: David Runge 
-
-_name=falcon
-pkgname=python-falcon
-pkgver=3.0.1
-pkgrel=3
-pkgdesc="Web API framework for building fast and reliable microservices, 
proxies, and app backends in Python"
-arch=('x86_64')
-url="https://falconframework.org/;
-license=('Apache')
-depends=('python')
-makedepends=('cython' 'python-setuptools')
-# TODO: add python-daphne
-checkdepends=('gunicorn' 'hypercorn' 'python-aiofiles' 'python-cbor2'
-'python-httpx' 'python-jsonschema' 'python-mimeparse' 'python-msgpack'
-'python-mujson' 'python-orjson' 'python-pecan' 'python-pytest'
-'python-pytest-asyncio' 'python-pytest-runner' 'python-rapidjson'
-'python-requests' 'python-testtools' 'python-ujson' 'python-websockets'
-'python-yaml' 'uvicorn')
-optdepends=('python-django: for falcon-bench'
-'python-flask: for falcon-bench'
-'python-pecan: for falcon-bench'
-'python-bottle: for falcon-bench'
-'python-pprofile: for falcon-bench'
-'python-vmprof: for falcon-bench')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('c59c9868aad1536a6872790ca658b47546f64db02a3c5bcacce55d6091f2f29707bf052940b8dee530ddd19a99c286d6c18f31517a9c83417a550deab082026f')
-b2sums=('34325b756695eaa05eb05940c256cd663c652779e6c1070187b0638dc9572db19b6f29519366b40f96b4c03c6160407c926453c9f0ff3c9f5f47e0355c3c3ddd')
-
-prepare() {
-  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-
-  cd "$pkgname-$pkgver"
-  export 
PYTHONPATH="build/lib.linux-$CARCH-${python_version}:$PWD:${PYTHONPATH}"
-  pytest -v --ignore "tests/asgi/test_cythonized_asgi.py" tests
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --optimize=1 --root="${pkgdir}"
-  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: python-falcon/repos/community-x86_64/PKGBUILD (from rev 1181374, 
python-falcon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 19:12:15 UTC (rev 1181375)
@@ -0,0 +1,50 @@
+# Maintainer: David Runge 
+
+_name=falcon
+pkgname=python-falcon
+pkgver=3.1.0
+pkgrel=1
+pkgdesc="Web API framework for fast and reliable microservices, proxies, and 
app backends"
+arch=(x86_64)
+url="https://falconframework.org/;
+license=(Apache)
+depends=(python)
+makedepends=(cython python-build python-installer python-setuptools 
python-wheel)
+# TODO: add python-daphne
+checkdepends=(gunicorn hypercorn python-aiofiles python-cbor2 python-httpx
+python-jsonschema python-mimeparse python-msgpack python-mujson python-orjson
+python-pecan python-pytest python-pytest-asyncio python-pytest-runner
+python-rapidjson python-requests python-testtools python-ujson
+python-websockets python-yaml uvicorn)
+optdepends=(
+  'python-django: for falcon-bench'
+  'python-flask: for falcon-bench'
+  'python-pecan: for falcon-bench'
+  'python-bottle: for falcon-bench'
+  'python-pprofile: for falcon-bench'
+  'python-vmprof: for falcon-bench'
+)
+# not all required files for tests contained in pypi sdist tarball: 
https://github.com/falconry/falcon/issues/2051
+# 
source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
+source=($_name-$pkgver.tar.gz::https://github.com/falconry/$_name/archive/refs/tags/$pkgver.tar.gz)
+sha512sums=('9da76dd92dfce1611ef681588d8e0e2fc7e906b5c0bc4b60a4620e2e9907564783763b7776c9cc2ccb296116c985e527b2f429520a1c601567cf4eb15e98f8cc')
+b2sums=('183623c8d7e8b86ed9915cbf3757fd526f7f3a8a97ae5fdf86294bcc65052c5c827d4a920d93e9fa0198a8d255c7b56ecff465a36d9b0ea31581abd87d55ccd0')
+
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
+
+  cd $_name-$pkgver
+  export PYTHONPATH="build/lib.linux-$CARCH-$python_version:$PWD:$PYTHONPATH"
+  pytest -v --ignore "tests/asgi/test_cythonized_asgi.py" tests
+}
+
+package() {
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -vDm 644 README.rst -t 

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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 19:12:07
  Author: dvzrv
Revision: 1181374

upgpkg: python-falcon 3.1.0-1: Upgrade to 3.1.0.

Remove unneeded quotes and curly braces.
Switch to github tarball as the sdist tarball does not contain all files for 
testing.
Switch to PEP517.

Modified:
  python-falcon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:54:11 UTC (rev 1181373)
+++ PKGBUILD2022-04-04 19:12:07 UTC (rev 1181374)
@@ -2,50 +2,49 @@
 
 _name=falcon
 pkgname=python-falcon
-pkgver=3.0.1
-pkgrel=3
-pkgdesc="Web API framework for building fast and reliable microservices, 
proxies, and app backends in Python"
-arch=('x86_64')
+pkgver=3.1.0
+pkgrel=1
+pkgdesc="Web API framework for fast and reliable microservices, proxies, and 
app backends"
+arch=(x86_64)
 url="https://falconframework.org/;
-license=('Apache')
-depends=('python')
-makedepends=('cython' 'python-setuptools')
+license=(Apache)
+depends=(python)
+makedepends=(cython python-build python-installer python-setuptools 
python-wheel)
 # TODO: add python-daphne
-checkdepends=('gunicorn' 'hypercorn' 'python-aiofiles' 'python-cbor2'
-'python-httpx' 'python-jsonschema' 'python-mimeparse' 'python-msgpack'
-'python-mujson' 'python-orjson' 'python-pecan' 'python-pytest'
-'python-pytest-asyncio' 'python-pytest-runner' 'python-rapidjson'
-'python-requests' 'python-testtools' 'python-ujson' 'python-websockets'
-'python-yaml' 'uvicorn')
-optdepends=('python-django: for falcon-bench'
-'python-flask: for falcon-bench'
-'python-pecan: for falcon-bench'
-'python-bottle: for falcon-bench'
-'python-pprofile: for falcon-bench'
-'python-vmprof: for falcon-bench')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('c59c9868aad1536a6872790ca658b47546f64db02a3c5bcacce55d6091f2f29707bf052940b8dee530ddd19a99c286d6c18f31517a9c83417a550deab082026f')
-b2sums=('34325b756695eaa05eb05940c256cd663c652779e6c1070187b0638dc9572db19b6f29519366b40f96b4c03c6160407c926453c9f0ff3c9f5f47e0355c3c3ddd')
+checkdepends=(gunicorn hypercorn python-aiofiles python-cbor2 python-httpx
+python-jsonschema python-mimeparse python-msgpack python-mujson python-orjson
+python-pecan python-pytest python-pytest-asyncio python-pytest-runner
+python-rapidjson python-requests python-testtools python-ujson
+python-websockets python-yaml uvicorn)
+optdepends=(
+  'python-django: for falcon-bench'
+  'python-flask: for falcon-bench'
+  'python-pecan: for falcon-bench'
+  'python-bottle: for falcon-bench'
+  'python-pprofile: for falcon-bench'
+  'python-vmprof: for falcon-bench'
+)
+# not all required files for tests contained in pypi sdist tarball: 
https://github.com/falconry/falcon/issues/2051
+# 
source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
+source=($_name-$pkgver.tar.gz::https://github.com/falconry/$_name/archive/refs/tags/$pkgver.tar.gz)
+sha512sums=('9da76dd92dfce1611ef681588d8e0e2fc7e906b5c0bc4b60a4620e2e9907564783763b7776c9cc2ccb296116c985e527b2f429520a1c601567cf4eb15e98f8cc')
+b2sums=('183623c8d7e8b86ed9915cbf3757fd526f7f3a8a97ae5fdf86294bcc65052c5c827d4a920d93e9fa0198a8d255c7b56ecff465a36d9b0ea31581abd87d55ccd0')
 
-prepare() {
-  mv -v "${_name}-$pkgver" "$pkgname-$pkgver"
-}
-
 build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
+  cd $_name-$pkgver
+  python -m build --wheel --no-isolation
 }
 
 check() {
   local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
 
-  cd "$pkgname-$pkgver"
-  export 
PYTHONPATH="build/lib.linux-$CARCH-${python_version}:$PWD:${PYTHONPATH}"
+  cd $_name-$pkgver
+  export PYTHONPATH="build/lib.linux-$CARCH-$python_version:$PWD:$PYTHONPATH"
   pytest -v --ignore "tests/asgi/test_cythonized_asgi.py" tests
 }
 
 package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --optimize=1 --root="${pkgdir}"
-  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -vDm 644 README.rst -t "$pkgdir/usr/share/doc/$pkgname/"
 }



[arch-commits] Commit in archboot-arm/repos/extra-any (4 files)

2022-04-04 Thread Tobias Powalowski via arch-commits
Date: Monday, April 4, 2022 @ 19:04:25
  Author: tpowa
Revision: 441544

archrelease: copy trunk to extra-any

Added:
  archboot-arm/repos/extra-any/PKGBUILD
(from rev 441543, archboot-arm/trunk/PKGBUILD)
  archboot-arm/repos/extra-any/archboot.install
(from rev 441543, archboot-arm/trunk/archboot.install)
Deleted:
  archboot-arm/repos/extra-any/PKGBUILD
  archboot-arm/repos/extra-any/archboot.install

--+
 PKGBUILD |  108 ++---
 archboot.install |   38 +-
 2 files changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 19:04:20 UTC (rev 441543)
+++ PKGBUILD2022-04-04 19:04:25 UTC (rev 441544)
@@ -1,54 +0,0 @@
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot-arm
-pkgver=2022.04
-pkgrel=7
-pkgdesc="Advanced, modular arch boot/install image creation utility with 
aarch64 depends"
-arch=(any)
-license=('GPL')
-url="https://wiki.archlinux.org/title/Archboot;
-depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
- 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'sed' 'snarf'
- 'tar' 'util-linux' 'bind' 'which' 'kbd' 'wireless_tools' 'xfsprogs' 
'hdparm' 'inetutils'
- 'openssh' 'hwdetect' 'shadow' 'bridge-utils' 'dosfstools' 'glibc' 
'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
- 'pciutils' 'usbutils' 'vpnc' 'openvpn' 'b43-fwcutter' 
'wpa_supplicant' 'rsync' 'gzip' 'libarchive'
-'device-mapper' 'screen' 'elfutils' 'pam' 'cracklib' 'nfs-utils' 
'nfsidmap' 'readline' 'acl' 'attr' 'pcre' 'cpio'
-'fuse' 'libusb' 'vim' 'vi' 'lzo' 'lzop' 'libsasl' 'libldap' 'gpm' 
'libevent' 'gcc-libs' 'sdparm' 'licenses' 'pptpclient'
-'dhcpcd' 'openssl' 'dmraid' 'linux-atm' 'netctl' 'parted' 'tzdata' 
'ntp' 'libgcrypt' 'iw' 
-'libnl' 'iproute2' 'wireless-regdb' 'dhclient' 'mtools' 'fsarchiver' 
'xz' 'libtirpc' 'rpcbind' 'testdisk'
-'wipe' 'ddrescue' 'ifplugd' 'libgssglue' 'mkinitcpio-nfs-utils' 
'gptfdisk' 'nilfs-utils' 'btrfs-progs'
-'iana-etc' 'keyutils' 'libisoburn' 'file' 'curl'  'smartmontools' 
'dnsmasq' 'cifs-utils'
-'openconnect' 'libxml2' 'libproxy' 'tcpdump' 'nmap' 'lua' 'gnutls' 
'nettle' 'libtasn1' 'expat'
-'glib2' 'freetype2' 'libssh2' 'libedit' 'talloc' 'libjpeg-turbo' 
'dmidecode' 'gnupg' 'libksba' 'libassuan' 'pinentry'
-'gpgme' 'ldns' 'dnssec-anchors' 'hwdata' 'systemd' 'haveged' 'pambase' 
'traceroute' 'grub' 
-'systemd-sysvcompat' 'arch-install-scripts' 'zsh' 'gdbm' 
'grml-zsh-config' 'cpupower' 'wvdial' 'xl2tpd' 
-'usb_modeswitch' 'efibootmgr' 'f2fs-tools' 'efitools' 'efivar' 
'ethtool' 'exfatprogs' 
-'fuse3' 'flex' 'amd-ucode' 'cdrtools' 'nvme-cli' 'fatresize' 'iwd' 
'elinks' 'weechat' 'lshw' 'tmux'
-'sbsigntools' 'openresolv' 'mokutil' 'archboot-bootloader' 
'archinstall')
-makedepends=('git')
-optdepends=('linux-firmware: for firmware inclusion on image file'
-'linux-firmware-marvell: for marvell firmware support'
-'sudo: for running the archboot build server')
-source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel}?signed;)
-backup=('etc/archboot/defaults'
-   'etc/archboot/x86_64.conf'
-'etc/archboot/aarch64.conf'
-'etc/archboot/x86_64-latest.conf'
-'etc/archboot/aarch64-latest.conf'
-   'etc/archboot/x86_64-local.conf'
-'etc/archboot/aarch64-local.conf'
-'etc/archboot/presets/x86_64'
-'etc/archboot/presets/aarch64'
-'etc/archboot/presets/x86_64-latest'
-'etc/archboot/presets/aarch64-latest'
-   'etc/archboot/presets/x86_64-local'
-'etc/archboot/presets/aarch64-local')
-install=archboot.install
-sha256sums=('SKIP')
-validgpgkeys=('5B7E3FB71B7F10329A1C03AB771DF6627EDF681F' # Tobias Powalowski 

- )
-package()
-{
-  cd "$srcdir/archboot"
-  mv etc/ usr/ "$pkgdir/"
-}

Copied: archboot-arm/repos/extra-any/PKGBUILD (from rev 441543, 
archboot-arm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 19:04:25 UTC (rev 441544)
@@ -0,0 +1,54 @@
+# Maintainer : Tobias Powalowski 
+
+pkgname=archboot-arm
+pkgver=2022.04
+pkgrel=8
+pkgdesc="Advanced, modular arch boot/install image creation utility with 
aarch64 depends"
+arch=(any)
+license=('GPL')
+url="https://wiki.archlinux.org/title/Archboot;
+depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
+ 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'sed' 'snarf'
+ 'tar' 'util-linux' 'bind' 'which' 'kbd' 

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

2022-04-04 Thread Tobias Powalowski via arch-commits
Date: Monday, April 4, 2022 @ 19:04:20
  Author: tpowa
Revision: 441543

upgpkg: archboot-arm 2022.04-8: bump to latest version

Modified:
  archboot-arm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 19:03:31 UTC (rev 441542)
+++ PKGBUILD2022-04-04 19:04:20 UTC (rev 441543)
@@ -2,7 +2,7 @@
 
 pkgname=archboot-arm
 pkgver=2022.04
-pkgrel=7
+pkgrel=8
 pkgdesc="Advanced, modular arch boot/install image creation utility with 
aarch64 depends"
 arch=(any)
 license=('GPL')



[arch-commits] Commit in archboot/repos/extra-any (4 files)

2022-04-04 Thread Tobias Powalowski via arch-commits
Date: Monday, April 4, 2022 @ 19:03:31
  Author: tpowa
Revision: 441542

archrelease: copy trunk to extra-any

Added:
  archboot/repos/extra-any/PKGBUILD
(from rev 441541, archboot/trunk/PKGBUILD)
  archboot/repos/extra-any/archboot.install
(from rev 441541, archboot/trunk/archboot.install)
Deleted:
  archboot/repos/extra-any/PKGBUILD
  archboot/repos/extra-any/archboot.install

--+
 PKGBUILD |  110 ++---
 archboot.install |   38 +-
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 19:03:26 UTC (rev 441541)
+++ PKGBUILD2022-04-04 19:03:31 UTC (rev 441542)
@@ -1,55 +0,0 @@
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot
-pkgver=2022.04
-pkgrel=7
-pkgdesc="Advanced, modular arch boot/install image creation utility"
-arch=(any)
-license=('GPL')
-url="https://wiki.archlinux.org/title/Archboot;
-depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
- 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'sed' 'snarf'
- 'tar' 'util-linux' 'bind' 'which' 'kbd' 'wireless_tools' 'xfsprogs' 
'hdparm' 'inetutils'
- 'openssh' 'hwdetect' 'shadow' 'bridge-utils'  'dosfstools' 'glibc' 
'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
- 'pciutils' 'usbutils' 'vpnc' 'openvpn' 'b43-fwcutter' 
'wpa_supplicant' 'rsync' 'gzip' 'libarchive'
-'device-mapper' 'screen' 'elfutils' 'pam' 'cracklib' 'nfs-utils' 
'nfsidmap' 'readline' 'acl' 'attr' 'pcre' 'cpio'
-'fuse' 'libusb' 'vi' 'vim' 'lzo' 'lzop' 'libsasl' 'libldap' 'gpm' 
'libevent' 'gcc-libs' 'sdparm' 'licenses' 'pptpclient' 'ipw2100-fw'
-'ipw2200-fw' 'dhcpcd' 'openssl' 'dmraid' 'linux-atm' 'netctl' 'parted' 
'tzdata' 'ntp' 'libgcrypt' 'iw' 
-'libnl' 'iproute2' 'wireless-regdb' 'dhclient' 'mtools' 'fsarchiver' 
'xz' 'libtirpc' 'rpcbind' 'testdisk'
-'wipe' 'ddrescue' 'ifplugd' 'libgssglue' 'mkinitcpio-nfs-utils' 
'gptfdisk' 'nilfs-utils' 'btrfs-progs'
-'iana-etc' 'keyutils' 'libisoburn' 'file' 'curl'  'smartmontools' 
'dnsmasq' 'cifs-utils'
-'openconnect' 'libxml2' 'libproxy' 'tcpdump' 'nmap' 'lua' 'gnutls' 
'nettle' 'libtasn1' 'expat'
-'glib2' 'freetype2' 'libssh2' 'libedit' 'talloc' 'libjpeg-turbo' 
'dmidecode' 'gnupg' 'libksba' 'libassuan' 'pinentry'
-'gpgme' 'ldns' 'dnssec-anchors' 'hwdata' 'systemd' 'archlinux-keyring' 
'haveged' 'pambase' 'chntpw' 'traceroute' 'grub' 
-'systemd-sysvcompat' 'intel-ucode' 'arch-install-scripts' 'zsh' 'gdbm' 
'grml-zsh-config' 'cpupower' 'wvdial' 'xl2tpd' 
-'usb_modeswitch' 'refind' 'efibootmgr' 'f2fs-tools' 'efitools' 
'efivar' 'ethtool' 'exfatprogs' 'broadcom-wl'
-'fuse3' 'flex' 'amd-ucode' 'edk2-shell' 'cdrtools' 'nvme-cli' 
'fatresize' 'iwd' 'elinks' 'weechat' 'lshw' 'tmux'
-'sbsigntools' 'openresolv' 'mokutil' 'archboot-bootloader' 
'archinstall')
-makedepends=('git')
-optdepends=('linux-firmware: for firmware inclusion on image file'
-'linux-firmware-marvell: for marvell firmware support'
-'archboot-qemu-aarch64: for aarch64 image building on x86_64'
-'sudo: for running the archboot build server')
-source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel}?signed;)
-backup=('etc/archboot/defaults'
-   'etc/archboot/x86_64.conf'
-'etc/archboot/aarch64.conf'
-'etc/archboot/x86_64-latest.conf'
-'etc/archboot/aarch64-latest.conf'
-'etc/archboot/x86_64-local.conf'
-   'etc/archboot/aarch64-local.conf'
-   'etc/archboot/presets/x86_64'
-'etc/archboot/presets/aarch64'
-'etc/archboot/presets/x86_64-latest'
-'etc/archboot/presets/aarch64-latest'
-   'etc/archboot/presets/x86_64-local'
-   'etc/archboot/presets/aarch64-local')
-install=archboot.install
-sha256sums=('SKIP')
-validgpgkeys=('5B7E3FB71B7F10329A1C03AB771DF6627EDF681F' # Tobias Powalowski 

- )
-package()
-{
-  cd "$srcdir/archboot"
-  mv etc/ usr/ "$pkgdir/"
-}

Copied: archboot/repos/extra-any/PKGBUILD (from rev 441541, 
archboot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 19:03:31 UTC (rev 441542)
@@ -0,0 +1,55 @@
+# Maintainer : Tobias Powalowski 
+
+pkgname=archboot
+pkgver=2022.04
+pkgrel=8
+pkgdesc="Advanced, modular arch boot/install image creation utility"
+arch=(any)
+license=('GPL')
+url="https://wiki.archlinux.org/title/Archboot;
+depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
+ 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 

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

2022-04-04 Thread Tobias Powalowski via arch-commits
Date: Monday, April 4, 2022 @ 19:03:26
  Author: tpowa
Revision: 441541

upgpkg: archboot 2022.04-8: bump to latest version

Modified:
  archboot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:51:58 UTC (rev 441540)
+++ PKGBUILD2022-04-04 19:03:26 UTC (rev 441541)
@@ -2,7 +2,7 @@
 
 pkgname=archboot
 pkgver=2022.04
-pkgrel=7
+pkgrel=8
 pkgdesc="Advanced, modular arch boot/install image creation utility"
 arch=(any)
 license=('GPL')



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

2022-04-04 Thread Laurent Carlier via arch-commits
Date: Monday, April 4, 2022 @ 18:54:11
  Author: lcarlier
Revision: 1181373

archrelease: copy trunk to community-x86_64

Added:
  gambas3/repos/community-x86_64/PKGBUILD
(from rev 1181372, gambas3/trunk/PKGBUILD)
Deleted:
  gambas3/repos/community-x86_64/PKGBUILD
  gambas3/repos/community-x86_64/gtk3-fix-gl-linking.patch

---+
 PKGBUILD  | 1652 +---
 gtk3-fix-gl-linking.patch |   28 
 2 files changed, 824 insertions(+), 856 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:54:07 UTC (rev 1181372)
+++ PKGBUILD2022-04-04 18:54:11 UTC (rev 1181373)
@@ -1,828 +0,0 @@
-# Maintainer: Laurent Carlier 
-# Contributor : sebikul 
-
-pkgbase=gambas3
-pkgname=('gambas3-gb-args'
- 'gambas3-gb-cairo' 'gambas3-gb-chart' 'gambas3-gb-clipper' 
'gambas3-gb-complex' 'gambas3-gb-compress' 'gambas3-gb-crypt'
- 'gambas3-gb-dbus' 'gambas3-gb-data'
- 'gambas3-gb-db-form' 'gambas3-gb-db-mysql' 'gambas3-gb-db-odbc' 
'gambas3-gb-db-postgresql' 'gambas3-gb-db-sqlite3' 'gambas3-gb-db'
- 'gambas3-gb-desktop-gnome' 'gambas3-gb-desktop-x11' 
'gambas3-gb-desktop'
- 'gambas3-gb-eval-highlight' 'gambas3-gb-httpd'
- 'gambas3-gb-form-dialog' 'gambas3-gb-form-mdi' 
'gambas3-gb-form-terminal' 'gambas3-gb-form-stock' 'gambas3-gb-form-editor' 
'gambas3-gb-form-htmlview' 'gambas3-gb-form'
- 'gambas3-gb-gmp' 'gambas3-gb-gsl' 'gambas3-gb-gtk3-opengl' 
'gambas3-gb-gtk3'
- 'gambas3-gb-image-effect' 'gambas3-gb-image-imlib' 
'gambas3-gb-image-io' 'gambas3-gb-image' 'gambas3-gb-inotify'
- 'gambas3-gb-libxml' 'gambas3-gb-logging'
- 'gambas3-gb-map' 'gambas3-gb-markdown' 'gambas3-gb-media-form' 
'gambas3-gb-media' 'gambas3-gb-memcached' 'gambas3-gb-mime' 'gambas3-gb-mysql'
- 'gambas3-gb-ncurses' 'gambas3-gb-net-curl' 'gambas3-gb-net-pop3' 
'gambas3-gb-net-smtp' 'gambas3-gb-net'
- 'gambas3-gb-openal' 'gambas3-gb-opengl-glu' 'gambas3-gb-opengl-glsl' 
'gambas3-gb-opengl-sge' 'gambas3-gb-opengl' 'gambas3-gb-option'
- 'gambas3-gb-pcre' 'gambas3-gb-poppler'
- 'gambas3-gb-qt5-opengl' 'gambas3-gb-qt5-webkit' 'gambas3-gb-qt5'
- 'gambas3-gb-openssl'
- 'gambas3-gb-report'
- 'gambas3-gb-scanner' 'gambas3-gb-sdl2-audio' 'gambas3-gb-sdl2' 
'gambas3-gb-sdl-sound' 'gambas3-gb-sdl' 'gambas3-gb-settings' 
'gambas3-gb-signal'
- 'gambas3-gb-term'
- 'gambas3-gb-util-web' 'gambas3-gb-util'
- 'gambas3-gb-v4l' 'gambas3-gb-vb'
- 'gambas3-gb-xml-html' 'gambas3-gb-xml-rpc' 'gambas3-gb-xml-xslt' 
'gambas3-gb-xml'
- 'gambas3-gb-web-feed' 'gambas3-gb-web-form' 'gambas3-gb-web-gui' 
'gambas3-gb-web'
- 'gambas3-runtime' 'gambas3-dev-tools' 'gambas3-ide' 'gambas3-script')
-pkgver=3.17.0
-pkgrel=2
-pkgdesc="A free development environment based on a Basic interpreter."
-arch=('x86_64')
-url="http://gambas.sourceforge.net/;
-license=('GPL2')
-groups=('gambas3')
-makedepends=('intltool' 'postgresql' 'libffi' 'bzip2' 'glib2' 'v4l-utils'
- 'zlib' 'mesa' 'glew' 'xdg-utils' 'imlib2' 'gdk-pixbuf2' 'gtk3' 
'webkit2gtk'
- 'postgresql-libs' 'mariadb-libs' 'unixodbc' 'sqlite' 'librsvg'
- 'curl' 'poppler-glib' 'sdl_mixer' 'sdl_ttf' 'sdl2' 'sdl2_mixer' 
'sdl2_image' 'sdl2_ttf' 'libxtst'
- 'pcre' 'qt5-webkit' 'qt5-webengine' 'qt5-x11extras' 'qt5-svg' 
'libxcursor' 'libsm' 'dbus' 'libxml2'
- 'libxslt' 'libgnome-keyring' 'gsl' 'gst-plugins-base-libs' 'alure' 
'ncurses'
- 'gmime3' 'libxcrypt')
-options=('!emptydirs' 'libtool')
-source=("https://gitlab.com/gambas/gambas/-/archive/${pkgver}/gambas-${pkgver}.tar.bz2;
-gtk3-fix-gl-linking.patch)
-sha512sums=('0b35dcc9c1dec691ed8f816c65a340e651ee7e8d0f9c7425c917f26911516dcc059747467e1436fe502ffa400da72c25220f66c897fc7fc6a34777675a3783b0'
-
'388f0e58a1811c79baf3e9eb169f54aa8e6057c7c41ff6f72d1aa70a971b50145118a9a40631e2fd2a62468516e32d40bd82b7db61b81757706ee24bbcf8f180')
-
-prepare() {
-  cd ${srcdir}/gambas-${pkgver}
-
-  patch -Np1 -i ../gtk3-fix-gl-linking.patch
-
-  ./reconf-all
-}
-
-build() {
-  cd ${srcdir}/gambas-${pkgver}
-
-  GAMBAS_CONFIG_FAILURE=1 ./configure --prefix=/usr \
---disable-sqlite2 \
---disable-qt4  \
---disable-gtk \
---disable-pdf
-
-  make bindir=${pkgdir}/usr/bin
-
-  mkdir -p ${srcdir}/fakeinstall
-  make -j1 XDG_UTILS='' DESTDIR=${srcdir}/fakeinstall install
-}
-
-_install() {
-  local src f dir
-  for src; do
-f="${src#fakeinstall/}"
-dir="${pkgdir}/${f%/*}"
-install -m755 -d "${dir}"
-mv -v "${src}" "${dir}/"
-  done
-}
-
-package_gambas3-gb-args() {
-  depends=('gambas3-runtime')
-  pkgdesc="Command-line options analyzer component"
-
-  _install fakeinstall/usr/lib/gambas3/gb.args.*
-  _install fakeinstall/usr/share/gambas3/info/gb.args.*
-}
-
-package_gambas3-gb-cairo() {
-  

[arch-commits] Commit in gambas3/trunk (PKGBUILD gtk3-fix-gl-linking.patch)

2022-04-04 Thread Laurent Carlier via arch-commits
Date: Monday, April 4, 2022 @ 18:54:07
  Author: lcarlier
Revision: 1181372

upgpkg: gambas3 3.17.1-1: upstream update 3.17.1

Modified:
  gambas3/trunk/PKGBUILD
Deleted:
  gambas3/trunk/gtk3-fix-gl-linking.patch

---+
 PKGBUILD  |   12 
 gtk3-fix-gl-linking.patch |   28 
 2 files changed, 4 insertions(+), 36 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:35:20 UTC (rev 1181371)
+++ PKGBUILD2022-04-04 18:54:07 UTC (rev 1181372)
@@ -26,8 +26,8 @@
  'gambas3-gb-xml-html' 'gambas3-gb-xml-rpc' 'gambas3-gb-xml-xslt' 
'gambas3-gb-xml'
  'gambas3-gb-web-feed' 'gambas3-gb-web-form' 'gambas3-gb-web-gui' 
'gambas3-gb-web'
  'gambas3-runtime' 'gambas3-dev-tools' 'gambas3-ide' 'gambas3-script')
-pkgver=3.17.0
-pkgrel=2
+pkgver=3.17.1
+pkgrel=1
 pkgdesc="A free development environment based on a Basic interpreter."
 arch=('x86_64')
 url="http://gambas.sourceforge.net/;
@@ -41,16 +41,12 @@
  'libxslt' 'libgnome-keyring' 'gsl' 'gst-plugins-base-libs' 'alure' 
'ncurses'
  'gmime3' 'libxcrypt')
 options=('!emptydirs' 'libtool')
-source=("https://gitlab.com/gambas/gambas/-/archive/${pkgver}/gambas-${pkgver}.tar.bz2;
-gtk3-fix-gl-linking.patch)
-sha512sums=('0b35dcc9c1dec691ed8f816c65a340e651ee7e8d0f9c7425c917f26911516dcc059747467e1436fe502ffa400da72c25220f66c897fc7fc6a34777675a3783b0'
-
'388f0e58a1811c79baf3e9eb169f54aa8e6057c7c41ff6f72d1aa70a971b50145118a9a40631e2fd2a62468516e32d40bd82b7db61b81757706ee24bbcf8f180')
+source=("https://gitlab.com/gambas/gambas/-/archive/${pkgver}/gambas-${pkgver}.tar.bz2;)
+sha512sums=('4d71bda62a05f5e86f13750835d08ff155af4ecd533c67a62ffe93ae81d0f6a2774ebfb0e2a64656d5ee1b139c87225ff64e54d040e356bf6c7c1c2b9484263d')
 
 prepare() {
   cd ${srcdir}/gambas-${pkgver}
 
-  patch -Np1 -i ../gtk3-fix-gl-linking.patch
-
   ./reconf-all
 }
 

Deleted: gtk3-fix-gl-linking.patch
===
--- gtk3-fix-gl-linking.patch   2022-04-04 18:35:20 UTC (rev 1181371)
+++ gtk3-fix-gl-linking.patch   2022-04-04 18:54:07 UTC (rev 1181372)
@@ -1,28 +0,0 @@
-diff -Nur gambas-3.17.0/gb.gtk3/configure.ac 
gambas-3.17.0a/gb.gtk3/configure.ac
 gambas-3.17.0/gb.gtk3/configure.ac 2022-03-09 14:28:18.0 +0100
-+++ gambas-3.17.0a/gb.gtk3/configure.ac2022-03-13 12:57:36.551478184 
+0100
-@@ -36,7 +36,7 @@
- 
- GB_COMPONENT_PKG_CONFIG(
-   gtk3opengl, GTK3OPENGL, gb.gtk3.opengl, [opengl],
--  'gtk+-3.0 >= 3.16'
-+  'gtk+-3.0 >= 3.16' gl
- )
- 
- AC_OUTPUT( \
-diff -Nur gambas-3.17.0/gb.gtk3/src/opengl/Makefile.am 
gambas-3.17.0a/gb.gtk3/src/opengl/Makefile.am
 gambas-3.17.0/gb.gtk3/src/opengl/Makefile.am   2022-03-09 
14:28:18.0 +0100
-+++ gambas-3.17.0a/gb.gtk3/src/opengl/Makefile.am  2022-03-13 
12:58:11.352346960 +0100
-@@ -3,9 +3,9 @@
- 
- gblib_LTLIBRARIES = gb.gtk3.opengl.la
- 
--gb_gtk3_opengl_la_LIBADD = @GTK3_LIB@
--gb_gtk3_opengl_la_LDFLAGS = -module @LD_FLAGS@ @GTK3_LDFLAGS@
--gb_gtk3_opengl_la_CPPFLAGS = @GTK3_INC@
-+gb_gtk3_opengl_la_LIBADD = @GTK3OPENGL_LIB@
-+gb_gtk3_opengl_la_LDFLAGS = -module @LD_FLAGS@ @GTK3OPENGL_LDFLAGS@
-+gb_gtk3_opengl_la_CPPFLAGS = @GTK3OPENGL_INC@
- 
- gb_gtk3_opengl_la_SOURCES = \
-  main.h main.c \



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:51:58
  Author: heftig
Revision: 441539

archrelease: copy trunk to extra-x86_64

Added:
  gucharmap/repos/extra-x86_64/PKGBUILD
(from rev 441537, gucharmap/trunk/PKGBUILD)
Deleted:
  gucharmap/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:51:57 UTC (rev 441538)
+++ PKGBUILD2022-04-04 18:51:58 UTC (rev 441539)
@@ -1,39 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan De Groot 
-
-pkgname=gucharmap
-pkgver=14.0.1
-pkgrel=1
-pkgdesc="Gnome Unicode Charmap"
-url="https://wiki.gnome.org/Apps/Gucharmap;
-arch=(x86_64)
-license=(GPL)
-depends=(dconf gtk3)
-makedepends=(gtk-doc gobject-introspection yelp-tools appdata-tools git meson
- unicode-character-database unzip vala)
-provides=(libgucharmap_2_90.so)
-_commit=3efb47b75b61d7c6db7e48d72f7aa8c4d4365011  # tags/14.0.1^0
-source=("git+https://gitlab.gnome.org/GNOME/gucharmap.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build -D ucd_path=/usr/share/unicode
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-}

Copied: gucharmap/repos/extra-x86_64/PKGBUILD (from rev 441537, 
gucharmap/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 18:51:58 UTC (rev 441539)
@@ -0,0 +1,40 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan De Groot 
+
+pkgname=gucharmap
+pkgver=14.0.3
+pkgrel=1
+pkgdesc="Gnome Unicode Charmap"
+url="https://wiki.gnome.org/Apps/Gucharmap;
+arch=(x86_64)
+license=(GPL3)
+depends=(gtk3)
+makedepends=(gtk-doc gobject-introspection yelp-tools appdata-tools git meson
+ unicode-character-database unzip vala)
+provides=(libgucharmap_2_90.so)
+options=(debug)
+_commit=c5ed6328814952e7a6e7997d02697119dc52eb90  # tags/14.0.3^0
+source=("git+https://gitlab.gnome.org/GNOME/gucharmap.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build -D ucd_path=/usr/share/unicode
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:51:57
  Author: heftig
Revision: 441538

archrelease: copy trunk to testing-x86_64

Added:
  gedit-plugins/repos/testing-x86_64/
  gedit-plugins/repos/testing-x86_64/PKGBUILD
(from rev 441537, gedit-plugins/trunk/PKGBUILD)

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

Copied: gedit-plugins/repos/testing-x86_64/PKGBUILD (from rev 441537, 
gedit-plugins/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-04-04 18:51:57 UTC (rev 441538)
@@ -0,0 +1,50 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Alexander Rødseth 
+# Contributor: Hugo Doria 
+# Contributor: Sergej Chodarev 
+# Contributor: zhuqin 
+
+pkgname=gedit-plugins
+pkgver=42.0
+pkgrel=1
+pkgdesc="Collection of plugins for the gedit Text Editor"
+url="https://wiki.gnome.org/Apps/Gedit/ShippedPlugins;
+arch=(x86_64)
+license=(GPL)
+depends=(gedit python-dbus python-cairo)
+makedepends=(vte3 libgit2-glib gucharmap gobject-introspection vala yelp-tools
+ appstream-glib git meson)
+optdepends=('gucharmap: for charmap plugin'
+'vte3: for embedded terminal'
+'libgit2-glib: for git plugin')
+options=(debug)
+_commit=a8abe1aa5e10fbd5f7114b2e7a31e6edcafaa251  # tags/42.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gedit-plugins.git#commit=$_commit;)
+sha512sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+  python -m compileall -d /usr "$pkgdir/usr"
+  python -O -m compileall -d /usr "$pkgdir/usr"
+}
+
+# vim:set sw=2 et:



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:51:58
  Author: heftig
Revision: 441540

archrelease: copy trunk to extra-x86_64

Added:
  hitori/repos/extra-x86_64/PKGBUILD
(from rev 441537, hitori/trunk/PKGBUILD)
Deleted:
  hitori/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:51:58 UTC (rev 441539)
+++ PKGBUILD2022-04-04 18:51:58 UTC (rev 441540)
@@ -1,38 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Balló György 
-
-pkgname=hitori
-pkgver=3.38.3
-pkgrel=1
-pkgdesc="GTK+ application to generate and let you play games of Hitori"
-arch=(x86_64)
-url="https://wiki.gnome.org/Apps/Hitori;
-license=(GPL)
-depends=(gtk3)
-makedepends=(yelp-tools appstream-glib git meson)
-groups=(gnome-extra)
-_commit=60d2f0231c2702128c7d569a1c95c2f533080286  # tags/3.38.3^0
-source=("git+https://gitlab.gnome.org/GNOME/hitori.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build
-  meson compile -C build
-}
-
-check() {
-  meson test -C build --print-errorlogs
-}
-
-package() {
-  meson install -C build --destdir "$pkgdir"
-}

Copied: hitori/repos/extra-x86_64/PKGBUILD (from rev 441537, 
hitori/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 18:51:58 UTC (rev 441540)
@@ -0,0 +1,39 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Balló György 
+
+pkgname=hitori
+pkgver=3.38.4
+pkgrel=1
+pkgdesc="GTK+ application to generate and let you play games of Hitori"
+arch=(x86_64)
+url="https://wiki.gnome.org/Apps/Hitori;
+license=(GPL)
+depends=(gtk3)
+makedepends=(yelp-tools appstream-glib git meson)
+groups=(gnome-extra)
+options=(debug)
+_commit=2498eff83d8cfdeb19eb455ae0c72b49ca6bd375  # tags/3.38.4^0
+source=("git+https://gitlab.gnome.org/GNOME/hitori.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd hitori
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd hitori
+}
+
+build() {
+  arch-meson hitori build
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --print-errorlogs
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:51:49
  Author: heftig
Revision: 441537

14.0.3-1

Modified:
  gucharmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:50:56 UTC (rev 441536)
+++ PKGBUILD2022-04-04 18:51:49 UTC (rev 441537)
@@ -2,23 +2,24 @@
 # Contributor: Jan De Groot 
 
 pkgname=gucharmap
-pkgver=14.0.1
+pkgver=14.0.3
 pkgrel=1
 pkgdesc="Gnome Unicode Charmap"
 url="https://wiki.gnome.org/Apps/Gucharmap;
 arch=(x86_64)
-license=(GPL)
-depends=(dconf gtk3)
+license=(GPL3)
+depends=(gtk3)
 makedepends=(gtk-doc gobject-introspection yelp-tools appdata-tools git meson
  unicode-character-database unzip vala)
 provides=(libgucharmap_2_90.so)
-_commit=3efb47b75b61d7c6db7e48d72f7aa8c4d4365011  # tags/14.0.1^0
+options=(debug)
+_commit=c5ed6328814952e7a6e7997d02697119dc52eb90  # tags/14.0.3^0
 source=("git+https://gitlab.gnome.org/GNOME/gucharmap.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {
   cd $pkgname
-  git describe --tags | sed 's/-/+/g'
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
 }
 
 prepare() {



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:50:56
  Author: heftig
Revision: 441536

42.0-1

Modified:
  gedit-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:48:41 UTC (rev 441535)
+++ PKGBUILD2022-04-04 18:50:56 UTC (rev 441536)
@@ -6,7 +6,7 @@
 # Contributor: zhuqin 
 
 pkgname=gedit-plugins
-pkgver=41.0
+pkgver=42.0
 pkgrel=1
 pkgdesc="Collection of plugins for the gedit Text Editor"
 url="https://wiki.gnome.org/Apps/Gedit/ShippedPlugins;
@@ -18,7 +18,8 @@
 optdepends=('gucharmap: for charmap plugin'
 'vte3: for embedded terminal'
 'libgit2-glib: for git plugin')
-_commit=308fcae52c0389703c4470b242d73f3786ce8d09  # tags/41.0^0
+options=(debug)
+_commit=a8abe1aa5e10fbd5f7114b2e7a31e6edcafaa251  # tags/42.0^0
 source=("git+https://gitlab.gnome.org/GNOME/gedit-plugins.git#commit=$_commit;)
 sha512sums=('SKIP')
 



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:48:41
  Author: heftig
Revision: 441535

3.38.4-1

Modified:
  hitori/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:46:51 UTC (rev 441534)
+++ PKGBUILD2022-04-04 18:48:41 UTC (rev 441535)
@@ -2,7 +2,7 @@
 # Contributor: Balló György 
 
 pkgname=hitori
-pkgver=3.38.3
+pkgver=3.38.4
 pkgrel=1
 pkgdesc="GTK+ application to generate and let you play games of Hitori"
 arch=(x86_64)
@@ -11,21 +11,22 @@
 depends=(gtk3)
 makedepends=(yelp-tools appstream-glib git meson)
 groups=(gnome-extra)
-_commit=60d2f0231c2702128c7d569a1c95c2f533080286  # tags/3.38.3^0
+options=(debug)
+_commit=2498eff83d8cfdeb19eb455ae0c72b49ca6bd375  # tags/3.38.4^0
 source=("git+https://gitlab.gnome.org/GNOME/hitori.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
+  cd hitori
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
 }
 
 prepare() {
-  cd $pkgname
+  cd hitori
 }
 
 build() {
-  arch-meson $pkgname build
+  arch-meson hitori build
   meson compile -C build
 }
 



[arch-commits] Commit in firefox-i18n/repos (testing-any testing-any/PKGBUILD)

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:46:51
  Author: heftig
Revision: 441534

archrelease: copy trunk to testing-any

Added:
  firefox-i18n/repos/testing-any/
  firefox-i18n/repos/testing-any/PKGBUILD
(from rev 441533, firefox-i18n/trunk/PKGBUILD)

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

Copied: firefox-i18n/repos/testing-any/PKGBUILD (from rev 441533, 
firefox-i18n/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2022-04-04 18:46:51 UTC (rev 441534)
@@ -0,0 +1,234 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Thomas Baechler 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: Michal Hybner 
+# Contributor: Andrea Scarpino 
+
+pkgbase=firefox-i18n
+pkgver=99.0
+pkgrel=1
+pkgdesc="Language pack for Firefox"
+arch=(any)
+license=(MPL GPL LGPL)
+url="https://www.mozilla.org/firefox/;
+
+_languages=(
+  'ach"Acholi"'
+  'af "Afrikaans"'
+  'an "Aragonese"'
+  'ar "Arabic"'
+  'ast"Asturian"'
+  'az "Azerbaijani"'
+  'be "Belarusian"'
+  'bg "Bulgarian"'
+  'bn "Bengali"'
+  'br "Breton"'
+  'bs "Bosnian"'
+  'ca-valencia "Catalan (Valencian)"'
+  'ca "Catalan"'
+  'cak"Maya Kaqchikel"'
+  'cs "Czech"'
+  'cy "Welsh"'
+  'da "Danish"'
+  'de "German"'
+  'dsb"Lower Sorbian"'
+  'el "Greek"'
+  'en-CA  "English (Canadian)"'
+  'en-GB  "English (British)"'
+  'en-US  "English (US)"'
+  'eo "Esperanto"'
+  'es-AR  "Spanish (Argentina)"'
+  'es-CL  "Spanish (Chile)"'
+  'es-ES  "Spanish (Spain)"'
+  'es-MX  "Spanish (Mexico)"'
+  'et "Estonian"'
+  'eu "Basque"'
+  'fa "Persian"'
+  'ff "Fulah"'
+  'fi "Finnish"'
+  'fr "French"'
+  'fy-NL  "Frisian"'
+  'ga-IE  "Irish"'
+  'gd "Gaelic (Scotland)"'
+  'gl "Galician"'
+  'gn "Guarani"'
+  'gu-IN  "Gujarati (India)"'
+  'he "Hebrew"'
+  'hi-IN  "Hindi (India)"'
+  'hr "Croatian"'
+  'hsb"Upper Sorbian"'
+  'hu "Hungarian"'
+  'hy-AM  "Armenian"'
+  'ia "Interlingua"'
+  'id "Indonesian"'
+  'is "Icelandic"'
+  'it "Italian"'
+  'ja "Japanese"'
+  'ka "Georgian"'
+  'kab"Kabyle"'
+  'kk "Kazakh"'
+  'km "Khmer"'
+  'kn "Kannada"'
+  'ko "Korean"'
+  'lij"Ligurian"'
+  'lt "Lithuanian"'
+  'lv "Latvian"'
+  'mk "Macedonian"'
+  'mr "Marathi"'
+  'ms "Malay"'
+  'my "Burmese"'
+  'nb-NO  "Norwegian (Bokmål)"'
+  'ne-NP  "Nepali"'
+  'nl "Dutch"'
+  'nn-NO  "Norwegian (Nynorsk)"'
+  'oc "Occitan"'
+  'pa-IN  "Punjabi (India)"'
+  'pl "Polish"'
+  'pt-BR  "Portuguese (Brazilian)"'
+  'pt-PT  "Portuguese (Portugal)"'
+  'rm "Romansh"'
+  'ro "Romanian"'
+  'ru "Russian"'
+  'si "Sinhala"'
+  'sk "Slovak"'
+  'sl "Slovenian"'
+  'son"Songhai"'
+  'sq "Albanian"'
+  'sr "Serbian"'
+  'sv-SE  "Swedish"'
+  'ta "Tamil"'
+  'te "Telugu"'
+  'th "Thai"'
+  'tl "Tagalog"'
+  'tr "Turkish"'
+  'trs"Chicahuaxtla Triqui"'
+  'uk "Ukrainian"'
+  'ur "Urdu"'
+  'uz "Uzbek"'
+  'vi "Vietnamese"'
+  'xh "Xhosa"'
+  'zh-CN  "Chinese (Simplified)"'
+  'zh-TW  "Chinese (Traditional)"'
+)
+
+pkgname=()
+source=()
+_url=https://ftp.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
+
+for _lang in "${_languages[@]}"; do
+  _locale=${_lang%% *}
+  _pkgname=firefox-i18n-${_locale,,}
+
+  pkgname+=($_pkgname)
+  source+=("firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
+  eval "package_$_pkgname() {
+_package $_lang
+  }"
+done
+
+# Don't extract anything
+noextract=(${source[@]%%::*})
+
+_package() {
+  pkgdesc="$2 language pack for Firefox"
+  depends=("firefox>=$pkgver")
+  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
+
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
+}
+
+sha256sums=('e398f1b14ae79fcd74639a81b27c4cd38b09282ca625d1b72c69df09fc4ec1fc'
+'a8cbef3ba5c35e33c0f1e02dcd2781cc362315d5b63e9e6065a22afbe460581f'
+'35b4f32eabd40875d518cb174858bb6d8ecff272f4ee677e0c108d8395707960'
+'4f1a97c404347121c53799efd2a986860e030b7789e66e252d92b6a78012b681'
+'580e9e9fde913ce410774d366bad95af3a67df52c688a6ad64ad59e8d33eab47'
+'91236c6ecd7ee99927d5b69566cc30f4b1de6e7caca3336386f3e7bb995c96e2'
+'fa36e967b14e530993e3a50fcdc5f32e686f5b110f6cdee59b8c555c82294517'
+'c88a65b1f3c10085b0d5236a3e687b70cd9a620803393caf81b4ee0677330ef0'
+'c12d138948d4e5cebce1051f0cc750f8f9bfb23f733417e7e7b9596ee74a6980'
+'e4b9cdcb7c08beceecfef7d8b94d70a24e3f24404c73cd7cf5aed6572e293bf6'
+'75d09dfb5c0b55b670c912feecd48bfdc7f936f31c41d8e4b2ede0e46d16f749'
+

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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:46:36
  Author: heftig
Revision: 441533

archrelease: copy trunk to testing-x86_64

Added:
  firefox/repos/testing-x86_64/
  firefox/repos/testing-x86_64/PKGBUILD
(from rev 441532, firefox/trunk/PKGBUILD)
  firefox/repos/testing-x86_64/firefox.desktop
(from rev 441532, firefox/trunk/firefox.desktop)
  firefox/repos/testing-x86_64/identity-icons-brand.svg
(from rev 441532, firefox/trunk/identity-icons-brand.svg)
  firefox/repos/testing-x86_64/upload-symbol-archive
(from rev 441532, firefox/trunk/upload-symbol-archive)

--+
 PKGBUILD |  212 
 firefox.desktop  |  340 +
 identity-icons-brand.svg |3 
 upload-symbol-archive|   25 +++
 4 files changed, 580 insertions(+)

Copied: firefox/repos/testing-x86_64/PKGBUILD (from rev 441532, 
firefox/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-04-04 18:46:36 UTC (rev 441533)
@@ -0,0 +1,212 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+# Contributor: Jakub Schmidtke 
+
+pkgname=firefox
+pkgver=99.0
+pkgrel=1
+pkgdesc="Standalone web browser from mozilla.org"
+arch=(x86_64)
+license=(MPL GPL LGPL)
+url="https://www.mozilla.org/firefox/;
+depends=(gtk3 libxt mime-types dbus-glib ffmpeg nss ttf-font libpulse)
+makedepends=(unzip zip diffutils yasm mesa imake inetutils xorg-server-xvfb
+ autoconf2.13 rust clang llvm jack nodejs cbindgen nasm
+ python-setuptools python-psutil python-zstandard lld dump_syms
+ wasi-compiler-rt wasi-libc wasi-libc++ wasi-libc++abi)
+optdepends=('networkmanager: Location detection via available WiFi networks'
+'libnotify: Notification integration'
+'pulseaudio: Audio support'
+'speech-dispatcher: Text-to-Speech'
+'hunspell-en_US: Spell checking, American English'
+'xdg-desktop-portal: Screensharing with Wayland')
+options=(!emptydirs !makeflags !strip !lto !debug)
+source=(https://archive.mozilla.org/pub/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.xz{,.asc}
+$pkgname.desktop identity-icons-brand.svg)
+sha256sums=('513f8d2cafa39a2d50f2c4a25cc48093e89f715a706b941170fa48e397976327'
+'SKIP'
+'298eae9de76ec53182f38d5c549d0379569916eebf62149f9d7f4a7edef36abf'
+'a9b8b4a0a1f4a7b4af77d5fc70c2686d624038909263c795ecc81e0aec7711e9')
+validpgpkeys=('14F26682D0916CDD81E37B6D61B7B526D98F0353') # Mozilla Software 
Releases 
+
+# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact foutre...@archlinux.org for
+# more information.
+_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
+
+# Mozilla API keys (see https://location.services.mozilla.com/api)
+# Note: These are for Arch Linux use ONLY. For your own distribution, please
+# get your own set of keys. Feel free to contact hef...@archlinux.org for
+# more information.
+_mozilla_api_key=e05d56db0a694edc8b5aaebda3f2db6a
+
+prepare() {
+  mkdir mozbuild
+  cd firefox-$pkgver
+
+  echo -n "$_google_api_key" >google-api-key
+  echo -n "$_mozilla_api_key" >mozilla-api-key
+
+  cat >../mozconfig <.mozconfig ../mozconfig - <.mozconfig ../mozconfig - 

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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 18:35:20
  Author: dvzrv
Revision: 1181371

archrelease: copy trunk to community-x86_64

Added:
  drumstick/repos/community-x86_64/PKGBUILD
(from rev 1181370, drumstick/trunk/PKGBUILD)
Deleted:
  drumstick/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:35:08 UTC (rev 1181370)
+++ PKGBUILD2022-04-04 18:35:20 UTC (rev 1181371)
@@ -1,44 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: Dany Martineau 
-
-pkgname=drumstick
-pkgver=2.5.1
-pkgrel=1
-pkgdesc="MIDI libraries for Qt5/C++"
-arch=(x86_64)
-url="https://drumstick.sourceforge.io/;
-license=(GPL2)
-depends=(gcc-libs glibc hicolor-icon-theme qt5-base)
-makedepends=(alsa-lib cmake doxygen docbook-xsl fluidsynth graphviz
-libpulse qt5-tools)
-provides=(libdrumstick-alsa.so libdrumstick-file.so libdrumstick-rt.so
-libdrumstick-widgets.so)
-options=(debug)
-source=("https://downloads.sourceforge.net/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
-sha512sums=('bfa0f823c45cef85152f92b21a4e4998fd8e674c742bc2423c7b58559f83c68d327e3bc520217b348c19310dbf3ebbe39c89b160be9d3e8e6a95a99ca9d7c307')
-b2sums=('70cf08bc9d616f265ac42379edeccd17a31ede490ace066ec4ca1635d042fae9b6c6698fbfa1be4c73878a674b6cd81b5a58c094d021db4e1e29556bf235cf9c')
-
-build() {
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=None \
--Wno-dev \
--B build \
--S $pkgname-$pkgver
-  make VERBOSE=1 -C build
-}
-
-check() {
-  # some tests fail due to insufficient system privileges, hence only run those
-  # that make sense in the build environment
-  # https://sourceforge.net/p/drumstick/bugs/24/
-  make test -C build/tests/fileTest1
-  make test -C build/tests/fileTest2
-}
-
-package() {
-  depends+=(libasound.so libfluidsynth.so libpulse.so libpulse-simple.so)
-
-  make DESTDIR="${pkgdir}/" install -C build
-  install -vDm 644 $pkgname-$pkgver/{AUTHORS,ChangeLog,NEWS,readme.md,TODO} -t 
"${pkgdir}/usr/share/doc/${pkgname}/"
-}

Copied: drumstick/repos/community-x86_64/PKGBUILD (from rev 1181370, 
drumstick/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 18:35:20 UTC (rev 1181371)
@@ -0,0 +1,44 @@
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: Dany Martineau 
+
+pkgname=drumstick
+pkgver=2.6.0
+pkgrel=1
+pkgdesc="MIDI libraries for Qt5/C++"
+arch=(x86_64)
+url="https://drumstick.sourceforge.io/;
+license=(GPL2)
+depends=(gcc-libs glibc hicolor-icon-theme qt5-base)
+makedepends=(alsa-lib cmake doxygen docbook-xsl fluidsynth graphviz
+libpulse qt5-tools)
+provides=(libdrumstick-alsa.so libdrumstick-file.so libdrumstick-rt.so
+libdrumstick-widgets.so)
+options=(debug)
+source=(https://downloads.sourceforge.net/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
+sha512sums=('c92668c5ee3c3176cbfefd6562fc5a737ce83d2091217a36e5f47568fda9dd4a8a1befdcbf48d34e03ce07ea63bacf8ec9b14ed3aa38917fbf5a9ab70b2a5822')
+b2sums=('c340c97bb5886d4f41c28dc8e37a3c6a3d385b17518ff52bb1de50c5a4f19128a7c763ba2bde0d5994451ffb14f49d0d14a77ef5bf32201c55c47de72f9a5783')
+
+build() {
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-Wno-dev \
+-B build \
+-S $pkgname-$pkgver
+  make VERBOSE=1 -C build
+}
+
+check() {
+  # some tests fail due to insufficient system privileges, hence only run those
+  # that make sense in the build environment
+  # https://sourceforge.net/p/drumstick/bugs/24/
+  make test -C build/tests/fileTest1
+  make test -C build/tests/fileTest2
+}
+
+package() {
+  depends+=(libasound.so libfluidsynth.so libpulse.so libpulse-simple.so)
+
+  make DESTDIR="$pkgdir" install -C build
+  install -vDm 644 $pkgname-$pkgver/{AUTHORS,ChangeLog,NEWS,readme.md,TODO} -t 
"$pkgdir/usr/share/doc/$pkgname/"
+}



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 18:35:08
  Author: dvzrv
Revision: 1181370

upgpkg: drumstick 2.6.0-1: Upgrade to 2.6.0.

Remove unneeded quotes and curly braces.

Modified:
  drumstick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:34:10 UTC (rev 1181369)
+++ PKGBUILD2022-04-04 18:35:08 UTC (rev 1181370)
@@ -3,7 +3,7 @@
 # Contributor: Dany Martineau 
 
 pkgname=drumstick
-pkgver=2.5.1
+pkgver=2.6.0
 pkgrel=1
 pkgdesc="MIDI libraries for Qt5/C++"
 arch=(x86_64)
@@ -15,9 +15,9 @@
 provides=(libdrumstick-alsa.so libdrumstick-file.so libdrumstick-rt.so
 libdrumstick-widgets.so)
 options=(debug)
-source=("https://downloads.sourceforge.net/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2;)
-sha512sums=('bfa0f823c45cef85152f92b21a4e4998fd8e674c742bc2423c7b58559f83c68d327e3bc520217b348c19310dbf3ebbe39c89b160be9d3e8e6a95a99ca9d7c307')
-b2sums=('70cf08bc9d616f265ac42379edeccd17a31ede490ace066ec4ca1635d042fae9b6c6698fbfa1be4c73878a674b6cd81b5a58c094d021db4e1e29556bf235cf9c')
+source=(https://downloads.sourceforge.net/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
+sha512sums=('c92668c5ee3c3176cbfefd6562fc5a737ce83d2091217a36e5f47568fda9dd4a8a1befdcbf48d34e03ce07ea63bacf8ec9b14ed3aa38917fbf5a9ab70b2a5822')
+b2sums=('c340c97bb5886d4f41c28dc8e37a3c6a3d385b17518ff52bb1de50c5a4f19128a7c763ba2bde0d5994451ffb14f49d0d14a77ef5bf32201c55c47de72f9a5783')
 
 build() {
   cmake -DCMAKE_INSTALL_PREFIX=/usr \
@@ -39,6 +39,6 @@
 package() {
   depends+=(libasound.so libfluidsynth.so libpulse.so libpulse-simple.so)
 
-  make DESTDIR="${pkgdir}/" install -C build
-  install -vDm 644 $pkgname-$pkgver/{AUTHORS,ChangeLog,NEWS,readme.md,TODO} -t 
"${pkgdir}/usr/share/doc/${pkgname}/"
+  make DESTDIR="$pkgdir" install -C build
+  install -vDm 644 $pkgname-$pkgver/{AUTHORS,ChangeLog,NEWS,readme.md,TODO} -t 
"$pkgdir/usr/share/doc/$pkgname/"
 }



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:34:57
  Author: heftig
Revision: 441532

archrelease: copy trunk to extra-x86_64

Added:
  js91/repos/extra-x86_64/PKGBUILD
(from rev 441531, js91/trunk/PKGBUILD)
Deleted:
  js91/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  254 ++---
 1 file changed, 127 insertions(+), 127 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:34:33 UTC (rev 441531)
+++ PKGBUILD2022-04-04 18:34:57 UTC (rev 441532)
@@ -1,127 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=js91
-pkgver=91.7.1
-pkgrel=1
-pkgdesc="JavaScript interpreter and libraries - Version 91"
-arch=(x86_64)
-url="https://spidermonkey.dev/;
-license=(MPL)
-depends=(gcc-libs readline zlib sh)
-makedepends=(zip autoconf2.13 python-setuptools python-psutil rust llvm clang 
lld)
-checkdepends=(mercurial git)
-options=(!lto debug)
-_relver=${pkgver}esr
-source=(https://archive.mozilla.org/pub/firefox/releases/$_relver/source/firefox-$_relver.source.tar.xz{,.asc})
-sha256sums=('57494a445e72f7eacb0bb870a3a79cde3c2143e234873c0c3e269df1d4742c92'
-'SKIP')
-validpgpkeys=('14F26682D0916CDD81E37B6D61B7B526D98F0353') # Mozilla Software 
Releases 
-
-# Make sure the duplication between bin and lib is found
-COMPRESSZST+=(--long)
-
-prepare() {
-  mkdir mozbuild
-  cd firefox-$pkgver
-
-  cat >../mozconfig <.mozconfig ../mozconfig - <.mozconfig ../mozconfig - <
+
+pkgname=js91
+pkgver=91.8.0
+pkgrel=1
+pkgdesc="JavaScript interpreter and libraries - Version 91"
+arch=(x86_64)
+url="https://spidermonkey.dev/;
+license=(MPL)
+depends=(gcc-libs readline zlib sh)
+makedepends=(zip autoconf2.13 python-setuptools python-psutil rust llvm clang 
lld)
+checkdepends=(mercurial git)
+options=(!lto debug)
+_relver=${pkgver}esr
+source=(https://archive.mozilla.org/pub/firefox/releases/$_relver/source/firefox-$_relver.source.tar.xz{,.asc})
+sha256sums=('d483a853cbf5c7f93621093432e3dc0b7ed847f2a5318b964828d19f9f087f3a'
+'SKIP')
+validpgpkeys=('14F26682D0916CDD81E37B6D61B7B526D98F0353') # Mozilla Software 
Releases 
+
+# Make sure the duplication between bin and lib is found
+COMPRESSZST+=(--long)
+
+prepare() {
+  mkdir mozbuild
+  cd firefox-$pkgver
+
+  cat >../mozconfig <.mozconfig ../mozconfig - <.mozconfig ../mozconfig - <

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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:34:33
  Author: heftig
Revision: 441531

91.8.0-1

Modified:
  js91/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:34:11 UTC (rev 441530)
+++ PKGBUILD2022-04-04 18:34:33 UTC (rev 441531)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=js91
-pkgver=91.7.1
+pkgver=91.8.0
 pkgrel=1
 pkgdesc="JavaScript interpreter and libraries - Version 91"
 arch=(x86_64)
@@ -13,7 +13,7 @@
 options=(!lto debug)
 _relver=${pkgver}esr
 
source=(https://archive.mozilla.org/pub/firefox/releases/$_relver/source/firefox-$_relver.source.tar.xz{,.asc})
-sha256sums=('57494a445e72f7eacb0bb870a3a79cde3c2143e234873c0c3e269df1d4742c92'
+sha256sums=('d483a853cbf5c7f93621093432e3dc0b7ed847f2a5318b964828d19f9f087f3a'
 'SKIP')
 validpgpkeys=('14F26682D0916CDD81E37B6D61B7B526D98F0353') # Mozilla Software 
Releases 
 



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:34:11
  Author: heftig
Revision: 441529

archrelease: copy trunk to extra-x86_64

Added:
  networkmanager-vpnc/repos/extra-x86_64/PKGBUILD
(from rev 441526, networkmanager-vpnc/trunk/PKGBUILD)
Deleted:
  networkmanager-vpnc/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:34:10 UTC (rev 441528)
+++ PKGBUILD2022-04-04 18:34:11 UTC (rev 441529)
@@ -1,42 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=networkmanager-vpnc
-pkgver=1.2.8
-pkgrel=1
-pkgdesc="NetworkManager VPN plugin for VPNC"
-url="https://wiki.gnome.org/Projects/NetworkManager;
-arch=(x86_64)
-license=(GPL)
-depends=(libnm libsecret vpnc)
-makedepends=(libnma intltool python git)
-optdepends=('libnma: GUI support')
-_commit=75f664ff13ff1de9bf305894ccd94b30867bd06a  # tags/1.2.8^0
-source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-vpnc.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd NetworkManager-vpnc
-  git describe --tags | sed 's/-dev/dev/;s/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd NetworkManager-vpnc
-  intltoolize --automake --copy
-  autoreconf -fvi
-}
-
-build() {
-  cd NetworkManager-vpnc
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd NetworkManager-vpnc
-  make DESTDIR="$pkgdir" install dbusservicedir=/usr/share/dbus-1/system.d
-}
-
-# vim:set sw=2 et:

Copied: networkmanager-vpnc/repos/extra-x86_64/PKGBUILD (from rev 441526, 
networkmanager-vpnc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 18:34:11 UTC (rev 441529)
@@ -0,0 +1,44 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=networkmanager-vpnc
+pkgver=1.2.8
+pkgrel=2
+pkgdesc="NetworkManager VPN plugin for VPNC"
+url="https://wiki.gnome.org/Projects/NetworkManager;
+arch=(x86_64)
+license=(GPL)
+depends=(libnm libsecret vpnc)
+makedepends=(libnma libnma-gtk4 intltool python git)
+optdepends=('libnma: GUI support (GTK 3)'
+'libnma-gtk4: GUI support (GTK 4)')
+options=(debug)
+_commit=75f664ff13ff1de9bf305894ccd94b30867bd06a  # tags/1.2.8^0
+source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-vpnc.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd NetworkManager-vpnc
+  git describe --tags | sed 's/-dev/dev/;s/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd NetworkManager-vpnc
+  intltoolize --automake --copy
+  autoreconf -fvi
+}
+
+build() {
+  cd NetworkManager-vpnc
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib --disable-static --with-gtk4
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd NetworkManager-vpnc
+  make DESTDIR="$pkgdir" install dbusservicedir=/usr/share/dbus-1/system.d
+}
+
+# vim:set sw=2 et:



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:34:10
  Author: heftig
Revision: 441527

archrelease: copy trunk to extra-x86_64

Added:
  networkmanager-pptp/repos/extra-x86_64/PKGBUILD
(from rev 441526, networkmanager-pptp/trunk/PKGBUILD)
Deleted:
  networkmanager-pptp/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:31:20 UTC (rev 441526)
+++ PKGBUILD2022-04-04 18:34:10 UTC (rev 441527)
@@ -1,44 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=networkmanager-pptp
-pkgver=1.2.10
-pkgrel=1
-pkgdesc="NetworkManager VPN plugin for PPTP"
-url="https://wiki.gnome.org/Projects/NetworkManager;
-arch=(x86_64)
-license=(GPL)
-_pppver=2.4.9
-depends=(libnm libsecret "ppp=$_pppver" pptpclient)
-makedepends=(libnma intltool python git)
-optdepends=('libnma: GUI support')
-_commit=0c066e55fe9b34bf4c05e82601feee78c6bf29b1  # tags/1.2.10^0
-source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-pptp.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd NetworkManager-pptp
-  git describe --tags | sed 's/-dev/dev/;s/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd NetworkManager-pptp
-  intltoolize --automake --copy
-  autoreconf -fvi
-}
-
-build() {
-  cd NetworkManager-pptp
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static \
---with-pppd-plugin-dir=/usr/lib/pppd/$_pppver
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd NetworkManager-pptp
-  make DESTDIR="$pkgdir" install dbusservicedir=/usr/share/dbus-1/system.d
-}
-
-# vim:set sw=2 et:

Copied: networkmanager-pptp/repos/extra-x86_64/PKGBUILD (from rev 441526, 
networkmanager-pptp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 18:34:10 UTC (rev 441527)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=networkmanager-pptp
+pkgver=1.2.10
+pkgrel=2
+pkgdesc="NetworkManager VPN plugin for PPTP"
+url="https://wiki.gnome.org/Projects/NetworkManager;
+arch=(x86_64)
+license=(GPL)
+_pppver=2.4.9
+depends=(libnm libsecret "ppp=$_pppver" pptpclient)
+makedepends=(libnma libnma-gtk4 intltool python git)
+optdepends=('libnma: GUI support (GTK 3)'
+'libnma-gtk4: GUI support (GTK 4)')
+options=(debug)
+_commit=0c066e55fe9b34bf4c05e82601feee78c6bf29b1  # tags/1.2.10^0
+source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-pptp.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd NetworkManager-pptp
+  git describe --tags | sed 's/-dev/dev/;s/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd NetworkManager-pptp
+  intltoolize --automake --copy
+  autoreconf -fvi
+}
+
+build() {
+  cd NetworkManager-pptp
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib --disable-static --with-gtk4 \
+--with-pppd-plugin-dir=/usr/lib/pppd/$_pppver
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd NetworkManager-pptp
+  make DESTDIR="$pkgdir" install dbusservicedir=/usr/share/dbus-1/system.d
+}
+
+# vim:set sw=2 et:



[arch-commits] Commit in networkmanager-fortisslvpn/repos/community-x86_64 (3 files)

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:34:10
  Author: heftig
Revision: 1181369

archrelease: copy trunk to community-x86_64

Added:
  networkmanager-fortisslvpn/repos/community-x86_64/PKGBUILD
(from rev 1181368, networkmanager-fortisslvpn/trunk/PKGBUILD)
Deleted:
  networkmanager-fortisslvpn/repos/community-x86_64/PKGBUILD
  networkmanager-fortisslvpn/repos/community-x86_64/gtk4-optional.diff

+
 PKGBUILD   |   94 ---
 gtk4-optional.diff |   19 --
 2 files changed, 45 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:33:33 UTC (rev 1181368)
+++ PKGBUILD2022-04-04 18:34:10 UTC (rev 1181369)
@@ -1,49 +0,0 @@
-# Maintainer: Bartłomiej Piotrowski 
-
-pkgname=networkmanager-fortisslvpn
-pkgver=1.4.0
-pkgrel=1
-pkgdesc="NetworkManager VPN plugin for Fortinet SSLVPN"
-url="https://wiki.gnome.org/Projects/NetworkManager;
-arch=(x86_64)
-license=(GPL)
-_pppver=2.4.9
-depends=(libnm libsecret "ppp=$_pppver" openfortivpn)
-makedepends=(libnma intltool python git)
-optdepends=('libnma: GUI support')
-_commit=308987d45faee919e54547eb7ff0120c32c5a84e  # tags/1.4.0^0
-source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-fortisslvpn.git#commit=$_commit;
-gtk4-optional.diff)
-sha256sums=('SKIP'
-'576ceb6b9471bc54c75b81ea25650e1caad780af769e6497b219c7bfd8a8e98b')
-
-pkgver() {
-  cd NetworkManager-fortisslvpn
-  git describe --tags | sed 's/-dev/dev/;s/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd NetworkManager-fortisslvpn
-
-  # Fix built without GTK 4
-  git apply -3 ../gtk4-optional.diff
-
-  intltoolize --automake --copy
-  autoreconf -fvi
-}
-
-build() {
-  cd NetworkManager-fortisslvpn
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static \
---with-pppd-plugin-dir=/usr/lib/pppd/$_pppver
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd NetworkManager-fortisslvpn
-  make DESTDIR="$pkgdir" install dbusservicedir=/usr/share/dbus-1/system.d
-}
-
-# vim:set sw=2 et:

Copied: networkmanager-fortisslvpn/repos/community-x86_64/PKGBUILD (from rev 
1181368, networkmanager-fortisslvpn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 18:34:10 UTC (rev 1181369)
@@ -0,0 +1,45 @@
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=networkmanager-fortisslvpn
+pkgver=1.4.0
+pkgrel=2
+pkgdesc="NetworkManager VPN plugin for Fortinet SSLVPN"
+url="https://wiki.gnome.org/Projects/NetworkManager;
+arch=(x86_64)
+license=(GPL)
+_pppver=2.4.9
+depends=(libnm libsecret "ppp=$_pppver" openfortivpn)
+makedepends=(libnma libnma-gtk4 intltool python git)
+optdepends=('libnma: GUI support (GTK 3)'
+'libnma-gtk4: GUI support (GTK 4)')
+options=(debug)
+_commit=308987d45faee919e54547eb7ff0120c32c5a84e  # tags/1.4.0^0
+source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-fortisslvpn.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd NetworkManager-fortisslvpn
+  git describe --tags | sed 's/-dev/dev/;s/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd NetworkManager-fortisslvpn
+  intltoolize --automake --copy
+  autoreconf -fvi
+}
+
+build() {
+  cd NetworkManager-fortisslvpn
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib --disable-static --with-gtk4 \
+--with-pppd-plugin-dir=/usr/lib/pppd/$_pppver
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd NetworkManager-fortisslvpn
+  make DESTDIR="$pkgdir" install dbusservicedir=/usr/share/dbus-1/system.d
+}
+
+# vim:set sw=2 et:

Deleted: gtk4-optional.diff
===
--- gtk4-optional.diff  2022-04-04 18:33:33 UTC (rev 1181368)
+++ gtk4-optional.diff  2022-04-04 18:34:10 UTC (rev 1181369)
@@ -1,19 +0,0 @@
-diff --git i/Makefile.am w/Makefile.am
-index f6bb29d..243da1f 100644
 i/Makefile.am
-+++ w/Makefile.am
-@@ -174,10 +174,13 @@ properties_cppflags = \
-   $(GLIB_CFLAGS)
- 
- BUILT_SOURCES += \
--  gtk4/resources.c \
-   properties/resources.c \
-   properties/resources.h
- 
-+if WITH_GTK4
-+BUILT_SOURCES += gtk4/resources.c
-+endif
-+
- CLEANFILES += \
-   gtk4/nm-fortisslvpn-dialog.ui \
-   gtk4/resources.c \



[arch-commits] Commit in networkmanager-openconnect/repos/extra-x86_64 (2 files)

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:34:10
  Author: heftig
Revision: 441528

archrelease: copy trunk to extra-x86_64

Added:
  networkmanager-openconnect/repos/extra-x86_64/PKGBUILD
(from rev 441526, networkmanager-openconnect/trunk/PKGBUILD)
Deleted:
  networkmanager-openconnect/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:34:10 UTC (rev 441527)
+++ PKGBUILD2022-04-04 18:34:10 UTC (rev 441528)
@@ -1,44 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=networkmanager-openconnect
-pkgver=1.2.8
-pkgrel=1
-pkgdesc="NetworkManager VPN plugin for OpenConnect"
-url="https://wiki.gnome.org/Projects/NetworkManager;
-arch=(x86_64)
-license=(GPL)
-depends=(libnm libsecret openconnect libopenconnect.so)
-makedepends=(libnma intltool python git)
-optdepends=('libnma: GUI support')
-_commit=6eaa0604da8f1927db18a315dba7a3eaff4ec56e  # tags/1.2.8^0
-source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-openconnect.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd NetworkManager-openconnect
-  git describe --tags | sed 's/-dev/dev/;s/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd NetworkManager-openconnect
-  intltoolize --automake --copy
-  autoreconf -fvi
-}
-
-build() {
-  cd NetworkManager-openconnect
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd NetworkManager-openconnect
-  make DESTDIR="$pkgdir" install dbusservicedir=/usr/share/dbus-1/system.d
-  echo 'u nm-openconnect - "NetworkManager OpenConnect"' |
-install -Dm644 /dev/stdin "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
-}
-
-# vim:set sw=2 et:

Copied: networkmanager-openconnect/repos/extra-x86_64/PKGBUILD (from rev 
441526, networkmanager-openconnect/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 18:34:10 UTC (rev 441528)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=networkmanager-openconnect
+pkgver=1.2.8
+pkgrel=2
+pkgdesc="NetworkManager VPN plugin for OpenConnect"
+url="https://wiki.gnome.org/Projects/NetworkManager;
+arch=(x86_64)
+license=(GPL)
+depends=(libnm libsecret openconnect libopenconnect.so)
+makedepends=(libnma libnma-gtk4 intltool python git)
+optdepends=('libnma: GUI support (GTK 3)'
+'libnma-gtk4: GUI support (GTK 4)')
+options=(debug)
+_commit=6eaa0604da8f1927db18a315dba7a3eaff4ec56e  # tags/1.2.8^0
+source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-openconnect.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd NetworkManager-openconnect
+  git describe --tags | sed 's/-dev/dev/;s/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd NetworkManager-openconnect
+  intltoolize --automake --copy
+  autoreconf -fvi
+}
+
+build() {
+  cd NetworkManager-openconnect
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib --disable-static --with-gtk4
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd NetworkManager-openconnect
+  make DESTDIR="$pkgdir" install dbusservicedir=/usr/share/dbus-1/system.d
+  echo 'u nm-openconnect - "NetworkManager OpenConnect"' |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
+}
+
+# vim:set sw=2 et:



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:34:11
  Author: heftig
Revision: 441530

archrelease: copy trunk to extra-x86_64

Added:
  networkmanager-openvpn/repos/extra-x86_64/PKGBUILD
(from rev 441526, networkmanager-openvpn/trunk/PKGBUILD)
Deleted:
  networkmanager-openvpn/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:34:11 UTC (rev 441529)
+++ PKGBUILD2022-04-04 18:34:11 UTC (rev 441530)
@@ -1,44 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=networkmanager-openvpn
-pkgver=1.8.18
-pkgrel=1
-pkgdesc="NetworkManager VPN plugin for OpenVPN"
-url="https://wiki.gnome.org/Projects/NetworkManager;
-arch=(x86_64)
-license=(GPL)
-depends=(libnm libsecret openvpn)
-makedepends=(libnma intltool python git)
-optdepends=('libnma: GUI support')
-_commit=428aa26bc05cac4cf418624128bb10c9d4003e5d  # tags/1.8.18^0
-source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-openvpn.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd NetworkManager-openvpn
-  git describe --tags | sed 's/-dev/dev/;s/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
-  cd NetworkManager-openvpn
-  intltoolize --automake --copy
-  autoreconf -fvi
-}
-
-build() {
-  cd NetworkManager-openvpn
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd NetworkManager-openvpn
-  make DESTDIR="$pkgdir" install dbusservicedir=/usr/share/dbus-1/system.d
-  echo 'u nm-openvpn - "NetworkManager OpenVPN"' |
-install -Dm644 /dev/stdin "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
-}
-
-# vim:set sw=2 et:

Copied: networkmanager-openvpn/repos/extra-x86_64/PKGBUILD (from rev 441526, 
networkmanager-openvpn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 18:34:11 UTC (rev 441530)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Ionut Biru 
+
+pkgname=networkmanager-openvpn
+pkgver=1.8.18
+pkgrel=2
+pkgdesc="NetworkManager VPN plugin for OpenVPN"
+url="https://wiki.gnome.org/Projects/NetworkManager;
+arch=(x86_64)
+license=(GPL)
+depends=(libnm libsecret openvpn)
+makedepends=(libnma libnma-gtk4 intltool python git)
+optdepends=('libnma: GUI support (GTK 3)'
+'libnma-gtk4: GUI support (GTK 4)')
+options=(debug)
+_commit=428aa26bc05cac4cf418624128bb10c9d4003e5d  # tags/1.8.18^0
+source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-openvpn.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd NetworkManager-openvpn
+  git describe --tags | sed 's/-dev/dev/;s/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd NetworkManager-openvpn
+  intltoolize --automake --copy
+  autoreconf -fvi
+}
+
+build() {
+  cd NetworkManager-openvpn
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib --disable-static --with-gtk4
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd NetworkManager-openvpn
+  make DESTDIR="$pkgdir" install dbusservicedir=/usr/share/dbus-1/system.d
+  echo 'u nm-openvpn - "NetworkManager OpenVPN"' |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
+}
+
+# vim:set sw=2 et:



[arch-commits] Commit in networkmanager-fortisslvpn/trunk (2 files)

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:33:33
  Author: heftig
Revision: 1181368

1.4.0-2: support GTK 4

Modified:
  networkmanager-fortisslvpn/trunk/PKGBUILD
Deleted:
  networkmanager-fortisslvpn/trunk/gtk4-optional.diff

+
 PKGBUILD   |   20 
 gtk4-optional.diff |   19 ---
 2 files changed, 8 insertions(+), 31 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:30:43 UTC (rev 1181367)
+++ PKGBUILD2022-04-04 18:33:33 UTC (rev 1181368)
@@ -2,7 +2,7 @@
 
 pkgname=networkmanager-fortisslvpn
 pkgver=1.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc="NetworkManager VPN plugin for Fortinet SSLVPN"
 url="https://wiki.gnome.org/Projects/NetworkManager;
 arch=(x86_64)
@@ -9,13 +9,13 @@
 license=(GPL)
 _pppver=2.4.9
 depends=(libnm libsecret "ppp=$_pppver" openfortivpn)
-makedepends=(libnma intltool python git)
-optdepends=('libnma: GUI support')
+makedepends=(libnma libnma-gtk4 intltool python git)
+optdepends=('libnma: GUI support (GTK 3)'
+'libnma-gtk4: GUI support (GTK 4)')
+options=(debug)
 _commit=308987d45faee919e54547eb7ff0120c32c5a84e  # tags/1.4.0^0
-source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-fortisslvpn.git#commit=$_commit;
-gtk4-optional.diff)
-sha256sums=('SKIP'
-'576ceb6b9471bc54c75b81ea25650e1caad780af769e6497b219c7bfd8a8e98b')
+source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-fortisslvpn.git#commit=$_commit;)
+sha256sums=('SKIP')
 
 pkgver() {
   cd NetworkManager-fortisslvpn
@@ -24,10 +24,6 @@
 
 prepare() {
   cd NetworkManager-fortisslvpn
-
-  # Fix build without GTK 4
-  git apply -3 ../gtk4-optional.diff
-
   intltoolize --automake --copy
   autoreconf -fvi
 }
@@ -35,7 +31,7 @@
 build() {
   cd NetworkManager-fortisslvpn
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static \
+--libexecdir=/usr/lib --disable-static --with-gtk4 \
 --with-pppd-plugin-dir=/usr/lib/pppd/$_pppver
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make

Deleted: gtk4-optional.diff
===
--- gtk4-optional.diff  2022-04-04 18:30:43 UTC (rev 1181367)
+++ gtk4-optional.diff  2022-04-04 18:33:33 UTC (rev 1181368)
@@ -1,19 +0,0 @@
-diff --git i/Makefile.am w/Makefile.am
-index f6bb29d..243da1f 100644
 i/Makefile.am
-+++ w/Makefile.am
-@@ -174,10 +174,13 @@ properties_cppflags = \
-   $(GLIB_CFLAGS)
- 
- BUILT_SOURCES += \
--  gtk4/resources.c \
-   properties/resources.c \
-   properties/resources.h
- 
-+if WITH_GTK4
-+BUILT_SOURCES += gtk4/resources.c
-+endif
-+
- CLEANFILES += \
-   gtk4/nm-fortisslvpn-dialog.ui \
-   gtk4/resources.c \



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:31:20
  Author: heftig
Revision: 441526

1.2.8-2: support GTK 4

Modified:
  networkmanager-vpnc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:29:16 UTC (rev 441525)
+++ PKGBUILD2022-04-04 18:31:20 UTC (rev 441526)
@@ -3,14 +3,16 @@
 
 pkgname=networkmanager-vpnc
 pkgver=1.2.8
-pkgrel=1
+pkgrel=2
 pkgdesc="NetworkManager VPN plugin for VPNC"
 url="https://wiki.gnome.org/Projects/NetworkManager;
 arch=(x86_64)
 license=(GPL)
 depends=(libnm libsecret vpnc)
-makedepends=(libnma intltool python git)
-optdepends=('libnma: GUI support')
+makedepends=(libnma libnma-gtk4 intltool python git)
+optdepends=('libnma: GUI support (GTK 3)'
+'libnma-gtk4: GUI support (GTK 4)')
+options=(debug)
 _commit=75f664ff13ff1de9bf305894ccd94b30867bd06a  # tags/1.2.8^0
 
source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-vpnc.git#commit=$_commit;)
 sha256sums=('SKIP')
@@ -29,7 +31,7 @@
 build() {
   cd NetworkManager-vpnc
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static
+--libexecdir=/usr/lib --disable-static --with-gtk4
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 18:30:43
  Author: dvzrv
Revision: 1181367

archrelease: copy trunk to community-any

Added:
  python-spsdk/repos/community-any/PKGBUILD
(from rev 1181366, python-spsdk/trunk/PKGBUILD)
  python-spsdk/repos/community-any/python-spsdk-1.6.0-remove_pypemicro.patch
(from rev 1181366, 
python-spsdk/trunk/python-spsdk-1.6.0-remove_pypemicro.patch)
  python-spsdk/repos/community-any/python-spsdk-1.6.3-click8.1.patch
(from rev 1181366, python-spsdk/trunk/python-spsdk-1.6.3-click8.1.patch)
Deleted:
  python-spsdk/repos/community-any/PKGBUILD
  python-spsdk/repos/community-any/python-spsdk-1.6.0-remove_pypemicro.patch
  python-spsdk/repos/community-any/python-spsdk-1.6.3-click8.1.patch

---+
 PKGBUILD  |  189 ++--
 python-spsdk-1.6.0-remove_pypemicro.patch |   56 
 python-spsdk-1.6.3-click8.1.patch |   42 +++---
 3 files changed, 144 insertions(+), 143 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:30:34 UTC (rev 1181366)
+++ PKGBUILD2022-04-04 18:30:43 UTC (rev 1181367)
@@ -1,94 +0,0 @@
-# Maintainer: David Runge 
-
-_name=spsdk
-pkgname=python-spsdk
-pkgver=1.6.3
-pkgrel=1
-pkgdesc="NXP Secure Provisioning SDK"
-arch=(any)
-url="https://github.com/NXPmicro/spsdk;
-license=(BSD)
-depends=(
-  python-asn1crypto
-  python-astunparse
-  python-bincopy
-  python-bitstring
-  python-click
-  python-click-option-group
-  python-cmsis-pack-manager
-  python-colorama
-  python-commentjson
-  python-crcmod
-  python-cryptography
-  python-deepmerge
-  python-fastjsonschema
-  python-hexdump
-  python-jinja
-  python-libusbsio
-  python-oscrypto
-  python-pycryptodome
-  python-pylink-square
-  python-pyocd
-  python-pyserial
-  python-ruamel-yaml
-  python-sly
-)
-makedepends=(python-setuptools)
-checkdepends=(
-  python-jsonschema
-  python-pytest
-  python-voluptuous
-  python-pyyaml
-)
-# pypi sdist tarball has no tests: https://github.com/NXPmicro/spsdk/issues/37
-# 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
-source=(
-  
$_name-$pkgver.tar.gz::https://github.com/NXPmicro/$_name/archive/refs/tags/$pkgver.tar.gz
-  $pkgname-1.6.0-remove_pypemicro.patch
-  $pkgname-1.6.3-click8.1.patch
-)
-sha512sums=('fe7b8ae82756b93ef90467617d9b3492c4d103bfcae2efbd6067208b1ea82c5e7cf599e5d56f1c25ff8850d61acf4068b04541df8763068562ff3f3438749ac3'
-
'7bfb3739053284ba0b4084c1f84e37e307233fa7b52adf403fa5c574393d71e08ea02bdc927106b036d1055f6efd6c326b534d697c1d5f6c097def53dbafc560'
-
'bbeadf90867fc26bf2bb7cb5adc41fc7acfd7a577cf989525ca084da9863baebbb46aec17c57b1e5dd767d50d0e341cdf4552b820cb12122e6c5de250f48c538')
-b2sums=('cbd58524ea291cfab21ad26c639e43058bd3e3db90ee70873919bf3a84b90e44eeb2d1fe72cd019dbb225a1fcd1118f5500ef462dc7284bc9df4e4f4995ff641'
-
'2c68116494b5e7ff51e59ec79dd3e354e2a8035ab35e29b27a097d7baa47e48c71a2cdac651920c76cd29097c5e8710e74106e41a4b3d5f543e259ef7404beac'
-
'4fda1af3ad7b1aec6b9c50ae27dacbc16e3bb57ef0f4a8d9fe0f820acf5212deb174c793805fbf45f70d6d3492650eb9bc2ecd3b9699e3aec2775e8989f25ec5')
-
-prepare() {
-  cd $_name-$pkgver
-  # remove all version pinning and overly explicit version bounds
-  # https://github.com/NXPmicro/spsdk/issues/35
-  sed -e 's|>=.*||g;s|==.*||g;s|~=.*||g;s|<.*||g' -i 
requirements{,-develop}.txt
-  # remove dependency on python-pypemicro as it vendors prebuilt shared 
libraries
-  # https://github.com/NXPmicro/spsdk/issues/30
-  # https://github.com/NXPmicro/pypemicro/issues/10
-  sed '/pypemicro/d' -i requirements.txt
-  patch -Np1 -i ../$pkgname-1.6.0-remove_pypemicro.patch
-  # remove dependency on python-pyocd-pemicro as it vendors prebuilt shared 
libraries via python-pypemicro
-  # https://github.com/pyocd/pyOCD/issues/1319
-  # https://github.com/NXPmicro/spsdk/issues/30
-  # https://github.com/NXPmicro/pypemicro/issues/10
-  sed '/pyocd-pemicro/d' -i requirements.txt
-
-  # click 8.1 removed get_os_args, so replace with sys.argv[1:]
-  patch -Np1 -i ../$pkgname-1.6.3-click8.1.patch
-}
-
-build() {
-  cd $_name-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_name-$pkgver
-  export PYTHONPATH="build:$PYTHONPATH"
-  # ignore failing tests due to incompatible bincopy: 
https://github.com/NXPmicro/spsdk/issues/38
-  pytest -v --ignore tests/elftosb/test_elftosb_mbi.py -k "not 
test_parse_image_file_invalid and not test_load_binary_image"
-}
-
-package() {
-  cd $_name-$pkgver
-  python setup.py install --optimize=1 --root="$pkgdir"
-  install -vDm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: python-spsdk/repos/community-any/PKGBUILD (from rev 1181366, 
python-spsdk/trunk/PKGBUILD)
===
--- PKGBUILD 

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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 18:30:34
  Author: dvzrv
Revision: 1181366

upgpkg: python-spsdk 1.6.3-2: Rebuild to switch to PEP517.

Add link to upstream pull request for click 8.1 compat.

Modified:
  python-spsdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:25:41 UTC (rev 1181365)
+++ PKGBUILD2022-04-04 18:30:34 UTC (rev 1181366)
@@ -3,7 +3,7 @@
 _name=spsdk
 pkgname=python-spsdk
 pkgver=1.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc="NXP Secure Provisioning SDK"
 arch=(any)
 url="https://github.com/NXPmicro/spsdk;
@@ -33,7 +33,7 @@
   python-ruamel-yaml
   python-sly
 )
-makedepends=(python-setuptools)
+makedepends=(python-build python-installer python-setuptools python-wheel)
 checkdepends=(
   python-jsonschema
   python-pytest
@@ -71,12 +71,13 @@
   sed '/pyocd-pemicro/d' -i requirements.txt
 
   # click 8.1 removed get_os_args, so replace with sys.argv[1:]
+  # https://github.com/NXPmicro/spsdk/pull/41
   patch -Np1 -i ../$pkgname-1.6.3-click8.1.patch
 }
 
 build() {
   cd $_name-$pkgver
-  python setup.py build
+  python -m build --wheel --no-isolation
 }
 
 check() {
@@ -88,7 +89,7 @@
 
 package() {
   cd $_name-$pkgver
-  python setup.py install --optimize=1 --root="$pkgdir"
+  python -m installer --destdir="$pkgdir" dist/*.whl
   install -vDm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
   install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
 }



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:29:16
  Author: heftig
Revision: 441525

1.2.10-2: support GTK 4

Modified:
  networkmanager-pptp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:27:04 UTC (rev 441524)
+++ PKGBUILD2022-04-04 18:29:16 UTC (rev 441525)
@@ -3,7 +3,7 @@
 
 pkgname=networkmanager-pptp
 pkgver=1.2.10
-pkgrel=1
+pkgrel=2
 pkgdesc="NetworkManager VPN plugin for PPTP"
 url="https://wiki.gnome.org/Projects/NetworkManager;
 arch=(x86_64)
@@ -10,8 +10,10 @@
 license=(GPL)
 _pppver=2.4.9
 depends=(libnm libsecret "ppp=$_pppver" pptpclient)
-makedepends=(libnma intltool python git)
-optdepends=('libnma: GUI support')
+makedepends=(libnma libnma-gtk4 intltool python git)
+optdepends=('libnma: GUI support (GTK 3)'
+'libnma-gtk4: GUI support (GTK 4)')
+options=(debug)
 _commit=0c066e55fe9b34bf4c05e82601feee78c6bf29b1  # tags/1.2.10^0
 
source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-pptp.git#commit=$_commit;)
 sha256sums=('SKIP')
@@ -30,7 +32,7 @@
 build() {
   cd NetworkManager-pptp
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static \
+--libexecdir=/usr/lib --disable-static --with-gtk4 \
 --with-pppd-plugin-dir=/usr/lib/pppd/$_pppver
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:27:04
  Author: heftig
Revision: 441524

1.2.8-2: support GTK 4

Modified:
  networkmanager-openconnect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:26:45 UTC (rev 441523)
+++ PKGBUILD2022-04-04 18:27:04 UTC (rev 441524)
@@ -3,14 +3,16 @@
 
 pkgname=networkmanager-openconnect
 pkgver=1.2.8
-pkgrel=1
+pkgrel=2
 pkgdesc="NetworkManager VPN plugin for OpenConnect"
 url="https://wiki.gnome.org/Projects/NetworkManager;
 arch=(x86_64)
 license=(GPL)
 depends=(libnm libsecret openconnect libopenconnect.so)
-makedepends=(libnma intltool python git)
-optdepends=('libnma: GUI support')
+makedepends=(libnma libnma-gtk4 intltool python git)
+optdepends=('libnma: GUI support (GTK 3)'
+'libnma-gtk4: GUI support (GTK 4)')
+options=(debug)
 _commit=6eaa0604da8f1927db18a315dba7a3eaff4ec56e  # tags/1.2.8^0
 
source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-openconnect.git#commit=$_commit;)
 sha256sums=('SKIP')
@@ -29,7 +31,7 @@
 build() {
   cd NetworkManager-openconnect
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static
+--libexecdir=/usr/lib --disable-static --with-gtk4
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:26:45
  Author: heftig
Revision: 441523

1.8.18-2: support GTK 4

Modified:
  networkmanager-openvpn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:19:38 UTC (rev 441522)
+++ PKGBUILD2022-04-04 18:26:45 UTC (rev 441523)
@@ -3,14 +3,16 @@
 
 pkgname=networkmanager-openvpn
 pkgver=1.8.18
-pkgrel=1
+pkgrel=2
 pkgdesc="NetworkManager VPN plugin for OpenVPN"
 url="https://wiki.gnome.org/Projects/NetworkManager;
 arch=(x86_64)
 license=(GPL)
 depends=(libnm libsecret openvpn)
-makedepends=(libnma intltool python git)
-optdepends=('libnma: GUI support')
+makedepends=(libnma libnma-gtk4 intltool python git)
+optdepends=('libnma: GUI support (GTK 3)'
+'libnma-gtk4: GUI support (GTK 4)')
+options=(debug)
 _commit=428aa26bc05cac4cf418624128bb10c9d4003e5d  # tags/1.8.18^0
 
source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-openvpn.git#commit=$_commit;)
 sha256sums=('SKIP')
@@ -29,7 +31,7 @@
 build() {
   cd NetworkManager-openvpn
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static
+--libexecdir=/usr/lib --disable-static --with-gtk4
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }



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

2022-04-04 Thread Orhun Parmaksiz via arch-commits
Date: Monday, April 4, 2022 @ 18:25:41
  Author: orhun
Revision: 1181365

archrelease: copy trunk to community-x86_64

Added:
  broot/repos/community-x86_64/PKGBUILD
(from rev 1181364, broot/trunk/PKGBUILD)
Deleted:
  broot/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:25:30 UTC (rev 1181364)
+++ PKGBUILD2022-04-04 18:25:41 UTC (rev 1181365)
@@ -1,46 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Orhun Parmaksız 
-# Contributor: Adam Fontenot 
-# Contributor: Daniel M. Capella 
-
-pkgname=broot
-pkgver=1.11.0
-pkgrel=1
-pkgdesc='Fuzzy Search + tree + cd'
-arch=('x86_64')
-url=https://github.com/Canop/broot
-license=('MIT')
-depends=('gcc-libs' 'zlib' 'libgit2')
-makedepends=('rust')
-options=('!lto')
-source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
-sha256sums=('8273587cada352d87e30db3c8d07c14d6cf46629ef821e6182bd086eca351504')
-
-prepare() {
-  cd $pkgname-$pkgver
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd $pkgname-$pkgver
-  cargo build --release --frozen
-}
-
-check() {
-  cd $pkgname-$pkgver
-  cargo test --frozen
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
-  sed -i "s/#version/$pkgver/" man/page
-  # Theoretically we could get the date from the CHANGELOG.md but it seems 
that the
-  # CHANGELOG.md entry for the current version isn't actually in the current 
release.
-  # changelog_date=$(sed -n "s/.*v$pkgver - \(.*\)$/\1/p" CHANGELOG.md)
-  sed -i "s/#date//" man/page
-  install -Dm644 man/page "$pkgdir/usr/share/man/man1/$pkgname.1"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: broot/repos/community-x86_64/PKGBUILD (from rev 1181364, 
broot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 18:25:41 UTC (rev 1181365)
@@ -0,0 +1,46 @@
+# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Orhun Parmaksız 
+# Contributor: Adam Fontenot 
+# Contributor: Daniel M. Capella 
+
+pkgname=broot
+pkgver=1.11.1
+pkgrel=1
+pkgdesc='Fuzzy Search + tree + cd'
+arch=('x86_64')
+url=https://github.com/Canop/broot
+license=('MIT')
+depends=('gcc-libs' 'zlib' 'libgit2')
+makedepends=('rust')
+options=('!lto')
+source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
+sha256sums=('0cc09d5bcc5c6b80d6161c2ba234df0332c1dabd6c3c9f2f6ebe2f82b8eef5c3')
+
+prepare() {
+  cd $pkgname-$pkgver
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd $pkgname-$pkgver
+  cargo build --release --frozen
+}
+
+check() {
+  cd $pkgname-$pkgver
+  cargo test --frozen
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/$pkgname
+  sed -i "s/#version/$pkgver/" man/page
+  # Theoretically we could get the date from the CHANGELOG.md but it seems 
that the
+  # CHANGELOG.md entry for the current version isn't actually in the current 
release.
+  # changelog_date=$(sed -n "s/.*v$pkgver - \(.*\)$/\1/p" CHANGELOG.md)
+  sed -i "s/#date//" man/page
+  install -Dm644 man/page "$pkgdir/usr/share/man/man1/$pkgname.1"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-04-04 Thread Orhun Parmaksiz via arch-commits
Date: Monday, April 4, 2022 @ 18:25:30
  Author: orhun
Revision: 1181364

upgpkg: broot 1.11.1-1: upstream release

Modified:
  broot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:19:38 UTC (rev 1181363)
+++ PKGBUILD2022-04-04 18:25:30 UTC (rev 1181364)
@@ -4,7 +4,7 @@
 # Contributor: Daniel M. Capella 
 
 pkgname=broot
-pkgver=1.11.0
+pkgver=1.11.1
 pkgrel=1
 pkgdesc='Fuzzy Search + tree + cd'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 makedepends=('rust')
 options=('!lto')
 
source=("https://github.com/Canop/broot/archive/v$pkgver/$pkgname-v$pkgver.tar.gz;)
-sha256sums=('8273587cada352d87e30db3c8d07c14d6cf46629ef821e6182bd086eca351504')
+sha256sums=('0cc09d5bcc5c6b80d6161c2ba234df0332c1dabd6c3c9f2f6ebe2f82b8eef5c3')
 
 prepare() {
   cd $pkgname-$pkgver



[arch-commits] Commit in python-spsdk/repos/community-any (5 files)

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 18:19:38
  Author: dvzrv
Revision: 1181363

archrelease: copy trunk to community-any

Added:
  python-spsdk/repos/community-any/PKGBUILD
(from rev 1181362, python-spsdk/trunk/PKGBUILD)
  python-spsdk/repos/community-any/python-spsdk-1.6.0-remove_pypemicro.patch
(from rev 1181362, 
python-spsdk/trunk/python-spsdk-1.6.0-remove_pypemicro.patch)
  python-spsdk/repos/community-any/python-spsdk-1.6.3-click8.1.patch
(from rev 1181362, python-spsdk/trunk/python-spsdk-1.6.3-click8.1.patch)
Deleted:
  python-spsdk/repos/community-any/PKGBUILD
  python-spsdk/repos/community-any/python-spsdk-1.6.0-remove_pypemicro.patch

---+
 PKGBUILD  |  182 ++--
 python-spsdk-1.6.0-remove_pypemicro.patch |   56 
 python-spsdk-1.6.3-click8.1.patch |   21 +++
 3 files changed, 143 insertions(+), 116 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:19:29 UTC (rev 1181362)
+++ PKGBUILD2022-04-04 18:19:38 UTC (rev 1181363)
@@ -1,88 +0,0 @@
-# Maintainer: David Runge 
-
-_name=spsdk
-pkgname=python-spsdk
-pkgver=1.6.2
-pkgrel=1
-pkgdesc="NXP Secure Provisioning SDK"
-arch=(any)
-url="https://github.com/NXPmicro/spsdk;
-license=(BSD)
-depends=(
-  python-asn1crypto
-  python-astunparse
-  python-bincopy
-  python-bitstring
-  python-click
-  python-click-option-group
-  python-cmsis-pack-manager
-  python-colorama
-  python-commentjson
-  python-crcmod
-  python-cryptography
-  python-deepmerge
-  python-fastjsonschema
-  python-hexdump
-  python-jinja
-  python-libusbsio
-  python-oscrypto
-  python-pycryptodome
-  python-pylink-square
-  python-pyocd
-  python-pyserial
-  python-ruamel-yaml
-  python-sly
-)
-makedepends=(python-setuptools)
-checkdepends=(
-  python-jsonschema
-  python-pytest
-  python-voluptuous
-  python-pyyaml
-)
-# pypi sdist tarball has no tests: https://github.com/NXPmicro/spsdk/issues/37
-# 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-source=(
-  
$_name-$pkgver.tar.gz::https://github.com/NXPmicro/$_name/archive/refs/tags/$pkgver.tar.gz
-  $pkgname-1.6.0-remove_pypemicro.patch
-)
-sha512sums=('e2592503323bd205624cbf7a5c0f19983ee219126ec7e01b58091a7556f232d3c70b3770fbaa97b5da7b7f56c4a372952d56839f291ea8fa92b4a64c9bab953c'
-
'7bfb3739053284ba0b4084c1f84e37e307233fa7b52adf403fa5c574393d71e08ea02bdc927106b036d1055f6efd6c326b534d697c1d5f6c097def53dbafc560')
-b2sums=('fe76d882b83035bf0087538c613e00b292feceb456f73cbfc7c28dcc3dae6691703c56de06163acd4093a42d51cb47046354e074b3bb360f9b5ea5a6689699fe'
-
'2c68116494b5e7ff51e59ec79dd3e354e2a8035ab35e29b27a097d7baa47e48c71a2cdac651920c76cd29097c5e8710e74106e41a4b3d5f543e259ef7404beac')
-
-prepare() {
-  cd $_name-$pkgver
-  # remove all version pinning and overly explicit version bounds
-  # https://github.com/NXPmicro/spsdk/issues/35
-  sed -e 's|>=.*||g;s|==.*||g;s|~=.*||g;s|<.*||g' -i 
requirements{,-develop}.txt
-  # remove dependency on python-pypemicro as it vendors prebuilt shared 
libraries
-  # https://github.com/NXPmicro/spsdk/issues/30
-  # https://github.com/NXPmicro/pypemicro/issues/10
-  sed '/pypemicro/d' -i requirements.txt
-  patch -Np1 -i ../$pkgname-1.6.0-remove_pypemicro.patch
-  # remove dependency on python-pyocd-pemicro as it vendors prebuilt shared 
libraries via python-pypemicro
-  # https://github.com/pyocd/pyOCD/issues/1319
-  # https://github.com/NXPmicro/spsdk/issues/30
-  # https://github.com/NXPmicro/pypemicro/issues/10
-  sed '/pyocd-pemicro/d' -i requirements.txt
-}
-
-build() {
-  cd $_name-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd $_name-$pkgver
-  export PYTHONPATH="build:$PYTHONPATH"
-  # ignore failing tests due to incompatible bincopy: 
https://github.com/NXPmicro/spsdk/issues/38
-  pytest -v --ignore tests/elftosb/test_elftosb_mbi.py -k "not 
test_parse_image_file_invalid and not test_load_binary_image"
-}
-
-package() {
-  cd $_name-$pkgver
-  python setup.py install --optimize=1 --root="$pkgdir"
-  install -vDm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -vDm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: python-spsdk/repos/community-any/PKGBUILD (from rev 1181362, 
python-spsdk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 18:19:38 UTC (rev 1181363)
@@ -0,0 +1,94 @@
+# Maintainer: David Runge 
+
+_name=spsdk
+pkgname=python-spsdk
+pkgver=1.6.3
+pkgrel=1
+pkgdesc="NXP Secure Provisioning SDK"
+arch=(any)
+url="https://github.com/NXPmicro/spsdk;
+license=(BSD)
+depends=(
+  python-asn1crypto
+  python-astunparse
+  python-bincopy
+  python-bitstring
+  python-click
+  python-click-option-group
+  python-cmsis-pack-manager
+  python-colorama
+  

[arch-commits] Commit in archboot-arm/repos/extra-any (4 files)

2022-04-04 Thread Tobias Powalowski via arch-commits
Date: Monday, April 4, 2022 @ 18:19:38
  Author: tpowa
Revision: 441522

archrelease: copy trunk to extra-any

Added:
  archboot-arm/repos/extra-any/PKGBUILD
(from rev 441521, archboot-arm/trunk/PKGBUILD)
  archboot-arm/repos/extra-any/archboot.install
(from rev 441521, archboot-arm/trunk/archboot.install)
Deleted:
  archboot-arm/repos/extra-any/PKGBUILD
  archboot-arm/repos/extra-any/archboot.install

--+
 PKGBUILD |  108 ++---
 archboot.install |   38 +-
 2 files changed, 73 insertions(+), 73 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:19:34 UTC (rev 441521)
+++ PKGBUILD2022-04-04 18:19:38 UTC (rev 441522)
@@ -1,54 +0,0 @@
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot-arm
-pkgver=2022.04
-pkgrel=6
-pkgdesc="Advanced, modular arch boot/install image creation utility with 
aarch64 depends"
-arch=(any)
-license=('GPL')
-url="https://wiki.archlinux.org/title/Archboot;
-depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
- 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'sed' 'snarf'
- 'tar' 'util-linux' 'bind' 'which' 'kbd' 'wireless_tools' 'xfsprogs' 
'hdparm' 'inetutils'
- 'openssh' 'hwdetect' 'shadow' 'bridge-utils' 'dosfstools' 'glibc' 
'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
- 'pciutils' 'usbutils' 'vpnc' 'openvpn' 'b43-fwcutter' 
'wpa_supplicant' 'rsync' 'gzip' 'libarchive'
-'device-mapper' 'screen' 'elfutils' 'pam' 'cracklib' 'nfs-utils' 
'nfsidmap' 'readline' 'acl' 'attr' 'pcre' 'cpio'
-'fuse' 'libusb' 'vim' 'vi' 'lzo' 'lzop' 'libsasl' 'libldap' 'gpm' 
'libevent' 'gcc-libs' 'sdparm' 'licenses' 'pptpclient'
-'dhcpcd' 'openssl' 'dmraid' 'linux-atm' 'netctl' 'parted' 'tzdata' 
'ntp' 'libgcrypt' 'iw' 
-'libnl' 'iproute2' 'wireless-regdb' 'dhclient' 'mtools' 'fsarchiver' 
'xz' 'libtirpc' 'rpcbind' 'testdisk'
-'wipe' 'ddrescue' 'ifplugd' 'libgssglue' 'mkinitcpio-nfs-utils' 
'gptfdisk' 'nilfs-utils' 'btrfs-progs'
-'iana-etc' 'keyutils' 'libisoburn' 'file' 'curl'  'smartmontools' 
'dnsmasq' 'cifs-utils'
-'openconnect' 'libxml2' 'libproxy' 'tcpdump' 'nmap' 'lua' 'gnutls' 
'nettle' 'libtasn1' 'expat'
-'glib2' 'freetype2' 'libssh2' 'libedit' 'talloc' 'libjpeg-turbo' 
'dmidecode' 'gnupg' 'libksba' 'libassuan' 'pinentry'
-'gpgme' 'ldns' 'dnssec-anchors' 'hwdata' 'systemd' 'haveged' 'pambase' 
'traceroute' 'grub' 
-'systemd-sysvcompat' 'arch-install-scripts' 'zsh' 'gdbm' 
'grml-zsh-config' 'cpupower' 'wvdial' 'xl2tpd' 
-'usb_modeswitch' 'efibootmgr' 'f2fs-tools' 'efitools' 'efivar' 
'ethtool' 'exfatprogs' 
-'fuse3' 'flex' 'amd-ucode' 'cdrtools' 'nvme-cli' 'fatresize' 'iwd' 
'elinks' 'weechat' 'lshw' 'tmux'
-'sbsigntools' 'openresolv' 'mokutil' 'archboot-bootloader' 
'archinstall')
-makedepends=('git')
-optdepends=('linux-firmware: for firmware inclusion on image file'
-'linux-firmware-marvell: for marvell firmware support'
-'sudo: for running the archboot build server')
-source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel}?signed;)
-backup=('etc/archboot/defaults'
-   'etc/archboot/x86_64.conf'
-'etc/archboot/aarch64.conf'
-'etc/archboot/x86_64-latest.conf'
-'etc/archboot/aarch64-latest.conf'
-   'etc/archboot/x86_64-local.conf'
-'etc/archboot/aarch64-local.conf'
-'etc/archboot/presets/x86_64'
-'etc/archboot/presets/aarch64'
-'etc/archboot/presets/x86_64-latest'
-'etc/archboot/presets/aarch64-latest'
-   'etc/archboot/presets/x86_64-local'
-'etc/archboot/presets/aarch64-local')
-install=archboot.install
-sha256sums=('SKIP')
-validgpgkeys=('5B7E3FB71B7F10329A1C03AB771DF6627EDF681F' # Tobias Powalowski 

- )
-package()
-{
-  cd "$srcdir/archboot"
-  mv etc/ usr/ "$pkgdir/"
-}

Copied: archboot-arm/repos/extra-any/PKGBUILD (from rev 441521, 
archboot-arm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 18:19:38 UTC (rev 441522)
@@ -0,0 +1,54 @@
+# Maintainer : Tobias Powalowski 
+
+pkgname=archboot-arm
+pkgver=2022.04
+pkgrel=7
+pkgdesc="Advanced, modular arch boot/install image creation utility with 
aarch64 depends"
+arch=(any)
+license=('GPL')
+url="https://wiki.archlinux.org/title/Archboot;
+depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
+ 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'sed' 'snarf'
+ 'tar' 'util-linux' 'bind' 'which' 'kbd' 

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

2022-04-04 Thread Tobias Powalowski via arch-commits
Date: Monday, April 4, 2022 @ 18:19:34
  Author: tpowa
Revision: 441521

upgpkg: archboot-arm 2022.04-7: bump to latest version

Modified:
  archboot-arm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:18:39 UTC (rev 441520)
+++ PKGBUILD2022-04-04 18:19:34 UTC (rev 441521)
@@ -2,7 +2,7 @@
 
 pkgname=archboot-arm
 pkgver=2022.04
-pkgrel=6
+pkgrel=7
 pkgdesc="Advanced, modular arch boot/install image creation utility with 
aarch64 depends"
 arch=(any)
 license=('GPL')



[arch-commits] Commit in python-spsdk/trunk (2 files)

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 18:19:29
  Author: dvzrv
Revision: 1181362

upgpkg: python-spsdk 1.6.3-1: Upgrade to 1.6.3.

Add patch to fix compatibility with python-click >= 8.1.

Added:
  python-spsdk/trunk/python-spsdk-1.6.3-click8.1.patch
Modified:
  python-spsdk/trunk/PKGBUILD

---+
 PKGBUILD  |   18 --
 python-spsdk-1.6.3-click8.1.patch |   21 +
 2 files changed, 33 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:05:59 UTC (rev 1181361)
+++ PKGBUILD2022-04-04 18:19:29 UTC (rev 1181362)
@@ -2,7 +2,7 @@
 
 _name=spsdk
 pkgname=python-spsdk
-pkgver=1.6.2
+pkgver=1.6.3
 pkgrel=1
 pkgdesc="NXP Secure Provisioning SDK"
 arch=(any)
@@ -41,15 +41,18 @@
   python-pyyaml
 )
 # pypi sdist tarball has no tests: https://github.com/NXPmicro/spsdk/issues/37
-# 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
+# 
source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz;)
 source=(
   
$_name-$pkgver.tar.gz::https://github.com/NXPmicro/$_name/archive/refs/tags/$pkgver.tar.gz
   $pkgname-1.6.0-remove_pypemicro.patch
+  $pkgname-1.6.3-click8.1.patch
 )
-sha512sums=('e2592503323bd205624cbf7a5c0f19983ee219126ec7e01b58091a7556f232d3c70b3770fbaa97b5da7b7f56c4a372952d56839f291ea8fa92b4a64c9bab953c'
-
'7bfb3739053284ba0b4084c1f84e37e307233fa7b52adf403fa5c574393d71e08ea02bdc927106b036d1055f6efd6c326b534d697c1d5f6c097def53dbafc560')
-b2sums=('fe76d882b83035bf0087538c613e00b292feceb456f73cbfc7c28dcc3dae6691703c56de06163acd4093a42d51cb47046354e074b3bb360f9b5ea5a6689699fe'
-
'2c68116494b5e7ff51e59ec79dd3e354e2a8035ab35e29b27a097d7baa47e48c71a2cdac651920c76cd29097c5e8710e74106e41a4b3d5f543e259ef7404beac')
+sha512sums=('fe7b8ae82756b93ef90467617d9b3492c4d103bfcae2efbd6067208b1ea82c5e7cf599e5d56f1c25ff8850d61acf4068b04541df8763068562ff3f3438749ac3'
+
'7bfb3739053284ba0b4084c1f84e37e307233fa7b52adf403fa5c574393d71e08ea02bdc927106b036d1055f6efd6c326b534d697c1d5f6c097def53dbafc560'
+
'bbeadf90867fc26bf2bb7cb5adc41fc7acfd7a577cf989525ca084da9863baebbb46aec17c57b1e5dd767d50d0e341cdf4552b820cb12122e6c5de250f48c538')
+b2sums=('cbd58524ea291cfab21ad26c639e43058bd3e3db90ee70873919bf3a84b90e44eeb2d1fe72cd019dbb225a1fcd1118f5500ef462dc7284bc9df4e4f4995ff641'
+
'2c68116494b5e7ff51e59ec79dd3e354e2a8035ab35e29b27a097d7baa47e48c71a2cdac651920c76cd29097c5e8710e74106e41a4b3d5f543e259ef7404beac'
+
'4fda1af3ad7b1aec6b9c50ae27dacbc16e3bb57ef0f4a8d9fe0f820acf5212deb174c793805fbf45f70d6d3492650eb9bc2ecd3b9699e3aec2775e8989f25ec5')
 
 prepare() {
   cd $_name-$pkgver
@@ -66,6 +69,9 @@
   # https://github.com/NXPmicro/spsdk/issues/30
   # https://github.com/NXPmicro/pypemicro/issues/10
   sed '/pyocd-pemicro/d' -i requirements.txt
+
+  # click 8.1 removed get_os_args, so replace with sys.argv[1:]
+  patch -Np1 -i ../$pkgname-1.6.3-click8.1.patch
 }
 
 build() {

Added: python-spsdk-1.6.3-click8.1.patch
===
--- python-spsdk-1.6.3-click8.1.patch   (rev 0)
+++ python-spsdk-1.6.3-click8.1.patch   2022-04-04 18:19:29 UTC (rev 1181362)
@@ -0,0 +1,21 @@
+diff -ruN a/spsdk/apps/blhost.py b/spsdk/apps/blhost.py
+--- a/spsdk/apps/blhost.py 2022-04-01 14:14:28.0 +0200
 b/spsdk/apps/blhost.py 2022-04-04 20:15:23.171426171 +0200
+@@ -127,7 +127,7 @@
+ 
+ # print help for get-property if property tag is 0 or 'list-properties'
+ if ctx.invoked_subcommand == "get-property":
+-args = click.get_os_args()
++args = sys.argv[1:]
+ # running this via pytest changes the args to a single arg, in that 
case skip
+ if len(args) > 1 and "get-property" in args:
+ tag_str = args[args.index("get-property") + 1]
+@@ -136,7 +136,7 @@
+ ctx.exit(0)
+ 
+ # if --help is provided anywhere on commandline, skip interface lookup 
and display help message
+-if "--help" not in click.get_os_args():
++if "--help" not in sys.argv[1:]:
+ ctx.obj = {
+ "interface": get_interface(
+ module="mboot", port=port, usb=usb, timeout=timeout, 
lpcusbsio=lpcusbsio



[arch-commits] Commit in archboot/repos/extra-any (4 files)

2022-04-04 Thread Tobias Powalowski via arch-commits
Date: Monday, April 4, 2022 @ 18:18:39
  Author: tpowa
Revision: 441520

archrelease: copy trunk to extra-any

Added:
  archboot/repos/extra-any/PKGBUILD
(from rev 441519, archboot/trunk/PKGBUILD)
  archboot/repos/extra-any/archboot.install
(from rev 441519, archboot/trunk/archboot.install)
Deleted:
  archboot/repos/extra-any/PKGBUILD
  archboot/repos/extra-any/archboot.install

--+
 PKGBUILD |  110 ++---
 archboot.install |   38 +-
 2 files changed, 74 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:18:34 UTC (rev 441519)
+++ PKGBUILD2022-04-04 18:18:39 UTC (rev 441520)
@@ -1,55 +0,0 @@
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot
-pkgver=2022.04
-pkgrel=6
-pkgdesc="Advanced, modular arch boot/install image creation utility"
-arch=(any)
-license=('GPL')
-url="https://wiki.archlinux.org/title/Archboot;
-depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
- 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 
'gnu-netcat' 'procps-ng' 'psmisc' 'sed' 'snarf'
- 'tar' 'util-linux' 'bind' 'which' 'kbd' 'wireless_tools' 'xfsprogs' 
'hdparm' 'inetutils'
- 'openssh' 'hwdetect' 'shadow' 'bridge-utils'  'dosfstools' 'glibc' 
'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
- 'pciutils' 'usbutils' 'vpnc' 'openvpn' 'b43-fwcutter' 
'wpa_supplicant' 'rsync' 'gzip' 'libarchive'
-'device-mapper' 'screen' 'elfutils' 'pam' 'cracklib' 'nfs-utils' 
'nfsidmap' 'readline' 'acl' 'attr' 'pcre' 'cpio'
-'fuse' 'libusb' 'vi' 'vim' 'lzo' 'lzop' 'libsasl' 'libldap' 'gpm' 
'libevent' 'gcc-libs' 'sdparm' 'licenses' 'pptpclient' 'ipw2100-fw'
-'ipw2200-fw' 'dhcpcd' 'openssl' 'dmraid' 'linux-atm' 'netctl' 'parted' 
'tzdata' 'ntp' 'libgcrypt' 'iw' 
-'libnl' 'iproute2' 'wireless-regdb' 'dhclient' 'mtools' 'fsarchiver' 
'xz' 'libtirpc' 'rpcbind' 'testdisk'
-'wipe' 'ddrescue' 'ifplugd' 'libgssglue' 'mkinitcpio-nfs-utils' 
'gptfdisk' 'nilfs-utils' 'btrfs-progs'
-'iana-etc' 'keyutils' 'libisoburn' 'file' 'curl'  'smartmontools' 
'dnsmasq' 'cifs-utils'
-'openconnect' 'libxml2' 'libproxy' 'tcpdump' 'nmap' 'lua' 'gnutls' 
'nettle' 'libtasn1' 'expat'
-'glib2' 'freetype2' 'libssh2' 'libedit' 'talloc' 'libjpeg-turbo' 
'dmidecode' 'gnupg' 'libksba' 'libassuan' 'pinentry'
-'gpgme' 'ldns' 'dnssec-anchors' 'hwdata' 'systemd' 'archlinux-keyring' 
'haveged' 'pambase' 'chntpw' 'traceroute' 'grub' 
-'systemd-sysvcompat' 'intel-ucode' 'arch-install-scripts' 'zsh' 'gdbm' 
'grml-zsh-config' 'cpupower' 'wvdial' 'xl2tpd' 
-'usb_modeswitch' 'refind' 'efibootmgr' 'f2fs-tools' 'efitools' 
'efivar' 'ethtool' 'exfatprogs' 'broadcom-wl'
-'fuse3' 'flex' 'amd-ucode' 'edk2-shell' 'cdrtools' 'nvme-cli' 
'fatresize' 'iwd' 'elinks' 'weechat' 'lshw' 'tmux'
-'sbsigntools' 'openresolv' 'mokutil' 'archboot-bootloader' 
'archinstall')
-makedepends=('git')
-optdepends=('linux-firmware: for firmware inclusion on image file'
-'linux-firmware-marvell: for marvell firmware support'
-'archboot-qemu-aarch64: for aarch64 image building on x86_64'
-'sudo: for running the archboot build server')
-source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel}?signed;)
-backup=('etc/archboot/defaults'
-   'etc/archboot/x86_64.conf'
-'etc/archboot/aarch64.conf'
-'etc/archboot/x86_64-latest.conf'
-'etc/archboot/aarch64-latest.conf'
-'etc/archboot/x86_64-local.conf'
-   'etc/archboot/aarch64-local.conf'
-   'etc/archboot/presets/x86_64'
-'etc/archboot/presets/aarch64'
-'etc/archboot/presets/x86_64-latest'
-'etc/archboot/presets/aarch64-latest'
-   'etc/archboot/presets/x86_64-local'
-   'etc/archboot/presets/aarch64-local')
-install=archboot.install
-sha256sums=('SKIP')
-validgpgkeys=('5B7E3FB71B7F10329A1C03AB771DF6627EDF681F' # Tobias Powalowski 

- )
-package()
-{
-  cd "$srcdir/archboot"
-  mv etc/ usr/ "$pkgdir/"
-}

Copied: archboot/repos/extra-any/PKGBUILD (from rev 441519, 
archboot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 18:18:39 UTC (rev 441520)
@@ -0,0 +1,55 @@
+# Maintainer : Tobias Powalowski 
+
+pkgname=archboot
+pkgver=2022.04
+pkgrel=7
+pkgdesc="Advanced, modular arch boot/install image creation utility"
+arch=(any)
+license=('GPL')
+url="https://wiki.archlinux.org/title/Archboot;
+depends=('mkinitcpio' 'pacman' 'wget' 'bash' 'coreutils' 'cryptsetup' 'dialog' 
'e2fsprogs' 'findutils' 'gawk' 'grep' 'iputils' 'jfsutils'
+ 'less' 'lvm2' 'mdadm' 'kmod' 'nano' 'ncurses' 'net-tools' 

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

2022-04-04 Thread Tobias Powalowski via arch-commits
Date: Monday, April 4, 2022 @ 18:18:34
  Author: tpowa
Revision: 441519

upgpkg: archboot 2022.04-7: bump to latest version

Modified:
  archboot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:12:54 UTC (rev 441518)
+++ PKGBUILD2022-04-04 18:18:34 UTC (rev 441519)
@@ -2,7 +2,7 @@
 
 pkgname=archboot
 pkgver=2022.04
-pkgrel=6
+pkgrel=7
 pkgdesc="Advanced, modular arch boot/install image creation utility"
 arch=(any)
 license=('GPL')



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:12:54
  Author: heftig
Revision: 441518

99.0-1

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 18:02:56 UTC (rev 441517)
+++ PKGBUILD2022-04-04 18:12:54 UTC (rev 441518)
@@ -3,13 +3,13 @@
 # Contributor: Jakub Schmidtke 
 
 pkgname=firefox
-pkgver=98.0.2
+pkgver=99.0
 pkgrel=1
 pkgdesc="Standalone web browser from mozilla.org"
 arch=(x86_64)
 license=(MPL GPL LGPL)
 url="https://www.mozilla.org/firefox/;
-depends=(gtk3 libxt mime-types dbus-glib ffmpeg4.4 nss ttf-font libpulse)
+depends=(gtk3 libxt mime-types dbus-glib ffmpeg nss ttf-font libpulse)
 makedepends=(unzip zip diffutils yasm mesa imake inetutils xorg-server-xvfb
  autoconf2.13 rust clang llvm jack nodejs cbindgen nasm
  python-setuptools python-psutil python-zstandard lld dump_syms
@@ -23,7 +23,7 @@
 options=(!emptydirs !makeflags !strip !lto !debug)
 
source=(https://archive.mozilla.org/pub/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.xz{,.asc}
 $pkgname.desktop identity-icons-brand.svg)
-sha256sums=('c144b6016aaa8ceab8154b9f0b2bbeee6cbc22ab7f811fcece28d36e49565890'
+sha256sums=('513f8d2cafa39a2d50f2c4a25cc48093e89f715a706b941170fa48e397976327'
 'SKIP'
 '298eae9de76ec53182f38d5c549d0379569916eebf62149f9d7f4a7edef36abf'
 'a9b8b4a0a1f4a7b4af77d5fc70c2686d624038909263c795ecc81e0aec7711e9')



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 18:05:59
  Author: dvzrv
Revision: 1181361

archrelease: copy trunk to community-any

Added:
  python-pytest-metadata/repos/community-any/PKGBUILD
(from rev 1181360, python-pytest-metadata/trunk/PKGBUILD)
Deleted:
  python-pytest-metadata/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 18:05:52 UTC (rev 1181360)
+++ PKGBUILD2022-04-04 18:05:59 UTC (rev 1181361)
@@ -1,38 +0,0 @@
-# Maintainer: David Runge 
-
-_name=pytest-metadata
-pkgname=python-pytest-metadata
-pkgver=1.11.0
-pkgrel=3
-pkgdesc="Plugin for accessing test session metadata"
-arch=('any')
-url="https://github.com/pytest-dev/pytest-metadata;
-license=('MPL2')
-depends=('python-pytest')
-makedepends=('python-setuptools-scm')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('09867df6158ba66f55a0a812b3731b4372f874b6bdc91301ed0c4d4c38f6fe9a4f936006d4e27f8c68d4a2d6b0fe5fedee3c6269bc6867eb1c7d73a42bda0361')
-b2sums=('1de1c47b1d7775040075de479722fd07cb187f14cd37c5fe73458fb54ce01653295288fd11add8066170b8dc39f80c8749e739deb01ac8d579ef5e6f4339478d')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  pytest -v
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
-  --optimize=1 \
-  --root="${pkgdir}"
-  install -vDm 644 {CHANGES,README}.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: python-pytest-metadata/repos/community-any/PKGBUILD (from rev 1181360, 
python-pytest-metadata/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 18:05:59 UTC (rev 1181361)
@@ -0,0 +1,38 @@
+# Maintainer: David Runge 
+
+_name=pytest-metadata
+pkgname=python-pytest-metadata
+pkgver=2.0.1
+pkgrel=1
+pkgdesc="Plugin for accessing test session metadata"
+arch=(any)
+url="https://github.com/pytest-dev/pytest-metadata;
+license=(MPL2)
+depends=(python-pytest)
+makedepends=(python-build python-installer python-poetry python-wheel)
+source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
+sha512sums=('1dc27fa66aec03d1a2fcfa2b0c14a94c0bdca52c13df6e8f22a4a7d2fa7f91a054046c7f71d97277ee049f317fe1ff001f7122905b04bbe200611c842bcce2df')
+b2sums=('95868ad0f26f84b3544610b4a3575c42f0aca665ac44861e8ecc240e4866c1409fca729be508791b19f9c78ab8fd7dcbf563ba183bbcea7b36c2e0a2061481c0')
+
+build() {
+  cd $_name-$pkgver
+  python setup.py build
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  local _site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  local _test_dir='test_dir'
+
+  cd $_name-$pkgver
+  # install to temporary location, as entrypoints are used
+  python -m installer --destdir="$_test_dir" dist/*.whl
+  export PYTHONPATH="$_test_dir/$_site_packages:$PYTHONPATH"
+  pytest -vv
+}
+
+package() {
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -vDm 644 README.rst -t "$pkgdir/usr/share/doc/$pkgname/"
+}



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 18:05:52
  Author: dvzrv
Revision: 1181360

upgpkg: python-pytest-metadata 2.0.1-1: Upgrade to 2.0.1.

Switch to PEP517 and install to temp location for tests.

Modified:
  python-pytest-metadata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 17:57:27 UTC (rev 1181359)
+++ PKGBUILD2022-04-04 18:05:52 UTC (rev 1181360)
@@ -2,37 +2,37 @@
 
 _name=pytest-metadata
 pkgname=python-pytest-metadata
-pkgver=1.11.0
-pkgrel=3
+pkgver=2.0.1
+pkgrel=1
 pkgdesc="Plugin for accessing test session metadata"
-arch=('any')
+arch=(any)
 url="https://github.com/pytest-dev/pytest-metadata;
-license=('MPL2')
-depends=('python-pytest')
-makedepends=('python-setuptools-scm')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz;)
-sha512sums=('09867df6158ba66f55a0a812b3731b4372f874b6bdc91301ed0c4d4c38f6fe9a4f936006d4e27f8c68d4a2d6b0fe5fedee3c6269bc6867eb1c7d73a42bda0361')
-b2sums=('1de1c47b1d7775040075de479722fd07cb187f14cd37c5fe73458fb54ce01653295288fd11add8066170b8dc39f80c8749e739deb01ac8d579ef5e6f4339478d')
+license=(MPL2)
+depends=(python-pytest)
+makedepends=(python-build python-installer python-poetry python-wheel)
+source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz)
+sha512sums=('1dc27fa66aec03d1a2fcfa2b0c14a94c0bdca52c13df6e8f22a4a7d2fa7f91a054046c7f71d97277ee049f317fe1ff001f7122905b04bbe200611c842bcce2df')
+b2sums=('95868ad0f26f84b3544610b4a3575c42f0aca665ac44861e8ecc240e4866c1409fca729be508791b19f9c78ab8fd7dcbf563ba183bbcea7b36c2e0a2061481c0')
 
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgname-$pkgver"
-}
-
 build() {
-  cd "$pkgname-$pkgver"
+  cd $_name-$pkgver
   python setup.py build
+  python -m build --wheel --no-isolation
 }
 
 check() {
-  cd "$pkgname-$pkgver"
-  export PYTHONPATH="build:${PYTHONPATH}"
-  pytest -v
+  local _site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  local _test_dir='test_dir'
+
+  cd $_name-$pkgver
+  # install to temporary location, as entrypoints are used
+  python -m installer --destdir="$_test_dir" dist/*.whl
+  export PYTHONPATH="$_test_dir/$_site_packages:$PYTHONPATH"
+  pytest -vv
 }
 
 package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --skip-build \
-  --optimize=1 \
-  --root="${pkgdir}"
-  install -vDm 644 {CHANGES,README}.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -vDm 644 README.rst -t "$pkgdir/usr/share/doc/$pkgname/"
 }



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

2022-04-04 Thread Jan Steffens via arch-commits
Date: Monday, April 4, 2022 @ 18:02:56
  Author: heftig
Revision: 441517

99.0-1

Modified:
  firefox-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 17:30:31 UTC (rev 441516)
+++ PKGBUILD2022-04-04 18:02:56 UTC (rev 441517)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=98.0.2
+pkgver=99.0
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=(any)
@@ -136,99 +136,99 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha256sums=('20ad31c2de0aef329507b774d3842058e2cc1cb10fbe055f10cd986c6f88c80b'
-'eef41dd7bad099b5535fa85c9dfef6a66270fe18404125bb33d1df727dbd9a0c'
-'798064698237ebcc429e498ff205ac386b98f400a96a5c64ef2b80a8a890c41f'
-'c85fba68d5ceceacd65819adebe425a8f03bc23e675262422460353bf99dfd0e'
-'96cab39e32caa8c0d95d192ee5400bd83b9ac367e8ebf22c3ea306c4e5025984'
-'0c2d5521b82781f373e7deeb0b3e6acefb383e3e2994476a416f27de4101357e'
-'a0b0f7c46709444fc624da2e4581aacb78f6122d3d4615ca74f52f1b031f5d5e'
-'a8cccbe20df8e39454dec6e362276ddc58667f67a4979ba8290b20cde7531c33'
-'6962835f42956c3717b79998c4e4a6daa685a10b82666e310e576317edbbaf65'
-'df13fa043974011e85b9514599116b5b1c7dd8acbe56773347bef1d2009de451'
-'413101396718449a77127b4c970afb3219645fdb92359c3156a6ada80c562206'
-'bb1eee474d2e8aca8378d610559d2aa6a9f16102bc3988019a6899958698b079'
-'fce2613ed613bd4e1078f55d1ed1c500dfd8600781e6194efde95dc4ce084109'
-'f4129d34eae9bc48c334d2167e137b691d81a7ba7632dee5c6c115b76f46a7f6'
-'200dd1d6ca13976d1fac856f3162459f233ce2e4656ea5334ce3c43c460058ae'
-'bf9047115e029cf54c24118cd80332e47855b80dc5135aa8339ee31090bca3bb'
-'ec930b3fa1de2d2680723a9aabf4dfc674aaccc75e843cd3724b382305d4f024'
-'0428709e2401a2954d38d1e61112c1f7318b74a6143269f66551d9c3281c6d1d'
-'4cf52398c9e2b271dfe523ef30f93c44604ca3a64a54e0d6b720b6ea080fb53e'
-'26121cf33dafc9b2fcc15baa33cd07e77cb0a53dbdc2bb2a6f108fb65188b7a4'
-'9d51f593e0a270a48fdef8da459d1188853f9d41594caa1926a46610652c5e05'
-'b2d46866b32185af8ed5b3c7d2562459a2a97c33fed75b0b8285ca1455e701c4'
-'3d53bc615051a9a7d8b3e372e02a533e4bacedcc691af7509cc76aed425c7a10'
-'3c9526966bee26b8b484bafcea36133c5e16bf60e1ffc690f33f95ca5922645b'
-'b88c1c6fc0b7356fa162c5c540678b59e34b551f688bf3e9643745787307a467'
-'a35b8148b86307799789a69f0d92d098cee1968386a0c49b1e4ced8d6c17f675'
-'5f9ce0bb180a7d28122d42469d676f3c555f8bbfbc131a12547dd2a9847c499a'
-'ebadcc310a984f15ac23c3090384cff2a1f96b27b9a84a04923421aff1b47431'
-'548830b06868eb708c287c73a3f367c1d8faf773f18cbc9c7f75e85cdeeaf109'
-'c20748c094824040ee5d5cf924c26c18e2bcae452859bff89b4cd9573716a282'
-'90f288fddf29c214e185a5f309c9fd8698730c1fa860b9e3b80ce7d509cc89c8'
-'ae10a496a46931477795e6c212648a0a1b696d5fb35a49a58b29f617a7e23d61'
-'1080662bcdb70e5ba9e04590d6d718fc08f49744fed40eb0c5a85e6717c4341a'
-'da4b503a4565a9b73dcd9be8f1faabcc7b5a0c12f32e3fd3c6251ff4ffa94c84'
-'c524eaad3b0daa6ec34dd11fe0fafd9546d3966422b34b02dc798a7741576bef'
-'134ec46883481cf0e3bb6c807d5b8201a08e559726c9717918c25f244675e7dc'
-'57a67e4ea0460f89e1463c52acd4fda18bfcf6771799db19b94c4c35c86072a3'
-'21bf32ae0e9dcde60c07ad798bf0ba71d63dec8f3a35b74a7e6d42f826ade2e6'
-'404a26c7f50097090a7b6561e8f129cab01a40f57be9cc6d43e5b35f934f1a6a'
-'95c2dcab674a473ab97c071181db9bbdbaa83e97a73bfd6fdc209bf6151160fe'
-'572cdbd08ea85293268d5da5971d3a8b62e55d6f3e1403da08b61943314068d5'
-'aaf4644c1733169f7f7bce0aaceaaa8fd77fb29a444bf6ed8b5ed434b7fdcb42'
-'29957e0f3023cc7cfb1aa2ce97c05a51e3237bd2d077561947321d0475a4a6cb'
-'ea8a7b126226545f3d6e4387d5795924241a8d5bfdd6457f1c13418318d39253'
-'b93e32938c410ded378255212618cbc1afd81d3cffa6612c2f5650f58712'
-'44c978e3bbff461d01ded96017dae059caadff32b9dbb13a899c57fff1faaea0'
-'a257e689afab5d8126702f2f5f0fd01533570576f498811cd1c1ca752a7c4772'
-'5e2a4d13b79867e2da57110485127f1253fe46e8401af4d76160a45860ab8e20'
-'9a23ba83f34439f68dddc0f8d7ccb7bcdc8c7d94e4ed9cdf96d8fa3de6ec9975'
-'1d4d84e3a81d978536ae75032c823fc2583b50dce63382e2097659e7d2e69946'
-'5dbca8846aa905ee919ee716a88a2c3ae8d0d5e9d6104cc94b5b31157b114564'
-'f7305ede58e456230b143e07a166f3bd38718c1264da9f9d006897fe6a80a5bd'
-'2219d52edb80b5a3147bb8341ce25072ebb1750a80a8ef47169b1fa667fe0cd7'
-

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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 17:57:27
  Author: dvzrv
Revision: 1181359

archrelease: copy trunk to community-any

Added:
  python-diff-cover/repos/community-any/PKGBUILD
(from rev 1181358, python-diff-cover/trunk/PKGBUILD)
Deleted:
  python-diff-cover/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 17:57:19 UTC (rev 1181358)
+++ PKGBUILD2022-04-04 17:57:27 UTC (rev 1181359)
@@ -1,43 +0,0 @@
-# Maintainer: David Runge 
-
-_name=diff_cover
-pkgname=python-diff-cover
-pkgver=6.4.4
-pkgrel=2
-pkgdesc="Automatically find diff lines that need test coverage"
-arch=(any)
-url="https://github.com/Bachmann1234/diff_cover;
-license=(Apache)
-depends=(python-chardet python-jinja python-pluggy python-pygments)
-makedepends=(python-setuptools)
-checkdepends=(python-pytest python-pytest-mock python-tomli)
-optdepends=('python-tomli: for TOML support')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"{,.asc})
-sha512sums=('10e19a6a1585f043f18aa9bf73a788d1b69b876eaab7fc3567e93e3a5f7d6731dae0a9f4459b51e4dc2543b3479843c20b2ca226ceab2b6a5de3540048de4a8e'
-'SKIP')
-b2sums=('98527bc20a9325ad7cbe3086ba3635a208bc8037d527d97b5bb1ac2f022691e7e52206d27f7e2588c6daac224ccf644116b0db838c09667de813378626def1e8'
-'SKIP')
-validpgpkeys=('54CAEABCAC2956D407348256972401BDE60128CB') # Matt Bachmann 

-
-build() {
-  cd "${_name}-${pkgver}"
-  python setup.py build
-}
-
-check() {
-  local _site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  local _test_dir='test_dir'
-
-  cd "${_name}-${pkgver}"
-  # install to temporary location, as importlib is used
-  python setup.py install --optimize=1 --root="${_test_dir}"
-  PYTHONPATH="${_test_dir}/${_site_packages}:${PYTHONPATH}" \
-  # ignore integration and code style checks
-  pytest -v --ignore 'tests/test_integration.py' --ignore 
'tests/test_violations_reporter.py' --ignore 
'tests/test_clover_violations_reporter.py'
-}
-
-package() {
-  cd "${_name}-${pkgver}"
-  python setup.py install --optimize=1 --root="${pkgdir}"
-  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: python-diff-cover/repos/community-any/PKGBUILD (from rev 1181358, 
python-diff-cover/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 17:57:27 UTC (rev 1181359)
@@ -0,0 +1,43 @@
+# Maintainer: David Runge 
+
+_name=diff_cover
+pkgname=python-diff-cover
+pkgver=6.4.5
+pkgrel=1
+pkgdesc="Automatically find diff lines that need test coverage"
+arch=(any)
+url="https://github.com/Bachmann1234/diff_cover;
+license=(Apache)
+depends=(python-chardet python-jinja python-pluggy python-pygments)
+makedepends=(python-build python-installer python-poetry python-wheel)
+checkdepends=(python-pytest python-pytest-mock python-tomli)
+optdepends=('python-tomli: for TOML support')
+source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz{,.asc})
+sha512sums=('30b5156c941a62ba1103ac0563f872fd1ce844b4d0ce6c0e3f7fd496a1d0bdba16df10036a5aa20bb5c718e77a37d66307e0a7083547077ed54d5de1e0386444'
+'SKIP')
+b2sums=('df16b9ddfb737d5f5fa3812b5bee3f7a46b3e00fc4b22fded5ab5be106047edac82c968ce07865692c79273531a6da516a0ea7ba548d165c273fe1090c11030d'
+'SKIP')
+validpgpkeys=('54CAEABCAC2956D407348256972401BDE60128CB') # Matt Bachmann 

+
+build() {
+  cd $_name-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  local _site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  local _test_dir='test_dir'
+
+  cd $_name-$pkgver
+  # install to temporary location, as importlib is used
+  python -m installer --destdir="$_test_dir" dist/*.whl
+  export PYTHONPATH="$_test_dir/$_site_packages:$PYTHONPATH"
+  # ignore integration and code style checks
+  pytest -vv --ignore 'tests/test_integration.py' --ignore 
'tests/test_violations_reporter.py' --ignore 
'tests/test_clover_violations_reporter.py'
+}
+
+package() {
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -vDm 644 README.rst -t "$pkgdir/usr/share/doc/$pkgname"
+}



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

2022-04-04 Thread David Runge via arch-commits
Date: Monday, April 4, 2022 @ 17:57:19
  Author: dvzrv
Revision: 1181358

upgpkg: python-diff-cover 6.4.5-1: Upgrade to 6.4.5.

Remove unneeded quotes and curly braces.
Switch to PEP517.

Modified:
  python-diff-cover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 17:40:45 UTC (rev 1181357)
+++ PKGBUILD2022-04-04 17:57:19 UTC (rev 1181358)
@@ -2,26 +2,26 @@
 
 _name=diff_cover
 pkgname=python-diff-cover
-pkgver=6.4.4
-pkgrel=2
+pkgver=6.4.5
+pkgrel=1
 pkgdesc="Automatically find diff lines that need test coverage"
 arch=(any)
 url="https://github.com/Bachmann1234/diff_cover;
 license=(Apache)
 depends=(python-chardet python-jinja python-pluggy python-pygments)
-makedepends=(python-setuptools)
+makedepends=(python-build python-installer python-poetry python-wheel)
 checkdepends=(python-pytest python-pytest-mock python-tomli)
 optdepends=('python-tomli: for TOML support')
-source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz"{,.asc})
-sha512sums=('10e19a6a1585f043f18aa9bf73a788d1b69b876eaab7fc3567e93e3a5f7d6731dae0a9f4459b51e4dc2543b3479843c20b2ca226ceab2b6a5de3540048de4a8e'
+source=(https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz{,.asc})
+sha512sums=('30b5156c941a62ba1103ac0563f872fd1ce844b4d0ce6c0e3f7fd496a1d0bdba16df10036a5aa20bb5c718e77a37d66307e0a7083547077ed54d5de1e0386444'
 'SKIP')
-b2sums=('98527bc20a9325ad7cbe3086ba3635a208bc8037d527d97b5bb1ac2f022691e7e52206d27f7e2588c6daac224ccf644116b0db838c09667de813378626def1e8'
+b2sums=('df16b9ddfb737d5f5fa3812b5bee3f7a46b3e00fc4b22fded5ab5be106047edac82c968ce07865692c79273531a6da516a0ea7ba548d165c273fe1090c11030d'
 'SKIP')
 validpgpkeys=('54CAEABCAC2956D407348256972401BDE60128CB') # Matt Bachmann 

 
 build() {
-  cd "${_name}-${pkgver}"
-  python setup.py build
+  cd $_name-$pkgver
+  python -m build --wheel --no-isolation
 }
 
 check() {
@@ -28,16 +28,16 @@
   local _site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
   local _test_dir='test_dir'
 
-  cd "${_name}-${pkgver}"
+  cd $_name-$pkgver
   # install to temporary location, as importlib is used
-  python setup.py install --optimize=1 --root="${_test_dir}"
-  PYTHONPATH="${_test_dir}/${_site_packages}:${PYTHONPATH}" \
+  python -m installer --destdir="$_test_dir" dist/*.whl
+  export PYTHONPATH="$_test_dir/$_site_packages:$PYTHONPATH"
   # ignore integration and code style checks
-  pytest -v --ignore 'tests/test_integration.py' --ignore 
'tests/test_violations_reporter.py' --ignore 
'tests/test_clover_violations_reporter.py'
+  pytest -vv --ignore 'tests/test_integration.py' --ignore 
'tests/test_violations_reporter.py' --ignore 
'tests/test_clover_violations_reporter.py'
 }
 
 package() {
-  cd "${_name}-${pkgver}"
-  python setup.py install --optimize=1 --root="${pkgdir}"
-  install -vDm 644 README.rst -t "${pkgdir}/usr/share/doc/${pkgname}"
+  cd $_name-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -vDm 644 README.rst -t "$pkgdir/usr/share/doc/$pkgname"
 }



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

2022-04-04 Thread Evangelos Foutras via arch-commits
Date: Monday, April 4, 2022 @ 17:40:45
  Author: foutrelis
Revision: 1181357

archrelease: copy trunk to community-any

Added:
  gaupol/repos/community-any/PKGBUILD
(from rev 1181356, gaupol/trunk/PKGBUILD)
Deleted:
  gaupol/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-04-04 17:40:41 UTC (rev 1181356)
+++ PKGBUILD2022-04-04 17:40:45 UTC (rev 1181357)
@@ -1,28 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Ionut Biru 
-# Contributor: Allan McRae 
-# Contributor: FJ 
-# Contributor: Sebastien Piccand 
-
-pkgname=gaupol
-pkgver=1.10.1
-pkgrel=2
-pkgdesc="Editor for text-based subtitles"
-arch=('any')
-url="https://otsaloma.io/gaupol/;
-license=('GPL')
-depends=('python-gobject' 'gtk3' 'gst-plugins-'{base,good,bad,ugly} 'gst-libav'
- 'gst-plugin-gtk' 'gspell' 'iso-codes' 'python-chardet' 'python-cairo'
- 'desktop-file-utils' 'hicolor-icon-theme')
-optdepends=('mpv: subtitle preview'
-'vlc: subtitle preview'
-'mplayer: subtitle preview')
-source=($pkgname-$pkgver.tar.gz::https://github.com/otsaloma/$pkgname/archive/$pkgver.tar.gz)
-sha256sums=('530cb55a9e8a301cff6e23d5e712e7142a3b1a7f81d61d70e4273d3655c6277f')
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  python3 setup.py --without-iso-codes install --root="$pkgdir" -O1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gaupol/repos/community-any/PKGBUILD (from rev 1181356, 
gaupol/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-04-04 17:40:45 UTC (rev 1181357)
@@ -0,0 +1,28 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Ionut Biru 
+# Contributor: Allan McRae 
+# Contributor: FJ 
+# Contributor: Sebastien Piccand 
+
+pkgname=gaupol
+pkgver=1.11
+pkgrel=1
+pkgdesc="Editor for text-based subtitles"
+arch=('any')
+url="https://otsaloma.io/gaupol/;
+license=('GPL')
+depends=('python-gobject' 'gtk3' 'gst-plugins-'{base,good,bad,ugly} 'gst-libav'
+ 'gst-plugin-gtk' 'gspell' 'iso-codes' 'python-chardet' 'python-cairo'
+ 'desktop-file-utils' 'hicolor-icon-theme')
+optdepends=('mpv: subtitle preview'
+'vlc: subtitle preview'
+'mplayer: subtitle preview')
+source=($pkgname-$pkgver.tar.gz::https://github.com/otsaloma/$pkgname/archive/$pkgver.tar.gz)
+sha256sums=('ae9ca544c27dd0d94162d78f92f98e5c51c69141c952eeea270c6a063374510d')
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  python3 setup.py --without-iso-codes install --root="$pkgdir" -O1
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-04-04 Thread Evangelos Foutras via arch-commits
Date: Monday, April 4, 2022 @ 17:40:41
  Author: foutrelis
Revision: 1181356

upgpkg: gaupol 1.11-1: new upstream release

Modified:
  gaupol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 17:26:30 UTC (rev 1181355)
+++ PKGBUILD2022-04-04 17:40:41 UTC (rev 1181356)
@@ -5,8 +5,8 @@
 # Contributor: Sebastien Piccand 
 
 pkgname=gaupol
-pkgver=1.10.1
-pkgrel=2
+pkgver=1.11
+pkgrel=1
 pkgdesc="Editor for text-based subtitles"
 arch=('any')
 url="https://otsaloma.io/gaupol/;
@@ -18,7 +18,7 @@
 'vlc: subtitle preview'
 'mplayer: subtitle preview')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/otsaloma/$pkgname/archive/$pkgver.tar.gz)
-sha256sums=('530cb55a9e8a301cff6e23d5e712e7142a3b1a7f81d61d70e4273d3655c6277f')
+sha256sums=('ae9ca544c27dd0d94162d78f92f98e5c51c69141c952eeea270c6a063374510d')
 
 package() {
   cd "$srcdir/$pkgname-$pkgver"



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

2022-04-04 Thread Laurent Carlier via arch-commits
Date: Monday, April 4, 2022 @ 17:30:31
  Author: lcarlier
Revision: 441516

archrelease: copy trunk to testing-x86_64

Added:
  mesa/repos/testing-x86_64/LICENSE
(from rev 441515, mesa/trunk/LICENSE)
  mesa/repos/testing-x86_64/PKGBUILD
(from rev 441515, mesa/trunk/PKGBUILD)
Deleted:
  mesa/repos/testing-x86_64/LICENSE
  mesa/repos/testing-x86_64/PKGBUILD

--+
 LICENSE  |  166 +++
 PKGBUILD |  432 ++---
 2 files changed, 301 insertions(+), 297 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2022-04-04 17:30:26 UTC (rev 441515)
+++ LICENSE 2022-04-04 17:30:31 UTC (rev 441516)
@@ -1,83 +0,0 @@
-The Mesa 3D Graphics Library
-
-Disclaimer
-
-   Mesa is a 3-D graphics library with an API which is very similar to
-   that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
-   syntax or state machine, it is being used with authorization from
-   [2]Silicon Graphics, Inc.(SGI). However, the author does not possess an
-   OpenGL license from SGI, and makes no claim that Mesa is in any way a
-   compatible replacement for OpenGL or associated with SGI. Those who
-   want a licensed implementation of OpenGL should contact a licensed
-   vendor.
-
-   Please do not refer to the library as MesaGL (for legal reasons). It's
-   just Mesa or The Mesa 3-D graphics library.
-
-   * OpenGL is a trademark of [3]Silicon Graphics Incorporated.
-
-License / Copyright Information
-
-   The Mesa distribution consists of several components. Different
-   copyrights and licenses apply to different components. For example, the
-   GLX client code uses the SGI Free Software License B, and some of the
-   Mesa device drivers are copyrighted by their authors. See below for a
-   list of Mesa's main components and the license for each.
-
-   The core Mesa library is licensed according to the terms of the MIT
-   license. This allows integration with the XFree86, Xorg and DRI
-   projects.
-
-   The default Mesa license is as follows:
-
-Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the "Software"),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-Attention, Contributors
-
-   When contributing to the Mesa project you must agree to the licensing
-   terms of the component to which you're contributing. The following
-   section lists the primary components of the Mesa distribution and their
-   respective licenses.
-
-Mesa Component Licenses
-
-Component Location   License
---
-Main Mesa codesrc/mesa/  MIT
-
-Device driverssrc/mesa/drivers/* MIT, generally
-
-Gallium code  src/gallium/   MIT
-
-Ext headers   include/GL/glext.h Khronos
-  include/GL/glxext.h
-
-GLX client code   src/glx/   SGI Free Software License B
-
-C11 threadinclude/c11/threads*.h Boost (permissive) emulation
-
-   In general, consult the source files for license terms.
-
-References
-
-   1. https://www.opengl.org/
-   2. https://www.sgi.com/
-   3. https://www.sgi.com/

Copied: mesa/repos/testing-x86_64/LICENSE (from rev 441515, mesa/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2022-04-04 17:30:31 UTC (rev 441516)
@@ -0,0 +1,83 @@
+The Mesa 3D Graphics Library
+
+Disclaimer
+
+   Mesa is a 3-D graphics library with an API which is very similar to
+   that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
+   syntax or state machine, it is being used with authorization from
+   [2]Silicon Graphics, Inc.(SGI). However, the author does not possess an
+   OpenGL license from SGI, and makes no claim that Mesa is in any way a
+   compatible replacement for OpenGL or associated with SGI. Those who
+   want a licensed implementation of OpenGL 

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

2022-04-04 Thread Laurent Carlier via arch-commits
Date: Monday, April 4, 2022 @ 17:30:26
  Author: lcarlier
Revision: 441515

upgpkg: mesa 22.0.1-3: try to workaround a tls bug

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-04-04 14:26:18 UTC (rev 441514)
+++ PKGBUILD2022-04-04 17:30:26 UTC (rev 441515)
@@ -7,7 +7,7 @@
 pkgname=('vulkan-mesa-layers' 'opencl-mesa' 'vulkan-intel' 'vulkan-radeon' 
'vulkan-swrast' 'libva-mesa-driver' 'mesa-vdpau' 'mesa')
 pkgdesc="An open-source implementation of the OpenGL specification"
 pkgver=22.0.1
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 makedepends=('python-mako' 'libxml2' 'libx11' 'xorgproto' 'libdrm' 
'libxshmfence' 'libxxf86vm'
  'libxdamage' 'libvdpau' 'libva' 'wayland' 'wayland-protocols' 
'zstd' 'elfutils' 'llvm'
@@ -38,6 +38,10 @@
   CFLAGS+=' -g1'
   CXXFLAGS+=' -g1'
 
+  # https://gitlab.freedesktop.org/mesa/mesa/-/issues/6229
+  CFLAGS+=' -mtls-dialect=gnu'
+  CXXFLAGS+=' -mtls-dialect=gnu'
+
   arch-meson mesa-$pkgver build \
 -D b_ndebug=true \
 -D platforms=x11,wayland \



  1   2   3   >