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

2022-02-05 Thread George Rawlinson via arch-commits
Date: Sunday, February 6, 2022 @ 06:58:24
  Author: grawlinson
Revision: 1126970

archrelease: copy trunk to community-any

Added:
  vaultwarden-web/repos/community-any/PKGBUILD
(from rev 1126969, vaultwarden-web/trunk/PKGBUILD)
  vaultwarden-web/repos/community-any/vaultwarden-web.install
(from rev 1126969, vaultwarden-web/trunk/vaultwarden-web.install)
Deleted:
  vaultwarden-web/repos/community-any/PKGBUILD
  vaultwarden-web/repos/community-any/vaultwarden-web.install

-+
 PKGBUILD|   94 +++---
 vaultwarden-web.install |   18 
 2 files changed, 58 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-02-06 06:57:32 UTC (rev 1126969)
+++ PKGBUILD2022-02-06 06:58:24 UTC (rev 1126970)
@@ -1,45 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Maintainer: George Rawlinson 
-# Contributor: Markus Richter 
-
-pkgname=vaultwarden-web
-_pkgver=2.25.0
-pkgver=2.25.1.b
-_pkgver_without_last_dot=2.25.1b # i'm tired and i need more monty python
-_upstreamver=${_pkgver%[[:lower:]]}
-_patchver=$_pkgver
-pkgrel=1
-pkgdesc='Bitwarden web vault with the patches to make it work with Vaultwarden'
-arch=('any')
-url=https://github.com/dani-garcia/bw_web_builds
-license=('GPL3')
-depends=('vaultwarden')
-makedepends=('git' 'nodejs-lts-gallium' 'npm')
-provides=('bitwarden_rs-vault' 'bitwarden_rs-web')
-replaces=('bitwarden_rs-vault' 'bitwarden_rs-web')
-install=$pkgname.install
-source=("bitwarden-web::git+https://github.com/bitwarden/web.git#tag=v$_upstreamver;
-
"$pkgname-v$_patchver.patch::https://raw.githubusercontent.com/dani-garcia/bw_web_builds/v$_pkgver_without_last_dot/patches/v$_patchver.patch;)
-b2sums=('SKIP'
-
'5023c74e342d9e416f8de2a781a846a1027fba28bf763330c196b8ed836bfc971bf156715beaf88f6a73c24c660f25f61d27457cc50a7bc6e1c4630001f3c989')
-
-prepare() {
-  cd bitwarden-web
-  git submodule update --init
-  patch --forward --strip=1 --input=../$pkgname-v$_patchver.patch
-
-  npm ci
-}
-
-build() {
-  cd bitwarden-web
-  npm run dist:oss:selfhost
-}
-
-package() {
-  cd bitwarden-web
-  install -d "$pkgdir"/usr/share/webapps/$pkgname
-  cp -R build/* "$pkgdir"/usr/share/webapps/$pkgname
-}
-
-# vim:set ts=2 sw=2 et:

Copied: vaultwarden-web/repos/community-any/PKGBUILD (from rev 1126969, 
vaultwarden-web/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-02-06 06:58:24 UTC (rev 1126970)
@@ -0,0 +1,49 @@
+# Maintainer: Daniel M. Capella 
+# Maintainer: George Rawlinson 
+# Contributor: Markus Richter 
+
+pkgname=vaultwarden-web
+_pkgver=2.25.1b
+pkgver=2.25.1.b
+_upstreamver=${_pkgver%[[:lower:]]}
+#_patchver=$_upstreamver
+_patchver=2.25.0 # almost always out of sync now
+pkgrel=2
+pkgdesc='Bitwarden web vault with the patches to make it work with Vaultwarden'
+arch=('any')
+url=https://github.com/dani-garcia/bw_web_builds
+license=('GPL3')
+depends=('vaultwarden')
+makedepends=('git' 'nodejs-lts-gallium' 'npm')
+provides=('bitwarden_rs-vault' 'bitwarden_rs-web')
+replaces=('bitwarden_rs-vault' 'bitwarden_rs-web')
+install=$pkgname.install
+source=("bitwarden-web::git+https://github.com/bitwarden/web.git#tag=v$_upstreamver;
+
"$pkgname-v$_pkgver-$_patchver.patch::https://raw.githubusercontent.com/dani-garcia/bw_web_builds/v$_pkgver/patches/v$_patchver.patch;)
+b2sums=('SKIP'
+
'2f527513d85b34ccaba4f6d890a84b265d0f9cf4469c439c7e12d885b399ddd357bdafadf48e55ef4c4842fb43052985130154b0dad6f1b1f007ebc0b053ea06')
+
+pkgver() {
+  echo $_pkgver | sed 's/[[:lower:]]$/.&/'
+}
+
+prepare() {
+  cd bitwarden-web
+  git submodule update --init
+  patch --forward --strip=1 --input=../$pkgname-v$_pkgver-$_patchver.patch
+
+  npm ci
+}
+
+build() {
+  cd bitwarden-web
+  npm run dist:oss:selfhost
+}
+
+package() {
+  cd bitwarden-web
+  install -d "$pkgdir"/usr/share/webapps/$pkgname
+  cp -R build/* "$pkgdir"/usr/share/webapps/$pkgname
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: vaultwarden-web.install
===
--- vaultwarden-web.install 2022-02-06 06:57:32 UTC (rev 1126969)
+++ vaultwarden-web.install 2022-02-06 06:58:24 UTC (rev 1126970)
@@ -1,9 +0,0 @@
-post_install() {
-  cat << EOF
-Uncomment WEB_VAULT_FOLDER and set WEB_VAULT_ENABLED to true in your
-/etc/vaultwarden.env.
-
-Restart vaultwarden after configuration changes have been made:
-# systemctl restart vaultwarden
-EOF
-}

Copied: vaultwarden-web/repos/community-any/vaultwarden-web.install (from rev 
1126969, vaultwarden-web/trunk/vaultwarden-web.install)
===
--- vaultwarden-web.install (rev 0)
+++ vaultwarden-web.install 2022-02-06 06:58:24 UTC (rev 1126970)
@@ -0,0 +1,9 @@
+post_install() {
+  

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

2022-02-05 Thread George Rawlinson via arch-commits
Date: Sunday, February 6, 2022 @ 06:57:32
  Author: grawlinson
Revision: 1126969

upgpkg: vaultwarden-web 2.25.1.b-2; FS#73642

Modified:
  vaultwarden-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 06:39:35 UTC (rev 1126968)
+++ PKGBUILD2022-02-06 06:57:32 UTC (rev 1126969)
@@ -3,12 +3,12 @@
 # Contributor: Markus Richter 
 
 pkgname=vaultwarden-web
-_pkgver=2.25.0
+_pkgver=2.25.1b
 pkgver=2.25.1.b
-_pkgver_without_last_dot=2.25.1b # i'm tired and i need more monty python
 _upstreamver=${_pkgver%[[:lower:]]}
-_patchver=$_pkgver
-pkgrel=1
+#_patchver=$_upstreamver
+_patchver=2.25.0 # almost always out of sync now
+pkgrel=2
 pkgdesc='Bitwarden web vault with the patches to make it work with Vaultwarden'
 arch=('any')
 url=https://github.com/dani-garcia/bw_web_builds
@@ -19,14 +19,18 @@
 replaces=('bitwarden_rs-vault' 'bitwarden_rs-web')
 install=$pkgname.install
 
source=("bitwarden-web::git+https://github.com/bitwarden/web.git#tag=v$_upstreamver;
-
"$pkgname-v$_patchver.patch::https://raw.githubusercontent.com/dani-garcia/bw_web_builds/v$_pkgver_without_last_dot/patches/v$_patchver.patch;)
+
"$pkgname-v$_pkgver-$_patchver.patch::https://raw.githubusercontent.com/dani-garcia/bw_web_builds/v$_pkgver/patches/v$_patchver.patch;)
 b2sums=('SKIP'
-
'5023c74e342d9e416f8de2a781a846a1027fba28bf763330c196b8ed836bfc971bf156715beaf88f6a73c24c660f25f61d27457cc50a7bc6e1c4630001f3c989')
+
'2f527513d85b34ccaba4f6d890a84b265d0f9cf4469c439c7e12d885b399ddd357bdafadf48e55ef4c4842fb43052985130154b0dad6f1b1f007ebc0b053ea06')
 
+pkgver() {
+  echo $_pkgver | sed 's/[[:lower:]]$/.&/'
+}
+
 prepare() {
   cd bitwarden-web
   git submodule update --init
-  patch --forward --strip=1 --input=../$pkgname-v$_patchver.patch
+  patch --forward --strip=1 --input=../$pkgname-v$_pkgver-$_patchver.patch
 
   npm ci
 }



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

2022-02-05 Thread Daniel M. Capella via arch-commits
Date: Sunday, February 6, 2022 @ 06:39:35
  Author: polyzen
Revision: 1126968

archrelease: copy trunk to community-x86_64

Added:
  go-yq/repos/community-x86_64/PKGBUILD
(from rev 1126967, go-yq/trunk/PKGBUILD)
Deleted:
  go-yq/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-02-06 06:39:16 UTC (rev 1126967)
+++ PKGBUILD2022-02-06 06:39:35 UTC (rev 1126968)
@@ -1,51 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Mario Finelli 
-
-pkgname=go-yq
-pkgver=4.18.1
-pkgrel=1
-pkgdesc='Portable command-line YAML processor'
-arch=('x86_64')
-url=https://github.com/mikefarah/yq
-license=('MIT')
-depends=('glibc')
-makedepends=('go')
-conflicts=('yq')
-source=("$url/archive/v$pkgver/yq-$pkgver.tar.gz")
-b2sums=('0f3970b2b2c1db9bce82aa95d0e3ed5d6e597b9403cae7cc304d11cb973fbed2637eaacba9c36191634d3fa0e3062155b93d0baf5c91239bdb41367af4f25cd0')
-
-prepare() {
-  cd yq-$pkgver
-  go mod vendor
-}
-
-build() {
-  cd yq-$pkgver
-  export CGO_CPPFLAGS="$CPPFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_CXXFLAGS="$CXXFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-modcacherw"
-  go build .
-}
-
-check() {
-  cd yq-$pkgver
-  go test ./...
-}
-
-package() {
-  cd yq-$pkgver
-  install -Dt "$pkgdir"/usr/bin yq
-  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
-  install -Dm644 -t "$pkgdir"/usr/share/doc/$pkgname README.md
-
-  ./yq shell-completion bash | install -Dm644 /dev/stdin \
-"$pkgdir"/usr/share/bash-completion/completions/yq
-  ./yq shell-completion zsh | install -Dm644 /dev/stdin \
-"$pkgdir"/usr/share/zsh/site-functions/_yq
-  ./yq shell-completion fish | install -Dm644 /dev/stdin \
-"$pkgdir"/usr/share/fish/vendor_completions.d/yq.fish
-}
-
-# vim:set ts=2 sw=2 et:

Copied: go-yq/repos/community-x86_64/PKGBUILD (from rev 1126967, 
go-yq/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-02-06 06:39:35 UTC (rev 1126968)
@@ -0,0 +1,51 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Mario Finelli 
+
+pkgname=go-yq
+pkgver=4.19.1
+pkgrel=1
+pkgdesc='Portable command-line YAML processor'
+arch=('x86_64')
+url=https://github.com/mikefarah/yq
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+conflicts=('yq')
+source=("$url/archive/v$pkgver/yq-$pkgver.tar.gz")
+b2sums=('463e0f1b2db99508b840b884af3e53ebd3b0a4e870ee6e0fb3e7ae77c97b379196efec060cce8e2031ef9f14c350bbe59ea76f1ee9c2e7651203fec8dbe91fd6')
+
+prepare() {
+  cd yq-$pkgver
+  go mod vendor
+}
+
+build() {
+  cd yq-$pkgver
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-modcacherw"
+  go build .
+}
+
+check() {
+  cd yq-$pkgver
+  go test ./...
+}
+
+package() {
+  cd yq-$pkgver
+  install -Dt "$pkgdir"/usr/bin yq
+  install -Dm644 -t "$pkgdir"/usr/share/licenses/$pkgname LICENSE
+  install -Dm644 -t "$pkgdir"/usr/share/doc/$pkgname README.md
+
+  ./yq shell-completion bash | install -Dm644 /dev/stdin \
+"$pkgdir"/usr/share/bash-completion/completions/yq
+  ./yq shell-completion zsh | install -Dm644 /dev/stdin \
+"$pkgdir"/usr/share/zsh/site-functions/_yq
+  ./yq shell-completion fish | install -Dm644 /dev/stdin \
+"$pkgdir"/usr/share/fish/vendor_completions.d/yq.fish
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-02-05 Thread Daniel M. Capella via arch-commits
Date: Sunday, February 6, 2022 @ 06:39:16
  Author: polyzen
Revision: 1126967

upgpkg: go-yq 4.19.1-1

Modified:
  go-yq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 06:31:29 UTC (rev 1126966)
+++ PKGBUILD2022-02-06 06:39:16 UTC (rev 1126967)
@@ -2,7 +2,7 @@
 # Contributor: Mario Finelli 
 
 pkgname=go-yq
-pkgver=4.18.1
+pkgver=4.19.1
 pkgrel=1
 pkgdesc='Portable command-line YAML processor'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('go')
 conflicts=('yq')
 source=("$url/archive/v$pkgver/yq-$pkgver.tar.gz")
-b2sums=('0f3970b2b2c1db9bce82aa95d0e3ed5d6e597b9403cae7cc304d11cb973fbed2637eaacba9c36191634d3fa0e3062155b93d0baf5c91239bdb41367af4f25cd0')
+b2sums=('463e0f1b2db99508b840b884af3e53ebd3b0a4e870ee6e0fb3e7ae77c97b379196efec060cce8e2031ef9f14c350bbe59ea76f1ee9c2e7651203fec8dbe91fd6')
 
 prepare() {
   cd yq-$pkgver



[arch-commits] Commit in haskell-language-server/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:12:03
  Author: felixonmars
Revision: 1126944

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-language-server/repos/community-staging-x86_64/
  haskell-language-server/repos/community-staging-x86_64/PKGBUILD
(from rev 1126943, haskell-language-server/trunk/PKGBUILD)

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

Copied: haskell-language-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 1126943, haskell-language-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 03:12:03 UTC (rev 1126944)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+
+pkgname=haskell-language-server
+pkgver=1.3.0.0
+pkgrel=92
+pkgdesc="LSP server for GHC"
+url="https://github.com/haskell/haskell-language-server#readme;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-async'
+ 'haskell-base16-bytestring' 'haskell-cryptohash-sha1' 
'haskell-data-default'
+ 'haskell-extra' 'haskell-ghc' 'haskell-ghc-api-compat' 
'haskell-ghc-paths' 'haskell-gitrev'
+ 'haskell-hashable' 'haskell-hie-bios' 'haskell-hiedb'
+ 'haskell-hls-call-hierarchy-plugin' 'haskell-hls-eval-plugin'
+ 'haskell-hls-explicit-imports-plugin' 'haskell-hls-floskell-plugin'
+ 'haskell-hls-fourmolu-plugin' 'haskell-hls-ormolu-plugin' 
'haskell-hls-graph'
+ 'haskell-hls-haddock-comments-plugin' 'haskell-hls-hlint-plugin'
+ 'haskell-hls-module-name-plugin' 'haskell-hls-ormolu-plugin' 
'haskell-hls-plugin-api'
+ 'haskell-hls-pragmas-plugin'
+ 'haskell-hls-retrie-plugin' 'haskell-hls-stylish-haskell-plugin'
+ 'haskell-hslogger' 'haskell-lens' 'haskell-lsp' 
'haskell-optparse-applicative'
+ 'haskell-optparse-simple' 'haskell-regex-tdfa' 
'haskell-safe-exceptions'
+ 'haskell-sqlite-simple' 'haskell-temporary' 
'haskell-unordered-containers')
+# Disabled due to not compatible with GHC 9:
+# 'haskell-hls-brittany-plugin' 'haskell-hls-class-plugin' 
'haskell-hls-splice-plugin' 'haskell-hls-tactics-plugin' 
'haskell-hls-refine-imports-plugin'
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 
'haskell-hspec-expectations' 'haskell-lsp-test'
+ 'haskell-lsp-types')
+checkdepends=('cabal-install')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('2938c4eaf8e2fef72ddf0e116e021b109ab69c4cdd48dc678cb93cd08e03e7f2abf3aaf1dea17a51dd8cb70f69db7ceba9823291d847ffe8bd0c990028fd6da4')
+
+prepare() {
+  cd $pkgname-$pkgver
+  find test/testdata -name \*.cabal -exec uusi --add-options-all=-dynamic {} \;
+  uusi -u ghc-api-compat $pkgname.cabal
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' -f-brittany -f-class -f-refineImports -f-tactic 
-f-splice
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname-$pkgver
+  
PATH="$PWD/dist/build/haskell-language-server:$PWD/dist/build/haskell-language-server-wrapper:$PATH"
 LD_LIBRARY_PATH="$PWD/dist/build" runhaskell Setup test || echo "Tests failed"
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:11:54
  Author: felixonmars
Revision: 1126943

upgpkg: haskell-language-server 1.3.0.0-92: rebuild with monoid-subclasses 1.1.3

Modified:
  haskell-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 03:09:44 UTC (rev 1126942)
+++ PKGBUILD2022-02-06 03:11:54 UTC (rev 1126943)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-language-server
 pkgver=1.3.0.0
-pkgrel=91
+pkgrel=92
 pkgdesc="LSP server for GHC"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")



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

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:09:44
  Author: felixonmars
Revision: 1126942

archrelease: copy trunk to community-staging-x86_64

Added:
  hopenpgp-tools/repos/community-staging-x86_64/
  hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 1126941, hopenpgp-tools/trunk/PKGBUILD)

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

Copied: hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
1126941, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 03:09:44 UTC (rev 1126942)
@@ -0,0 +1,37 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.23.6
+pkgrel=209
+pkgdesc="hOpenPGP-based command-line tools"
+url="https://salsa.debian.org/clint/hopenpgp-tools;
+license=("AGPL3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base16-bytestring' 
'haskell-binary-conduit'
+ 'haskell-conduit' 'haskell-conduit-extra' 'haskell-cryptonite' 
'haskell-errors'
+ 'haskell-fgl' 'haskell-graphviz' 'haskell-hopenpgp' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-ixset-typed' 
'haskell-lens'
+ 'haskell-memory' 'haskell-monad-loops' 'haskell-openpgp-asciiarmor'
+ 'haskell-optparse-applicative' 'haskell-prettyprinter'
+ 'haskell-prettyprinter-ansi-terminal' 
'haskell-prettyprinter-convert-ansi-wl-pprint'
+ 'haskell-resourcet' 'haskell-time-locale-compat' 
'haskell-unordered-containers'
+ 'haskell-vector' 'haskell-yaml')
+makedepends=('alex' 'happy' 'ghc')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('73c83f939492c66b4ad5782e01acd0af97011a0ae797bce82d9431eb3e9c155ce1b4af1c4b3a5922f10e0e468c1c009cb270b8f15c7ba3236d9d8bf9e0265018')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build $MAKEFLAGS
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}



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

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:09:37
  Author: felixonmars
Revision: 1126941

upgpkg: hopenpgp-tools 0.23.6-209: rebuild with monoid-subclasses 1.1.3

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 03:08:50 UTC (rev 1126940)
+++ PKGBUILD2022-02-06 03:09:37 UTC (rev 1126941)
@@ -3,7 +3,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.23.6
-pkgrel=208
+pkgrel=209
 pkgdesc="hOpenPGP-based command-line tools"
 url="https://salsa.debian.org/clint/hopenpgp-tools;
 license=("AGPL3")



[arch-commits] Commit in haskell-hls-stylish-haskell-plugin/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:08:50
  Author: felixonmars
Revision: 1126940

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-stylish-haskell-plugin/repos/community-staging-x86_64/
  haskell-hls-stylish-haskell-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1126939, haskell-hls-stylish-haskell-plugin/trunk/PKGBUILD)

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

Copied: 
haskell-hls-stylish-haskell-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1126939, haskell-hls-stylish-haskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 03:08:50 UTC (rev 1126940)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-stylish-haskell-plugin
+pkgname=haskell-hls-stylish-haskell-plugin
+pkgver=1.0.0.2
+pkgrel=80
+pkgdesc="Integration with the Stylish Haskell code formatter"
+url="https://hackage.haskell.org/package/hls-stylish-haskell-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-ghc-api-compat' 'haskell-ghcide' 
'haskell-hls-plugin-api'
+ 'haskell-lsp-types' 'stylish-haskell')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('d850d4be6cc746b6279512bb359efda197aeebd467a59a21670f3b95977c6ba086852dedde3c48171f0cff8405c8e340dea44fe3e187e4731a06eb112502ad9c')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-stylish-haskell-plugin/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:08:43
  Author: felixonmars
Revision: 1126939

upgpkg: haskell-hls-stylish-haskell-plugin 1.0.0.2-80: rebuild with 
monoid-subclasses 1.1.3

Modified:
  haskell-hls-stylish-haskell-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 03:08:11 UTC (rev 1126938)
+++ PKGBUILD2022-02-06 03:08:43 UTC (rev 1126939)
@@ -3,7 +3,7 @@
 _hkgname=hls-stylish-haskell-plugin
 pkgname=haskell-hls-stylish-haskell-plugin
 pkgver=1.0.0.2
-pkgrel=79
+pkgrel=80
 pkgdesc="Integration with the Stylish Haskell code formatter"
 url="https://hackage.haskell.org/package/hls-stylish-haskell-plugin;
 license=("Apache")



[arch-commits] Commit in haskell-hls-call-hierarchy-plugin/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:08:11
  Author: felixonmars
Revision: 1126938

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-call-hierarchy-plugin/repos/community-staging-x86_64/
  haskell-hls-call-hierarchy-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1126937, haskell-hls-call-hierarchy-plugin/trunk/PKGBUILD)

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

Copied: 
haskell-hls-call-hierarchy-plugin/repos/community-staging-x86_64/PKGBUILD (from 
rev 1126937, haskell-hls-call-hierarchy-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 03:08:11 UTC (rev 1126938)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-call-hierarchy-plugin
+pkgname=haskell-hls-call-hierarchy-plugin
+pkgver=1.0.0.0
+pkgrel=79
+pkgdesc="Call hierarchy plugin for Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-call-hierarchy-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-extra' 'haskell-ghc' 
'haskell-ghc-api-compat'
+ 'haskell-ghcide' 'haskell-hiedb' 'haskell-hls-plugin-api' 
'haskell-lens' 'haskell-lsp'
+ 'haskell-sqlite-simple' 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 'haskell-lsp-test')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('4b3103a98ec57c9f050ffd1c534a0e23b1bfcbe78dda441c351b874939ce34a8')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-call-hierarchy-plugin/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:08:04
  Author: felixonmars
Revision: 1126937

upgpkg: haskell-hls-call-hierarchy-plugin 1.0.0.0-79: rebuild with 
monoid-subclasses 1.1.3

Modified:
  haskell-hls-call-hierarchy-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 03:07:18 UTC (rev 1126936)
+++ PKGBUILD2022-02-06 03:08:04 UTC (rev 1126937)
@@ -3,7 +3,7 @@
 _hkgname=hls-call-hierarchy-plugin
 pkgname=haskell-hls-call-hierarchy-plugin
 pkgver=1.0.0.0
-pkgrel=78
+pkgrel=79
 pkgdesc="Call hierarchy plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-call-hierarchy-plugin;
 license=("Apache")



[arch-commits] Commit in haskell-hls-floskell-plugin/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:07:18
  Author: felixonmars
Revision: 1126936

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-floskell-plugin/repos/community-staging-x86_64/
  haskell-hls-floskell-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1126935, haskell-hls-floskell-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-floskell-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1126935, haskell-hls-floskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 03:07:18 UTC (rev 1126936)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-floskell-plugin
+pkgname=haskell-hls-floskell-plugin
+pkgver=1.0.0.1
+pkgrel=79
+pkgdesc="Integration with the Floskell code formatter"
+url="https://hackage.haskell.org/package/hls-floskell-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-floskell' 'haskell-ghcide' 
'haskell-hls-plugin-api' 'haskell-lsp-types')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('0f420355b67447426e77f149a5cf735f613b2c863b08f625e0a0d91a33bcf565684d702f67743ef9d50eaa235551c30c76743fedd78ead9fbed429e838acf113')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-floskell-plugin/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:07:08
  Author: felixonmars
Revision: 1126935

upgpkg: haskell-hls-floskell-plugin 1.0.0.1-79: rebuild with monoid-subclasses 
1.1.3

Modified:
  haskell-hls-floskell-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 03:06:38 UTC (rev 1126934)
+++ PKGBUILD2022-02-06 03:07:08 UTC (rev 1126935)
@@ -3,7 +3,7 @@
 _hkgname=hls-floskell-plugin
 pkgname=haskell-hls-floskell-plugin
 pkgver=1.0.0.1
-pkgrel=78
+pkgrel=79
 pkgdesc="Integration with the Floskell code formatter"
 url="https://hackage.haskell.org/package/hls-floskell-plugin;
 license=("Apache")



[arch-commits] Commit in haskell-hls-eval-plugin/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:06:38
  Author: felixonmars
Revision: 1126934

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-eval-plugin/repos/community-staging-x86_64/
  haskell-hls-eval-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1126933, haskell-hls-eval-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-eval-plugin/repos/community-staging-x86_64/PKGBUILD (from 
rev 1126933, haskell-hls-eval-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 03:06:38 UTC (rev 1126934)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-eval-plugin
+pkgname=haskell-hls-eval-plugin
+pkgver=1.1.2.0
+pkgrel=80
+pkgdesc="Eval plugin for Haskell Language Server"
+url="https://github.com/haskell/haskell-language-server;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-diff' 'haskell-quickcheck' 'haskell-aeson' 
'haskell-dlist'
+ 'haskell-extra' 'haskell-ghc' 'haskell-ghc-api-compat' 
'haskell-ghc-paths' 'haskell-ghcide'
+ 'haskell-hashable' 'haskell-hls-plugin-api' 'haskell-lens' 
'haskell-lsp'
+ 'haskell-lsp-types' 'haskell-megaparsec' 'haskell-parser-combinators'
+ 'haskell-pretty-simple' 'haskell-safe-exceptions' 'haskell-temporary' 
'haskell-unliftio'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('8597144404060b56aa84d2a6549306924de6aa99ff8fa121f0a3e6fbf2facc979e36dc9304fd041833201044f59e1745574eb1a1e3459b22baf0fae3f40d96e1')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  # https://github.com/haskell/haskell-language-server/issues/1809
+  runhaskell Setup test --show-details=direct || echo "Tests failed"
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-eval-plugin/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:06:29
  Author: felixonmars
Revision: 1126933

upgpkg: haskell-hls-eval-plugin 1.1.2.0-80: rebuild with monoid-subclasses 1.1.3

Modified:
  haskell-hls-eval-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 03:05:31 UTC (rev 1126932)
+++ PKGBUILD2022-02-06 03:06:29 UTC (rev 1126933)
@@ -3,7 +3,7 @@
 _hkgname=hls-eval-plugin
 pkgname=haskell-hls-eval-plugin
 pkgver=1.1.2.0
-pkgrel=79
+pkgrel=80
 pkgdesc="Eval plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server;
 license=("Apache")



[arch-commits] Commit in haskell-hls-pragmas-plugin/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:05:31
  Author: felixonmars
Revision: 1126932

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-pragmas-plugin/repos/community-staging-x86_64/
  haskell-hls-pragmas-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1126931, haskell-hls-pragmas-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-pragmas-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1126931, haskell-hls-pragmas-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 03:05:31 UTC (rev 1126932)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-pragmas-plugin
+pkgname=haskell-hls-pragmas-plugin
+pkgver=1.0.1.0
+pkgrel=79
+pkgdesc="Pragmas plugin for Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-pragmas-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-extra' 'haskell-fuzzy' 'haskell-ghcide' 
'haskell-hls-plugin-api'
+ 'haskell-lens' 'haskell-lsp' 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 'haskell-lsp-types')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('bf284033b7d2c3491b655ca32a7a791a4e62c838a4caafea36e28844052b2a192cf39d97ae1415a698ea22d7ffcc5f0290c37a91bba841b93c1ceabe089d7e07')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-pragmas-plugin/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:05:23
  Author: felixonmars
Revision: 1126931

upgpkg: haskell-hls-pragmas-plugin 1.0.1.0-79: rebuild with monoid-subclasses 
1.1.3

Modified:
  haskell-hls-pragmas-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 03:04:05 UTC (rev 1126930)
+++ PKGBUILD2022-02-06 03:05:23 UTC (rev 1126931)
@@ -3,7 +3,7 @@
 _hkgname=hls-pragmas-plugin
 pkgname=haskell-hls-pragmas-plugin
 pkgver=1.0.1.0
-pkgrel=78
+pkgrel=79
 pkgdesc="Pragmas plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-pragmas-plugin;
 license=("Apache")



[arch-commits] Commit in haskell-hls-ormolu-plugin/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:04:05
  Author: felixonmars
Revision: 1126930

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-ormolu-plugin/repos/community-staging-x86_64/
  haskell-hls-ormolu-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1126929, haskell-hls-ormolu-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-ormolu-plugin/repos/community-staging-x86_64/PKGBUILD (from 
rev 1126929, haskell-hls-ormolu-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 03:04:05 UTC (rev 1126930)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-ormolu-plugin
+pkgname=haskell-hls-ormolu-plugin
+pkgver=1.0.1.0
+pkgrel=82
+pkgdesc="Integration with the Ormolu code formatter"
+url="https://hackage.haskell.org/package/hls-ormolu-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-ghc-api-compat' 'haskell-ghcide'
+ 'haskell-hls-plugin-api' 'haskell-lens' 'haskell-lsp' 
'haskell-ormolu')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 'haskell-lsp-types')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('330242298e6c4608d31bb0eac3ef926cfd7d5ff2bd07ab57cd46a1904c133322181e2e35da3beb01f1f97efd466d653d12a3563939fe86e70d820301aca52661')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-ormolu-plugin/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:03:57
  Author: felixonmars
Revision: 1126929

upgpkg: haskell-hls-ormolu-plugin 1.0.1.0-82: rebuild with monoid-subclasses 
1.1.3

Modified:
  haskell-hls-ormolu-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 03:03:27 UTC (rev 1126928)
+++ PKGBUILD2022-02-06 03:03:57 UTC (rev 1126929)
@@ -3,7 +3,7 @@
 _hkgname=hls-ormolu-plugin
 pkgname=haskell-hls-ormolu-plugin
 pkgver=1.0.1.0
-pkgrel=81
+pkgrel=82
 pkgdesc="Integration with the Ormolu code formatter"
 url="https://hackage.haskell.org/package/hls-ormolu-plugin;
 license=("Apache")



[arch-commits] Commit in haskell-hls-fourmolu-plugin/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:03:27
  Author: felixonmars
Revision: 1126928

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-fourmolu-plugin/repos/community-staging-x86_64/
  haskell-hls-fourmolu-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1126927, haskell-hls-fourmolu-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-fourmolu-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1126927, haskell-hls-fourmolu-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 03:03:27 UTC (rev 1126928)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-fourmolu-plugin
+pkgname=haskell-hls-fourmolu-plugin
+pkgver=1.0.0.2
+pkgrel=83
+pkgdesc="Integration with the Fourmolu code formatter"
+url="https://hackage.haskell.org/package/hls-fourmolu-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-fourmolu' 'haskell-ghc' 'haskell-ghcide' 
'haskell-hls-plugin-api'
+ 'haskell-lens' 'haskell-lsp' 'haskell-ghc-api-compat')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 'haskell-lsp-test')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('88a92c70c34d14699bcc19e7d1ff061955c4e9a6819f32c5b46d8b31d1d1f06b12be65bb84ede6046601a6d8daafcb8fc65725ceb3fc67e7afeef4097094ed46')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-fourmolu-plugin/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:03:20
  Author: felixonmars
Revision: 1126927

upgpkg: haskell-hls-fourmolu-plugin 1.0.0.2-83: rebuild with monoid-subclasses 
1.1.3

Modified:
  haskell-hls-fourmolu-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 03:02:48 UTC (rev 1126926)
+++ PKGBUILD2022-02-06 03:03:20 UTC (rev 1126927)
@@ -3,7 +3,7 @@
 _hkgname=hls-fourmolu-plugin
 pkgname=haskell-hls-fourmolu-plugin
 pkgver=1.0.0.2
-pkgrel=82
+pkgrel=83
 pkgdesc="Integration with the Fourmolu code formatter"
 url="https://hackage.haskell.org/package/hls-fourmolu-plugin;
 license=("Apache")



[arch-commits] Commit in haskell-hls-haddock-comments-plugin/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:02:48
  Author: felixonmars
Revision: 1126926

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-haddock-comments-plugin/repos/community-staging-x86_64/
  haskell-hls-haddock-comments-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1126925, haskell-hls-haddock-comments-plugin/trunk/PKGBUILD)

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

Copied: 
haskell-hls-haddock-comments-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1126925, haskell-hls-haddock-comments-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 03:02:48 UTC (rev 1126926)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-haddock-comments-plugin
+pkgname=haskell-hls-haddock-comments-plugin
+pkgver=1.0.0.3
+pkgrel=79
+pkgdesc="Haddock comments plugin for Haskell Language Server"
+url="https://github.com/haskell/haskell-language-server;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-ghc-exactprint' 'haskell-ghcide' 
'haskell-hls-plugin-api'
+ 'haskell-lsp-types' 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('0bc705b51d86d400c2f843330be5ffa9064726da64644cbc1a4c2fead1caaec5812c35ef499877aa9d07417c3854c933187dd227cd8c90f54042ead07f38bcc7')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-haddock-comments-plugin/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:02:41
  Author: felixonmars
Revision: 1126925

upgpkg: haskell-hls-haddock-comments-plugin 1.0.0.3-79: rebuild with 
monoid-subclasses 1.1.3

Modified:
  haskell-hls-haddock-comments-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 03:02:10 UTC (rev 1126924)
+++ PKGBUILD2022-02-06 03:02:41 UTC (rev 1126925)
@@ -3,7 +3,7 @@
 _hkgname=hls-haddock-comments-plugin
 pkgname=haskell-hls-haddock-comments-plugin
 pkgver=1.0.0.3
-pkgrel=78
+pkgrel=79
 pkgdesc="Haddock comments plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server;
 license=("Apache")



[arch-commits] Commit in haskell-hls-module-name-plugin/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:02:10
  Author: felixonmars
Revision: 1126924

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-module-name-plugin/repos/community-staging-x86_64/
  haskell-hls-module-name-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1126923, haskell-hls-module-name-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-module-name-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1126923, haskell-hls-module-name-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 03:02:10 UTC (rev 1126924)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-module-name-plugin
+pkgname=haskell-hls-module-name-plugin
+pkgver=1.0.0.1
+pkgrel=79
+pkgdesc="Module name plugin for Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-module-name-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ghcide' 'haskell-hls-plugin-api' 
'haskell-lsp'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('0a4d0171df49d2d417dac00853a9f0c58618efb7a5805ab3b95441f0d8c60872947935ca94b33ca75518e311a136a893f0e3744fc49cdb94fba6f55367f3c0be')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-module-name-plugin/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:02:02
  Author: felixonmars
Revision: 1126923

upgpkg: haskell-hls-module-name-plugin 1.0.0.1-79: rebuild with 
monoid-subclasses 1.1.3

Modified:
  haskell-hls-module-name-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 03:01:27 UTC (rev 1126922)
+++ PKGBUILD2022-02-06 03:02:02 UTC (rev 1126923)
@@ -3,7 +3,7 @@
 _hkgname=hls-module-name-plugin
 pkgname=haskell-hls-module-name-plugin
 pkgver=1.0.0.1
-pkgrel=78
+pkgrel=79
 pkgdesc="Module name plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-module-name-plugin;
 license=("Apache")



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

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:01:27
  Author: felixonmars
Revision: 1126922

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hopenpgp/repos/community-staging-x86_64/
  haskell-hopenpgp/repos/community-staging-x86_64/PKGBUILD
(from rev 1126921, haskell-hopenpgp/trunk/PKGBUILD)

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

Copied: haskell-hopenpgp/repos/community-staging-x86_64/PKGBUILD (from rev 
1126921, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 03:01:27 UTC (rev 1126922)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.9.7
+pkgrel=10
+pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
+url="http://floss.scru.org/hOpenPGP/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-asn1-encoding' 
'haskell-attoparsec'
+ 'haskell-base16-bytestring' 'haskell-bifunctors' 'haskell-bz2' 
'haskell-binary-conduit'
+ 'haskell-conduit' 'haskell-conduit-extra' 'haskell-cryptonite'
+ 'haskell-crypto-cipher-types' 'haskell-errors' 'haskell-hashable'
+ 'haskell-incremental-parser' 'haskell-ixset-typed' 'haskell-lens' 
'haskell-memory'
+ 'haskell-monad-loops' 'haskell-nettle' 'haskell-network-uri'
+ 'haskell-openpgp-asciiarmor' 'haskell-prettyprinter' 
'haskell-resourcet' 'haskell-split'
+ 'haskell-time-locale-compat' 'haskell-unliftio-core' 
'haskell-unordered-containers'
+ 'haskell-zlib')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('c8589b9bbbc8e211594946a1cad81bda51375f388f7252fab8d87c64ae2cc62e3fb038b405329fee8e7887335b17cf0f82014dc31c60ca1cf34c808d4f0e9b26')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-fnetwork-uri
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 03:01:18
  Author: felixonmars
Revision: 1126921

upgpkg: haskell-hopenpgp 2.9.7-10: rebuild with monoid-subclasses 1.1.3

Modified:
  haskell-hopenpgp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 02:58:01 UTC (rev 1126920)
+++ PKGBUILD2022-02-06 03:01:18 UTC (rev 1126921)
@@ -3,7 +3,7 @@
 _hkgname=hOpenPGP
 pkgname=haskell-hopenpgp
 pkgver=2.9.7
-pkgrel=9
+pkgrel=10
 pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
 url="http://floss.scru.org/hOpenPGP/;
 license=('MIT')



[arch-commits] Commit in haskell-hls-retrie-plugin/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:58:01
  Author: felixonmars
Revision: 1126920

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-retrie-plugin/repos/community-staging-x86_64/
  haskell-hls-retrie-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1126919, haskell-hls-retrie-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-retrie-plugin/repos/community-staging-x86_64/PKGBUILD (from 
rev 1126919, haskell-hls-retrie-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 02:58:01 UTC (rev 1126920)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-retrie-plugin
+pkgname=haskell-hls-retrie-plugin
+pkgver=1.0.1.1
+pkgrel=79
+pkgdesc="Retrie integration plugin for Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-retrie-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-extra' 'haskell-ghc' 
'haskell-ghc-api-compat'
+ 'haskell-ghcide' 'haskell-hashable' 'haskell-hls-plugin-api' 
'haskell-lsp'
+ 'haskell-lsp-types' 'haskell-retrie' 'haskell-safe-exceptions'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('d5059c9d1e5af9acf1a9842c76270400076f2eb168a2dfd61961cb5328c72e4aaf14ad9a1543a3729d87800d658b941e1daaa15a1bd628d3d72657499dd47488')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-retrie-plugin/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:57:53
  Author: felixonmars
Revision: 1126919

upgpkg: haskell-hls-retrie-plugin 1.0.1.1-79: rebuild with monoid-subclasses 
1.1.3

Modified:
  haskell-hls-retrie-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 02:57:16 UTC (rev 1126918)
+++ PKGBUILD2022-02-06 02:57:53 UTC (rev 1126919)
@@ -3,7 +3,7 @@
 _hkgname=hls-retrie-plugin
 pkgname=haskell-hls-retrie-plugin
 pkgver=1.0.1.1
-pkgrel=78
+pkgrel=79
 pkgdesc="Retrie integration plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-retrie-plugin;
 license=("Apache")



[arch-commits] Commit in haskell-hls-test-utils/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:57:16
  Author: felixonmars
Revision: 1126918

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-test-utils/repos/community-staging-x86_64/
  haskell-hls-test-utils/repos/community-staging-x86_64/PKGBUILD
(from rev 1126917, haskell-hls-test-utils/trunk/PKGBUILD)

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

Copied: haskell-hls-test-utils/repos/community-staging-x86_64/PKGBUILD (from 
rev 1126917, haskell-hls-test-utils/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 02:57:16 UTC (rev 1126918)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-test-utils
+pkgname=haskell-hls-test-utils
+pkgver=1.1.0.0
+pkgrel=80
+pkgdesc="Utilities used in the tests of Haskell Language Server"
+url="https://github.com/haskell/haskell-language-server#readme;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-async' 'haskell-blaze-markup' 
'haskell-data-default'
+ 'haskell-extra' 'haskell-ghcide' 'haskell-hls-graph' 
'haskell-hls-plugin-api'
+ 'haskell-hspec' 'haskell-hspec-core' 'haskell-lens' 'haskell-lsp' 
'haskell-lsp-test'
+ 'haskell-lsp-types' 'haskell-tasty' 'haskell-tasty-expected-failure' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-rerun' 'haskell-temporary'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('08bb01af48a07b37c6d99c6da42341147259ee3f26aef4737a796a62fabbe9600464fdecb3ae4908a4df24e044abf786bcf30103b15b8d7c72f12f9a0c07fcb5')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u hspec $_hkgname.cabal
+  # https://github.com/haskell/haskell-language-server/issues/1835
+  sed -i '/configOutputFile/d' src/Test/Hls/Util.hs
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-test-utils/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:57:08
  Author: felixonmars
Revision: 1126917

upgpkg: haskell-hls-test-utils 1.1.0.0-80: rebuild with monoid-subclasses 1.1.3

Modified:
  haskell-hls-test-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 02:56:35 UTC (rev 1126916)
+++ PKGBUILD2022-02-06 02:57:08 UTC (rev 1126917)
@@ -3,7 +3,7 @@
 _hkgname=hls-test-utils
 pkgname=haskell-hls-test-utils
 pkgver=1.1.0.0
-pkgrel=79
+pkgrel=80
 pkgdesc="Utilities used in the tests of Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")



[arch-commits] Commit in haskell-hls-hlint-plugin/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:56:35
  Author: felixonmars
Revision: 1126916

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-hlint-plugin/repos/community-staging-x86_64/
  haskell-hls-hlint-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1126915, haskell-hls-hlint-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-hlint-plugin/repos/community-staging-x86_64/PKGBUILD (from 
rev 1126915, haskell-hls-hlint-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 02:56:35 UTC (rev 1126916)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-hlint-plugin
+pkgname=haskell-hls-hlint-plugin
+pkgver=1.0.1.1
+pkgrel=79
+pkgdesc="Hlint integration plugin with Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-hlint-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-diff' 'haskell-aeson' 'haskell-apply-refact' 
'haskell-data-default'
+ 'haskell-extra' 'haskell-ghc' 'haskell-ghc-exactprint' 
'haskell-ghcide' 'haskell-hashable'
+ 'hlint' 'haskell-hls-plugin-api' 'haskell-hslogger' 'haskell-lens' 
'haskell-lsp'
+ 'haskell-regex-tdfa' 'haskell-temporary' 
'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('0bed7570e2b543f482f123e2ce19d4a5c5d712bde7875e97e1c4fc6eda481752e4d65f8cd4a998634ac3e85a7ce737f3ef849959d77e1c9f814ddf039f33b807')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' -fhlint33
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-hlint-plugin/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:56:27
  Author: felixonmars
Revision: 1126915

upgpkg: haskell-hls-hlint-plugin 1.0.1.1-79: rebuild with monoid-subclasses 
1.1.3

Modified:
  haskell-hls-hlint-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 02:55:54 UTC (rev 1126914)
+++ PKGBUILD2022-02-06 02:56:27 UTC (rev 1126915)
@@ -3,7 +3,7 @@
 _hkgname=hls-hlint-plugin
 pkgname=haskell-hls-hlint-plugin
 pkgver=1.0.1.1
-pkgrel=78
+pkgrel=79
 pkgdesc="Hlint integration plugin with Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-hlint-plugin;
 license=("Apache")



[arch-commits] Commit in haskell-hls-explicit-imports-plugin/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:55:54
  Author: felixonmars
Revision: 1126914

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-explicit-imports-plugin/repos/community-staging-x86_64/
  haskell-hls-explicit-imports-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1126913, haskell-hls-explicit-imports-plugin/trunk/PKGBUILD)

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

Copied: 
haskell-hls-explicit-imports-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 1126913, haskell-hls-explicit-imports-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 02:55:54 UTC (rev 1126914)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-explicit-imports-plugin
+pkgname=haskell-hls-explicit-imports-plugin
+pkgver=1.0.1.0
+pkgrel=79
+pkgdesc="Explicit imports plugin for Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-explicit-imports-plugin;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ghc' 'haskell-ghc-api-compat' 
'haskell-ghcide'
+ 'haskell-hls-graph' 'haskell-hls-plugin-api' 'haskell-lsp' 
'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('7691ecc341fb511e51ccb6c1f67cd6f3c908f771b62423d7713d05bf13893b7ac53ae9c453ab8b6ca227ed8c9b42191cd30b9745b57f00c51f3f3646954955b8')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hls-explicit-imports-plugin/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:55:45
  Author: felixonmars
Revision: 1126913

upgpkg: haskell-hls-explicit-imports-plugin 1.0.1.0-79: rebuild with 
monoid-subclasses 1.1.3

Modified:
  haskell-hls-explicit-imports-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 02:55:17 UTC (rev 1126912)
+++ PKGBUILD2022-02-06 02:55:45 UTC (rev 1126913)
@@ -3,7 +3,7 @@
 _hkgname=hls-explicit-imports-plugin
 pkgname=haskell-hls-explicit-imports-plugin
 pkgver=1.0.1.0
-pkgrel=78
+pkgrel=79
 pkgdesc="Explicit imports plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-explicit-imports-plugin;
 license=("Apache")



[arch-commits] Commit in haskell-incremental-parser/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:55:17
  Author: felixonmars
Revision: 1126912

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-incremental-parser/repos/community-staging-x86_64/
  haskell-incremental-parser/repos/community-staging-x86_64/PKGBUILD
(from rev 1126911, haskell-incremental-parser/trunk/PKGBUILD)

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

Copied: haskell-incremental-parser/repos/community-staging-x86_64/PKGBUILD 
(from rev 1126911, haskell-incremental-parser/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 02:55:17 UTC (rev 1126912)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=incremental-parser
+pkgname=haskell-incremental-parser
+pkgver=0.5.0.2
+pkgrel=85
+pkgdesc="Generic parser library capable of providing partial results from 
partial input."
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('GPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-input-parsers' 'haskell-monoid-subclasses' 
'haskell-parsers'
+ 'haskell-rank2classes')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-checkers' 'haskell-tasty'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('2a8627b680709e746e516091f4a3837f7fdb78c1612be971d4db801bcf1f32f581d111df72cd68e73063ce85debbc23e57b1c8f0017a4706e8554ad47276d168')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.txt"
+}



[arch-commits] Commit in haskell-incremental-parser/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:55:09
  Author: felixonmars
Revision: 1126911

upgpkg: haskell-incremental-parser 0.5.0.2-85: rebuild with monoid-subclasses 
1.1.3

Modified:
  haskell-incremental-parser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 02:54:36 UTC (rev 1126910)
+++ PKGBUILD2022-02-06 02:55:09 UTC (rev 1126911)
@@ -4,7 +4,7 @@
 _hkgname=incremental-parser
 pkgname=haskell-incremental-parser
 pkgver=0.5.0.2
-pkgrel=84
+pkgrel=85
 pkgdesc="Generic parser library capable of providing partial results from 
partial input."
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('GPL')



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

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:54:36
  Author: felixonmars
Revision: 1126910

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-ghcide/repos/community-staging-x86_64/
  haskell-ghcide/repos/community-staging-x86_64/PKGBUILD
(from rev 1126909, haskell-ghcide/trunk/PKGBUILD)

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

Copied: haskell-ghcide/repos/community-staging-x86_64/PKGBUILD (from rev 
1126909, haskell-ghcide/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 02:54:36 UTC (rev 1126910)
@@ -0,0 +1,81 @@
+# Maintainer: Felix Yan 
+
+_hkgname=ghcide
+pkgname=haskell-ghcide
+pkgver=1.4.1.0
+pkgrel=79
+pkgdesc="The core of an IDE"
+url="https://github.com/haskell/haskell-language-server/tree/master/ghcide#readme;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-diff' 'haskell-glob' 'haskell-aeson' 
'haskell-aeson-pretty'
+ 'haskell-async' 'haskell-base16-bytestring' 
'haskell-bytestring-encoding'
+ 'haskell-case-insensitive' 'haskell-cryptohash-sha1' 
'haskell-data-default'
+ 'haskell-dependent-map' 'haskell-dependent-sum' 'haskell-dlist' 
'haskell-extra'
+ 'haskell-fingertree' 'haskell-fuzzy' 'haskell-ghc' 
'haskell-ghc-api-compat'
+ 'haskell-ghc-check' 'haskell-ghc-exactprint' 'haskell-ghc-paths' 
'haskell-ghc-trace-events'
+ 'haskell-gitrev' 'haskell-haddock-library' 'haskell-hashable' 
'haskell-heapsize'
+ 'haskell-hie-bios' 'haskell-hie-compat' 'haskell-hiedb' 
'haskell-hls-graph'
+ 'haskell-hls-plugin-api' 'haskell-hslogger' 
'haskell-implicit-hie-cradle' 'haskell-lens'
+ 'haskell-lsp' 'haskell-lsp-test' 'haskell-lsp-types' 
'haskell-network-uri'
+ 'haskell-opentelemetry' 'haskell-optparse-applicative' 
'haskell-parallel'
+ 'haskell-prettyprinter' 'haskell-prettyprinter-ansi-terminal' 
'haskell-regex-tdfa'
+ 'haskell-retrie' 'haskell-rope-utf16-splay' 'haskell-safe' 
'haskell-safe-exceptions'
+ 'haskell-sorted-list' 'haskell-sqlite-simple' 'haskell-syb' 
'haskell-unliftio'
+ 'haskell-unliftio-core' 'haskell-unordered-containers' 
'haskell-utf8-string'
+ 'haskell-vector')
+makedepends=('ghc' 'uusi' 'haskell-quickcheck' 'haskell-ghc-typelits-knownnat'
+ 'haskell-implicit-hie' 'haskell-quickcheck-instances' 
'haskell-record-dot-preprocessor'
+ 'haskell-record-hasfield' 'haskell-tasty' 
'haskell-tasty-expected-failure'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun')
+checkdepends=('cabal-install')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('cea048a756cef35df6d90137b3cd70567cfbad485d4858a86e502770813c1e85e18f9971c46a9c8f25cca46445677343cbf57d6e43009848434bca1721b5f036')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  find test/data -name \*.cabal -exec uusi --add-options-all=-dynamic {} \;
+
+  uusi -u extra -r ghc:ghc,ghc-api-compat -u hiedb $_hkgname.cabal
+
+  # extra 1.7.10
+  sed -i "s/hiding (modifyVar, modifyVar_)/hiding (modifyVar, modifyVar_, 
modifyVar')/" src/Control/Concurrent/Strict.hs
+
+  # TODO: Skipped some broken tests for now
+  sed -i '/, benchmarkTests/d;/, findDefinitionAndHoverTests/d;/, 
bootTests/d;s/, simpleMultiDefTest//;s/echo A.hs/echo -dynamic > 
$HIE_BIOS_OUTPUT/' test/exe/Main.hs
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  cabal update
+  # Random test failures "Received an illegal message between the initialize 
request and response"
+  # th-linking-test-unboxed always fails too
+  PATH="$PWD/dist/build/ghcide:$PWD/dist/build/ghcide-test-preprocessor:$PATH" 
LD_LIBRARY_PATH="$PWD/dist/build" runhaskell Setup test || echo "Tests failed"
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f 

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

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:54:28
  Author: felixonmars
Revision: 1126909

upgpkg: haskell-ghcide 1.4.1.0-79: rebuild with monoid-subclasses 1.1.3

Modified:
  haskell-ghcide/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 02:39:38 UTC (rev 1126908)
+++ PKGBUILD2022-02-06 02:54:28 UTC (rev 1126909)
@@ -3,7 +3,7 @@
 _hkgname=ghcide
 pkgname=haskell-ghcide
 pkgver=1.4.1.0
-pkgrel=78
+pkgrel=79
 pkgdesc="The core of an IDE"
 
url="https://github.com/haskell/haskell-language-server/tree/master/ghcide#readme;
 license=("Apache")



[arch-commits] Commit in haskell-input-parsers/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:39:38
  Author: felixonmars
Revision: 1126908

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-input-parsers/repos/community-staging-x86_64/
  haskell-input-parsers/repos/community-staging-x86_64/PKGBUILD
(from rev 1126907, haskell-input-parsers/trunk/PKGBUILD)

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

Copied: haskell-input-parsers/repos/community-staging-x86_64/PKGBUILD (from rev 
1126907, haskell-input-parsers/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 02:39:38 UTC (rev 1126908)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=input-parsers
+pkgname=haskell-input-parsers
+pkgver=0.2.3
+pkgrel=42
+pkgdesc="Extension of the parsers library with more capability and efficiency"
+url="https://github.com/blamario/input-parsers;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-monoid-subclasses' 
'haskell-parsers')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('6db607bb49d94603c62243554c631a5e4e0ffb79dc5352b43e5ce0a23318f22796a4162275ab51ea979fe056970d21fe3a59df8e077fea702b3de4dbe50ea5a4')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-input-parsers/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:39:30
  Author: felixonmars
Revision: 1126907

upgpkg: haskell-input-parsers 0.2.3-42: rebuild with monoid-subclasses 1.1.3

Modified:
  haskell-input-parsers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 02:39:06 UTC (rev 1126906)
+++ PKGBUILD2022-02-06 02:39:30 UTC (rev 1126907)
@@ -3,7 +3,7 @@
 _hkgname=input-parsers
 pkgname=haskell-input-parsers
 pkgver=0.2.3
-pkgrel=41
+pkgrel=42
 pkgdesc="Extension of the parsers library with more capability and efficiency"
 url="https://github.com/blamario/input-parsers;
 license=('BSD')



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

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:39:06
  Author: felixonmars
Revision: 1126906

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-fuzzy/repos/community-staging-x86_64/
  haskell-fuzzy/repos/community-staging-x86_64/PKGBUILD
(from rev 1126905, haskell-fuzzy/trunk/PKGBUILD)

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

Copied: haskell-fuzzy/repos/community-staging-x86_64/PKGBUILD (from rev 
1126905, haskell-fuzzy/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 02:39:06 UTC (rev 1126906)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+_hkgname=fuzzy
+pkgname=haskell-fuzzy
+pkgver=0.1.0.1
+pkgrel=28
+pkgdesc="Filters a list based on a fuzzy string search."
+url="https://github.com/joom/fuzzy;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-monoid-subclasses')
+makedepends=('ghc' 'haskell-hunit')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('677f03be681c2943e6e5dd0badbc2b35fc78e2805fed999b53538b2fe0d5623fbc9b91218576f0bbe414e9cd5d03d7230698e966df4b258469630fba437c20e2')
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:38:57
  Author: felixonmars
Revision: 1126905

upgpkg: haskell-fuzzy 0.1.0.1-28: rebuild with monoid-subclasses 1.1.3

Modified:
  haskell-fuzzy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 02:38:21 UTC (rev 1126904)
+++ PKGBUILD2022-02-06 02:38:57 UTC (rev 1126905)
@@ -3,7 +3,7 @@
 _hkgname=fuzzy
 pkgname=haskell-fuzzy
 pkgver=0.1.0.1
-pkgrel=27
+pkgrel=28
 pkgdesc="Filters a list based on a fuzzy string search."
 url="https://github.com/joom/fuzzy;
 license=("MIT")



[arch-commits] Commit in haskell-monoid-subclasses/repos (2 files)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:38:21
  Author: felixonmars
Revision: 1126904

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-monoid-subclasses/repos/community-staging-x86_64/
  haskell-monoid-subclasses/repos/community-staging-x86_64/PKGBUILD
(from rev 1126903, haskell-monoid-subclasses/trunk/PKGBUILD)

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

Copied: haskell-monoid-subclasses/repos/community-staging-x86_64/PKGBUILD (from 
rev 1126903, haskell-monoid-subclasses/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-06 02:38:21 UTC (rev 1126904)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=monoid-subclasses
+pkgname=haskell-monoid-subclasses
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="Subclasses of Monoid"
+url="https://github.com/blamario/monoid-subclasses/;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-primes' 'haskell-vector')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-tasty'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('bbb83d43f24ba87ab0894fa8488b3d1393d573d88f9a03b216de8164449c471d2eb41c9e811c1e014bdd6cc8f0582230788a07a926fad3030e24b304fc1cc79f')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 "BSD3-LICENSE.txt" 
"${pkgdir}/usr/share/licenses/${pkgname}/BSD3-LICENSE.txt"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/BSD3-LICENSE.txt"
+}



[arch-commits] Commit in haskell-monoid-subclasses/trunk (PKGBUILD)

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:38:13
  Author: felixonmars
Revision: 1126903

upgpkg: haskell-monoid-subclasses 1.1.3-1: rebuild with monoid-subclasses 1.1.3

Modified:
  haskell-monoid-subclasses/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 02:30:01 UTC (rev 1126902)
+++ PKGBUILD2022-02-06 02:38:13 UTC (rev 1126903)
@@ -3,8 +3,8 @@
 
 _hkgname=monoid-subclasses
 pkgname=haskell-monoid-subclasses
-pkgver=1.1.2
-pkgrel=20
+pkgver=1.1.3
+pkgrel=1
 pkgdesc="Subclasses of Monoid"
 url="https://github.com/blamario/monoid-subclasses/;
 license=('BSD')
@@ -13,7 +13,7 @@
 makedepends=('ghc' 'haskell-quickcheck' 'haskell-quickcheck-instances' 
'haskell-tasty'
  'haskell-tasty-quickcheck')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('61937a85dfe1bf2438c18c20271b25744db4073f3fa5d8271c9b11457dc9515766a263ae1d960dd189885988197cd949c4e8cb7e9313ed79b59bd036bf88ae85')
+sha512sums=('bbb83d43f24ba87ab0894fa8488b3d1393d573d88f9a03b216de8164449c471d2eb41c9e811c1e014bdd6cc8f0582230788a07a926fad3030e24b304fc1cc79f')
 
 build() {
 cd $_hkgname-$pkgver



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

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:30:01
  Author: felixonmars
Revision: 1126902

archrelease: copy trunk to community-x86_64

Added:
  fishui/repos/community-x86_64/PKGBUILD
(from rev 1126901, fishui/trunk/PKGBUILD)
Deleted:
  fishui/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-02-06 02:29:51 UTC (rev 1126901)
+++ PKGBUILD2022-02-06 02:30:01 UTC (rev 1126902)
@@ -1,25 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=fishui
-pkgver=0.5
-pkgrel=1
-pkgdesc="GUI library based on QQC2 for Cutefish applications"
-arch=('x86_64')
-url="https://github.com/cutefishos/fishui;
-license=('GPL')
-depends=('kwindowsystem' 'qt5-declarative' 'qt5-graphicaleffects' 
'qt5-quickcontrols2')
-makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
-source=("https://github.com/cutefishos/fishui/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('562d435d210f098c955e24b95a89cbb1ab790635092814a4dc9c0df2c8c5aef963e2ae2c97f46b2e26a01a6875e50b26db1e58338794983cb010ea1ac6ada13a')
-
-build() {
-  cd $pkgname-$pkgver
-
-  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr .
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver
-  DESTDIR="$pkgdir" ninja install
-}

Copied: fishui/repos/community-x86_64/PKGBUILD (from rev 1126901, 
fishui/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-02-06 02:30:01 UTC (rev 1126902)
@@ -0,0 +1,25 @@
+# Maintainer: Felix Yan 
+
+pkgname=fishui
+pkgver=0.7
+pkgrel=1
+pkgdesc="GUI library based on QQC2 for Cutefish applications"
+arch=('x86_64')
+url="https://github.com/cutefishos/fishui;
+license=('GPL')
+depends=('kwindowsystem' 'qt5-declarative' 'qt5-graphicaleffects' 
'qt5-quickcontrols2')
+makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
+source=("https://github.com/cutefishos/fishui/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('64457670544b4968bc8a4ae60c641fdb51dc8bca3c84a5814d2fbb8fcaed1c7198f2609b106d837e5219cb11b2175ee94a0733837fc7659a6a4c1e2f742dc7e8')
+
+build() {
+  cd $pkgname-$pkgver
+
+  cmake -GNinja -DCMAKE_INSTALL_PREFIX=/usr .
+  ninja
+}
+
+package() {
+  cd $pkgname-$pkgver
+  DESTDIR="$pkgdir" ninja install
+}



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

2022-02-05 Thread Felix Yan via arch-commits
Date: Sunday, February 6, 2022 @ 02:29:51
  Author: felixonmars
Revision: 1126901

upgpkg: fishui 0.7-1

Modified:
  fishui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-06 00:12:40 UTC (rev 1126900)
+++ PKGBUILD2022-02-06 02:29:51 UTC (rev 1126901)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=fishui
-pkgver=0.5
+pkgver=0.7
 pkgrel=1
 pkgdesc="GUI library based on QQC2 for Cutefish applications"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('kwindowsystem' 'qt5-declarative' 'qt5-graphicaleffects' 
'qt5-quickcontrols2')
 makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools')
 
source=("https://github.com/cutefishos/fishui/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('562d435d210f098c955e24b95a89cbb1ab790635092814a4dc9c0df2c8c5aef963e2ae2c97f46b2e26a01a6875e50b26db1e58338794983cb010ea1ac6ada13a')
+sha512sums=('64457670544b4968bc8a4ae60c641fdb51dc8bca3c84a5814d2fbb8fcaed1c7198f2609b106d837e5219cb11b2175ee94a0733837fc7659a6a4c1e2f742dc7e8')
 
 build() {
   cd $pkgname-$pkgver



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Sunday, February 6, 2022 @ 00:12:40
  Author: arojas
Revision: 1126900

archrelease: copy trunk to community-testing-x86_64

Added:
  python-scipy/repos/community-testing-x86_64/
  python-scipy/repos/community-testing-x86_64/PKGBUILD
(from rev 1126899, python-scipy/trunk/PKGBUILD)

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

Copied: python-scipy/repos/community-testing-x86_64/PKGBUILD (from rev 1126899, 
python-scipy/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2022-02-06 00:12:40 UTC (rev 1126900)
@@ -0,0 +1,45 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Bodor Dávid Gábor 
+# Contributor: Andrzej Giniewicz 
+
+_name=scipy
+pkgname=python-scipy
+pkgver=1.8.0
+pkgrel=1
+pkgdesc='Open-source software for mathematics, science, and engineering'
+arch=(x86_64)
+url='https://www.scipy.org/'
+license=(BSD)
+depends=(python-numpy)
+provides=(scipy)
+makedepends=(gcc-fortran python-setuptools cython python-pythran pybind11)
+checkdepends=(python-pytest)
+optdepends=('python-pillow: for image saving module')
+source=(https://pypi.python.org/packages/source/${_name:0:1}/$_name/$_name-$pkgver.tar.gz)
+sha256sums=('31d4f2d6b724bc9a98e527b5849b8a7e589bf1ea630c33aa563eda912c9ff0bd')
+
+build() {
+  cd scipy-${pkgver}
+  python setup.py config_fc build
+}
+
+check() {
+  cd scipy-${pkgver}
+  python setup.py config_fc install \
+--prefix=/usr --root="$srcdir"/test --optimize=1
+  export PYTHONPATH="$srcdir"/test/usr/lib/python3.10/site-packages
+  cd ..
+  python -c "from scipy import test; test('full')"
+}
+
+package() {
+  cd scipy-$pkgver
+  python3 setup.py config_fc install \
+--prefix=/usr --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Sunday, February 6, 2022 @ 00:12:23
  Author: arojas
Revision: 1126899

Update to 1.8.0

Modified:
  python-scipy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-05 22:02:09 UTC (rev 1126898)
+++ PKGBUILD2022-02-06 00:12:23 UTC (rev 1126899)
@@ -8,8 +8,8 @@
 
 _name=scipy
 pkgname=python-scipy
-pkgver=1.7.3
-pkgrel=3
+pkgver=1.8.0
+pkgrel=1
 pkgdesc='Open-source software for mathematics, science, and engineering'
 arch=(x86_64)
 url='https://www.scipy.org/'
@@ -20,7 +20,7 @@
 checkdepends=(python-pytest)
 optdepends=('python-pillow: for image saving module')
 
source=(https://pypi.python.org/packages/source/${_name:0:1}/$_name/$_name-$pkgver.tar.gz)
-sha256sums=('ab5875facfdef77e0a47d5fd39ea178b58e60e454a4c85aa1e52fcb80db7babf')
+sha256sums=('31d4f2d6b724bc9a98e527b5849b8a7e589bf1ea630c33aa563eda912c9ff0bd')
 
 build() {
   cd scipy-${pkgver}



[arch-commits] Commit in qt6-5compat/repos (2 files)

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:34:09
  Author: arojas
Revision: 436302

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-5compat/repos/kde-unstable-x86_64/
  qt6-5compat/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436301, qt6-5compat/kde-unstable/PKGBUILD)

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

Copied: qt6-5compat/repos/kde-unstable-x86_64/PKGBUILD (from rev 436301, 
qt6-5compat/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:34:09 UTC (rev 436302)
@@ -0,0 +1,32 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-5compat
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Module that contains unsupported Qt 5 APIs'
+depends=(qt6-base)
+makedepends=(cmake ninja qt6-declarative)
+optdepends=('qt6-declarative: for QtGraphicalEffects')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('1d2f308c892d4c287d3322430affa85cccdd36e877a46eba6127b0e06b789c6a')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:33:58
  Author: arojas
Revision: 436301

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-webview/repos/kde-unstable-x86_64/
  qt6-webview/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436300, qt6-webview/kde-unstable/PKGBUILD)

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

Copied: qt6-webview/repos/kde-unstable-x86_64/PKGBUILD (from rev 436300, 
qt6-webview/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:33:58 UTC (rev 436301)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-webview
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Provides a way to display web content in a QML application'
+depends=(qt6-webengine)
+makedepends=(cmake ninja)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('453a2ac550f02d42f5820132d77ba45a7962587791202d84215ed3813241e367')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:33:48
  Author: arojas
Revision: 436300

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-wayland/repos/kde-unstable-x86_64/
  qt6-wayland/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436299, qt6-wayland/kde-unstable/PKGBUILD)

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

Copied: qt6-wayland/repos/kde-unstable-x86_64/PKGBUILD (from rev 436299, 
qt6-wayland/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:33:48 UTC (rev 436300)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-wayland
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Provides APIs for Wayland'
+depends=(qt6-declarative libxcomposite)
+makedepends=(cmake ninja)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('ddecc0ca56cf04c075b1d6c0dadf902e78db6257e0324caf227845adc8cc65b5')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:33:35
  Author: arojas
Revision: 436299

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-virtualkeyboard/repos/kde-unstable-x86_64/
  qt6-virtualkeyboard/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436298, qt6-virtualkeyboard/kde-unstable/PKGBUILD)

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

Copied: qt6-virtualkeyboard/repos/kde-unstable-x86_64/PKGBUILD (from rev 
436298, qt6-virtualkeyboard/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:33:35 UTC (rev 436299)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-virtualkeyboard
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Virtual keyboard framework'
+depends=(qt6-declarative qt6-svg hunspell)
+makedepends=(cmake ninja)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('56ad8932cd676338691c744ffdf598c48264967bdd16878328ce1d83945a416c')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:33:24
  Author: arojas
Revision: 436298

archrelease: copy kde-unstable to kde-unstable-any

Added:
  qt6-translations/repos/kde-unstable-any/
  qt6-translations/repos/kde-unstable-any/PKGBUILD
(from rev 436297, qt6-translations/kde-unstable/PKGBUILD)

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

Copied: qt6-translations/repos/kde-unstable-any/PKGBUILD (from rev 436297, 
qt6-translations/kde-unstable/PKGBUILD)
===
--- kde-unstable-any/PKGBUILD   (rev 0)
+++ kde-unstable-any/PKGBUILD   2022-02-05 23:33:24 UTC (rev 436298)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-translations
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(any)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='A cross-platform application and UI framework (Translations)'
+depends=()
+makedepends=(cmake ninja qt6-tools)
+groups=(qt6)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('7b3cb474f0ea79238b310e399c821e33d145505720233fb1692b1455f7e43fbf')
+
+build() {
+  export PATH="/usr/lib/qt6/bin:$PATH"
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build -j1
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:33:13
  Author: arojas
Revision: 436297

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-serialbus/repos/kde-unstable-x86_64/
  qt6-serialbus/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436296, qt6-serialbus/kde-unstable/PKGBUILD)

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

Copied: qt6-serialbus/repos/kde-unstable-x86_64/PKGBUILD (from rev 436296, 
qt6-serialbus/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:33:13 UTC (rev 436297)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-serialbus
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Qt module for general purpose serial bus access'
+depends=(qt6-serialport)
+makedepends=(cmake ninja)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('fc83dae007fd018d567bbc334536a4fdeb3b688e3aa16e7cd9f2d9003599cc3b')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:33:03
  Author: arojas
Revision: 436296

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-sensors/repos/kde-unstable-x86_64/
  qt6-sensors/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436295, qt6-sensors/kde-unstable/PKGBUILD)

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

Copied: qt6-sensors/repos/kde-unstable-x86_64/PKGBUILD (from rev 436295, 
qt6-sensors/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:33:03 UTC (rev 436296)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-sensors
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Provides access to sensor hardware and motion gesture recognition'
+depends=(qt6-connectivity)
+makedepends=(cmake ninja qt6-declarative)
+optdepends=('qt6-declarative: QML bindings')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('1d2536a4acf3c6308803e5ecf3735c2be711ffa94f1fda21ec44ba50be634918')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:32:53
  Author: arojas
Revision: 436295

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-scxml/repos/kde-unstable-x86_64/
  qt6-scxml/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436294, qt6-scxml/kde-unstable/PKGBUILD)

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

Copied: qt6-scxml/repos/kde-unstable-x86_64/PKGBUILD (from rev 436294, 
qt6-scxml/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:32:53 UTC (rev 436295)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-scxml
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Static and runtime integration of SCXML models into Qt6 code'
+depends=(qt6-base)
+makedepends=(cmake ninja qt6-declarative)
+optdepends=('qt6-declarative: QML bindings')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('b0a24a6ef3c23bcc7b14848ad886a1aaa5cf0ec1f2621b3b814b6cfe56bde0cf')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:32:42
  Author: arojas
Revision: 436294

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-remoteobjects/repos/kde-unstable-x86_64/
  qt6-remoteobjects/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436293, qt6-remoteobjects/kde-unstable/PKGBUILD)

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

Copied: qt6-remoteobjects/repos/kde-unstable-x86_64/PKGBUILD (from rev 436293, 
qt6-remoteobjects/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:32:42 UTC (rev 436294)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-remoteobjects
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Inter-process communication (IPC) module developed for Qt'
+depends=(qt6-base)
+makedepends=(cmake ninja qt6-declarative)
+optdepends=('qt6-declarative: QML bindings')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('14b8176cff0e1af59a79f42d80bf60b4950ab1d8969fa3e91ca207bfeaa0b97a')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:32:27
  Author: arojas
Revision: 436293

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-quick3d/repos/kde-unstable-x86_64/
  qt6-quick3d/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436292, qt6-quick3d/kde-unstable/PKGBUILD)

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

Copied: qt6-quick3d/repos/kde-unstable-x86_64/PKGBUILD (from rev 436292, 
qt6-quick3d/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:32:27 UTC (rev 436293)
@@ -0,0 +1,32 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-quick3d
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3)
+pkgdesc='Qt module and API for defining 3D content in Qt Quick'
+depends=(qt6-quicktimeline)
+makedepends=(cmake ninja qt6-shadertools assimp)
+optdepends=('qt6-shadertools: for shadergen' 'assimp: assimp import plugin')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('7c913d7b99386f4c6c7b37c1eb14b40edfd0861ed90f5517399be09a1b42cf40')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:32:16
  Author: arojas
Revision: 436292

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-networkauth/repos/kde-unstable-x86_64/
  qt6-networkauth/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436291, qt6-networkauth/kde-unstable/PKGBUILD)

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

Copied: qt6-networkauth/repos/kde-unstable-x86_64/PKGBUILD (from rev 436291, 
qt6-networkauth/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:32:16 UTC (rev 436292)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-networkauth
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Network authentication module'
+depends=(qt6-base)
+makedepends=(cmake ninja)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('9978eb62b2051e8ef1c51dc1fb9e078845cc1feeaa078f42227e482ee274f669')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:32:05
  Author: arojas
Revision: 436291

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-multimedia/repos/kde-unstable-x86_64/
  qt6-multimedia/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436290, qt6-multimedia/kde-unstable/PKGBUILD)

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

Copied: qt6-multimedia/repos/kde-unstable-x86_64/PKGBUILD (from rev 436290, 
qt6-multimedia/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:32:05 UTC (rev 436291)
@@ -0,0 +1,35 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-multimedia
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Classes for audio, video, radio and camera functionality'
+depends=(qt6-base gst-plugins-base)
+makedepends=(cmake ninja qt6-declarative qt6-shadertools libpulse)
+optdepends=('qt6-declarative: QML bindings'
+'gst-plugins-good: camera support, additional plugins'
+'gst-plugins-bad: camera support, additional plugins'
+'gst-plugins-ugly: additional plugins'
+'gst-libav: ffmpeg plugin')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('de3df9cad5ff2973e457c2a36a8520b146e2de933823de84b4180cb09305df6b')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:31:56
  Author: arojas
Revision: 436290

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-lottie/repos/kde-unstable-x86_64/
  qt6-lottie/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436289, qt6-lottie/kde-unstable/PKGBUILD)

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

Copied: qt6-lottie/repos/kde-unstable-x86_64/PKGBUILD (from rev 436289, 
qt6-lottie/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:31:56 UTC (rev 436290)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-lottie
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='A family of player software for a certain json-based file format for 
describing 2d vector graphics animations'
+depends=(qt6-base)
+makedepends=(cmake ninja qt6-declarative)
+optdepends=('qt6-declarative: QML bindings')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('8d0fabef4def816fc16fc3289ab046d977e8e551356cae132678fe3cbabac2f6')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:31:46
  Author: arojas
Revision: 436289

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-imageformats/repos/kde-unstable-x86_64/
  qt6-imageformats/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436288, qt6-imageformats/kde-unstable/PKGBUILD)

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

Copied: qt6-imageformats/repos/kde-unstable-x86_64/PKGBUILD (from rev 436288, 
qt6-imageformats/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:31:46 UTC (rev 436289)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-imageformats
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Plugins for additional image formats: TIFF, MNG, TGA, WBMP'
+depends=(qt6-base jasper libwebp libmng)
+makedepends=(cmake ninja)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('36f7dcbc54854109ea2f30d523a0ff963ef0c579a2fd7f648dd78e54f15fbb44')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



[arch-commits] Commit in qt6-doc/repos (kde-unstable-any kde-unstable-any/PKGBUILD)

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:31:26
  Author: arojas
Revision: 436288

archrelease: copy kde-unstable to kde-unstable-any

Added:
  qt6-doc/repos/kde-unstable-any/
  qt6-doc/repos/kde-unstable-any/PKGBUILD
(from rev 436287, qt6-doc/kde-unstable/PKGBUILD)

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

Copied: qt6-doc/repos/kde-unstable-any/PKGBUILD (from rev 436287, 
qt6-doc/kde-unstable/PKGBUILD)
===
--- kde-unstable-any/PKGBUILD   (rev 0)
+++ kde-unstable-any/PKGBUILD   2022-02-05 23:31:26 UTC (rev 436288)
@@ -0,0 +1,66 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgbase=qt6-doc
+pkgname=(qt6-doc qt6-examples)
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=('any')
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+makedepends=(cmake ninja mariadb-libs unixodbc postgresql alsa-lib 
gst-plugins-base-libs
+ gtk3 libpulse cups freetds vulkan-headers clang python llvm 
qt6-tools qt6-declarative)
+groups=(qt6)
+_pkgfn=qt-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/single/$_pkgfn.tar.xz)
+sha256sums=('69a50e3413cd12b667fcdaaf4bf4b442f015925daf07cea8d2d490d3d34de15b')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DQT_HOST_PATH=/usr \
+-DINSTALL_BINDIR=lib/qt6/bin \
+-DINSTALL_DOCDIR=share/doc/qt6 \
+-DINSTALL_ARCHDATADIR=lib/qt6 \
+-DINSTALL_DATADIR=share/qt6 \
+-DINSTALL_INCLUDEDIR=include/qt6 \
+-DINSTALL_MKSPECSDIR=lib/qt6/mkspecs \
+-DINSTALL_EXAMPLESDIR=share/doc/qt6/examples \
+-DQT_FEATURE_journald=ON \
+-DQT_FEATURE_openssl_linked=ON
+  cmake --build build --target docs
+}
+
+package_qt6-doc() {
+  pkgdesc='A cross-platform application and UI framework (Documentation)'
+  DESTDIR="$pkgdir" cmake --build build --target install_docs
+
+  install -Dm644 $_pkgfn/LICENSE* -t "$pkgdir"/usr/share/licenses/$pkgbase
+}
+
+package_qt6-examples() {
+  pkgdesc='Examples and demos from qt6 documentation'
+  depends=('qt6-doc')
+
+  _base="$pkgdir"/usr/share/doc/qt6/examples
+
+  # The various example dirs have conflicting .pro files, but
+  # QtCreator requires them to be in the same top-level directory.
+  # Matching the Qt5 installer, only the qtbase project is kept.
+  mkdir -p $_base
+  cp ${_pkgfn}/qtbase/examples/examples.pro $_base
+
+  _fdirs=$(find "${_pkgfn}" -maxdepth 2 -type d -name examples)
+  for _dir in $_fdirs; do
+  _mod=$(basename ${_dir%/examples})
+
+  if [ -e "$_dir/README" ]; then
+cp $_dir/README $_dir/README.$_mod
+  fi
+
+# mkdir $_base/$_mod
+  cp -rn $_dir/* $_base
+  done
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:31:13
  Author: arojas
Revision: 436287

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-datavis3d/repos/kde-unstable-x86_64/
  qt6-datavis3d/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436286, qt6-datavis3d/kde-unstable/PKGBUILD)

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

Copied: qt6-datavis3d/repos/kde-unstable-x86_64/PKGBUILD (from rev 436286, 
qt6-datavis3d/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:31:13 UTC (rev 436287)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-datavis3d
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Qt6 Data Visualization module'
+depends=(qt6-base)
+makedepends=(cmake ninja qt6-declarative)
+optdepends=('qt6-declarative: QML bindings')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('f204adb1ce8e08a9b364dd9c352378a75743a0e0728ada1ff350f44e003759d8')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:31:00
  Author: arojas
Revision: 436286

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-charts/repos/kde-unstable-x86_64/
  qt6-charts/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436285, qt6-charts/kde-unstable/PKGBUILD)

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

Copied: qt6-charts/repos/kde-unstable-x86_64/PKGBUILD (from rev 436285, 
qt6-charts/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:31:00 UTC (rev 436286)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-charts
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Provides a set of easy to use chart components'
+depends=(qt6-declarative)
+makedepends=(cmake ninja)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('57f13b39e4bd9b36853c272f40f5409745ba45b2ef27fdf0ee5dc775b0744675')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



[arch-commits] Commit in qt6-3d/repos (2 files)

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:30:47
  Author: arojas
Revision: 436285

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-3d/repos/kde-unstable-x86_64/
  qt6-3d/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436284, qt6-3d/kde-unstable/PKGBUILD)

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

Copied: qt6-3d/repos/kde-unstable-x86_64/PKGBUILD (from rev 436284, 
qt6-3d/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:30:47 UTC (rev 436285)
@@ -0,0 +1,32 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-3d
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='C++ and QML APIs for easy inclusion of 3D graphics'
+depends=(qt6-base)
+makedepends=(cmake ninja qt6-declarative qt6-shadertools assimp)
+optdepends=('qt6-shadertools: RHI renderer' 'qt6-declarative: QML bindings' 
'assimp: assimp importer plugin')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('2a2379a0e2a1ad71168aee4c5439a76307eb90af133a136dd6d9651525eeba9f')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:30:37
  Author: arojas
Revision: 436284

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-quicktimeline/repos/kde-unstable-x86_64/
  qt6-quicktimeline/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436283, qt6-quicktimeline/kde-unstable/PKGBUILD)

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

Copied: qt6-quicktimeline/repos/kde-unstable-x86_64/PKGBUILD (from rev 436283, 
qt6-quicktimeline/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:30:37 UTC (rev 436284)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-quicktimeline
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Qt module for keyframe-based timeline construction'
+depends=(qt6-declarative)
+makedepends=(cmake ninja)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('798167bbfcc39a58ae9dbc45c57aebdbad68a27e563aa8e61803ffca123d9c50')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:30:14
  Author: arojas
Revision: 436283

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-webengine/repos/kde-unstable-x86_64/
  qt6-webengine/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436282, qt6-webengine/kde-unstable/PKGBUILD)
  qt6-webengine/repos/kde-unstable-x86_64/chromium-93-ffmpeg-4.4.patch
(from rev 436282, qt6-webengine/kde-unstable/chromium-93-ffmpeg-4.4.patch)
  qt6-webengine/repos/kde-unstable-x86_64/chromium-94-ffmpeg-roll.patch
(from rev 436282, qt6-webengine/kde-unstable/chromium-94-ffmpeg-roll.patch)

---+
 PKGBUILD  |   52 
 chromium-93-ffmpeg-4.4.patch  |   36 +++
 chromium-94-ffmpeg-roll.patch |   49 +
 3 files changed, 137 insertions(+)

Copied: qt6-webengine/repos/kde-unstable-x86_64/PKGBUILD (from rev 436282, 
qt6-webengine/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:30:14 UTC (rev 436283)
@@ -0,0 +1,52 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-webengine
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Provides support for web applications using the Chromium browser 
project'
+depends=(qt6-webchannel qt6-positioning libxcomposite libxrandr libxkbfile 
+ libevent snappy nss libxslt minizip ffmpeg re2 libvpx libxtst 
ttf-font pciutils)
+makedepends=(cmake ninja python-html5lib gperf jsoncpp qt6-tools pipewire 
nodejs qt6-websockets)
+optdepends=('pipewire: WebRTC desktop sharing under Wayland')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz
+chromium-93-ffmpeg-4.4.patch
+chromium-94-ffmpeg-roll.patch)
+sha256sums=('0b46ac44c10f63d5a09bc5b1e750c1f143afbb00cdebc4a261835a5eb3d27e22'
+'1a9e074f417f8ffd78bcd6874d8e2e74a239905bf662f76a7755fa40dc476b57'
+'56acb6e743d2ab1ed9f3eb01700ade02521769978d03ac43226dec94659b3ace')
+
+prepare() {
+# Patches to build with ffmpeg 4.4; remove when ffmpeg 5.0 moves to stable
+  if ! pkg-config --atleast-version 59 libavformat; then
+patch -d $_pkgfn/src/3rdparty/chromium -p1 -i 
"$srcdir"/chromium-93-ffmpeg-4.4.patch
+patch -d $_pkgfn/src/3rdparty/chromium -Rp1 -i 
"$srcdir"/chromium-94-ffmpeg-roll.patch
+  fi
+}
+  
+build() {
+  cmake -B build -S $_pkgfn -G Ninja \
+-DCMAKE_TOOLCHAIN_FILE=/usr/lib/cmake/Qt6/qt.toolchain.cmake \
+-DQT_FEATURE_webengine_system_ffmpeg=ON \
+-DQT_FEATURE_webengine_system_icu=OFF \
+-DQT_FEATURE_webengine_system_libevent=ON \
+-DQT_FEATURE_webengine_system_libxslt=ON \
+-DQT_FEATURE_webengine_proprietary_codecs=ON \
+-DQT_FEATURE_webengine_kerberos=ON \
+-DQT_FEATURE_webengine_webrtc_pipewire=ON \
+-DQT_FEATURE_webengine_full_debug_info=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -Dm644 "$srcdir"/${_pkgfn}/src/3rdparty/chromium/LICENSE 
"$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.chromium
+}

Copied: qt6-webengine/repos/kde-unstable-x86_64/chromium-93-ffmpeg-4.4.patch 
(from rev 436282, qt6-webengine/kde-unstable/chromium-93-ffmpeg-4.4.patch)
===
--- kde-unstable-x86_64/chromium-93-ffmpeg-4.4.patch
(rev 0)
+++ kde-unstable-x86_64/chromium-93-ffmpeg-4.4.patch2022-02-05 23:30:14 UTC 
(rev 436283)
@@ -0,0 +1,36 @@
+diff --git a/media/filters/ffmpeg_demuxer.cc b/media/filters/ffmpeg_demuxer.cc
+index ac4713b07268..492a9a37d096 100644
+--- a/media/filters/ffmpeg_demuxer.cc
 b/media/filters/ffmpeg_demuxer.cc
+@@ -427,11 +427,11 @@ void FFmpegDemuxerStream::EnqueuePacket(ScopedAVPacket 
packet) {
+   scoped_refptr buffer;
+ 
+   if (type() == DemuxerStream::TEXT) {
+-size_t id_size = 0;
++int id_size = 0;
+ uint8_t* id_data = av_packet_get_side_data(
+ packet.get(), AV_PKT_DATA_WEBVTT_IDENTIFIER, _size);
+ 
+-size_t settings_size = 0;
++int settings_size = 0;
+ uint8_t* settings_data = av_packet_get_side_data(
+ packet.get(), AV_PKT_DATA_WEBVTT_SETTINGS, _size);
+ 
+@@ -443,7 +443,7 @@ void FFmpegDemuxerStream::EnqueuePacket(ScopedAVPacket 
packet) {
+ buffer = DecoderBuffer::CopyFrom(packet->data, packet->size,
+  side_data.data(), side_data.size());
+   } else {
+-size_t side_data_size = 0;
++int side_data_size = 0;
+ uint8_t* side_data = av_packet_get_side_data(
+ packet.get(), AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL, _data_size);
+ 
+@@ -504,7 +504,7 

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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:29:58
  Author: arojas
Revision: 436282

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-webchannel/repos/kde-unstable-x86_64/
  qt6-webchannel/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436281, qt6-webchannel/kde-unstable/PKGBUILD)

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

Copied: qt6-webchannel/repos/kde-unstable-x86_64/PKGBUILD (from rev 436281, 
qt6-webchannel/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:29:58 UTC (rev 436282)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-webchannel
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Provides access to QObject or QML objects from HTML clients for 
seamless integration of Qt applications with HTML/JavaScript clients'
+depends=(qt6-declarative)
+makedepends=(cmake ninja qt6-websockets)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('9339df1c9fd359c1230139a4bdf05237ac55f6fe34c1d4cd7a64da3879475b6e')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:29:47
  Author: arojas
Revision: 436281

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-websockets/repos/kde-unstable-x86_64/
  qt6-websockets/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436280, qt6-websockets/kde-unstable/PKGBUILD)

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

Copied: qt6-websockets/repos/kde-unstable-x86_64/PKGBUILD (from rev 436280, 
qt6-websockets/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:29:47 UTC (rev 436281)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-websockets
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Provides WebSocket communication compliant with RFC 6455'
+depends=(qt6-base)
+makedepends=(cmake ninja qt6-declarative)
+optdepends=('qt6-declarative: QML bindings')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('b365005114fd0ba29a8a5012e83cdef9f5a70cbaedf39750b994efd36ab8b1c2')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:29:36
  Author: arojas
Revision: 436280

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-svg/repos/kde-unstable-x86_64/
  qt6-svg/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436279, qt6-svg/kde-unstable/PKGBUILD)

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

Copied: qt6-svg/repos/kde-unstable-x86_64/PKGBUILD (from rev 436279, 
qt6-svg/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:29:36 UTC (rev 436280)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-svg
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Classes for displaying the contents of SVG files'
+depends=(qt6-base)
+makedepends=(cmake ninja)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('3ccb9730489f51021c38b9185cc2e0a9b6532b353417573b7d07709c48bfd809')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:29:22
  Author: arojas
Revision: 436279

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-positioning/repos/kde-unstable-x86_64/
  qt6-positioning/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436278, qt6-positioning/kde-unstable/PKGBUILD)

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

Copied: qt6-positioning/repos/kde-unstable-x86_64/PKGBUILD (from rev 436278, 
qt6-positioning/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:29:22 UTC (rev 436279)
@@ -0,0 +1,34 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-positioning
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Provides access to position, satellite and area monitoring classes'
+depends=(qt6-base)
+makedepends=(cmake ninja qt6-declarative qt6-serialport)
+optdepends=('qt6-declarative: QML bindings' 'qt6-serialport: NMEA plugin')
+conflicts=(qt6-location)
+provides=(qt6-location)
+replaces=(qt6-location)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('bd519ac884bfbec1488c86881c30a6a26ef93bcc481536d277825ea5ab81d8e2')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:29:13
  Author: arojas
Revision: 436278

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-connectivity/repos/kde-unstable-x86_64/
  qt6-connectivity/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436277, qt6-connectivity/kde-unstable/PKGBUILD)

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

Copied: qt6-connectivity/repos/kde-unstable-x86_64/PKGBUILD (from rev 436277, 
qt6-connectivity/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:29:13 UTC (rev 436278)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-connectivity
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Provides access to Bluetooth hardware'
+depends=(qt6-base bluez-libs)
+makedepends=(cmake ninja qt6-declarative)
+optdepends=('qt6-declarative: QML bindings')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('0f515931d435da692cb82f0b7178f613dfdd4b4ed3f135b57242986ffb4af6da')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:29:03
  Author: arojas
Revision: 436277

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-serialport/repos/kde-unstable-x86_64/
  qt6-serialport/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436276, qt6-serialport/kde-unstable/PKGBUILD)

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

Copied: qt6-serialport/repos/kde-unstable-x86_64/PKGBUILD (from rev 436276, 
qt6-serialport/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:29:03 UTC (rev 436277)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-serialport
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Provides access to hardware and virtual serial ports'
+depends=(qt6-base)
+makedepends=(cmake ninja)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('bdfa72ed80a21530e812dba846a8d6b026b238b61cb18674e6607b5023dc8b6d')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:28:49
  Author: arojas
Revision: 436276

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-tools/repos/kde-unstable-x86_64/
  qt6-tools/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436275, qt6-tools/kde-unstable/PKGBUILD)

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

Copied: qt6-tools/repos/kde-unstable-x86_64/PKGBUILD (from rev 436275, 
qt6-tools/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:28:49 UTC (rev 436276)
@@ -0,0 +1,40 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-tools
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='A cross-platform application and UI framework (Development Tools, 
QtHelp)'
+depends=(qt6-base)
+makedepends=(cmake ninja qt6-declarative clang llvm)
+optdepends=('qt6-declarative: for qdoc' 'clang: for qdoc and lupdate')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('634256bf81e17f63d7e1e85d056cd14cbcdfa4cd0cd993c97f72efbd79b9')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja \
+-DINSTALL_PUBLICBINDIR=usr/bin
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+# Install symlinks for user-facing tools
+  cd "$pkgdir"
+  mkdir usr/bin
+  while read _line; do
+ln -s $_line
+  done < "$srcdir"/build/user_facing_tool_links.txt
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:28:20
  Author: arojas
Revision: 436275

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-declarative/repos/kde-unstable-x86_64/
  qt6-declarative/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436274, qt6-declarative/kde-unstable/PKGBUILD)

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

Copied: qt6-declarative/repos/kde-unstable-x86_64/PKGBUILD (from rev 436274, 
qt6-declarative/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:28:20 UTC (rev 436275)
@@ -0,0 +1,44 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-declarative
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Classes for QML and JavaScript languages'
+depends=(qt6-base)
+makedepends=(cmake ninja python at-spi2-core qt6-shadertools 
qt6-languageserver)
+optdepends=('qt6-languageserver: for qmlls')
+conflicts=(qt6-quickcontrols2)
+provides=(qt6-quickcontrols2)
+replaces=(qt6-quickcontrols2)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('29e66fb972a28ab7fdec7317ebe1675da17bec7d7fe3e9a0791dac3e8086e087')
+
+build() {
+  export CXXFLAGS+=" -ffat-lto-objects"
+  cmake -B build -S $_pkgfn -G Ninja \
+-DINSTALL_PUBLICBINDIR=usr/bin
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+# Install symlinks for user-facing tools
+  cd "$pkgdir"
+  mkdir usr/bin
+  while read _line; do
+ln -s $_line
+  done < "$srcdir"/build/user_facing_tool_links.txt
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



[arch-commits] Commit in qt6-languageserver (3 files)

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:28:00
  Author: arojas
Revision: 436274

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-languageserver/repos/
  qt6-languageserver/repos/kde-unstable-x86_64/
  qt6-languageserver/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436273, qt6-languageserver/kde-unstable/PKGBUILD)

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

Copied: qt6-languageserver/repos/kde-unstable-x86_64/PKGBUILD (from rev 436273, 
qt6-languageserver/kde-unstable/PKGBUILD)
===
--- repos/kde-unstable-x86_64/PKGBUILD  (rev 0)
+++ repos/kde-unstable-x86_64/PKGBUILD  2022-02-05 23:28:00 UTC (rev 436274)
@@ -0,0 +1,30 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+
+pkgname=qt6-languageserver
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='An implementation of the Language Server Protocol'
+depends=(qt6-base)
+makedepends=(cmake ninja)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('1371b88d0e071d28e23efcedceb56e0735cd6897768ade596698bf25e4f20869')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:27:50
  Author: arojas
Revision: 436273

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-shadertools/repos/kde-unstable-x86_64/
  qt6-shadertools/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436272, qt6-shadertools/kde-unstable/PKGBUILD)

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

Copied: qt6-shadertools/repos/kde-unstable-x86_64/PKGBUILD (from rev 436272, 
qt6-shadertools/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:27:50 UTC (rev 436273)
@@ -0,0 +1,31 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-shadertools
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3)
+pkgdesc='Provides functionality for the shader pipeline that allows Qt Quick 
to operate on Vulkan, Metal, and Direct3D, in addition to OpenGL'
+depends=(qt6-base)
+makedepends=(cmake ninja)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('c09efc62187b07b7bd02e264ec6f412629e138761053f9311671485c3281f71e')
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



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

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:27:29
  Author: arojas
Revision: 436272

archrelease: copy kde-unstable to kde-unstable-x86_64

Added:
  qt6-base/repos/kde-unstable-x86_64/
  qt6-base/repos/kde-unstable-x86_64/PKGBUILD
(from rev 436271, qt6-base/kde-unstable/PKGBUILD)
  qt6-base/repos/kde-unstable-x86_64/qt6-base-cflags.patch
(from rev 436271, qt6-base/kde-unstable/qt6-base-cflags.patch)
  qt6-base/repos/kde-unstable-x86_64/qt6-base-nostrip.patch
(from rev 436271, qt6-base/kde-unstable/qt6-base-nostrip.patch)

+
 PKGBUILD   |   74 +++
 qt6-base-cflags.patch  |   46 +
 qt6-base-nostrip.patch |   13 
 3 files changed, 133 insertions(+)

Copied: qt6-base/repos/kde-unstable-x86_64/PKGBUILD (from rev 436271, 
qt6-base/kde-unstable/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2022-02-05 23:27:29 UTC (rev 436272)
@@ -0,0 +1,74 @@
+# Maintainer: Antonio Rojas 
+# Maintainer: Felix Yan 
+# Contributor: Andrea Scarpino 
+
+pkgname=qt6-base
+_qtver=6.3.0-beta1
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='A cross-platform application and UI framework'
+depends=(libjpeg-turbo xcb-util-keysyms xcb-util-cursor libgl fontconfig 
xdg-utils
+ shared-mime-info xcb-util-wm libxrender libxi sqlite mesa 
vulkan-headers
+ tslib libinput libxkbcommon-x11 libproxy libcups double-conversion 
brotli libb2 md4c)
+makedepends=(cmake ninja libfbclient mariadb-libs unixodbc postgresql alsa-lib 
gst-plugins-base-libs
+ gtk3 libpulse cups freetds xmlstarlet)
+optdepends=('qt6-wayland: to run Qt6 applications in a Wayland session'
+'postgresql-libs: PostgreSQL driver'
+'mariadb-libs: MariaDB driver'
+'unixodbc: ODBC driver'
+'libfbclient: Firebird/iBase driver'
+'freetds: MS SQL driver'
+'gtk3: GTK platform plugin'
+'perl: for syncqt')
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz
+qt6-base-cflags.patch
+qt6-base-nostrip.patch)
+sha256sums=('66a95fd9550472c868bc4b97509ef033daa1f3fd93cad779928852f3646edbbd'
+'5411edbe215c24b30448fac69bd0ba7c882f545e8cf05027b2b6e2227abc5e78'
+'4b93f6a79039e676a56f9d6990a324a64a36f143916065973ded89adc621e094')
+
+prepare() {
+  patch -d $_pkgfn -p1 < qt6-base-cflags.patch # Use system CFLAGS
+  patch -d $_pkgfn -p1 < qt6-base-nostrip.patch # Don't strip binaries with 
qmake
+}
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
+-DINSTALL_BINDIR=lib/qt6/bin \
+-DINSTALL_PUBLICBINDIR=usr/bin \
+-DINSTALL_LIBEXECDIR=lib/qt6 \
+-DINSTALL_DOCDIR=share/doc/qt6 \
+-DINSTALL_ARCHDATADIR=lib/qt6 \
+-DINSTALL_DATADIR=share/qt6 \
+-DINSTALL_INCLUDEDIR=include/qt6 \
+-DINSTALL_MKSPECSDIR=lib/qt6/mkspecs \
+-DINSTALL_EXAMPLESDIR=share/doc/qt6/examples \
+-DQT_FEATURE_journald=ON \
+-DQT_FEATURE_openssl_linked=ON \
+-DQT_FEATURE_system_sqlite=ON \
+-DQT_FEATURE_system_xcb_xinput=ON \
+-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON
+  cmake --build build
+}
+
+package() {
+  depends+=(qt6-translations)
+  DESTDIR="$pkgdir" cmake --install build
+
+  install -Dm644 $_pkgfn/LICENSE* -t "$pkgdir"/usr/share/licenses/$pkgbase
+
+# Install symlinks for user-facing tools
+  cd "$pkgdir"
+  mkdir usr/bin
+  while read _line; do
+ln -s $_line
+  done < "$srcdir"/build/user_facing_tool_links.txt
+}

Copied: qt6-base/repos/kde-unstable-x86_64/qt6-base-cflags.patch (from rev 
436271, qt6-base/kde-unstable/qt6-base-cflags.patch)
===
--- kde-unstable-x86_64/qt6-base-cflags.patch   (rev 0)
+++ kde-unstable-x86_64/qt6-base-cflags.patch   2022-02-05 23:27:29 UTC (rev 
436272)
@@ -0,0 +1,46 @@
+diff --git a/mkspecs/common/g++-unix.conf b/mkspecs/common/g++-unix.conf
+index a493cd5984..41342f5020 100644
+--- a/mkspecs/common/g++-unix.conf
 b/mkspecs/common/g++-unix.conf
+@@ -10,5 +10,6 @@
+ 
+ include(g++-base.conf)
+ 
+-QMAKE_LFLAGS_RELEASE   += -Wl,-O1
++SYSTEM_LDFLAGS = $$(LDFLAGS)
++!isEmpty(SYSTEM_LDFLAGS) { eval(QMAKE_LFLAGS_RELEASE += $$(LDFLAGS)) } else { 
QMAKE_LFLAGS_RELEASE   += -Wl,-O1 }
+ QMAKE_LFLAGS_NOUNDEF   += -Wl,--no-undefined
+diff --git a/mkspecs/common/gcc-base.conf b/mkspecs/common/gcc-base.conf
+index 1f919d270a..7ef6046326 100644
+--- a/mkspecs/common/gcc-base.conf
 b/mkspecs/common/gcc-base.conf
+@@ -40,9 +40,11 @@ QMAKE_CFLAGS_OPTIMIZE_SIZE = -Os
+ QMAKE_CFLAGS_DEPS  

[arch-commits] Commit in (67 files)

2022-02-05 Thread Antonio Rojas via arch-commits
Date: Saturday, February 5, 2022 @ 23:14:01
  Author: arojas
Revision: 436271

Qt 6.3 beta 1

Added:
  qt6-3d/kde-unstable/
  qt6-5compat/kde-unstable/
  qt6-base/kde-unstable/
  qt6-charts/kde-unstable/
  qt6-connectivity/kde-unstable/
  qt6-datavis3d/kde-unstable/
  qt6-declarative/kde-unstable/
  qt6-doc/kde-unstable/
  qt6-imageformats/kde-unstable/
  qt6-languageserver/
  qt6-languageserver/kde-unstable/
  qt6-languageserver/kde-unstable/PKGBUILD
  qt6-lottie/kde-unstable/
  qt6-multimedia/kde-unstable/
  qt6-networkauth/kde-unstable/
  qt6-positioning/kde-unstable/
  qt6-quick3d/kde-unstable/
  qt6-quicktimeline/kde-unstable/
  qt6-remoteobjects/kde-unstable/
  qt6-scxml/kde-unstable/
  qt6-sensors/kde-unstable/
  qt6-serialbus/kde-unstable/
  qt6-serialport/kde-unstable/
  qt6-shadertools/kde-unstable/
  qt6-svg/kde-unstable/
  qt6-tools/kde-unstable/
  qt6-translations/kde-unstable/
  qt6-virtualkeyboard/kde-unstable/
  qt6-wayland/kde-unstable/
  qt6-webchannel/kde-unstable/
  qt6-webengine/kde-unstable/
  qt6-webengine/kde-unstable/chromium-93-ffmpeg-4.4.patch
  qt6-webengine/kde-unstable/chromium-94-ffmpeg-roll.patch
  qt6-websockets/kde-unstable/
  qt6-webview/kde-unstable/
Modified:
  qt6-3d/kde-unstable/PKGBUILD
  qt6-5compat/kde-unstable/PKGBUILD
  qt6-base/kde-unstable/PKGBUILD
  qt6-charts/kde-unstable/PKGBUILD
  qt6-connectivity/kde-unstable/PKGBUILD
  qt6-datavis3d/kde-unstable/PKGBUILD
  qt6-declarative/kde-unstable/PKGBUILD
  qt6-doc/kde-unstable/PKGBUILD
  qt6-imageformats/kde-unstable/PKGBUILD
  qt6-lottie/kde-unstable/PKGBUILD
  qt6-multimedia/kde-unstable/PKGBUILD
  qt6-networkauth/kde-unstable/PKGBUILD
  qt6-positioning/kde-unstable/PKGBUILD
  qt6-quick3d/kde-unstable/PKGBUILD
  qt6-quicktimeline/kde-unstable/PKGBUILD
  qt6-remoteobjects/kde-unstable/PKGBUILD
  qt6-scxml/kde-unstable/PKGBUILD
  qt6-sensors/kde-unstable/PKGBUILD
  qt6-serialbus/kde-unstable/PKGBUILD
  qt6-serialport/kde-unstable/PKGBUILD
  qt6-shadertools/kde-unstable/PKGBUILD
  qt6-svg/kde-unstable/PKGBUILD
  qt6-tools/kde-unstable/PKGBUILD
  qt6-translations/kde-unstable/PKGBUILD
  qt6-virtualkeyboard/kde-unstable/PKGBUILD
  qt6-wayland/kde-unstable/PKGBUILD
  qt6-webchannel/kde-unstable/PKGBUILD
  qt6-webengine/kde-unstable/PKGBUILD
  qt6-websockets/kde-unstable/PKGBUILD
  qt6-webview/kde-unstable/PKGBUILD
Deleted:
  qt6-quick3d/kde-unstable/qt6-quick3d-assimp-5.1.patch
  qt6-webengine/kde-unstable/qt6-webengine-ffmpeg5.patch

--+
 PKGBUILD |  335 ++---
 qt6-languageserver/kde-unstable/PKGBUILD |   30 +
 qt6-quick3d-assimp-5.1.patch |  137 -
 qt6-webengine-ffmpeg5.patch  |  150 -
 qt6-webengine/kde-unstable/chromium-93-ffmpeg-4.4.patch  |   36 +
 qt6-webengine/kde-unstable/chromium-94-ffmpeg-roll.patch |   49 +
 6 files changed, 284 insertions(+), 453 deletions(-)

Modified: qt6-3d/kde-unstable/PKGBUILD
===
--- qt6-3d/trunk/PKGBUILD   2022-02-04 18:12:59 UTC (rev 436192)
+++ qt6-3d/kde-unstable/PKGBUILD2022-02-05 23:14:01 UTC (rev 436271)
@@ -3,9 +3,9 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=qt6-3d
-_qtver=6.2.3
+_qtver=6.3.0-beta1
 pkgver=${_qtver/-/}
-pkgrel=2
+pkgrel=1
 arch=(x86_64)
 url='https://www.qt.io'
 license=(GPL3 LGPL3 FDL custom)
@@ -15,9 +15,9 @@
 optdepends=('qt6-shadertools: RHI renderer' 'qt6-declarative: QML bindings' 
'assimp: assimp importer plugin')
 groups=(qt6)
 options=(debug)
-_pkgfn="${pkgname/6-/}-everywhere-src-$_qtver"
-source=(https://download.qt.io/official_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
-sha256sums=('7ae9b513a88e729bf7db5e0e5c8d38b62e1c06f968aa620db423cd102dbbc85d')
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/development_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('2a2379a0e2a1ad71168aee4c5439a76307eb90af133a136dd6d9651525eeba9f')
 
 build() {
   cmake -B build -S $_pkgfn -G Ninja

Modified: qt6-5compat/kde-unstable/PKGBUILD
===
--- qt6-5compat/trunk/PKGBUILD  2022-02-04 18:12:59 UTC (rev 436192)
+++ qt6-5compat/kde-unstable/PKGBUILD   2022-02-05 23:14:01 UTC (rev 436271)
@@ -3,9 +3,9 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=qt6-5compat
-_qtver=6.2.3
+_qtver=6.3.0-beta1
 pkgver=${_qtver/-/}
-pkgrel=2
+pkgrel=1
 arch=(x86_64)
 url='https://www.qt.io'
 license=(GPL3 LGPL3 FDL custom)
@@ -15,9 +15,9 @@
 optdepends=('qt6-declarative: for QtGraphicalEffects')
 groups=(qt6)
 options=(debug)
-_pkgfn="${pkgname/6-/}-everywhere-src-$_qtver"
-source=(https://download.qt.io/official_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
-sha256sums=('1cf89198cf2cf8a5c15336ccd69fa1f39b779feb64117d6bbf5509c21c123f53')

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

2022-02-05 Thread Sven-Hendrik Haase via arch-commits
Date: Saturday, February 5, 2022 @ 22:02:09
  Author: svenstaro
Revision: 1126898

Prepare 1.11.0rc1

Modified:
  python-pytorch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-05 21:06:07 UTC (rev 1126897)
+++ PKGBUILD2022-02-05 22:02:09 UTC (rev 1126898)
@@ -4,8 +4,8 @@
 pkgbase=python-pytorch
 pkgname=("python-pytorch" "python-pytorch-cuda")
 _pkgname="pytorch"
-pkgver=1.10.2
-_pkgver=1.10.2
+pkgver=1.11.0rc1
+_pkgver=1.11.0-rc1
 pkgrel=2
 _pkgdesc='Tensors and Dynamic neural networks in Python with strong GPU 
acceleration'
 pkgdesc="${_pkgdesc}"
@@ -19,43 +19,45 @@
  'cudnn' 'git' 'magma' 'ninja' 'pkgconfig' 'doxygen')
 
source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$_pkgver;
 # generated using parse-submodules
-"${pkgname}-ios-cmake::git+https://github.com/Yangqing/ios-cmake.git;
+"${pkgname}::https://github.com/pytorch/pytorch#commit=7cc129e60c;
 
"${pkgname}-pthreadpool::git+https://github.com/Maratyszcza/pthreadpool.git;
-"${pkgname}-FP16::git+https://github.com/Maratyszcza/FP16.git;
 "${pkgname}-NNPACK::git+https://github.com/Maratyszcza/NNPACK.git;
+"${pkgname}-ios-cmake::git+https://github.com/Yangqing/ios-cmake.git;
+"${pkgname}-psimd::git+https://github.com/Maratyszcza/psimd.git;
 "${pkgname}-FXdiv::git+https://github.com/Maratyszcza/FXdiv.git;
-"${pkgname}-PeachPy::git+https://github.com/Maratyszcza/PeachPy.git;
+"${pkgname}-FP16::git+https://github.com/Maratyszcza/FP16.git;
 "${pkgname}-cub::git+https://github.com/NVlabs/cub.git;
-"${pkgname}-psimd::git+https://github.com/Maratyszcza/psimd.git;
+
"${pkgname}-eigen-git-mirror::git+https://github.com/eigenteam/eigen-git-mirror.git;
 "${pkgname}-cpuinfo::git+https://github.com/pytorch/cpuinfo.git;
 "${pkgname}-enum34::git+https://github.com/PeachPy/enum34.git;
+"${pkgname}-PeachPy::git+https://github.com/Maratyszcza/PeachPy.git;
+"${pkgname}-gloo::git+https://github.com/facebookincubator/gloo;
+"${pkgname}-foxi::git+https://github.com/houseroad/foxi.git;
 "${pkgname}-ideep::git+https://github.com/intel/ideep;
+"${pkgname}-benchmark::git+https://github.com/google/benchmark.git;
 "${pkgname}-QNNPACK::git+https://github.com/pytorch/QNNPACK;
-"${pkgname}-foxi::git+https://github.com/houseroad/foxi.git;
+"${pkgname}-six::git+https://github.com/benjaminp/six.git;
 
"${pkgname}-ARM_NEON_2_x86_SSE::git+https://github.com/intel/ARM_NEON_2_x86_SSE.git;
-"${pkgname}-six::git+https://github.com/benjaminp/six.git;
-
"${pkgname}-eigen-git-mirror::git+https://github.com/eigenteam/eigen-git-mirror.git;
-"${pkgname}-gloo::git+https://github.com/facebookincubator/gloo;
-"${pkgname}-nccl::git+https://github.com/NVIDIA/nccl;
+"${pkgname}-sleef::git+https://github.com/shibatch/sleef;
+"${pkgname}-fbjni::git+https://github.com/facebookincubator/fbjni.git;
 "${pkgname}-gemmlowp::git+https://github.com/google/gemmlowp.git;
-"${pkgname}-kineto::git+https://github.com/pytorch/kineto;
-"${pkgname}-sleef::git+https://github.com/shibatch/sleef;
 "${pkgname}-onnx-tensorrt::git+https://github.com/onnx/onnx-tensorrt;
 "${pkgname}-pocketfft::git+https://github.com/mreineck/pocketfft;
 
"${pkgname}-cudnn-frontend::git+https://github.com/NVIDIA/cudnn-frontend.git;
-"${pkgname}-benchmark::git+https://github.com/google/benchmark.git;
-"${pkgname}-tbb::git+https://github.com/01org/tbb;
-"${pkgname}-XNNPACK::git+https://github.com/google/XNNPACK.git;
-"${pkgname}-fbjni::git+https://github.com/facebookincubator/fbjni.git;
-"${pkgname}-tensorpipe::git+https://github.com/pytorch/tensorpipe.git;
+"${pkgname}-nccl::git+https://github.com/NVIDIA/nccl;
+"${pkgname}-googletest::git+https://github.com/google/googletest.git;
 "${pkgname}-pybind11::git+https://github.com/pybind/pybind11.git;
 "${pkgname}-breakpad::git+https://github.com/driazati/breakpad.git;
+"${pkgname}-zstd::git+https://github.com/facebook/zstd.git;
+"${pkgname}-tbb::git+https://github.com/01org/tbb;
 "${pkgname}-fbgemm::git+https://github.com/pytorch/fbgemm;
-"${pkgname}-googletest::git+https://github.com/google/googletest.git;
-"${pkgname}-zstd::git+https://github.com/facebook/zstd.git;
+"${pkgname}-tensorpipe::git+https://github.com/pytorch/tensorpipe.git;
+"${pkgname}-kineto::git+https://github.com/pytorch/kineto;
 "${pkgname}-onnx::git+https://github.com/onnx/onnx.git;
+

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

2022-02-05 Thread Christian Hesse via arch-commits
Date: Saturday, February 5, 2022 @ 21:12:46
  Author: eworm
Revision: 436270

archrelease: copy trunk to testing-x86_64

Added:
  inkscape/repos/testing-x86_64/
  inkscape/repos/testing-x86_64/PKGBUILD
(from rev 436269, inkscape/trunk/PKGBUILD)

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

Copied: inkscape/repos/testing-x86_64/PKGBUILD (from rev 436269, 
inkscape/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-02-05 21:12:46 UTC (rev 436270)
@@ -0,0 +1,77 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Kieslich 
+# Contributor: tobias 
+
+pkgname=inkscape
+pkgver=1.1.2
+_tag='0a00cf5339ab09436cbe123d22e98fb791619733' # git rev-parse 
INKSCAPE_${pkgver/./_}
+pkgrel=1
+pkgdesc='Professional vector graphics editor'
+url='https://inkscape.org/'
+license=('GPL' 'LGPL')
+arch=('x86_64')
+makedepends=('cmake' 'boost' 'git')
+
+depends=(
+   'dbus-glib'
+   'double-conversion'
+   'gc'
+   'graphicsmagick'
+   'gsl'
+   'gspell'
+   'gtkmm3'
+   'lcms2'
+   'lib2geom'
+   'libcdr'
+   'libjpeg-turbo'
+   'libvisio'
+   'libxslt'
+   'poppler-glib'
+   'potrace'
+   'python'
+   'ttf-font'
+)
+
+optdepends=(
+   'fig2dev: xfig input'
+   'gvfs: import clip art'
+   'pstoedit: latex formulas'
+   'python-lxml: some extensions'
+   'python-numpy: some extensions'
+   'scour: optimized SVG output, some extensions'
+   'texlive-core: latex formulas'
+)
+
+#source=("https://media.inkscape.org/dl/resources/file/${pkgname}-${pkgver}.tar.bz2;)
+source=("git+https://gitlab.com/inkscape/inkscape.git#tag=${_tag};)
+sha256sums=('SKIP')
+
+_backports=(
+)
+
+prepare() {
+   cd "${pkgname}"
+   git submodule init
+   git submodule update
+
+   local _c
+   for _c in "${_backports[@]}"; do
+   git log --oneline -1 "${_c}"
+   git cherry-pick -n "${_c}"
+   done
+}
+
+build() {
+   mkdir -p build
+   export PKG_CONFIG_PATH='/usr/lib/imagemagick6/pkgconfig'
+   cmake -H${pkgname} -Bbuild \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX:PATH=/usr \
+   -DWITH_DBUS=ON \
+
+   cmake --build build
+}
+
+package() {
+   DESTDIR="${pkgdir}" cmake --build build --target install
+}



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

2022-02-05 Thread Christian Hesse via arch-commits
Date: Saturday, February 5, 2022 @ 21:12:38
  Author: eworm
Revision: 436269

upgpkg: inkscape 1.1.2-1: new upstream release

Modified:
  inkscape/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-05 20:55:01 UTC (rev 436268)
+++ PKGBUILD2022-02-05 21:12:38 UTC (rev 436269)
@@ -3,9 +3,9 @@
 # Contributor: tobias 
 
 pkgname=inkscape
-pkgver=1.1.1
-_tag='3bf5ae0d25c673abe152dedf4789a2d6f0cc60ff' # git rev-parse 
INKSCAPE_${pkgver/./_}
-pkgrel=8
+pkgver=1.1.2
+_tag='0a00cf5339ab09436cbe123d22e98fb791619733' # git rev-parse 
INKSCAPE_${pkgver/./_}
+pkgrel=1
 pkgdesc='Professional vector graphics editor'
 url='https://inkscape.org/'
 license=('GPL' 'LGPL')
@@ -47,11 +47,6 @@
 sha256sums=('SKIP')
 
 _backports=(
-  # Fix build with poppler 21.11.0
-  '5724c21b9cb7b6176a7b36ca24068b148c817e82'
-
-  # Remove mandatory break from end of paragraphs, added in Pango 1.49.
-  'b3dabef2245d4e4e977ee9d6776be9a134493515'
 )
 
 prepare() {



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

2022-02-05 Thread Caleb Maclennan via arch-commits
Date: Saturday, February 5, 2022 @ 21:04:30
  Author: alerque
Revision: 1126894

archrelease: copy trunk to community-staging-x86_64

Added:
  fuzzel/repos/community-staging-x86_64/
  fuzzel/repos/community-staging-x86_64/PKGBUILD
(from rev 1126893, fuzzel/trunk/PKGBUILD)

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

Copied: fuzzel/repos/community-staging-x86_64/PKGBUILD (from rev 1126893, 
fuzzel/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-05 21:04:30 UTC (rev 1126894)
@@ -0,0 +1,39 @@
+# Maintainer: Caleb Maclennan 
+# Contributor: Daniel Eklöf 
+
+pkgname=fuzzel
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Application launcher for wlroots based Wayland compositors'
+url="https://codeberg.org/dnkl/$pkgname;
+arch=(x86_64)
+license=(MIT)
+makedepends=(meson
+ scdoc
+ tllist
+ wayland-protocols)
+depends=(cairo
+ fcft
+ libpng
+ libxkbcommon
+ pixman
+ wayland) # nanosvg is bundled
+options=(debug)
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha256sums=('f792c9869ec2ab333e99ff49d3e94a81c7ffc45767b74ed98c63404f558a008b')
+
+build() {
+   cd "$pkgname"
+   arch-meson \
+   -Denable-cairo=enabled \
+   -Dpng-backend=libpng \
+   -Dsvg-backend=nanosvg \
+   . build
+   meson compile -C build
+}
+
+package() {
+   cd "$pkgname"
+   meson install -C build --destdir "$pkgdir"
+   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}



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

2022-02-05 Thread Caleb Maclennan via arch-commits
Date: Saturday, February 5, 2022 @ 21:04:23
  Author: alerque
Revision: 1126893

upgpkg: fuzzel 1.7.0-1

Modified:
  fuzzel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-05 20:58:46 UTC (rev 1126892)
+++ PKGBUILD2022-02-05 21:04:23 UTC (rev 1126893)
@@ -2,8 +2,8 @@
 # Contributor: Daniel Eklöf 
 
 pkgname=fuzzel
-pkgver=1.6.5
-pkgrel=4
+pkgver=1.7.0
+pkgrel=1
 pkgdesc='Application launcher for wlroots based Wayland compositors'
 url="https://codeberg.org/dnkl/$pkgname;
 arch=(x86_64)
@@ -20,7 +20,7 @@
  wayland) # nanosvg is bundled
 options=(debug)
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha256sums=('b0f1af8a4b38f0cd93722d0ec35e422b5163ec3392e16467c1af8c8de94333a0')
+sha256sums=('f792c9869ec2ab333e99ff49d3e94a81c7ffc45767b74ed98c63404f558a008b')
 
 build() {
cd "$pkgname"



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

2022-02-05 Thread Robin Broda via arch-commits
Date: Saturday, February 5, 2022 @ 20:58:46
  Author: coderobe
Revision: 1126892

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|   75 +++---
 usbview.install |   22 +++
 2 files changed, 44 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-02-05 20:58:35 UTC (rev 1126891)
+++ PKGBUILD2022-02-05 20:58:46 UTC (rev 1126892)
@@ -1,42 +0,0 @@
-# Maintainer: Giovanni Scafora 
-# Contributor: Jason Chu 
-
-pkgname=usbview
-pkgver=2.0
-pkgrel=6
-pkgdesc="Display the topology of devices on the USB bus"
-arch=('x86_64')
-url="http://www.kroah.com/linux/usb/;
-license=('GPL')
-depends=('gtk3' 'desktop-file-utils')
-makedepends=('pkg-config' 'gendesk')
-install=${pkgname}.install
-source=("http://www.kroah.com/linux/usb/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('565f2e79f3924d14ab5b4d8aced557e5')
-
-prepare() {
-  gendesk -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" --name "Usbview" 
--categories "Application;System"
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --localstatedir=/var
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make prefix="${pkgdir}/usr" \
-   sysconfdir="${pkgdir}/etc" \
-   localstatedir="${pkgdir}/var" install
-
-  install -Dm0644 "${srcdir}"/${pkgname}.desktop \
-"${pkgdir}"/usr/share/applications/${pkgname}.desktop
-
-  install -Dm0644 "${srcdir}"/${pkgname}-${pkgver}/usb_icon.xpm \
-"${pkgdir}"/usr/share/pixmaps/${pkgname}.xpm
-}

Copied: usbview/repos/community-x86_64/PKGBUILD (from rev 1126891, 
usbview/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-02-05 20:58:46 UTC (rev 1126892)
@@ -0,0 +1,33 @@
+# Maintainer: Giovanni Scafora 
+# Maintainer: coderobe 
+# Contributor: Jason Chu 
+
+pkgname=usbview
+pkgver=3.0
+pkgrel=1
+pkgdesc="Display the topology of devices on the USB bus"
+arch=('x86_64')
+url="http://www.kroah.com/linux/usb/;
+license=('GPL')
+depends=('gtk3' 'desktop-file-utils')
+makedepends=('pkg-config' 'imagemagick')
+install=${pkgname}.install
+source=("http://www.kroah.com/linux/usb/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('0e65d4978b1ac54f3bc8608d86af3a44')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --localstatedir=/var
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make prefix="${pkgdir}/usr" \
+   sysconfdir="${pkgdir}/etc" \
+   localstatedir="${pkgdir}/var" install
+}

Deleted: usbview.install
===
--- usbview.install 2022-02-05 20:58:35 UTC (rev 1126891)
+++ usbview.install 2022-02-05 20:58:46 UTC (rev 1126892)
@@ -1,11 +0,0 @@
-post_install() {
-  echo ">>> Debugfs must be mounted in order to use usbview."
-  echo ">>> As root execute:"
-  echo ">>> \"mount -t debugfs none /sys/kernel/debug\" or add"
-  echo ">>> \"none /sys/kernel/debug debugfs defaults 0 0\""
-  echo ">>> to /etc/fstab"
-}
-
-post_upgrade() {
-  post_install
-}

Copied: usbview/repos/community-x86_64/usbview.install (from rev 1126891, 
usbview/trunk/usbview.install)
===
--- usbview.install (rev 0)
+++ usbview.install 2022-02-05 20:58:46 UTC (rev 1126892)
@@ -0,0 +1,11 @@
+post_install() {
+  echo ">>> Debugfs must be mounted in order to use usbview."
+  echo ">>> As root execute:"
+  echo ">>> \"mount -t debugfs none /sys/kernel/debug\" or add"
+  echo ">>> \"none /sys/kernel/debug debugfs defaults 0 0\""
+  echo ">>> to /etc/fstab"
+}
+
+post_upgrade() {
+  post_install
+}



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

2022-02-05 Thread Robin Broda via arch-commits
Date: Saturday, February 5, 2022 @ 20:58:35
  Author: coderobe
Revision: 1126891

upgpkg: usbview 3.0-1

Modified:
  usbview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-05 20:50:26 UTC (rev 1126890)
+++ PKGBUILD2022-02-05 20:58:35 UTC (rev 1126891)
@@ -1,23 +1,20 @@
 # Maintainer: Giovanni Scafora 
+# Maintainer: coderobe 
 # Contributor: Jason Chu 
 
 pkgname=usbview
-pkgver=2.0
-pkgrel=6
+pkgver=3.0
+pkgrel=1
 pkgdesc="Display the topology of devices on the USB bus"
 arch=('x86_64')
 url="http://www.kroah.com/linux/usb/;
 license=('GPL')
 depends=('gtk3' 'desktop-file-utils')
-makedepends=('pkg-config' 'gendesk')
+makedepends=('pkg-config' 'imagemagick')
 install=${pkgname}.install
 source=("http://www.kroah.com/linux/usb/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('565f2e79f3924d14ab5b4d8aced557e5')
+md5sums=('0e65d4978b1ac54f3bc8608d86af3a44')
 
-prepare() {
-  gendesk -n --pkgname "$pkgname" --pkgdesc "$pkgdesc" --name "Usbview" 
--categories "Application;System"
-}
-
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
 
@@ -33,10 +30,4 @@
   make prefix="${pkgdir}/usr" \
sysconfdir="${pkgdir}/etc" \
localstatedir="${pkgdir}/var" install
-
-  install -Dm0644 "${srcdir}"/${pkgname}.desktop \
-"${pkgdir}"/usr/share/applications/${pkgname}.desktop
-
-  install -Dm0644 "${srcdir}"/${pkgname}-${pkgver}/usb_icon.xpm \
-"${pkgdir}"/usr/share/pixmaps/${pkgname}.xpm
 }



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

2022-02-05 Thread Tobias Powalowski via arch-commits
Date: Saturday, February 5, 2022 @ 20:55:01
  Author: tpowa
Revision: 436268

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-02-05 20:54:57 UTC (rev 436267)
+++ PKGBUILD2022-02-05 20:55:01 UTC (rev 436268)
@@ -1,48 +0,0 @@
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot-arm
-pkgver=2022.02
-pkgrel=16
-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' 'reiserfsprogs' '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'
- 'ntfs-3g' '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' 'lzo' 'lzop' 'libsasl' 'libldap' 'gpm' 
'libevent' 'gcc-libs' 'sdparm' 'licenses' 'pptpclient' 
-'dhcpcd' 'openssl' 'dmraid' 'linux-atm' 'netctl' 'parted' 'tzdata' 
'ntp' 'libgcrypt' 'iw' 'crda'
-'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' 'progsreiserfs'
-'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' 'mktorrent' 'nvme-cli' 
'fatresize' 'iwd' 'elinks' 'lshw' 
-'sbsigntools' 'openresolv' 'mokutil')
-makedepends=('git')
-optdepends=('linux-firmware: for firmware inclusion on image file'
-'sudo: for running the archboot build server')
-source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel}?signed;)
-backup=('etc/archboot/x86_64.conf'
-'etc/archboot/aarch64.conf'
-'etc/archboot/x86_64-latest.conf'
-'etc/archboot/aarch64-latest.conf'
-'etc/archboot/presets/x86_64'
-'etc/archboot/presets/aarch64'
-'etc/archboot/presets/x86_64-latest'
-'etc/archboot/presets/aarch64-latest')
-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 436267, 
archboot-arm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-02-05 20:55:01 UTC (rev 436268)
@@ -0,0 +1,48 @@
+# Maintainer : Tobias Powalowski 
+
+pkgname=archboot-arm
+pkgver=2022.02
+pkgrel=17
+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' 'reiserfsprogs' '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'
+ 'ntfs-3g' 'pciutils' 'usbutils' 'vpnc' 'openvpn' 'b43-fwcutter' 

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

2022-02-05 Thread Tobias Powalowski via arch-commits
Date: Saturday, February 5, 2022 @ 20:54:57
  Author: tpowa
Revision: 436267

upgpkg: archboot-arm 2022.02-17: bump to latest version

Modified:
  archboot-arm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-05 20:53:58 UTC (rev 436266)
+++ PKGBUILD2022-02-05 20:54:57 UTC (rev 436267)
@@ -2,7 +2,7 @@
 
 pkgname=archboot-arm
 pkgver=2022.02
-pkgrel=16
+pkgrel=17
 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-02-05 Thread Tobias Powalowski via arch-commits
Date: Saturday, February 5, 2022 @ 20:53:58
  Author: tpowa
Revision: 436266

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-02-05 20:53:53 UTC (rev 436265)
+++ PKGBUILD2022-02-05 20:53:58 UTC (rev 436266)
@@ -1,49 +0,0 @@
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot
-pkgver=2022.02
-pkgrel=16
-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' 'reiserfsprogs' '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'
- 'ntfs-3g' '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' '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' 'crda'
-'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' 'progsreiserfs'
-'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' 'mktorrent' 
'nvme-cli' 'fatresize' 'iwd' 'elinks' 'lshw' 
-'sbsigntools' 'openresolv' 'mokutil')
-makedepends=('git')
-optdepends=('linux-firmware: for firmware inclusion on image file'
-'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/x86_64.conf'
-'etc/archboot/aarch64.conf'
-'etc/archboot/x86_64-latest.conf'
-'etc/archboot/aarch64-latest.conf'
-'etc/archboot/presets/x86_64'
-'etc/archboot/presets/aarch64'
-'etc/archboot/presets/x86_64-latest'
-'etc/archboot/presets/aarch64-latest')
-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 436265, 
archboot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-02-05 20:53:58 UTC (rev 436266)
@@ -0,0 +1,49 @@
+# Maintainer : Tobias Powalowski 
+
+pkgname=archboot
+pkgver=2022.02
+pkgrel=17
+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' 'reiserfsprogs' 'sed' 'snarf'
+ 'tar' 'util-linux' 'bind' 'which' 'kbd' 'wireless_tools' 'xfsprogs' 
'hdparm' 'inetutils'
+ 'openssh' 'hwdetect' 'shadow' 'bridge-utils'  'dosfstools' 'glibc' 
'linux' 'kexec-tools' 'ppp' 

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

2022-02-05 Thread Tobias Powalowski via arch-commits
Date: Saturday, February 5, 2022 @ 20:53:53
  Author: tpowa
Revision: 436265

upgpkg: archboot 2022.02-17: bump to latest version

Modified:
  archboot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-05 19:36:08 UTC (rev 436264)
+++ PKGBUILD2022-02-05 20:53:53 UTC (rev 436265)
@@ -2,7 +2,7 @@
 
 pkgname=archboot
 pkgver=2022.02
-pkgrel=16
+pkgrel=17
 pkgdesc="Advanced, modular arch boot/install image creation utility"
 arch=(any)
 license=('GPL')



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

2022-02-05 Thread Caleb Maclennan via arch-commits
Date: Saturday, February 5, 2022 @ 20:50:26
  Author: alerque
Revision: 1126890

archrelease: copy trunk to community-staging-x86_64

Added:
  foot/repos/community-staging-x86_64/
  foot/repos/community-staging-x86_64/PKGBUILD
(from rev 1126889, foot/trunk/PKGBUILD)

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

Copied: foot/repos/community-staging-x86_64/PKGBUILD (from rev 1126889, 
foot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-05 20:50:26 UTC (rev 1126890)
@@ -0,0 +1,70 @@
+# Maintainer: Caleb Maclennan 
+# Contributor: Daniel Eklöf 
+
+pkgbase=foot
+pkgdesc='Fast, lightweight, and minimalistic Wayland terminal emulator'
+pkgname=($pkgbase $pkgbase-terminfo)
+pkgver=1.11.0
+pkgrel=1
+url="https://codeberg.org/dnkl/$pkgbase;
+arch=(x86_64)
+license=(MIT)
+makedepends=(fcft
+ fontconfig
+ libutf8proc
+ libxkbcommon
+ llvm
+ meson
+ ncurses
+ ninja
+ pixman
+ python
+ scdoc
+ sway
+ tllist
+ wayland
+ wayland-protocols)
+options=(debug)
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha256sums=('2b4f737eb4d266224e5dd0126168c6d770b0139d4b572078baf158d2f7166e4e')
+
+build() {
+   cd "$pkgbase"
+   ./pgo/pgo.sh \
+   full-headless-sway \
+   . build \
+   -Dterminfo=disabled \
+   --prefix=/usr \
+   --wrap-mode=nodownload
+   sed 's/@default_terminfo@/foot-extra/g' foot.info |
+   tic -x -o build -e foot-extra,foot-extra-direct -
+}
+
+check() {
+   cd "$pkgbase"
+   ninja -C build test
+}
+
+package_foot() {
+   optdepends=('foot-terminfo: exta non-standard features over terminfo 
included in ncurses'
+   'libnotify: desktop notifications'
+   'xdg-utils: URI launching')
+   depends=(fcft
+fontconfig
+libutf8proc
+libxkbcommon
+ncurses
+pixman
+wayland)
+   cd "$pkgbase"
+   DESTDIR="$pkgdir" ninja -C build install
+   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}
+
+package_foot-terminfo() {
+   pkgdesc="Extra non-standard terminfo files for $pkgbase, a Wayland 
terminal emulator"
+   depends=(ncurses)
+   cd "$pkgbase"
+   install -Dm0644 -t "$pkgdir/usr/share/terminfo/f/" build/f/foot-extra*
+   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}



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

2022-02-05 Thread Caleb Maclennan via arch-commits
Date: Saturday, February 5, 2022 @ 20:50:19
  Author: alerque
Revision: 1126889

upgpkg: foot 1.11.0-1

Modified:
  foot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-05 20:43:24 UTC (rev 1126888)
+++ PKGBUILD2022-02-05 20:50:19 UTC (rev 1126889)
@@ -4,8 +4,8 @@
 pkgbase=foot
 pkgdesc='Fast, lightweight, and minimalistic Wayland terminal emulator'
 pkgname=($pkgbase $pkgbase-terminfo)
-pkgver=1.10.3
-pkgrel=5
+pkgver=1.11.0
+pkgrel=1
 url="https://codeberg.org/dnkl/$pkgbase;
 arch=(x86_64)
 license=(MIT)
@@ -26,7 +26,7 @@
  wayland-protocols)
 options=(debug)
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha256sums=('24f57d9926ead7bea491f1bdd97eaceae5fdc10c1cb3435ee588a8f9c9af805a')
+sha256sums=('2b4f737eb4d266224e5dd0126168c6d770b0139d4b572078baf158d2f7166e4e')
 
 build() {
cd "$pkgbase"



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

2022-02-05 Thread Caleb Maclennan via arch-commits
Date: Saturday, February 5, 2022 @ 20:43:24
  Author: alerque
Revision: 1126888

archrelease: copy trunk to community-staging-x86_64

Added:
  fcft/repos/community-staging-x86_64/
  fcft/repos/community-staging-x86_64/PKGBUILD
(from rev 1126887, fcft/trunk/PKGBUILD)

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

Copied: fcft/repos/community-staging-x86_64/PKGBUILD (from rev 1126887, 
fcft/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-02-05 20:43:24 UTC (rev 1126888)
@@ -0,0 +1,38 @@
+# Maintainer: Caleb Maclennan 
+# Contributor: Daniel Eklöf 
+
+pkgname=fcft
+pkgver=3.0.0
+pkgrel=1
+pkgdesc='Simple library for font loading and glyph rasterization'
+arch=(x86_64)
+url=https://codeberg.org/dnkl/${pkgname}
+license=(MIT)
+depends=(fontconfig
+ freetype2
+ harfbuzz
+ libutf8proc
+ pixman)
+makedepends=(meson
+ scdoc
+ tllist)
+checkdepends=(ttf-dejavu)
+options=(debug)
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha256sums=('8dd239ab72697ebe1f7a583cfbac0f90523d30752345c9160ee6e7c4ad2cd379')
+
+build() {
+   arch-meson $pkgname build \
+   -Dgrapheme-shaping=enabled \
+   -Drun-shaping=enabled
+}
+
+check() {
+   meson test -C build
+}
+
+package() {
+   meson install -C build --destdir "$pkgdir"
+   install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" 
"$pkgname/LICENSE"
+   install -Dm0644 "$pkgname/unicode/LICENSE" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE.unicode"
+}



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

2022-02-05 Thread Caleb Maclennan via arch-commits
Date: Saturday, February 5, 2022 @ 20:43:18
  Author: alerque
Revision: 1126887

upgpkg: fcft 3.0.0-1

Modified:
  fcft/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-05 20:41:22 UTC (rev 1126886)
+++ PKGBUILD2022-02-05 20:43:18 UTC (rev 1126887)
@@ -2,8 +2,8 @@
 # Contributor: Daniel Eklöf 
 
 pkgname=fcft
-pkgver=2.5.1
-pkgrel=2
+pkgver=3.0.0
+pkgrel=1
 pkgdesc='Simple library for font loading and glyph rasterization'
 arch=(x86_64)
 url=https://codeberg.org/dnkl/${pkgname}
@@ -17,8 +17,9 @@
  scdoc
  tllist)
 checkdepends=(ttf-dejavu)
+options=(debug)
 source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
-sha256sums=('1b9e9346c884f16bce9548806ea89c5e34ccc98ce27ec6ecff1f5011235de112')
+sha256sums=('8dd239ab72697ebe1f7a583cfbac0f90523d30752345c9160ee6e7c4ad2cd379')
 
 build() {
arch-meson $pkgname build \



[arch-commits] Commit in (beaver)

2022-02-05 Thread Jaroslav Lichtblau via arch-commits
Date: Saturday, February 5, 2022 @ 20:41:22
  Author: jlichtblau
Revision: 1126886

beaver - seems to be dead, goes to AUR

Deleted:
  beaver/



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

2022-02-05 Thread George Rawlinson via arch-commits
Date: Saturday, February 5, 2022 @ 20:26:47
  Author: grawlinson
Revision: 1126884

archrelease: copy trunk to community-x86_64

Added:
  cppcheck/repos/community-x86_64/PKGBUILD
(from rev 1126883, cppcheck/trunk/PKGBUILD)
  cppcheck/repos/community-x86_64/translations-location.patch
(from rev 1126883, cppcheck/trunk/translations-location.patch)
Deleted:
  cppcheck/repos/community-x86_64/PKGBUILD
  cppcheck/repos/community-x86_64/translations-location.patch

-+
 PKGBUILD|  190 +-
 translations-location.patch |   38 
 2 files changed, 114 insertions(+), 114 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-02-05 20:25:59 UTC (rev 1126883)
+++ PKGBUILD2022-02-05 20:26:47 UTC (rev 1126884)
@@ -1,95 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Jelle van der Waa 
-# Contributor: Stéphane Gaudreault 
-
-pkgname=cppcheck
-pkgver=2.6.3
-pkgrel=1
-pkgdesc="A tool for static C/C++ code analysis"
-arch=('x86_64')
-url="http://cppcheck.sourceforge.net/;
-license=('GPL')
-depends=(
-  'python-pygments'
-  'tinyxml2'
-)
-makedepends=(
-  'git'
-  'docbook-xsl'
-  'qt5-tools'
-  'qt5-base'
-  'python'
-  'pandoc'
-  'cmake'
-  'clang'
-)
-optdepends=(
-  'qt5-tools: run cppcheck-gui'
-  'python-pygments: cppcheck-htmlreport'
-  'clang: for cppcheck-gui integration'
-)
-_commit='3e518e64d0f1fb1e8b71f2d0e8c07d36e31d0ffc'
-source=(
-  "$pkgname::git+https://github.com/danmar/cppcheck.git#commit=$_commit;
-  'translations-location.patch'
-)
-sha512sums=('SKIP'
-
'd3528834d719017ec3a0e08005a293089b556622928defa1b37f940e62cb01165dcbd741e6d5e989c0156fb8789f7e63702af8b2390738648b2300a92f4ab0ae')
-b2sums=('SKIP'
-
'8156920eacc630cb5eceb2387937b747c84c6325bef906717cfbad68c122bdd27965da1e8070a560a0bed3a7b7c59ff5f0e116bb1d035c4c42f430c927a75b1f')
-
-pkgver() {
-  cd "$pkgname"
-  git describe --tags
-}
-
-prepare() {
-  cd "$pkgname"
-  patch -p1 -i ../translations-location.patch
-}
-
-build() {
-  export CXXFLAGS+=" -DNDEBUG"
-
-  # Manuals
-  pushd "$pkgname"
-  xsversion=$(pacman -Qi docbook-xsl | grep ^Version | sed -e 's/.*: //' -e 
's/-[0-9]$//')
-  make 
DB2MAN=/usr/share/xml/docbook/xsl-stylesheets-${xsversion}-nons/manpages/docbook.xsl
 man
-  pandoc man/manual.md -o man/manual.html -s --number-sections --toc
-  pandoc man/reference-cfg-format.md -o man/reference-cfg-format.html -s 
--number-sections --toc
-  popd
-
-  cmake \
--B build \
--S "$pkgname" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DUSE_MATCHCOMPILER=yes \
--DHAVE_RULES=yes \
--DBUILD_GUI=yes \
--DBUILD_SHARED_LIBS=no \
--DBUILD_TESTS=yes \
--DFILESDIR=/usr/share/cppcheck \
--DUSE_BUNDLED_TINYXML2=no
-
-  cmake --build build
-}
-
-
-check() {
-  cd build/bin
-  ./testrunner -g -q
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-
-  cd "$pkgname"
-
-  install -vDm644 -t "$pkgdir/usr/share/man/man1" cppcheck.1
-  install -vDm755 -t "$pkgdir/usr/bin" htmlreport/cppcheck-htmlreport
-
-  # Fix location of language files
-  install -d "${pkgdir}"/usr/share/cppcheck/cfg/lang
-  mv "${pkgdir}"/usr/bin/cppcheck_*.qm "${pkgdir}"/usr/share/cppcheck/cfg/lang/
-}

Copied: cppcheck/repos/community-x86_64/PKGBUILD (from rev 1126883, 
cppcheck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-02-05 20:26:47 UTC (rev 1126884)
@@ -0,0 +1,95 @@
+# Maintainer: George Rawlinson 
+# Contributor: Jelle van der Waa 
+# Contributor: Stéphane Gaudreault 
+
+pkgname=cppcheck
+pkgver=2.7
+pkgrel=1
+pkgdesc="A tool for static C/C++ code analysis"
+arch=('x86_64')
+url="http://cppcheck.sourceforge.net/;
+license=('GPL')
+depends=(
+  'python-pygments'
+  'tinyxml2'
+)
+makedepends=(
+  'git'
+  'docbook-xsl'
+  'qt5-tools'
+  'qt5-base'
+  'python'
+  'pandoc'
+  'cmake'
+  'clang'
+)
+optdepends=(
+  'qt5-tools: run cppcheck-gui'
+  'python-pygments: cppcheck-htmlreport'
+  'clang: for cppcheck-gui integration'
+)
+options=('debug')
+_commit='6ba6567ad897d56741159f8af90fc354ae050e61'
+source=(
+  "$pkgname::git+https://github.com/danmar/cppcheck.git#commit=$_commit;
+  'translations-location.patch'
+)
+sha512sums=('SKIP'
+
'd3528834d719017ec3a0e08005a293089b556622928defa1b37f940e62cb01165dcbd741e6d5e989c0156fb8789f7e63702af8b2390738648b2300a92f4ab0ae')
+b2sums=('SKIP'
+
'8156920eacc630cb5eceb2387937b747c84c6325bef906717cfbad68c122bdd27965da1e8070a560a0bed3a7b7c59ff5f0e116bb1d035c4c42f430c927a75b1f')
+
+pkgver() {
+  cd "$pkgname"
+  git describe --tags
+}
+
+prepare() {
+  cd "$pkgname"
+  patch -p1 -i ../translations-location.patch
+}
+
+build() {
+  export CXXFLAGS+=" -DNDEBUG"
+
+  # Manuals
+  pushd "$pkgname"
+  xsversion=$(pacman -Qi docbook-xsl | grep ^Version | sed -e 

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

2022-02-05 Thread George Rawlinson via arch-commits
Date: Saturday, February 5, 2022 @ 20:25:59
  Author: grawlinson
Revision: 1126883

upgpkg: cppcheck 2.7-1

* New upstream release.
* Temporarily disable tests due to FTBFS.
* Enable debug package.

Modified:
  cppcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-02-05 20:20:05 UTC (rev 1126882)
+++ PKGBUILD2022-02-05 20:25:59 UTC (rev 1126883)
@@ -3,7 +3,7 @@
 # Contributor: Stéphane Gaudreault 
 
 pkgname=cppcheck
-pkgver=2.6.3
+pkgver=2.7
 pkgrel=1
 pkgdesc="A tool for static C/C++ code analysis"
 arch=('x86_64')
@@ -28,7 +28,8 @@
   'python-pygments: cppcheck-htmlreport'
   'clang: for cppcheck-gui integration'
 )
-_commit='3e518e64d0f1fb1e8b71f2d0e8c07d36e31d0ffc'
+options=('debug')
+_commit='6ba6567ad897d56741159f8af90fc354ae050e61'
 source=(
   "$pkgname::git+https://github.com/danmar/cppcheck.git#commit=$_commit;
   'translations-location.patch'
@@ -63,12 +64,12 @@
 -B build \
 -S "$pkgname" \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_BUILD_TYPE=RelWithDebInfo \
 -DUSE_MATCHCOMPILER=yes \
 -DHAVE_RULES=yes \
 -DBUILD_GUI=yes \
 -DBUILD_SHARED_LIBS=no \
--DBUILD_TESTS=yes \
+-DBUILD_TESTS=no \
 -DFILESDIR=/usr/share/cppcheck \
 -DUSE_BUNDLED_TINYXML2=no
 
@@ -75,12 +76,11 @@
   cmake --build build
 }
 
+#check() {
+#  cd build/bin
+#  ./testrunner -g -q
+#}
 
-check() {
-  cd build/bin
-  ./testrunner -g -q
-}
-
 package() {
   DESTDIR="$pkgdir" cmake --install build
 



  1   2   3   4   >