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

2021-10-05 Thread Daniel M. Capella via arch-commits
Date: Wednesday, October 6, 2021 @ 05:59:29
  Author: polyzen
Revision: 1027833

archrelease: copy trunk to community-x86_64

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

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

Copied: go-yq/repos/community-x86_64/PKGBUILD (from rev 1027832, 
go-yq/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-10-06 05:59:29 UTC (rev 1027833)
@@ -0,0 +1,51 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Mario Finelli 
+
+pkgname=go-yq
+pkgver=4.13.3
+pkgrel=2
+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=('159fc2840eaa71835a7de09b200f94526d2749834594fed77756e3c60c60bfaddb5fa8759f60736bad881939adf1461b6c9fa6aeb86c233ac58b4685f9d0fc52')
+
+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 go-yq/repos go-yq/trunk go-yq/trunk/PKGBUILD)

2021-10-05 Thread Daniel M. Capella via arch-commits
Date: Wednesday, October 6, 2021 @ 05:57:44
  Author: polyzen
Revision: 1027832

Add go-yq to repos

Added:
  go-yq/
  go-yq/repos/
  go-yq/trunk/
  go-yq/trunk/PKGBUILD

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

Added: go-yq/trunk/PKGBUILD
===
--- go-yq/trunk/PKGBUILD(rev 0)
+++ go-yq/trunk/PKGBUILD2021-10-06 05:57:44 UTC (rev 1027832)
@@ -0,0 +1,51 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Mario Finelli 
+
+pkgname=go-yq
+pkgver=4.13.3
+pkgrel=2
+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=('159fc2840eaa71835a7de09b200f94526d2749834594fed77756e3c60c60bfaddb5fa8759f60736bad881939adf1461b6c9fa6aeb86c233ac58b4685f9d0fc52')
+
+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 haskell-yesod-auth/repos (2 files)

2021-10-05 Thread Felix Yan via arch-commits
Date: Wednesday, October 6, 2021 @ 00:18:03
  Author: felixonmars
Revision: 1027831

archrelease: copy trunk to community-testing-x86_64

Added:
  haskell-yesod-auth/repos/community-testing-x86_64/
  haskell-yesod-auth/repos/community-testing-x86_64/PKGBUILD
(from rev 1027830, haskell-yesod-auth/trunk/PKGBUILD)

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

Copied: haskell-yesod-auth/repos/community-testing-x86_64/PKGBUILD (from rev 
1027830, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-10-06 00:18:03 UTC (rev 1027831)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.6.10.4
+pkgrel=1
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-authenticate' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-data-default' 'haskell-email-validate' 'haskell-file-embed' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-conduit' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-network-uri' 'haskell-nonce' 'haskell-persistent' 
'haskell-random' 'haskell-safe'
+ 'haskell-shakespeare' 'haskell-unliftio' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-wai' 'haskell-yesod-core' 
'haskell-yesod-form'
+ 'haskell-yesod-persistent')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0e108bfed1a95faf666877ed37489830d0a7205162a3a16f240bbe269aec63b8e61693e921c018898ec7198c09f44fe0ae1bb39884d8c02007319aa7efe3b566')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-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
+}
+
+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-yesod-auth/trunk (PKGBUILD)

2021-10-05 Thread Felix Yan via arch-commits
Date: Wednesday, October 6, 2021 @ 00:17:51
  Author: felixonmars
Revision: 1027830

upgpkg: haskell-yesod-auth 1.6.10.4-1

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-06 00:02:02 UTC (rev 1027829)
+++ PKGBUILD2021-10-06 00:17:51 UTC (rev 1027830)
@@ -3,8 +3,8 @@
 
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
-pkgver=1.6.10.3
-pkgrel=31
+pkgver=1.6.10.4
+pkgrel=1
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")
@@ -20,7 +20,7 @@
  'haskell-yesod-persistent')
 makedepends=('ghc')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('82b490db8424d6e340c4c19b9760e07c78a7906540dada160afd8f3de43f6767f04968753b0c218f0c53c8ddf4ff0ed33f458a770100edd8ab6c7582016662a2')
+sha512sums=('0e108bfed1a95faf666877ed37489830d0a7205162a3a16f240bbe269aec63b8e61693e921c018898ec7198c09f44fe0ae1bb39884d8c02007319aa7efe3b566')
 
 build() {
 cd $_hkgname-$pkgver



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Wednesday, October 6, 2021 @ 00:02:02
  Author: felixonmars
Revision: 1027829

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 1027828, 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 1027828, haskell-hls-eval-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-06 00:02:02 UTC (rev 1027829)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-eval-plugin
+pkgname=haskell-hls-eval-plugin
+pkgver=1.1.2.0
+pkgrel=1
+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 -u 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)

2021-10-05 Thread Felix Yan via arch-commits
Date: Wednesday, October 6, 2021 @ 00:01:50
  Author: felixonmars
Revision: 1027828

upgpkg: haskell-hls-eval-plugin 1.1.2.0-1: rebuild with ghcide 1.4.1.0, hiedb 
0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, hls-eval-plugin 
1.1.2.0, hls-explicit-imports-plugin 1.0.1.0, hls-floskell-plugin 1.0.0.1, 
hls-fourmolu-plugin 1.0.0.2, hls-haddock-comments-plugin 1.0.0.3, 
hls-hlint-plugin 1.0.1.1, hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 
1.0.1.0, hls-pragmas-plugin 1.0.1.0, hls-refine-imports-plugin 1.0.0.1, 
hls-retrie-plugin 1.0.1.1, hls-splice-plugin 1.0.0.4, 
hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 1.1.0.0, hls-plugin-api 
1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 1.3.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 22:25:34 UTC (rev 1027827)
+++ PKGBUILD2021-10-06 00:01:50 UTC (rev 1027828)
@@ -2,8 +2,8 @@
 
 _hkgname=hls-eval-plugin
 pkgname=haskell-hls-eval-plugin
-pkgver=1.1.1.0
-pkgrel=3
+pkgver=1.1.2.0
+pkgrel=1
 pkgdesc="Eval plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server;
 license=("Apache")
@@ -17,11 +17,12 @@
 makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
 checkdepends=('git')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha512sums=('ab17fa3878576c4a95647c5f9b1e171c332b4c55901307795d938118fe21eb4284d97c7684412ca3941bb7a7d98d5c1bddc444716a564f8f043a8bd5be6f4bf8')
+sha512sums=('8597144404060b56aa84d2a6549306924de6aa99ff8fa121f0a3e6fbf2facc979e36dc9304fd041833201044f59e1745574eb1a1e3459b22baf0fae3f40d96e1')
 
 prepare() {
   cd $_hkgname-$pkgver
   gen-setup
+  uusi -u ghc-api-compat $_hkgname.cabal
 }
 
 build() {
@@ -29,7 +30,7 @@
 
   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 \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
 --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
 --ghc-option='-pie'
 



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

2021-10-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 5, 2021 @ 22:31:52
  Author: arojas
Revision: 425159

archrelease: copy trunk to extra-x86_64

Added:
  kdeconnect/repos/extra-x86_64/PKGBUILD
(from rev 425158, kdeconnect/trunk/PKGBUILD)
  kdeconnect/repos/extra-x86_64/kdeconnect-openssh-8.8.patch
(from rev 425158, kdeconnect/trunk/kdeconnect-openssh-8.8.patch)
Deleted:
  kdeconnect/repos/extra-x86_64/PKGBUILD
  kdeconnect/repos/extra-x86_64/kdeconnect-openssh-8.2.patch

--+
 PKGBUILD |   70 ++---
 kdeconnect-openssh-8.2.patch |   12 ---
 kdeconnect-openssh-8.8.patch |   14 
 3 files changed, 52 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 22:31:38 UTC (rev 425158)
+++ PKGBUILD2021-10-05 22:31:52 UTC (rev 425159)
@@ -1,32 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: Kuba Serafinowski 
-
-pkgname=kdeconnect
-pkgver=21.08.1
-pkgrel=1
-pkgdesc='Adds communication between KDE and your smartphone'
-url='https://kdeconnect.kde.org/'
-arch=(x86_64)
-license=(GPL)
-groups=(kde-applications kde-network)
-depends=(kcmutils kwayland libfakekey qca-qt5 kpeoplevcard pulseaudio-qt 
qqc2-desktop-style hicolor-icon-theme)
-makedepends=(extra-cmake-modules kdoctools)
-optdepends=('sshfs: remote filesystem browser' 'python-nautilus: Nautilus 
integration' 'qt5-tools: for some runcommand plugin actions')
-source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-kde-$pkgver.tar.xz{,.sig})
-sha256sums=('6330f74b432ecead1f99f8c74dcc24fd97672ca7009267569ff3bceeb3fedc06'
-'SKIP')
-validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

-  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

-  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

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

Copied: kdeconnect/repos/extra-x86_64/PKGBUILD (from rev 425158, 
kdeconnect/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 22:31:52 UTC (rev 425159)
@@ -0,0 +1,38 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Kuba Serafinowski 
+
+pkgname=kdeconnect
+pkgver=21.08.1
+pkgrel=2
+pkgdesc='Adds communication between KDE and your smartphone'
+url='https://kdeconnect.kde.org/'
+arch=(x86_64)
+license=(GPL)
+groups=(kde-applications kde-network)
+depends=(kcmutils kwayland libfakekey qca-qt5 kpeoplevcard pulseaudio-qt 
qqc2-desktop-style hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools)
+optdepends=('sshfs: remote filesystem browser' 'python-nautilus: Nautilus 
integration' 'qt5-tools: for some runcommand plugin actions')
+source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-kde-$pkgver.tar.xz{,.sig}
+kdeconnect-openssh-8.8.patch)
+sha256sums=('6330f74b432ecead1f99f8c74dcc24fd97672ca7009267569ff3bceeb3fedc06'
+'SKIP'
+'e5cb803e7b21f31fd40639fa74e6f67e136053a79f3b88f2bbb36bb58a4f')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

+  F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

+  D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

+
+prepare() {
+  patch -d $pkgname-kde-$pkgver -p1 < kdeconnect-openssh-8.8.patch # Fix file 
browsing with openssh 8.8
+}
+
+build() {
+  cmake -B build -S $pkgname-kde-$pkgver \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_LIBEXECDIR=lib
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}

Deleted: kdeconnect-openssh-8.2.patch
===
--- kdeconnect-openssh-8.2.patch2021-10-05 22:31:38 UTC (rev 425158)
+++ kdeconnect-openssh-8.2.patch2021-10-05 22:31:52 UTC (rev 425159)
@@ -1,12 +0,0 @@
-diff --git a/plugins/sftp/mounter.cpp b/plugins/sftp/mounter.cpp
-index fca9907c..f673c9f7 100644
 a/plugins/sftp/mounter.cpp
-+++ b/plugins/sftp/mounter.cpp
-@@ -145,6 +145,7 @@ void Mounter::onPackageReceived(const NetworkPacket& np)
- << QStringLiteral("-o") << QStringLiteral("reconnect")
- << QStringLiteral("-o") << QStringLiteral("ServerAliveInterval=30")
- << QStringLiteral("-o") << QStringLiteral("password_stdin")
-+<< QStringLiteral("-o") << 
QStringLiteral("KexAlgorithms=+diffie-hellman-group14-sha1")
- ;
- 
- m_proc->setProgram(program, arguments);

Copied: kdeconnect/repos/extra-x86_64/kdeconnect-openssh-8.8.patch (from rev 
425158, kdeconnect/trunk/kdeconnect-openssh-8.8.patch)

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

2021-10-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 5, 2021 @ 22:31:38
  Author: arojas
Revision: 425158

Fix file browsing with openssh 8.8 (FS#72350)

Added:
  kdeconnect/trunk/kdeconnect-openssh-8.8.patch
Modified:
  kdeconnect/trunk/PKGBUILD
Deleted:
  kdeconnect/trunk/kdeconnect-openssh-8.2.patch

--+
 PKGBUILD |   12 +---
 kdeconnect-openssh-8.2.patch |   12 
 kdeconnect-openssh-8.8.patch |   14 ++
 3 files changed, 23 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 19:29:20 UTC (rev 425157)
+++ PKGBUILD2021-10-05 22:31:38 UTC (rev 425158)
@@ -4,7 +4,7 @@
 
 pkgname=kdeconnect
 pkgver=21.08.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Adds communication between KDE and your smartphone'
 url='https://kdeconnect.kde.org/'
 arch=(x86_64)
@@ -13,13 +13,19 @@
 depends=(kcmutils kwayland libfakekey qca-qt5 kpeoplevcard pulseaudio-qt 
qqc2-desktop-style hicolor-icon-theme)
 makedepends=(extra-cmake-modules kdoctools)
 optdepends=('sshfs: remote filesystem browser' 'python-nautilus: Nautilus 
integration' 'qt5-tools: for some runcommand plugin actions')
-source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-kde-$pkgver.tar.xz{,.sig})
+source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-kde-$pkgver.tar.xz{,.sig}
+kdeconnect-openssh-8.8.patch)
 sha256sums=('6330f74b432ecead1f99f8c74dcc24fd97672ca7009267569ff3bceeb3fedc06'
-'SKIP')
+'SKIP'
+'e5cb803e7b21f31fd40639fa74e6f67e136053a79f3b88f2bbb36bb58a4f')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid 

   F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87  # Christoph Feck 

   D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker 

 
+prepare() {
+  patch -d $pkgname-kde-$pkgver -p1 < kdeconnect-openssh-8.8.patch # Fix file 
browsing with openssh 8.8
+}
+
 build() {
   cmake -B build -S $pkgname-kde-$pkgver \
 -DBUILD_TESTING=OFF \

Deleted: kdeconnect-openssh-8.2.patch
===
--- kdeconnect-openssh-8.2.patch2021-10-05 19:29:20 UTC (rev 425157)
+++ kdeconnect-openssh-8.2.patch2021-10-05 22:31:38 UTC (rev 425158)
@@ -1,12 +0,0 @@
-diff --git a/plugins/sftp/mounter.cpp b/plugins/sftp/mounter.cpp
-index fca9907c..f673c9f7 100644
 a/plugins/sftp/mounter.cpp
-+++ b/plugins/sftp/mounter.cpp
-@@ -145,6 +145,7 @@ void Mounter::onPackageReceived(const NetworkPacket& np)
- << QStringLiteral("-o") << QStringLiteral("reconnect")
- << QStringLiteral("-o") << QStringLiteral("ServerAliveInterval=30")
- << QStringLiteral("-o") << QStringLiteral("password_stdin")
-+<< QStringLiteral("-o") << 
QStringLiteral("KexAlgorithms=+diffie-hellman-group14-sha1")
- ;
- 
- m_proc->setProgram(program, arguments);

Added: kdeconnect-openssh-8.8.patch
===
--- kdeconnect-openssh-8.8.patch(rev 0)
+++ kdeconnect-openssh-8.8.patch2021-10-05 22:31:38 UTC (rev 425158)
@@ -0,0 +1,14 @@
+diff --git a/plugins/sftp/mounter.cpp b/plugins/sftp/mounter.cpp
+index 2a484186..23ddc616 100644
+--- a/plugins/sftp/mounter.cpp
 b/plugins/sftp/mounter.cpp
+@@ -129,7 +129,8 @@ void Mounter::onPackageReceived(const NetworkPacket& np)
+ << QStringLiteral("-o") << QStringLiteral("IdentityFile=") + 
KdeConnectConfig::instance().privateKeyPath()
+ << QStringLiteral("-o") << QStringLiteral("StrictHostKeyChecking=no") 
//Do not ask for confirmation because it is not a known host
+ << QStringLiteral("-o") << 
QStringLiteral("UserKnownHostsFile=/dev/null") //Prevent storing as a known host
+-<< QStringLiteral("-o") << 
QStringLiteral("HostKeyAlgorithms=+ssh-dss") 
//https://bugs.kde.org/show_bug.cgi?id=351725
++<< QStringLiteral("-o") << 
QStringLiteral("HostKeyAlgorithms=+ssh-rsa") 
//https://bugs.kde.org/show_bug.cgi?id=351725
++<< QStringLiteral("-o") << 
QStringLiteral("PubkeyAcceptedKeyTypes=+ssh-rsa")
+ << QStringLiteral("-o") << QStringLiteral("uid=") + 
QString::number(getuid())
+ << QStringLiteral("-o") << QStringLiteral("gid=") + 
QString::number(getgid())
+ << QStringLiteral("-o") << QStringLiteral("reconnect")



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

2021-10-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 5, 2021 @ 22:25:34
  Author: arojas
Revision: 1027827

archrelease: copy trunk to community-x86_64

Added:
  sshfs/repos/community-x86_64/PKGBUILD
(from rev 1027826, sshfs/trunk/PKGBUILD)
Deleted:
  sshfs/repos/community-x86_64/001-sshfs-3.3.0-meson.build.patch
  sshfs/repos/community-x86_64/002-sshfs-3.3.0-sshfs.c.patch
  sshfs/repos/community-x86_64/PKGBUILD

---+
 001-sshfs-3.3.0-meson.build.patch |   12 -
 002-sshfs-3.3.0-sshfs.c.patch |   21 -
 PKGBUILD  |   78 ++--
 3 files changed, 41 insertions(+), 70 deletions(-)

Deleted: 001-sshfs-3.3.0-meson.build.patch
===
--- 001-sshfs-3.3.0-meson.build.patch   2021-10-05 22:25:22 UTC (rev 1027826)
+++ 001-sshfs-3.3.0-meson.build.patch   2021-10-05 22:25:34 UTC (rev 1027827)
@@ -1,12 +0,0 @@
-diff -ura sshfs-3.3.0.orig/meson.build sshfs-3.3.0.new/meson.build
 sshfs-3.3.0.orig/meson.build   2017-09-20 14:08:27.0 -0300
-+++ sshfs-3.3.0.new/meson.build2017-09-25 11:19:19.946623793 -0300
-@@ -58,7 +58,7 @@
- if rst2man.found()
- custom_target('manpages', input: [ 'sshfs.rst' ], output: [ 'sshfs.1' ],
-   command: [rst2man, '@INPUT@', '@OUTPUT@'], install: true,
--  install_dir: join_paths(get_option('mandir'), '1'))
-+  install_dir: join_paths(get_option('mandir'), 'man1'))
- else
- message('rst2man not found, not building manual page.')
- endif

Deleted: 002-sshfs-3.3.0-sshfs.c.patch
===
--- 002-sshfs-3.3.0-sshfs.c.patch   2021-10-05 22:25:22 UTC (rev 1027826)
+++ 002-sshfs-3.3.0-sshfs.c.patch   2021-10-05 22:25:34 UTC (rev 1027827)
@@ -1,21 +0,0 @@
-diff -ura sshfs-3.3.0.orig/sshfs.c sshfs-3.3.0.new/sshfs.c
 sshfs-3.3.0.orig/sshfs.c   2017-09-20 14:08:27.0 -0300
-+++ sshfs-3.3.0.new/sshfs.c2017-10-01 23:04:23.048755162 -0300
-@@ -428,9 +428,15 @@
-   FUSE_OPT_KEY("writeback_cache=no", FUSE_OPT_KEY_DISCARD),
-   FUSE_OPT_KEY("unreliable_append", FUSE_OPT_KEY_DISCARD),
- 
--  
--  FUSE_OPT_END
-+  /* These may come in from /etc/fstab - we just ignore them */
-+  FUSE_OPT_KEY("auto", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("noauto", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("user", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("nouser", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("users", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("_netdev", FUSE_OPT_KEY_DISCARD),
- 
-+  FUSE_OPT_END
- };
- 
- static struct fuse_opt workaround_opts[] = {

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 22:25:22 UTC (rev 1027826)
+++ PKGBUILD2021-10-05 22:25:34 UTC (rev 1027827)
@@ -1,37 +0,0 @@
-# Maintainer: Giancarlo Razzolini 
-# Contributor: Antonio Rojas 
-# Contributor: Giovanni Scafora 
-
-pkgname=sshfs
-pkgver=3.7.2
-pkgrel=1
-pkgdesc="FUSE client based on the SSH File Transfer Protocol"
-arch=('x86_64')
-url="https://github.com/libfuse/sshfs;
-license=(GPL)
-depends=(fuse3 glib2 openssh)
-makedepends=('meson' 'python-docutils')
-source=(https://github.com/libfuse/sshfs/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
-sha256sums=('1c596d42724d13aeba9f49ee127b8ef2fdeb813e25c6018f92d0c9ec4754fa2d'
-'SKIP')
-validpgpkeys=('ED31791B2C5C1613AF388B8AD113FCAC3C4E599F') # Nikolaus Rath 

-
-prepare() {
-  cd $pkgname-$pkgver
-
-  rm -rf build
-  mkdir build
-  cd build
-  arch-meson ..
-}
-
-build() {
-  cd $pkgname-$pkgver/build
-  ninja
-}
-
-package() {
-  cd $pkgname-$pkgver/build
-
-  DESTDIR="$pkgdir" ninja install
-}

Copied: sshfs/repos/community-x86_64/PKGBUILD (from rev 1027826, 
sshfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 22:25:34 UTC (rev 1027827)
@@ -0,0 +1,41 @@
+# Maintainer: Giancarlo Razzolini 
+# Contributor: Antonio Rojas 
+# Contributor: Giovanni Scafora 
+
+pkgname=sshfs
+pkgver=3.7.2
+pkgrel=2
+pkgdesc="FUSE client based on the SSH File Transfer Protocol"
+arch=('x86_64')
+url="https://github.com/libfuse/sshfs;
+license=(GPL)
+depends=(fuse3 glib2 openssh)
+makedepends=('meson' 'python-docutils')
+source=(https://github.com/libfuse/sshfs/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz{,.asc}
+https://github.com/libfuse/sshfs/commit/508e8cb0.patch)
+sha256sums=('1c596d42724d13aeba9f49ee127b8ef2fdeb813e25c6018f92d0c9ec4754fa2d'
+'SKIP'
+'629f0f07e1efd6c8251750c29981f106caa8fc4e12338c2092376054bfec059b')
+validpgpkeys=('ED31791B2C5C1613AF388B8AD113FCAC3C4E599F') # Nikolaus Rath 

+
+prepare() {
+  cd $pkgname-$pkgver
+
+  patch -p1 -i ../508e8cb0.patch # Fix typo that prevents passing the 

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

2021-10-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 5, 2021 @ 22:25:22
  Author: arojas
Revision: 1027826

Fix typo that prevents passing the PubkeyAcceptedKeyTypes option to ssh

Modified:
  sshfs/trunk/PKGBUILD
Deleted:
  sshfs/trunk/001-sshfs-3.3.0-meson.build.patch
  sshfs/trunk/002-sshfs-3.3.0-sshfs.c.patch

---+
 001-sshfs-3.3.0-meson.build.patch |   12 
 002-sshfs-3.3.0-sshfs.c.patch |   21 -
 PKGBUILD  |   10 +++---
 3 files changed, 7 insertions(+), 36 deletions(-)

Deleted: 001-sshfs-3.3.0-meson.build.patch
===
--- 001-sshfs-3.3.0-meson.build.patch   2021-10-05 21:43:19 UTC (rev 1027825)
+++ 001-sshfs-3.3.0-meson.build.patch   2021-10-05 22:25:22 UTC (rev 1027826)
@@ -1,12 +0,0 @@
-diff -ura sshfs-3.3.0.orig/meson.build sshfs-3.3.0.new/meson.build
 sshfs-3.3.0.orig/meson.build   2017-09-20 14:08:27.0 -0300
-+++ sshfs-3.3.0.new/meson.build2017-09-25 11:19:19.946623793 -0300
-@@ -58,7 +58,7 @@
- if rst2man.found()
- custom_target('manpages', input: [ 'sshfs.rst' ], output: [ 'sshfs.1' ],
-   command: [rst2man, '@INPUT@', '@OUTPUT@'], install: true,
--  install_dir: join_paths(get_option('mandir'), '1'))
-+  install_dir: join_paths(get_option('mandir'), 'man1'))
- else
- message('rst2man not found, not building manual page.')
- endif

Deleted: 002-sshfs-3.3.0-sshfs.c.patch
===
--- 002-sshfs-3.3.0-sshfs.c.patch   2021-10-05 21:43:19 UTC (rev 1027825)
+++ 002-sshfs-3.3.0-sshfs.c.patch   2021-10-05 22:25:22 UTC (rev 1027826)
@@ -1,21 +0,0 @@
-diff -ura sshfs-3.3.0.orig/sshfs.c sshfs-3.3.0.new/sshfs.c
 sshfs-3.3.0.orig/sshfs.c   2017-09-20 14:08:27.0 -0300
-+++ sshfs-3.3.0.new/sshfs.c2017-10-01 23:04:23.048755162 -0300
-@@ -428,9 +428,15 @@
-   FUSE_OPT_KEY("writeback_cache=no", FUSE_OPT_KEY_DISCARD),
-   FUSE_OPT_KEY("unreliable_append", FUSE_OPT_KEY_DISCARD),
- 
--  
--  FUSE_OPT_END
-+  /* These may come in from /etc/fstab - we just ignore them */
-+  FUSE_OPT_KEY("auto", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("noauto", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("user", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("nouser", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("users", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("_netdev", FUSE_OPT_KEY_DISCARD),
- 
-+  FUSE_OPT_END
- };
- 
- static struct fuse_opt workaround_opts[] = {

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 21:43:19 UTC (rev 1027825)
+++ PKGBUILD2021-10-05 22:25:22 UTC (rev 1027826)
@@ -4,7 +4,7 @@
 
 pkgname=sshfs
 pkgver=3.7.2
-pkgrel=1
+pkgrel=2
 pkgdesc="FUSE client based on the SSH File Transfer Protocol"
 arch=('x86_64')
 url="https://github.com/libfuse/sshfs;
@@ -11,14 +11,18 @@
 license=(GPL)
 depends=(fuse3 glib2 openssh)
 makedepends=('meson' 'python-docutils')
-source=(https://github.com/libfuse/sshfs/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
+source=(https://github.com/libfuse/sshfs/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz{,.asc}
+https://github.com/libfuse/sshfs/commit/508e8cb0.patch)
 sha256sums=('1c596d42724d13aeba9f49ee127b8ef2fdeb813e25c6018f92d0c9ec4754fa2d'
-'SKIP')
+'SKIP'
+'629f0f07e1efd6c8251750c29981f106caa8fc4e12338c2092376054bfec059b')
 validpgpkeys=('ED31791B2C5C1613AF388B8AD113FCAC3C4E599F') # Nikolaus Rath 

 
 prepare() {
   cd $pkgname-$pkgver
 
+  patch -p1 -i ../508e8cb0.patch # Fix typo that prevents passing the 
PubkeyAcceptedKeyTypes option to ssh
+
   rm -rf build
   mkdir build
   cd build



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

2021-10-05 Thread Morten Linderud via arch-commits
Date: Tuesday, October 5, 2021 @ 21:43:19
  Author: foxboron
Revision: 1027825

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 21:41:19 UTC (rev 1027824)
+++ PKGBUILD2021-10-05 21:43:19 UTC (rev 1027825)
@@ -1,36 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Maintainer: Morten Linderud 
-# Contributor: Thomas Dziedzic 
-# Contributor: Chris Baker 
-
-pkgname=python-nltk
-pkgver=3.6.3
-pkgrel=1
-pkgdesc='Natural language processing in Python'
-arch=('any')
-url='https://www.nltk.org/'
-license=('APACHE')
-depends=('python-yaml' 'python-click' 'python-regex')
-makedepends=('python-setuptools')
-checkdepends=('python-nose' 'nltk-data' 'python-requests' 'python-regex')
-optdepends=('nltk-data: test data'
-   'python-numpy: used for calculations'
-   'python-matplotlib: used for plotting')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/nltk/nltk/archive/$pkgver.tar.gz;)
-sha256sums=('9524a4efd0f40c73914de0d5ff402f198ed559cf725f8e09588b0d8237c808c3')
-
-build() {
-  cd nltk-$pkgver
-  python setup.py build
-}
-
-# Need to fix the nltk-data split
-#check(){
-#  cd nltk-$pkgver
-#  python ./nltk/test/runtests.py
-#}
-
-package() {
-  cd nltk-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-nltk/repos/community-any/PKGBUILD (from rev 1027824, 
python-nltk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 21:43:19 UTC (rev 1027825)
@@ -0,0 +1,36 @@
+# Maintainer: Alexander F Rødseth 
+# Maintainer: Morten Linderud 
+# Contributor: Thomas Dziedzic 
+# Contributor: Chris Baker 
+
+pkgname=python-nltk
+pkgver=3.6.4
+pkgrel=1
+pkgdesc='Natural language processing in Python'
+arch=('any')
+url='https://www.nltk.org/'
+license=('APACHE')
+depends=('python-yaml' 'python-click' 'python-regex')
+makedepends=('python-setuptools')
+checkdepends=('python-nose' 'nltk-data' 'python-requests' 'python-regex')
+optdepends=('nltk-data: test data'
+   'python-numpy: used for calculations'
+   'python-matplotlib: used for plotting')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/nltk/nltk/archive/$pkgver.tar.gz;)
+sha256sums=('e9d12065cb6607b454cf9562123a6b85869f4b5ca8a4ff968d1bc2078af896fc')
+
+build() {
+  cd nltk-$pkgver
+  python setup.py build
+}
+
+# Need to fix the nltk-data split
+#check(){
+#  cd nltk-$pkgver
+#  python ./nltk/test/runtests.py
+#}
+
+package() {
+  cd nltk-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



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

2021-10-05 Thread Morten Linderud via arch-commits
Date: Tuesday, October 5, 2021 @ 21:39:40
  Author: foxboron
Revision: 1027823

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 21:39:35 UTC (rev 1027822)
+++ PKGBUILD2021-10-05 21:39:40 UTC (rev 1027823)
@@ -1,37 +0,0 @@
-# Maintainer: Alexander F Rødseth 
-# Maintainer: Morten Linderud 
-# Contributor: Thomas Dziedzic 
-# Contributor: Chris Baker 
-
-pkgname=python-nltk
-pkgver=3.6.2
-pkgrel=4
-pkgdesc='Natural language processing in Python'
-arch=('any')
-url='https://www.nltk.org/'
-license=('APACHE')
-depends=('python-yaml' 'python-click' 'python-regex')
-makedepends=('python-setuptools')
-checkdepends=('python-nose' 'nltk-data' 'python-requests' 'python-regex')
-optdepends=('nltk-data: test data'
-   'python-numpy: used for calculations'
-   'python-matplotlib: used for plotting')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/nltk/nltk/archive/$pkgver.tar.gz;)
-sha256sums=('d0f9d9a82cd3d7cdab34f57eb23ea6595e12da5c4c7a35a2864258c222eca74b')
-
-build() {
-  cd nltk-$pkgver
-  export PYTHONHASHSEED=0
-  python setup.py build
-}
-
-# Need to fix the nltk-data split
-#check(){
-#  cd nltk-$pkgver
-#  python ./nltk/test/runtests.py
-#}
-
-package() {
-  cd nltk-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-nltk/repos/community-any/PKGBUILD (from rev 1027822, 
python-nltk/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 21:39:40 UTC (rev 1027823)
@@ -0,0 +1,36 @@
+# Maintainer: Alexander F Rødseth 
+# Maintainer: Morten Linderud 
+# Contributor: Thomas Dziedzic 
+# Contributor: Chris Baker 
+
+pkgname=python-nltk
+pkgver=3.6.4
+pkgrel=1
+pkgdesc='Natural language processing in Python'
+arch=('any')
+url='https://www.nltk.org/'
+license=('APACHE')
+depends=('python-yaml' 'python-click' 'python-regex')
+makedepends=('python-setuptools')
+checkdepends=('python-nose' 'nltk-data' 'python-requests' 'python-regex')
+optdepends=('nltk-data: test data'
+   'python-numpy: used for calculations'
+   'python-matplotlib: used for plotting')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/nltk/nltk/archive/$pkgver.tar.gz;)
+sha256sums=('e9d12065cb6607b454cf9562123a6b85869f4b5ca8a4ff968d1bc2078af896fc')
+
+build() {
+  cd nltk-$pkgver
+  python setup.py build
+}
+
+# Need to fix the nltk-data split
+#check(){
+#  cd nltk-$pkgver
+#  python ./nltk/test/runtests.py
+#}
+
+package() {
+  cd nltk-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



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

2021-10-05 Thread Morten Linderud via arch-commits
Date: Tuesday, October 5, 2021 @ 21:39:35
  Author: foxboron
Revision: 1027822

upgpkg: python-nltk 3.6.4-1

Modified:
  python-nltk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 21:35:20 UTC (rev 1027821)
+++ PKGBUILD2021-10-05 21:39:35 UTC (rev 1027822)
@@ -4,7 +4,7 @@
 # Contributor: Chris Baker 
 
 pkgname=python-nltk
-pkgver=3.6.3
+pkgver=3.6.4
 pkgrel=1
 pkgdesc='Natural language processing in Python'
 arch=('any')
@@ -17,7 +17,7 @@
'python-numpy: used for calculations'
'python-matplotlib: used for plotting')
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/nltk/nltk/archive/$pkgver.tar.gz;)
-sha256sums=('9524a4efd0f40c73914de0d5ff402f198ed559cf725f8e09588b0d8237c808c3')
+sha256sums=('e9d12065cb6607b454cf9562123a6b85869f4b5ca8a4ff968d1bc2078af896fc')
 
 build() {
   cd nltk-$pkgver



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

2021-10-05 Thread George Rawlinson via arch-commits
Date: Tuesday, October 5, 2021 @ 21:35:20
  Author: grawlinson
Revision: 1027821

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|  108 +++---
 nushell.install |   24 ++--
 2 files changed, 66 insertions(+), 66 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 21:34:33 UTC (rev 1027820)
+++ PKGBUILD2021-10-05 21:35:20 UTC (rev 1027821)
@@ -1,54 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor:  KokaKiwi 
-# Contributor: Felix Golatofski 
-# Contributor: Bumsik Kim 
-
-pkgname=nushell
-pkgver=0.37.0
-pkgrel=1
-pkgdesc="A new type of shell"
-arch=('x86_64')
-url="https://www.nushell.sh;
-license=('MIT')
-depends=('openssl' 'libxcb' 'libx11' 'curl' 'bzip2')
-makedepends=('rust')
-install="$pkgname.install"
-source=("$pkgname-$pkgver.tar.gz::https://github.com/nushell/nushell/archive/$pkgver.tar.gz;)
-b2sums=('fa77a8a4e37733b7a05eece368a2ecf835f7c87a32997bd97d3812e16168dc02d72896cbab5ad51056bf2967f6b24e9284ab65a90c6feab02b13c2f6f83a79a5')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --frozen --workspace --features=extra
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-  cargo test --frozen --workspace --features=extra
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  # binaries
-  find target/release \
--maxdepth 1 \
--executable \
--type f \
--exec install -vDm755 -t "$pkgdir/usr/bin" "{}" +
-
-  # remove binaries not present in upstream releases
-  rm -f "$pkgdir/usr/bin/table"
-  rm -f "$pkgdir/usr/bin/"nu_plugin_{core,extra}_*
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" ./*.md
-  cp -vr docs/* "$pkgdir/usr/share/doc/$pkgname"
-
-  # license
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
-}

Copied: nushell/repos/community-x86_64/PKGBUILD (from rev 1027820, 
nushell/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 21:35:20 UTC (rev 1027821)
@@ -0,0 +1,54 @@
+# Maintainer: George Rawlinson 
+# Contributor:  KokaKiwi 
+# Contributor: Felix Golatofski 
+# Contributor: Bumsik Kim 
+
+pkgname=nushell
+pkgver=0.38.0
+pkgrel=1
+pkgdesc="A new type of shell"
+arch=('x86_64')
+url="https://www.nushell.sh;
+license=('MIT')
+depends=('openssl' 'libxcb' 'libx11' 'curl' 'bzip2')
+makedepends=('rust')
+install="$pkgname.install"
+source=("$pkgname-$pkgver.tar.gz::https://github.com/nushell/nushell/archive/$pkgver.tar.gz;)
+b2sums=('e8f3cb4a3f84677d949c187fa4304c32f2f2f1f57c7546a42946c6e01abdf6b1147efeb3243a3b934c7ea6ac30b0042dadff9794f811009865a29f65fd3ebef6')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --frozen --workspace --features=extra
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo test --frozen --workspace --features=extra
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  # binaries
+  find target/release \
+-maxdepth 1 \
+-executable \
+-type f \
+-exec install -vDm755 -t "$pkgdir/usr/bin" "{}" +
+
+  # remove binaries not present in upstream releases
+  rm -f "$pkgdir/usr/bin/table"
+  rm -f "$pkgdir/usr/bin/"nu_plugin_{core,extra}_*
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" ./*.md
+  cp -vr docs/* "$pkgdir/usr/share/doc/$pkgname"
+
+  # license
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
+}

Deleted: nushell.install
===
--- nushell.install 2021-10-05 21:34:33 UTC (rev 1027820)
+++ nushell.install 2021-10-05 21:35:20 UTC (rev 1027821)
@@ -1,12 +0,0 @@
-post_install() {
-  grep -Fqx /bin/nu /etc/shells || echo /bin/nu >> /etc/shells
-  grep -Fqx /usr/bin/nu /etc/shells || echo /usr/bin/nu >> /etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  sed -i -r '/^(\/usr)?\/bin\/nu$/d' etc/shells
-}

Copied: nushell/repos/community-x86_64/nushell.install (from rev 1027820, 
nushell/trunk/nushell.install)
===
--- nushell.install (rev 0)
+++ nushell.install 2021-10-05 21:35:20 UTC (rev 1027821)
@@ -0,0 +1,12 @@
+post_install() {
+  grep -Fqx /bin/nu /etc/shells || echo /bin/nu >> /etc/shells
+  grep -Fqx /usr/bin/nu /etc/shells || echo /usr/bin/nu >> /etc/shells
+}
+
+post_upgrade() {

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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 21:34:33
  Author: felixonmars
Revision: 1027820

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 1027818, 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 1027818, haskell-hls-call-hierarchy-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 21:34:33 UTC (rev 1027820)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-call-hierarchy-plugin
+pkgname=haskell-hls-call-hierarchy-plugin
+pkgver=1.0.0.0
+pkgrel=1
+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 -u 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=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  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
+}
+
+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 nushell/trunk (PKGBUILD)

2021-10-05 Thread George Rawlinson via arch-commits
Date: Tuesday, October 5, 2021 @ 21:34:32
  Author: grawlinson
Revision: 1027819

upgpkg: nushell 0.38.0-1

New upstream release.

Modified:
  nushell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 21:34:16 UTC (rev 1027818)
+++ PKGBUILD2021-10-05 21:34:32 UTC (rev 1027819)
@@ -4,7 +4,7 @@
 # Contributor: Bumsik Kim 
 
 pkgname=nushell
-pkgver=0.37.0
+pkgver=0.38.0
 pkgrel=1
 pkgdesc="A new type of shell"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 makedepends=('rust')
 install="$pkgname.install"
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/nushell/nushell/archive/$pkgver.tar.gz;)
-b2sums=('fa77a8a4e37733b7a05eece368a2ecf835f7c87a32997bd97d3812e16168dc02d72896cbab5ad51056bf2967f6b24e9284ab65a90c6feab02b13c2f6f83a79a5')
+b2sums=('e8f3cb4a3f84677d949c187fa4304c32f2f2f1f57c7546a42946c6e01abdf6b1147efeb3243a3b934c7ea6ac30b0042dadff9794f811009865a29f65fd3ebef6')
 
 prepare() {
   cd "$pkgname-$pkgver"



[arch-commits] Commit in (4 files)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 21:34:16
  Author: felixonmars
Revision: 1027818

addpkg: haskell-hls-call-hierarchy-plugin 1.0.0.0-1

Added:
  haskell-hls-call-hierarchy-plugin/
  haskell-hls-call-hierarchy-plugin/repos/
  haskell-hls-call-hierarchy-plugin/trunk/
  haskell-hls-call-hierarchy-plugin/trunk/PKGBUILD

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

Added: haskell-hls-call-hierarchy-plugin/trunk/PKGBUILD
===
--- haskell-hls-call-hierarchy-plugin/trunk/PKGBUILD
(rev 0)
+++ haskell-hls-call-hierarchy-plugin/trunk/PKGBUILD2021-10-05 21:34:16 UTC 
(rev 1027818)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-call-hierarchy-plugin
+pkgname=haskell-hls-call-hierarchy-plugin
+pkgver=1.0.0.0
+pkgrel=1
+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 -u 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=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build
+  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
+}
+
+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 plocate/repos/community-x86_64 (10 files)

2021-10-05 Thread Morten Linderud via arch-commits
Date: Tuesday, October 5, 2021 @ 21:33:40
  Author: foxboron
Revision: 1027817

archrelease: copy trunk to community-x86_64

Added:
  plocate/repos/community-x86_64/PKGBUILD
(from rev 1027816, plocate/trunk/PKGBUILD)
  plocate/repos/community-x86_64/plocate.install
(from rev 1027816, plocate/trunk/plocate.install)
  plocate/repos/community-x86_64/plocate.sysusers
(from rev 1027816, plocate/trunk/plocate.sysusers)
  plocate/repos/community-x86_64/plocate.tmpfiles
(from rev 1027816, plocate/trunk/plocate.tmpfiles)
  plocate/repos/community-x86_64/updatedb.conf
(from rev 1027816, plocate/trunk/updatedb.conf)
Deleted:
  plocate/repos/community-x86_64/PKGBUILD
  plocate/repos/community-x86_64/plocate.install
  plocate/repos/community-x86_64/plocate.sysusers
  plocate/repos/community-x86_64/plocate.tmpfiles
  plocate/repos/community-x86_64/updatedb.conf

--+
 PKGBUILD |   92 +++--
 plocate.install  |   20 +--
 plocate.sysusers |2 -
 plocate.tmpfiles |2 -
 updatedb.conf|8 ++--
 5 files changed, 63 insertions(+), 61 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 21:33:29 UTC (rev 1027816)
+++ PKGBUILD2021-10-05 21:33:40 UTC (rev 1027817)
@@ -1,45 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Hans-Nikolai Viessmann 
-
-pkgname=plocate
-pkgver=1.1.11
-pkgrel=1
-pkgdesc="Alternative to locate, faster and compatible with mlocate's database."
-arch=('x86_64' 'i686')
-url="https://plocate.sesse.net;
-license=('GPL2')
-install=plocate.install
-depends=('zstd' 'liburing' 'systemd')
-makedepends=('meson')
-conflicts=('mlocate')
-backup=('etc/updatedb.conf')
-source=("${url}/download/${pkgname}-${pkgver}.tar.gz"
-'plocate.sysusers'
-'plocate.tmpfiles'
-'updatedb.conf')
-sha256sums=('e79cc6656c4bcbb25eb59ae8dcfbd5a1494061c6e80c38dc54ab25c7e1b88e4f'
-'1713a8fc8b81f4a390bf8597c4c0e917474379002dcc984aad2f44218d10c82a'
-'adda399ac42f0faa002caab5bf932777c0006ae7c4387add859c9f77321b4202'
-'d00796741e2194032d0185b40de70ff5c8a11fda416a70434eb0aa2020981f91')
-
-build() {
-cd $pkgname-$pkgver
-arch-meson \
--Dinstall_cron=false \
--Dinstall_systemd=true\
--Dlocategroup=locate \
-../build
-meson compile -C ../build
-}
-
-package() {
-cd $pkgname-$pkgver
-DESTDIR="$pkgdir" meson install -C ../build
-
-chgrp 21 "${pkgdir}/usr/bin/plocate"
-chmod 2755 "${pkgdir}/usr/bin/plocate"
-
-install -Dm644 ../plocate.tmpfiles 
"$pkgdir/usr/lib/tmpfiles.d/plocate.conf"
-install -Dm644 ../plocate.sysusers 
"$pkgdir/usr/lib/sysusers.d/plocate.conf"
-install -Dm644 ../updatedb.conf "${pkgdir}/etc/updatedb.conf"
-}

Copied: plocate/repos/community-x86_64/PKGBUILD (from rev 1027816, 
plocate/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 21:33:40 UTC (rev 1027817)
@@ -0,0 +1,47 @@
+# Maintainer: Morten Linderud 
+# Contributor: Hans-Nikolai Viessmann 
+
+pkgname=plocate
+pkgver=1.1.12
+pkgrel=1
+pkgdesc="Alternative to locate, faster and compatible with mlocate's database."
+arch=('x86_64' 'i686')
+url="https://plocate.sesse.net;
+license=('GPL2')
+install=plocate.install
+depends=('zstd' 'liburing' 'systemd')
+makedepends=('meson')
+conflicts=('mlocate')
+provides=('mlocate')
+backup=('etc/updatedb.conf')
+source=("${url}/download/${pkgname}-${pkgver}.tar.gz"
+'plocate.sysusers'
+'plocate.tmpfiles'
+'updatedb.conf')
+sha256sums=('a11d25ad118f5a534dc079150667f92c9a1844f12eb290df3ce9383c51e555b5'
+'1713a8fc8b81f4a390bf8597c4c0e917474379002dcc984aad2f44218d10c82a'
+'adda399ac42f0faa002caab5bf932777c0006ae7c4387add859c9f77321b4202'
+'d00796741e2194032d0185b40de70ff5c8a11fda416a70434eb0aa2020981f91')
+
+build() {
+cd $pkgname-$pkgver
+arch-meson \
+-Dinstall_cron=false \
+-Dinstall_systemd=true\
+-Dlocategroup=locate \
+../build
+meson compile -C ../build
+}
+
+package() {
+cd $pkgname-$pkgver
+DESTDIR="$pkgdir" meson install -C ../build
+
+chgrp 21 "${pkgdir}/usr/bin/plocate"
+chmod 2755 "${pkgdir}/usr/bin/plocate"
+
+install -Dm644 ../plocate.tmpfiles 
"$pkgdir/usr/lib/tmpfiles.d/plocate.conf"
+install -Dm644 ../plocate.sysusers 
"$pkgdir/usr/lib/sysusers.d/plocate.conf"
+install -Dm644 ../updatedb.conf "${pkgdir}/etc/updatedb.conf"
+ln -sf /usr/bin/plocate "$pkgdir/usr/bin/mlocate"
+}

Deleted: plocate.install
===
--- plocate.install 2021-10-05 21:33:29 UTC (rev 1027816)
+++ plocate.install 2021-10-05 21:33:40 UTC (rev 1027817)
@@ -1,10 +0,0 @@
-post_upgrade() {
-  cat << EOF
-plocate now provides its 

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

2021-10-05 Thread Morten Linderud via arch-commits
Date: Tuesday, October 5, 2021 @ 21:33:29
  Author: foxboron
Revision: 1027816

upgpkg: plocate 1.1.12-1 - FS#72199: Provide mlocate

Modified:
  plocate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 21:29:18 UTC (rev 1027815)
+++ PKGBUILD2021-10-05 21:33:29 UTC (rev 1027816)
@@ -2,7 +2,7 @@
 # Contributor: Hans-Nikolai Viessmann 
 
 pkgname=plocate
-pkgver=1.1.11
+pkgver=1.1.12
 pkgrel=1
 pkgdesc="Alternative to locate, faster and compatible with mlocate's database."
 arch=('x86_64' 'i686')
@@ -12,12 +12,13 @@
 depends=('zstd' 'liburing' 'systemd')
 makedepends=('meson')
 conflicts=('mlocate')
+provides=('mlocate')
 backup=('etc/updatedb.conf')
 source=("${url}/download/${pkgname}-${pkgver}.tar.gz"
 'plocate.sysusers'
 'plocate.tmpfiles'
 'updatedb.conf')
-sha256sums=('e79cc6656c4bcbb25eb59ae8dcfbd5a1494061c6e80c38dc54ab25c7e1b88e4f'
+sha256sums=('a11d25ad118f5a534dc079150667f92c9a1844f12eb290df3ce9383c51e555b5'
 '1713a8fc8b81f4a390bf8597c4c0e917474379002dcc984aad2f44218d10c82a'
 'adda399ac42f0faa002caab5bf932777c0006ae7c4387add859c9f77321b4202'
 'd00796741e2194032d0185b40de70ff5c8a11fda416a70434eb0aa2020981f91')
@@ -42,4 +43,5 @@
 install -Dm644 ../plocate.tmpfiles 
"$pkgdir/usr/lib/tmpfiles.d/plocate.conf"
 install -Dm644 ../plocate.sysusers 
"$pkgdir/usr/lib/sysusers.d/plocate.conf"
 install -Dm644 ../updatedb.conf "${pkgdir}/etc/updatedb.conf"
+ln -sf /usr/bin/plocate "$pkgdir/usr/bin/mlocate"
 }



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

2021-10-05 Thread Morten Linderud via arch-commits
Date: Tuesday, October 5, 2021 @ 21:29:18
  Author: foxboron
Revision: 1027815

archrelease: copy trunk to community-x86_64

Added:
  libmd/repos/community-x86_64/PKGBUILD
(from rev 1027814, libmd/trunk/PKGBUILD)
Deleted:
  libmd/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 21:29:12 UTC (rev 1027814)
+++ PKGBUILD2021-10-05 21:29:18 UTC (rev 1027815)
@@ -1,33 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Morten Linderud 
-# Contributor: C. Dominik Bódi 
-
-pkgname=libmd
-pkgver=1.0.3
-pkgrel=1
-pkgdesc="Message Digest functions from BSD systems"
-arch=('x86_64')
-url="https://www.hadrons.org/software/libmd/;
-license=('BSD')
-depends=('glibc')
-source=("https://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.asc})
-sha256sums=('5a02097f95cc250a3f1001865e4dbba5f1d15554120f95693c0541923c52af4a'
-'SKIP')
-validpgpkeys=('4F3E74F436050C10F5696574B972BF3EA4AE57A3') # Guillem Jover
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-make -k check
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: libmd/repos/community-x86_64/PKGBUILD (from rev 1027814, 
libmd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 21:29:18 UTC (rev 1027815)
@@ -0,0 +1,33 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Morten Linderud 
+# Contributor: C. Dominik Bódi 
+
+pkgname=libmd
+pkgver=1.0.4
+pkgrel=1
+pkgdesc="Message Digest functions from BSD systems"
+arch=('x86_64')
+url="https://www.hadrons.org/software/libmd/;
+license=('BSD')
+depends=('glibc')
+source=("https://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.asc})
+sha256sums=('f51c921042e34beddeded4b75557656559cf5b1f2448033b4c1eec11c07e530f'
+'SKIP')
+validpgpkeys=('4F3E74F436050C10F5696574B972BF3EA4AE57A3') # Guillem Jover
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure --prefix=/usr
+make
+}
+
+check() {
+cd ${pkgname}-${pkgver}
+make -k check
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}/
+}



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

2021-10-05 Thread Morten Linderud via arch-commits
Date: Tuesday, October 5, 2021 @ 21:29:12
  Author: foxboron
Revision: 1027814

upgpkg: libmd 1.0.4-1

Modified:
  libmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 21:28:44 UTC (rev 1027813)
+++ PKGBUILD2021-10-05 21:29:12 UTC (rev 1027814)
@@ -3,7 +3,7 @@
 # Contributor: C. Dominik Bódi 
 
 pkgname=libmd
-pkgver=1.0.3
+pkgver=1.0.4
 pkgrel=1
 pkgdesc="Message Digest functions from BSD systems"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 license=('BSD')
 depends=('glibc')
 
source=("https://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.asc})
-sha256sums=('5a02097f95cc250a3f1001865e4dbba5f1d15554120f95693c0541923c52af4a'
+sha256sums=('f51c921042e34beddeded4b75557656559cf5b1f2448033b4c1eec11c07e530f'
 'SKIP')
 validpgpkeys=('4F3E74F436050C10F5696574B972BF3EA4AE57A3') # Guillem Jover
 



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

2021-10-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 5, 2021 @ 21:28:44
  Author: arojas
Revision: 1027813

archrelease: copy trunk to community-any

Added:
  jupyterlab/repos/community-any/PKGBUILD
(from rev 1027812, jupyterlab/trunk/PKGBUILD)
Deleted:
  jupyterlab/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 21:28:13 UTC (rev 1027812)
+++ PKGBUILD2021-10-05 21:28:44 UTC (rev 1027813)
@@ -1,28 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=jupyterlab
-_pipname=jupyterlab
-pkgver=3.1.14
-pkgrel=1
-pkgdesc='JupyterLab computational environment'
-arch=(any)
-url='https://github.com/jupyterlab/jupyterlab'
-license=(custom)
-makedepends=(python-setuptools)
-depends=(python-jupyterlab_server python-jupyter_packaging jupyter-nbclassic 
nodejs)
-optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets 
support')
-source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
-sha256sums=('13174cb6076dd5da6f1b85725ccfcc9518d8f98e86b8b644fc89b1dfaeda63a9')
-
-build() {
-  cd $pkgname-$pkgver
-  python setup.py build 
-}
-
-package() {
-  cd $pkgname-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  mv "$pkgdir"/usr/etc "$pkgdir"
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: jupyterlab/repos/community-any/PKGBUILD (from rev 1027812, 
jupyterlab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 21:28:44 UTC (rev 1027813)
@@ -0,0 +1,28 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=jupyterlab
+_pipname=jupyterlab
+pkgver=3.1.16
+pkgrel=1
+pkgdesc='JupyterLab computational environment'
+arch=(any)
+url='https://github.com/jupyterlab/jupyterlab'
+license=(custom)
+makedepends=(python-setuptools)
+depends=(python-jupyterlab_server python-jupyter_packaging jupyter-nbclassic 
nodejs)
+optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets 
support')
+source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
+sha256sums=('8f3579a33b1250bc7120b05c8281a92e5e78171e9315449f533621a470cddeb2')
+
+build() {
+  cd $pkgname-$pkgver
+  python setup.py build 
+}
+
+package() {
+  cd $pkgname-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  mv "$pkgdir"/usr/etc "$pkgdir"
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-10-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 5, 2021 @ 21:28:13
  Author: arojas
Revision: 1027812

Update to 3.1.16

Modified:
  jupyterlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 21:24:11 UTC (rev 1027811)
+++ PKGBUILD2021-10-05 21:28:13 UTC (rev 1027812)
@@ -2,7 +2,7 @@
 
 pkgname=jupyterlab
 _pipname=jupyterlab
-pkgver=3.1.14
+pkgver=3.1.16
 pkgrel=1
 pkgdesc='JupyterLab computational environment'
 arch=(any)
@@ -12,7 +12,7 @@
 depends=(python-jupyterlab_server python-jupyter_packaging jupyter-nbclassic 
nodejs)
 optdepends=('npm: to install extensions' 'jupyterlab-widgets: ipywidgets 
support')
 
source=(https://pypi.io/packages/source/${_pipname:0:1}/$_pipname/$_pipname-$pkgver.tar.gz)
-sha256sums=('13174cb6076dd5da6f1b85725ccfcc9518d8f98e86b8b644fc89b1dfaeda63a9')
+sha256sums=('8f3579a33b1250bc7120b05c8281a92e5e78171e9315449f533621a470cddeb2')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in python-poetry/repos/community-any (8 files)

2021-10-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, October 5, 2021 @ 21:24:11
  Author: svenstaro
Revision: 1027811

archrelease: copy trunk to community-any

Added:
  
python-poetry/repos/community-any/0001-Suppress-dependency-versions-which-are-known-to-be-t.patch
(from rev 1027810, 
python-poetry/trunk/0001-Suppress-dependency-versions-which-are-known-to-be-t.patch)
  
python-poetry/repos/community-any/0001-tests-cleanup-cache-and-http-usage.patch
(from rev 1027810, 
python-poetry/trunk/0001-tests-cleanup-cache-and-http-usage.patch)
  python-poetry/repos/community-any/PKGBUILD
(from rev 1027810, python-poetry/trunk/PKGBUILD)
  python-poetry/repos/community-any/poetry-completions-generator
(from rev 1027810, python-poetry/trunk/poetry-completions-generator)
Deleted:
  
python-poetry/repos/community-any/0001-Suppress-dependency-versions-which-are-known-to-be-t.patch
  
python-poetry/repos/community-any/0001-tests-cleanup-cache-and-http-usage.patch
  python-poetry/repos/community-any/PKGBUILD
  python-poetry/repos/community-any/poetry-completions-generator

-+
 0001-Suppress-dependency-versions-which-are-known-to-be-t.patch |  106 
 0001-tests-cleanup-cache-and-http-usage.patch   | 1116 
+-
 PKGBUILD|  158 -
 poetry-completions-generator|   30 
 4 files changed, 705 insertions(+), 705 deletions(-)

Deleted: 0001-Suppress-dependency-versions-which-are-known-to-be-t.patch
===
--- 0001-Suppress-dependency-versions-which-are-known-to-be-t.patch 
2021-10-05 21:24:00 UTC (rev 1027810)
+++ 0001-Suppress-dependency-versions-which-are-known-to-be-t.patch 
2021-10-05 21:24:11 UTC (rev 1027811)
@@ -1,53 +0,0 @@
-From cc5b938f7f9e3c536f4a60c35cdd2085b3933618 Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Mon, 27 Apr 2020 21:51:57 -0400
-Subject: [PATCH] Fix completely broken dependencies.
-
-poetry habitually engages in:
-- dependency versions which are known to be too pessimistic
-- multiple editions of dependencies per python version
-
-The former all work just fine in reported use and should not be pinned; we
-package versions in Arch which are "too new". This is what unittests are
-for, anyway.
-
-The latter tries to enforce minimum versions of dependencies, but pins
-it twice, once with more relaxed pinning for older versions of python.
-If an old version works, it works irrespective of the python version,
-and you don't need to use minimum requirements as your mallet to force
-people to upgrade to the latest version anyway.
-https://github.com/dephell/dephell/issues/330

- pyproject.toml | 11 ++-
- 1 file changed, 2 insertions(+), 9 deletions(-)
-
-diff --git a/pyproject.toml b/pyproject.toml
-index 8c1f137..81ebc89 100644
 a/pyproject.toml
-+++ b/pyproject.toml
-@@ -51,20 +51,13 @@ futures = { version = "^3.3.0", python = "~2.7" }
- glob2 = { version = "^0.6", python = "~2.7" }
- # functools32 is needed for Python 2.7
- functools32 = { version = "^3.2.3", python = "~2.7" }
--keyring = [
--{ version = "^18.0.1", python = "~2.7" },
--{ version = "^20.0.1", python = "~3.5" },
--{ version = "^21.2.0", python = "^3.6" }
--]
-+keyring = "*"
- # Use subprocess32 for Python 2.7
- subprocess32 = { version = "^3.5", python = "~2.7" }
- importlib-metadata = {version = "^1.6.0", python = "<3.8"}
- 
- [tool.poetry.dev-dependencies]
--pytest = [
--{version = "^4.1", python = "<3.5"},
--{version = "^5.4.3", python = ">=3.5"}
--]
-+pytest = { version = ">=4.1" }
- pytest-cov = "^2.5"
- pytest-mock = "^1.9"
- pre-commit = { version = "^2.6", python = "^3.6.1" }
--- 
-2.28.0
-

Copied: 
python-poetry/repos/community-any/0001-Suppress-dependency-versions-which-are-known-to-be-t.patch
 (from rev 1027810, 
python-poetry/trunk/0001-Suppress-dependency-versions-which-are-known-to-be-t.patch)
===
--- 0001-Suppress-dependency-versions-which-are-known-to-be-t.patch 
(rev 0)
+++ 0001-Suppress-dependency-versions-which-are-known-to-be-t.patch 
2021-10-05 21:24:11 UTC (rev 1027811)
@@ -0,0 +1,53 @@
+From cc5b938f7f9e3c536f4a60c35cdd2085b3933618 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz 
+Date: Mon, 27 Apr 2020 21:51:57 -0400
+Subject: [PATCH] Fix completely broken dependencies.
+
+poetry habitually engages in:
+- dependency versions which are known to be too pessimistic
+- multiple editions of dependencies per python version
+
+The former all work just fine in reported use and should not be pinned; we
+package versions in Arch which are "too new". This is what unittests are
+for, anyway.
+
+The latter tries to enforce minimum versions of dependencies, but pins
+it twice, once with more relaxed pinning for older versions of python.
+If an old version works, it works 

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

2021-10-05 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, October 5, 2021 @ 21:24:00
  Author: svenstaro
Revision: 1027810

upgpkg: python-poetry 1.1.11-1

Modified:
  python-poetry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 21:23:28 UTC (rev 1027809)
+++ PKGBUILD2021-10-05 21:24:00 UTC (rev 1027810)
@@ -3,7 +3,7 @@
 
 _pkgname=poetry
 pkgname=python-poetry
-pkgver=1.1.10
+pkgver=1.1.11
 pkgrel=1
 pkgdesc="Python dependency management and packaging made easy"
 arch=('any')
@@ -22,11 +22,11 @@
 "0001-Suppress-dependency-versions-which-are-known-to-be-t.patch"
 "0001-tests-cleanup-cache-and-http-usage.patch"
 "poetry-completions-generator")
-sha256sums=('fbe606581dcf2200d63d15c3fc8d2b24895f459d805c9c8b62e8061b9409f31b'
+sha256sums=('abe56468c0ac989c9c6c4e02265806b8fb40decbf6635f1ab2515b354114705c'
 '8bb321ae9ad06d4829c71727af7979bc68d7f325ccdaec919dda4fe8ac92f1a7'
 '4658321c04f36fb3aced9acc44b61f2cf22c5f9d8b8c715111881b24c3e0c99b'
 '970225289188ea8dc49fbec8a2bfe0c891aee80ff56ba6e69bdd8afef8bccab6')
-b2sums=('b65dd506eaefea49db20aafd21fcf7a48178625686f6f412cb97e76e8e8366a79843a2ee13550e4822828694c2bf8f17b7fb31be94a2e1197344b2d363cfef7a'
+b2sums=('852a9fa3a4308515121fa77a7fc58d76f7786a5b3b0493c30bc4a72e5353bb252f7d506f3dd6fd344e93722552bea3c71bff647b7e5f4b41977b97b5ffe52298'
 
'c1c65fdfa1153d3e4c872adc00f02aea055268d28cd385918a5a3d60fb355c39b15eab895cf4aebd1b74f126cc225f870d60aa971a6593855ce094b448786a02'
 
'8750de6ee2748a7dac079af1ff35b43dbce3f2c48249322f3322290d03f46ea95513dfd223adc232f7f73cf0ac19554de96a3b8793a0dc13b38041e87569ca19'
 
'3fd62e7936d7547dcd06a1a7519f176a1597553ecc959144a4be799bb7e2d688e187f14604d3e359ed10c128c722ebd588c07ca318e0be0a31d276dcb388e2e1')



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

2021-10-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 5, 2021 @ 21:23:28
  Author: arojas
Revision: 1027809

archrelease: copy trunk to community-x86_64

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

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

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

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

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

Copied: giac/repos/community-x86_64/giac-test-pari-2.11.patch (from rev 
1027808, giac/trunk/giac-test-pari-2.11.patch)
===
--- giac-test-pari-2.11.patch   (rev 0)
+++ giac-test-pari-2.11.patch   2021-10-05 21:23:28 UTC (rev 1027809)
@@ -0,0 +1,17 @@
+Change test output for PARI 2.11
+
+See https://trac.sagemath.org/ticket/25567
+and 

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

2021-10-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 5, 2021 @ 21:23:14
  Author: arojas
Revision: 1027808

Update to 1.7.0.37

Modified:
  giac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 21:03:56 UTC (rev 1027807)
+++ PKGBUILD2021-10-05 21:23:14 UTC (rev 1027808)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=giac
-_pkgver=1.7.0-35
+_pkgver=1.7.0-37
 pkgver=${_pkgver//-/.}
 pkgrel=1
 pkgdesc='A free computer algebra system'
@@ -15,7 +15,7 @@
 provides=(libgiac xcas)
 
source=(http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgname}_$_pkgver.tar.gz
 giac-test-pari-2.11.patch)
-sha256sums=('e17961bcd17e29e9cfc0b68f7b6046fde52416e3f6e007f55223ada0dbe1'
+sha256sums=('ff06d32808295061f3a7139edb8d6397036fce94da68e27afcf55e40f271f8d7'
 'c5f091986f0a0807fc1ae5a3b7454132816e9bc3ed64411f0a7bdf90a8c8e624')
 
 prepare() {



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 21:03:56
  Author: felixonmars
Revision: 1027807

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 21:03:42 UTC (rev 1027806)
+++ PKGBUILD2021-10-05 21:03:56 UTC (rev 1027807)
@@ -1,29 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-digitalocean
-pkgver=1.16.0
-pkgrel=1
-pkgdesc='digitalocean.com API to manage Droplets and Images'
-arch=('any')
-license=('LGPL')
-url='https://github.com/koalalorenzo/python-digitalocean'
-depends=('python-requests' 'python-jsonpickle')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'python-responses')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/koalalorenzo/python-digitalocean/archive/v$pkgver.tar.gz;)
-sha512sums=('110614aeb33e2dab0564b4569058233916626d50da14d42f9702c9275f13442dccb7b77829b2dc8e97e8bbbd53d094116cebe9b3aedad920d2b0c156a5680bf7')
-
-build() {
-  cd python-digitalocean-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd python-digitalocean-$pkgver
-  python setup.py pytest || echo 
"https://github.com/koalalorenzo/python-digitalocean/issues/258;
-}
-
-package() {
-  cd python-digitalocean-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-digitalocean/repos/community-any/PKGBUILD (from rev 1027806, 
python-digitalocean/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 21:03:56 UTC (rev 1027807)
@@ -0,0 +1,29 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-digitalocean
+pkgver=1.17.0
+pkgrel=1
+pkgdesc='digitalocean.com API to manage Droplets and Images'
+arch=('any')
+license=('LGPL')
+url='https://github.com/koalalorenzo/python-digitalocean'
+depends=('python-requests' 'python-jsonpickle')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'python-responses')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/koalalorenzo/python-digitalocean/archive/v$pkgver.tar.gz;)
+sha512sums=('3b5f5adb5fac9693450954e568433cecb43152d4cb2b5709126dc7c69c6b84f19428dcd3688718588a986d3ea9170a956387f3050cd10a69ba89d5dcdf8e100c')
+
+build() {
+  cd python-digitalocean-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd python-digitalocean-$pkgver
+  python setup.py pytest || echo 
"https://github.com/koalalorenzo/python-digitalocean/issues/258;
+}
+
+package() {
+  cd python-digitalocean-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 21:03:42
  Author: felixonmars
Revision: 1027806

upgpkg: python-digitalocean 1.17.0-1

Modified:
  python-digitalocean/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 20:59:43 UTC (rev 1027805)
+++ PKGBUILD2021-10-05 21:03:42 UTC (rev 1027806)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-digitalocean
-pkgver=1.16.0
+pkgver=1.17.0
 pkgrel=1
 pkgdesc='digitalocean.com API to manage Droplets and Images'
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('python-setuptools')
 checkdepends=('python-pytest-runner' 'python-responses')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/koalalorenzo/python-digitalocean/archive/v$pkgver.tar.gz;)
-sha512sums=('110614aeb33e2dab0564b4569058233916626d50da14d42f9702c9275f13442dccb7b77829b2dc8e97e8bbbd53d094116cebe9b3aedad920d2b0c156a5680bf7')
+sha512sums=('3b5f5adb5fac9693450954e568433cecb43152d4cb2b5709126dc7c69c6b84f19428dcd3688718588a986d3ea9170a956387f3050cd10a69ba89d5dcdf8e100c')
 
 build() {
   cd python-digitalocean-$pkgver



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:59:43
  Author: felixonmars
Revision: 1027805

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 1027804, 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 1027804, haskell-hls-fourmolu-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 20:59:43 UTC (rev 1027805)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-fourmolu-plugin
+pkgname=haskell-hls-fourmolu-plugin
+pkgver=1.0.0.2
+pkgrel=1
+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)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:59:31
  Author: felixonmars
Revision: 1027804

upgpkg: haskell-hls-fourmolu-plugin 1.0.0.2-1: rebuild with ghcide 1.4.1.0, 
hiedb 0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, 
hls-class-plugin 1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 
1.0.1.0, hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 20:49:47 UTC (rev 1027803)
+++ PKGBUILD2021-10-05 20:59:31 UTC (rev 1027804)
@@ -2,8 +2,8 @@
 
 _hkgname=hls-fourmolu-plugin
 pkgname=haskell-hls-fourmolu-plugin
-pkgver=1.0.0.1
-pkgrel=54
+pkgver=1.0.0.2
+pkgrel=1
 pkgdesc="Integration with the Fourmolu code formatter"
 url="https://hackage.haskell.org/package/hls-fourmolu-plugin;
 license=("Apache")
@@ -13,7 +13,7 @@
 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;)
-sha256sums=('c78f938155ba487d550e4afb11363c5aded34d5592a74680eb73a022ffda3b0d')
+sha512sums=('88a92c70c34d14699bcc19e7d1ff061955c4e9a6819f32c5b46d8b31d1d1f06b12be65bb84ede6046601a6d8daafcb8fc65725ceb3fc67e7afeef4097094ed46')
 
 prepare() {
   cd $_hkgname-$pkgver



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

2021-10-05 Thread Daniel Bermond via arch-commits
Date: Tuesday, October 5, 2021 @ 20:49:47
  Author: dbermond
Revision: 1027803

archrelease: copy trunk to community-x86_64

Added:
  libmysofa/repos/community-x86_64/PKGBUILD
(from rev 1027802, libmysofa/trunk/PKGBUILD)
Deleted:
  libmysofa/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 20:49:22 UTC (rev 1027802)
+++ PKGBUILD2021-10-05 20:49:47 UTC (rev 1027803)
@@ -1,34 +0,0 @@
-# Maintainer: Daniel Bermond 
-
-pkgname=libmysofa
-pkgver=1.2
-pkgrel=1
-pkgdesc='C library to read HRTFs if they are stored in the AES69-2015 SOFA 
format'
-arch=('x86_64')
-url='https://github.com/hoene/libmysofa/'
-license=('BSD')
-depends=('zlib')
-makedepends=('cmake' 'cunit')
-checkdepends=('nodejs')
-source=("https://github.com/hoene/libmysofa/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('7638dec8ba2b5408cf32ab41d37cb29460095c4b2161a860480c122e71806ba9')
-
-build() {
-cmake \
--B "${pkgname}-${pkgver}/build" \
--S "${pkgname}-${pkgver}" \
--DCMAKE_BUILD_TYPE:STRING='None' \
--DCMAKE_INSTALL_PREFIX:PATH='/usr' \
--DCODE_COVERAGE:BOOL='OFF' \
--Wno-dev
-make -C "${pkgname}-${pkgver}/build" all
-}
-
-check() {
-make -C "${pkgname}-${pkgver}/build" test
-}
-
-package() {
-make -C "${pkgname}-${pkgver}/build" DESTDIR="$pkgdir" install
-install -D -m644 "${pkgname}-${pkgver}/LICENSE" -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: libmysofa/repos/community-x86_64/PKGBUILD (from rev 1027802, 
libmysofa/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 20:49:47 UTC (rev 1027803)
@@ -0,0 +1,34 @@
+# Maintainer: Daniel Bermond 
+
+pkgname=libmysofa
+pkgver=1.2.1
+pkgrel=1
+pkgdesc='C library to read HRTFs if they are stored in the AES69-2015 SOFA 
format'
+arch=('x86_64')
+url='https://github.com/hoene/libmysofa/'
+license=('BSD')
+depends=('zlib')
+makedepends=('cmake' 'cunit')
+checkdepends=('nodejs')
+source=("https://github.com/hoene/libmysofa/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('94cb02e488de4dc0860c8d23b29d93d290bb0a004d4aa17e1642985bba158ee9')
+
+build() {
+cmake \
+-B "${pkgname}-${pkgver}/build" \
+-S "${pkgname}-${pkgver}" \
+-DCMAKE_BUILD_TYPE:STRING='None' \
+-DCMAKE_INSTALL_PREFIX:PATH='/usr' \
+-DCODE_COVERAGE:BOOL='OFF' \
+-Wno-dev
+make -C "${pkgname}-${pkgver}/build" all
+}
+
+check() {
+make -C "${pkgname}-${pkgver}/build" test
+}
+
+package() {
+make -C "${pkgname}-${pkgver}/build" DESTDIR="$pkgdir" install
+install -D -m644 "${pkgname}-${pkgver}/LICENSE" -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
+}



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

2021-10-05 Thread Daniel Bermond via arch-commits
Date: Tuesday, October 5, 2021 @ 20:49:22
  Author: dbermond
Revision: 1027802

upgpkg: libmysofa 1.2.1-1

Modified:
  libmysofa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 20:47:11 UTC (rev 1027801)
+++ PKGBUILD2021-10-05 20:49:22 UTC (rev 1027802)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel Bermond 
 
 pkgname=libmysofa
-pkgver=1.2
+pkgver=1.2.1
 pkgrel=1
 pkgdesc='C library to read HRTFs if they are stored in the AES69-2015 SOFA 
format'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 makedepends=('cmake' 'cunit')
 checkdepends=('nodejs')
 
source=("https://github.com/hoene/libmysofa/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('7638dec8ba2b5408cf32ab41d37cb29460095c4b2161a860480c122e71806ba9')
+sha256sums=('94cb02e488de4dc0860c8d23b29d93d290bb0a004d4aa17e1642985bba158ee9')
 
 build() {
 cmake \



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:47:11
  Author: felixonmars
Revision: 1027801

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 1027800, 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 1027800, haskell-hls-floskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 20:47:11 UTC (rev 1027801)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-floskell-plugin
+pkgname=haskell-hls-floskell-plugin
+pkgver=1.0.0.1
+pkgrel=1
+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)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:46:59
  Author: felixonmars
Revision: 1027800

upgpkg: haskell-hls-floskell-plugin 1.0.0.1-1: rebuild with ghcide 1.4.1.0, 
hiedb 0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, 
hls-class-plugin 1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 
1.0.1.0, hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 20:45:54 UTC (rev 1027799)
+++ PKGBUILD2021-10-05 20:46:59 UTC (rev 1027800)
@@ -2,8 +2,8 @@
 
 _hkgname=hls-floskell-plugin
 pkgname=haskell-hls-floskell-plugin
-pkgver=1.0.0.0
-pkgrel=65
+pkgver=1.0.0.1
+pkgrel=1
 pkgdesc="Integration with the Floskell code formatter"
 url="https://hackage.haskell.org/package/hls-floskell-plugin;
 license=("Apache")
@@ -12,12 +12,11 @@
 makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
 checkdepends=('git')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha256sums=('c873a0d71001cba5391435a7fdc8ce69dbf27070cfc887b1f51b76a20622c471')
+sha512sums=('0f420355b67447426e77f149a5cf735f613b2c863b08f625e0a0d91a33bcf565684d702f67743ef9d50eaa235551c30c76743fedd78ead9fbed429e838acf113')
 
 prepare() {
   cd $_hkgname-$pkgver
   gen-setup
-  uusi -u ghcide $_hkgname.cabal
 }
 
 build() {



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:45:54
  Author: felixonmars
Revision: 1027799

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 1027798, 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 1027798, haskell-hls-haddock-comments-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 20:45:54 UTC (rev 1027799)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-haddock-comments-plugin
+pkgname=haskell-hls-haddock-comments-plugin
+pkgver=1.0.0.3
+pkgrel=1
+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)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:45:42
  Author: felixonmars
Revision: 1027798

upgpkg: haskell-hls-haddock-comments-plugin 1.0.0.3-1: rebuild with ghcide 
1.4.1.0, hiedb 0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, 
hls-class-plugin 1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 
1.0.1.0, hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 20:44:35 UTC (rev 1027797)
+++ PKGBUILD2021-10-05 20:45:42 UTC (rev 1027798)
@@ -2,8 +2,8 @@
 
 _hkgname=hls-haddock-comments-plugin
 pkgname=haskell-hls-haddock-comments-plugin
-pkgver=1.0.0.2
-pkgrel=65
+pkgver=1.0.0.3
+pkgrel=1
 pkgdesc="Haddock comments plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server;
 license=("Apache")
@@ -13,7 +13,7 @@
 makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
 checkdepends=('git')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha512sums=('f50c9fc595e8cebcff38d4fb7c3f6f8df59d0df5e8924718812c3ee38da38db5d25ab082e1347d8fdd6a01a779e2c03e029fb6b74bcfd6ebeb55ac1a21642fb6')
+sha512sums=('0bc705b51d86d400c2f843330be5ffa9064726da64644cbc1a4c2fead1caaec5812c35ef499877aa9d07417c3854c933187dd227cd8c90f54042ead07f38bcc7')
 
 prepare() {
   cd $_hkgname-$pkgver



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:44:35
  Author: felixonmars
Revision: 1027797

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 1027796, 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 1027796, haskell-hls-module-name-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 20:44:35 UTC (rev 1027797)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-module-name-plugin
+pkgname=haskell-hls-module-name-plugin
+pkgver=1.0.0.1
+pkgrel=1
+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)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:44:23
  Author: felixonmars
Revision: 1027796

upgpkg: haskell-hls-module-name-plugin 1.0.0.1-1: rebuild with ghcide 1.4.1.0, 
hiedb 0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, 
hls-class-plugin 1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 
1.0.1.0, hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 20:43:16 UTC (rev 1027795)
+++ PKGBUILD2021-10-05 20:44:23 UTC (rev 1027796)
@@ -2,8 +2,8 @@
 
 _hkgname=hls-module-name-plugin
 pkgname=haskell-hls-module-name-plugin
-pkgver=1.0.0.0
-pkgrel=65
+pkgver=1.0.0.1
+pkgrel=1
 pkgdesc="Module name plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-module-name-plugin;
 license=("Apache")
@@ -13,7 +13,7 @@
 makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
 checkdepends=('git')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha256sums=('abcf1d52aa552b97e459c0e8c70af03f8428e292c253dcd14eea753283fd81a8')
+sha512sums=('0a4d0171df49d2d417dac00853a9f0c58618efb7a5805ab3b95441f0d8c60872947935ca94b33ca75518e311a136a893f0e3744fc49cdb94fba6f55367f3c0be')
 
 prepare() {
   cd $_hkgname-$pkgver



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:43:16
  Author: felixonmars
Revision: 1027795

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 1027794, 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 1027794, haskell-hls-ormolu-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 20:43:16 UTC (rev 1027795)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-ormolu-plugin
+pkgname=haskell-hls-ormolu-plugin
+pkgver=1.0.1.0
+pkgrel=1
+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 -u 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)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:43:03
  Author: felixonmars
Revision: 1027794

upgpkg: haskell-hls-ormolu-plugin 1.0.1.0-1: rebuild with ghcide 1.4.1.0, hiedb 
0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, hls-class-plugin 
1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 1.0.1.0, 
hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 20:42:34 UTC (rev 1027793)
+++ PKGBUILD2021-10-05 20:43:03 UTC (rev 1027794)
@@ -2,23 +2,23 @@
 
 _hkgname=hls-ormolu-plugin
 pkgname=haskell-hls-ormolu-plugin
-pkgver=1.0.0.0
-pkgrel=55
+pkgver=1.0.1.0
+pkgrel=1
 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-ghcide' 'haskell-hls-plugin-api' 
'haskell-lens'
- 'haskell-lsp' 'haskell-ormolu' 'haskell-ghc-api-compat')
+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;)
-sha256sums=('d965b7fcc78b36362de872a69da87e41c48dc191e966f62d123b63994c0d38c6')
+sha512sums=('330242298e6c4608d31bb0eac3ef926cfd7d5ff2bd07ab57cd46a1904c133322181e2e35da3beb01f1f97efd466d653d12a3563939fe86e70d820301aca52661')
 
 prepare() {
   cd $_hkgname-$pkgver
   gen-setup
-  uusi -u ormolu -r ghc:ghc,ghc-api-compat $_hkgname.cabal
+  uusi -u ghc-api-compat $_hkgname.cabal
 }
 
 build() {



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

2021-10-05 Thread Daniel Bermond via arch-commits
Date: Tuesday, October 5, 2021 @ 20:42:34
  Author: dbermond
Revision: 1027793

archrelease: copy trunk to community-any

Added:
  pybind11/repos/community-any/PKGBUILD
(from rev 1027792, pybind11/trunk/PKGBUILD)
Deleted:
  pybind11/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 20:42:09 UTC (rev 1027792)
+++ PKGBUILD2021-10-05 20:42:34 UTC (rev 1027793)
@@ -1,57 +0,0 @@
-# Maintainer : Daniel Bermond 
-# Maintainer : Santiago Torres-Arias 
-# Contributor: Matthew Ellison 
-
-pkgname=pybind11
-pkgver=2.7.1
-pkgrel=1
-pkgdesc='A lightweight header-only library that exposes C++ types in Python 
and vice versa'
-arch=('any')
-url='https://pybind11.readthedocs.org/'
-license=('BSD')
-optdepends=('python: for python bindings')
-makedepends=('cmake' 'boost' 'eigen' 'python' 'python-setuptools' 
'python-pytest')
- #'python-sphinx' 'python-sphinx_rtd_theme' 'python-breathe')
-checkdepends=('python-numpy' 'python-scipy')
-source=("https://github.com/pybind/pybind11/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('616d1c42e4cf14fa27b2a4ff759d7d7b33006fdc5ad8fd603bb2c22622f27020')
-
-build () {
-cd "${pkgname}-${pkgver}"
-python setup.py build
-
-# tests
-cmake \
--B "${srcdir}/build-cmake" \
--S "${srcdir}/${pkgname}-${pkgver}" \
--DCMAKE_BUILD_TYPE:STRING='None' \
--DCMAKE_INSTALL_PREFIX:PATH='/usr' \
--Wno-dev
-make -C "${srcdir}/build-cmake" all mock_install
-
-# manpage (needs python-sphinxcontrib-{moderncmakedomain,svg2pdfconverter})
-# make -C "${srcdir}/${pkgname}-${pkgver}/docs" man
-}
-
-check() {
-make -C build-cmake check
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-python setup.py install --root="$pkgdir" --skip-build --optimize='1'
-
-# symlinks
-local _pyver
-_pyver="$(python -c 'import sys; print("%s.%s" %sys.version_info[0:2])')"
-install -d -m755 "${pkgdir}/usr"/{include,lib/cmake}
-ln -s "../lib/python${_pyver}/site-packages/pybind11/include/pybind11" 
"${pkgdir}/usr/include/pybind11"
-ln -s 
"../../lib/python${_pyver}/site-packages/pybind11/share/cmake/pybind11" 
"${pkgdir}/usr/lib/cmake/pybind11"
-
-# man page
-# install -D -m644 "docs/.build/man/${pkgname}.1" 
"${pkgdir}/usr/share/man/man7/${pkgname}.7"
-# sed -i '/^\.TH/s/"1"/"7"/' "${pkgdir}/usr/share/man/man7/${pkgname}.7"
-
-# license
-install -D -m644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}

Copied: pybind11/repos/community-any/PKGBUILD (from rev 1027792, 
pybind11/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 20:42:34 UTC (rev 1027793)
@@ -0,0 +1,57 @@
+# Maintainer : Daniel Bermond 
+# Maintainer : Santiago Torres-Arias 
+# Contributor: Matthew Ellison 
+
+pkgname=pybind11
+pkgver=2.8.0
+pkgrel=1
+pkgdesc='A lightweight header-only library that exposes C++ types in Python 
and vice versa'
+arch=('any')
+url='https://pybind11.readthedocs.org/'
+license=('BSD')
+optdepends=('python: for python bindings')
+makedepends=('cmake' 'boost' 'eigen' 'python' 'python-setuptools' 
'python-pytest')
+ #'python-sphinx' 'python-sphinx_rtd_theme' 'python-breathe')
+checkdepends=('python-numpy' 'python-scipy')
+source=("https://github.com/pybind/pybind11/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('9ca7770fc5453b10b00a4a2f99754d7a29af8952330be5f5602e7c2635fa3e79')
+
+build () {
+cd "${pkgname}-${pkgver}"
+python setup.py build
+
+# tests
+cmake \
+-B "${srcdir}/build-cmake" \
+-S "${srcdir}/${pkgname}-${pkgver}" \
+-DCMAKE_BUILD_TYPE:STRING='None' \
+-DCMAKE_INSTALL_PREFIX:PATH='/usr' \
+-Wno-dev
+make -C "${srcdir}/build-cmake" all mock_install
+
+# manpage (needs python-sphinxcontrib-{moderncmakedomain,svg2pdfconverter})
+# make -C "${srcdir}/${pkgname}-${pkgver}/docs" man
+}
+
+check() {
+make -C build-cmake check
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+python setup.py install --root="$pkgdir" --skip-build --optimize='1'
+
+# symlinks
+local _pyver
+_pyver="$(python -c 'import sys; print("%s.%s" %sys.version_info[0:2])')"
+install -d -m755 "${pkgdir}/usr"/{include,lib/cmake}
+ln -s "../lib/python${_pyver}/site-packages/pybind11/include/pybind11" 
"${pkgdir}/usr/include/pybind11"
+ln -s 
"../../lib/python${_pyver}/site-packages/pybind11/share/cmake/pybind11" 
"${pkgdir}/usr/lib/cmake/pybind11"
+
+# man page
+# install -D -m644 "docs/.build/man/${pkgname}.1" 
"${pkgdir}/usr/share/man/man7/${pkgname}.7"
+# sed -i '/^\.TH/s/"1"/"7"/' 

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

2021-10-05 Thread Daniel Bermond via arch-commits
Date: Tuesday, October 5, 2021 @ 20:42:09
  Author: dbermond
Revision: 1027792

upgpkg: pybind11 2.8.0-1

Modified:
  pybind11/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 20:42:00 UTC (rev 1027791)
+++ PKGBUILD2021-10-05 20:42:09 UTC (rev 1027792)
@@ -3,7 +3,7 @@
 # Contributor: Matthew Ellison 
 
 pkgname=pybind11
-pkgver=2.7.1
+pkgver=2.8.0
 pkgrel=1
 pkgdesc='A lightweight header-only library that exposes C++ types in Python 
and vice versa'
 arch=('any')
@@ -14,7 +14,7 @@
  #'python-sphinx' 'python-sphinx_rtd_theme' 'python-breathe')
 checkdepends=('python-numpy' 'python-scipy')
 
source=("https://github.com/pybind/pybind11/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('616d1c42e4cf14fa27b2a4ff759d7d7b33006fdc5ad8fd603bb2c22622f27020')
+sha256sums=('9ca7770fc5453b10b00a4a2f99754d7a29af8952330be5f5602e7c2635fa3e79')
 
 build () {
 cd "${pkgname}-${pkgver}"



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:42:00
  Author: felixonmars
Revision: 1027791

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 1027790, 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 1027790, haskell-hls-pragmas-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 20:42:00 UTC (rev 1027791)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-pragmas-plugin
+pkgname=haskell-hls-pragmas-plugin
+pkgver=1.0.1.0
+pkgrel=1
+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)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:41:48
  Author: felixonmars
Revision: 1027790

upgpkg: haskell-hls-pragmas-plugin 1.0.1.0-1: rebuild with ghcide 1.4.1.0, 
hiedb 0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, 
hls-class-plugin 1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 
1.0.1.0, hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 20:38:52 UTC (rev 1027789)
+++ PKGBUILD2021-10-05 20:41:48 UTC (rev 1027790)
@@ -2,8 +2,8 @@
 
 _hkgname=hls-pragmas-plugin
 pkgname=haskell-hls-pragmas-plugin
-pkgver=1.0.0.0
-pkgrel=65
+pkgver=1.0.1.0
+pkgrel=1
 pkgdesc="Pragmas plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-pragmas-plugin;
 license=("Apache")
@@ -10,15 +10,14 @@
 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-test' 
'haskell-lsp-types')
+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;)
-sha256sums=('faffabfb7da5b88dc777185cfe879779e5391b14d4e4f7196cda303a5b4978fe')
+sha512sums=('bf284033b7d2c3491b655ca32a7a791a4e62c838a4caafea36e28844052b2a192cf39d97ae1415a698ea22d7ffcc5f0290c37a91bba841b93c1ceabe089d7e07')
 
 prepare() {
   cd $_hkgname-$pkgver
   gen-setup
-  uusi -u ghcide $_hkgname.cabal
 }
 
 build() {



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:38:52
  Author: felixonmars
Revision: 1027789

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 1027788, 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 1027788, haskell-hls-stylish-haskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 20:38:52 UTC (rev 1027789)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-stylish-haskell-plugin
+pkgname=haskell-hls-stylish-haskell-plugin
+pkgver=1.0.0.2
+pkgrel=1
+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)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 20:38:40
  Author: felixonmars
Revision: 1027788

upgpkg: haskell-hls-stylish-haskell-plugin 1.0.0.2-1: rebuild with ghcide 
1.4.1.0, hiedb 0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, 
hls-class-plugin 1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 
1.0.1.0, hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 20:32:31 UTC (rev 1027787)
+++ PKGBUILD2021-10-05 20:38:40 UTC (rev 1027788)
@@ -2,8 +2,8 @@
 
 _hkgname=hls-stylish-haskell-plugin
 pkgname=haskell-hls-stylish-haskell-plugin
-pkgver=1.0.0.1
-pkgrel=54
+pkgver=1.0.0.2
+pkgrel=1
 pkgdesc="Integration with the Stylish Haskell code formatter"
 url="https://hackage.haskell.org/package/hls-stylish-haskell-plugin;
 license=("Apache")
@@ -13,7 +13,7 @@
 makedepends=('ghc' 'uusi' 'haskell-hls-test-utils')
 checkdepends=('git')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha256sums=('8e6220b0c06a3dca0cd55a342684a970a4318b49eb396f37d0c0d56402dc6fb6')
+sha512sums=('d850d4be6cc746b6279512bb359efda197aeebd467a59a21670f3b95977c6ba086852dedde3c48171f0cff8405c8e340dea44fe3e187e4731a06eb112502ad9c')
 
 prepare() {
   cd $_hkgname-$pkgver



[arch-commits] Commit in emby-theater/repos/community-x86_64 (6 files)

2021-10-05 Thread Maxime Gauduin via arch-commits
Date: Tuesday, October 5, 2021 @ 20:32:31
  Author: alucryd
Revision: 1027787

archrelease: copy trunk to community-x86_64

Added:
  emby-theater/repos/community-x86_64/PKGBUILD
(from rev 1027786, emby-theater/trunk/PKGBUILD)
  emby-theater/repos/community-x86_64/emby-theater.desktop
(from rev 1027786, emby-theater/trunk/emby-theater.desktop)
  emby-theater/repos/community-x86_64/emby-theater.png
(from rev 1027786, emby-theater/trunk/emby-theater.png)
Deleted:
  emby-theater/repos/community-x86_64/PKGBUILD
  emby-theater/repos/community-x86_64/emby-theater.desktop
  emby-theater/repos/community-x86_64/emby-theater.png

--+
 PKGBUILD |  193 -
 emby-theater.desktop |   12 +--
 2 files changed, 104 insertions(+), 101 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 20:32:24 UTC (rev 1027786)
+++ PKGBUILD2021-10-05 20:32:31 UTC (rev 1027787)
@@ -1,95 +0,0 @@
-# Maintainer: Maxime Gauduin 
-
-pkgname=emby-theater
-pkgver=3.0.15
-_libmpv_ver=2021_10_05
-pkgrel=1
-pkgdesc='An Electron app for Emby'
-arch=(x86_64)
-url=https://emby.media
-license=(GPL2)
-depends=(
-  at-spi2-atk
-  at-spi2-core
-  cairo
-  gcc-libs
-  glibc
-  libasound.so
-  libatk-1.0.so
-  libcups
-  libdbus-1.so
-  libdrm
-  libexpat.so
-  libfontconfig.so
-  libfreetype.so
-  libgdk-3.so
-  libgdk_pixbuf-2.0.so
-  libgio-2.0.so
-  libglib-2.0.so
-  libgobject-2.0.so
-  libgtk-3.so
-  libmfx
-  libpango-1.0.so
-  libpangocairo-1.0.so
-  libpulse.so
-  libuuid.so
-  libva-drm.so
-  libva.so
-  libx11
-  libxcb
-  libxcomposite
-  libxcursor
-  libxdamage
-  libxext
-  libxfixes
-  libxi
-  libxrandr
-  libxrender
-  libxss
-  libxtst
-  mesa
-  nspr
-  nss
-  ocl-icd
-  zlib
-)
-makedepends=(
-  git
-  npm
-)
-_commit=68ca6e4b9e3918dfd96bccef79d6a1937daf7e78
-#_tag=aeaab148c71414f5b6c29cfc0f7cf4eac0f95c55
-source=(
-  
git+https://github.com/MediaBrowser/emby-theater-electron.git#commit=${_commit}
-  #git+https://github.com/MediaBrowser/emby-theater-electron.git#tag=${_tag}
-  https://mediabrowser.github.io/embytools/libmpv-${_libmpv_ver}-x64.tar.xz
-  emby-theater.desktop
-  emby-theater.png
-)
-b2sums=('SKIP'
-
'514898625050a05ccfd2c5b1eb4d57c459a538bbcae705a2c5fc0f9a6030ef6822375644909c399f447d2933f47f8002079a9a75232db56b6c54cf106f12d430'
-
'33b1230792bfc034d28fed21c60f9ecb3d7392293289a878866a20a505acabd03848df92300c9b1fd76d40ff03a6926451308c2b525ded0a75a17b77672c1e3b'
-
'130bcfad0a216d66e44e3551af14700b3745d55b89c4523543646ae0d1fc00f6787ad8ace827a47f0f671d340308e4529c91f1c018002e64c89cb0ca924aeb4b')
-
-prepare() {
-  cd emby-theater-electron
-  npm install
-  npm install electron-packager
-}
-
-build() {
-  cd emby-theater-electron
-  npx electron-packager . emby-theater --platform linux --arch x64
-}
-
-package() {
-  install -dm 755 "${pkgdir}"/usr/{bin,lib}
-  cp -dr --no-preserve='ownership' 
emby-theater-electron/emby-theater-linux-x64 "${pkgdir}"/usr/lib/emby-theater
-  rm -rf 
"${pkgdir}"/usr/lib/emby-theater/resources/app/libmpv/{arm,arm64,ia32,mpv-win32-*}
-  ln -s /usr/lib/emby-theater/emby-theater "${pkgdir}"/usr/bin/emby-theater
-  install -Dm 755 lib/libmpv.so* -t "${pkgdir}"/usr/lib/emby-theater/
-  install -Dm 644 emby-theater.desktop -t "${pkgdir}"/usr/share/applications/
-  install -Dm 644 emby-theater.png -t "${pkgdir}"/usr/share/pixmaps/
-}
-
-# vim: ts=2 sw=2 et:

Copied: emby-theater/repos/community-x86_64/PKGBUILD (from rev 1027786, 
emby-theater/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 20:32:31 UTC (rev 1027787)
@@ -0,0 +1,98 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=emby-theater
+pkgver=3.0.15
+_libmpv_ver=2021_10_05
+pkgrel=2
+pkgdesc='An Electron app for Emby'
+arch=(x86_64)
+url=https://emby.media
+license=(GPL2)
+depends=(
+  at-spi2-atk
+  at-spi2-core
+  cairo
+  gcc-libs
+  glibc
+  libasound.so
+  libatk-1.0.so
+  libcups
+  libdbus-1.so
+  libdrm
+  libexpat.so
+  libfontconfig.so
+  libfreetype.so
+  libgdk-3.so
+  libgdk_pixbuf-2.0.so
+  libgio-2.0.so
+  libglib-2.0.so
+  libgobject-2.0.so
+  libgtk-3.so
+  libmfx
+  libpango-1.0.so
+  libpangocairo-1.0.so
+  libpulse.so
+  libuuid.so
+  libva-drm.so
+  libva.so
+  libx11
+  libxcb
+  libxcomposite
+  libxcursor
+  libxdamage
+  libxext
+  libxfixes
+  libxi
+  libxrandr
+  libxrender
+  libxss
+  libxtst
+  mesa
+  nspr
+  nss
+  ocl-icd
+  zlib
+)
+makedepends=(
+  git
+  npm
+)
+optdepends=(
+  'libcec: HDMI-CEC support'
+)
+_commit=68ca6e4b9e3918dfd96bccef79d6a1937daf7e78
+#_tag=aeaab148c71414f5b6c29cfc0f7cf4eac0f95c55
+source=(
+  
git+https://github.com/MediaBrowser/emby-theater-electron.git#commit=${_commit}
+  #git+https://github.com/MediaBrowser/emby-theater-electron.git#tag=${_tag}
+  

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

2021-10-05 Thread Maxime Gauduin via arch-commits
Date: Tuesday, October 5, 2021 @ 20:32:24
  Author: alucryd
Revision: 1027786

upgpkg: emby-theater 3.0.15-2

Modified:
  emby-theater/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 20:24:38 UTC (rev 1027785)
+++ PKGBUILD2021-10-05 20:32:24 UTC (rev 1027786)
@@ -3,7 +3,7 @@
 pkgname=emby-theater
 pkgver=3.0.15
 _libmpv_ver=2021_10_05
-pkgrel=1
+pkgrel=2
 pkgdesc='An Electron app for Emby'
 arch=(x86_64)
 url=https://emby.media
@@ -57,6 +57,9 @@
   git
   npm
 )
+optdepends=(
+  'libcec: HDMI-CEC support'
+)
 _commit=68ca6e4b9e3918dfd96bccef79d6a1937daf7e78
 #_tag=aeaab148c71414f5b6c29cfc0f7cf4eac0f95c55
 source=(



[arch-commits] Commit in emby-theater (5 files)

2021-10-05 Thread Maxime Gauduin via arch-commits
Date: Tuesday, October 5, 2021 @ 20:24:38
  Author: alucryd
Revision: 1027785

archrelease: copy trunk to community-x86_64

Added:
  emby-theater/repos/
  emby-theater/repos/community-x86_64/
  emby-theater/repos/community-x86_64/PKGBUILD
(from rev 1027784, emby-theater/trunk/PKGBUILD)
  emby-theater/repos/community-x86_64/emby-theater.desktop
(from rev 1027784, emby-theater/trunk/emby-theater.desktop)
  emby-theater/repos/community-x86_64/emby-theater.png
(from rev 1027784, emby-theater/trunk/emby-theater.png)

--+
 PKGBUILD |   95 +
 emby-theater.desktop |6 +++
 2 files changed, 101 insertions(+)

Copied: emby-theater/repos/community-x86_64/PKGBUILD (from rev 1027784, 
emby-theater/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2021-10-05 20:24:38 UTC (rev 1027785)
@@ -0,0 +1,95 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=emby-theater
+pkgver=3.0.15
+_libmpv_ver=2021_10_05
+pkgrel=1
+pkgdesc='An Electron app for Emby'
+arch=(x86_64)
+url=https://emby.media
+license=(GPL2)
+depends=(
+  at-spi2-atk
+  at-spi2-core
+  cairo
+  gcc-libs
+  glibc
+  libasound.so
+  libatk-1.0.so
+  libcups
+  libdbus-1.so
+  libdrm
+  libexpat.so
+  libfontconfig.so
+  libfreetype.so
+  libgdk-3.so
+  libgdk_pixbuf-2.0.so
+  libgio-2.0.so
+  libglib-2.0.so
+  libgobject-2.0.so
+  libgtk-3.so
+  libmfx
+  libpango-1.0.so
+  libpangocairo-1.0.so
+  libpulse.so
+  libuuid.so
+  libva-drm.so
+  libva.so
+  libx11
+  libxcb
+  libxcomposite
+  libxcursor
+  libxdamage
+  libxext
+  libxfixes
+  libxi
+  libxrandr
+  libxrender
+  libxss
+  libxtst
+  mesa
+  nspr
+  nss
+  ocl-icd
+  zlib
+)
+makedepends=(
+  git
+  npm
+)
+_commit=68ca6e4b9e3918dfd96bccef79d6a1937daf7e78
+#_tag=aeaab148c71414f5b6c29cfc0f7cf4eac0f95c55
+source=(
+  
git+https://github.com/MediaBrowser/emby-theater-electron.git#commit=${_commit}
+  #git+https://github.com/MediaBrowser/emby-theater-electron.git#tag=${_tag}
+  https://mediabrowser.github.io/embytools/libmpv-${_libmpv_ver}-x64.tar.xz
+  emby-theater.desktop
+  emby-theater.png
+)
+b2sums=('SKIP'
+
'514898625050a05ccfd2c5b1eb4d57c459a538bbcae705a2c5fc0f9a6030ef6822375644909c399f447d2933f47f8002079a9a75232db56b6c54cf106f12d430'
+
'33b1230792bfc034d28fed21c60f9ecb3d7392293289a878866a20a505acabd03848df92300c9b1fd76d40ff03a6926451308c2b525ded0a75a17b77672c1e3b'
+
'130bcfad0a216d66e44e3551af14700b3745d55b89c4523543646ae0d1fc00f6787ad8ace827a47f0f671d340308e4529c91f1c018002e64c89cb0ca924aeb4b')
+
+prepare() {
+  cd emby-theater-electron
+  npm install
+  npm install electron-packager
+}
+
+build() {
+  cd emby-theater-electron
+  npx electron-packager . emby-theater --platform linux --arch x64
+}
+
+package() {
+  install -dm 755 "${pkgdir}"/usr/{bin,lib}
+  cp -dr --no-preserve='ownership' 
emby-theater-electron/emby-theater-linux-x64 "${pkgdir}"/usr/lib/emby-theater
+  rm -rf 
"${pkgdir}"/usr/lib/emby-theater/resources/app/libmpv/{arm,arm64,ia32,mpv-win32-*}
+  ln -s /usr/lib/emby-theater/emby-theater "${pkgdir}"/usr/bin/emby-theater
+  install -Dm 755 lib/libmpv.so* -t "${pkgdir}"/usr/lib/emby-theater/
+  install -Dm 644 emby-theater.desktop -t "${pkgdir}"/usr/share/applications/
+  install -Dm 644 emby-theater.png -t "${pkgdir}"/usr/share/pixmaps/
+}
+
+# vim: ts=2 sw=2 et:

Copied: emby-theater/repos/community-x86_64/emby-theater.desktop (from rev 
1027784, emby-theater/trunk/emby-theater.desktop)
===
--- repos/community-x86_64/emby-theater.desktop (rev 0)
+++ repos/community-x86_64/emby-theater.desktop 2021-10-05 20:24:38 UTC (rev 
1027785)
@@ -0,0 +1,6 @@
+[Desktop Entry]
+Name=Emby Theater
+Exec=emby-theater
+Type=Application
+Icon=emby-theater
+Categories=AudioVideo;
\ No newline at end of file

Copied: emby-theater/repos/community-x86_64/emby-theater.png (from rev 1027784, 
emby-theater/trunk/emby-theater.png)
===
(Binary files differ)



[arch-commits] Commit in (5 files)

2021-10-05 Thread Maxime Gauduin via arch-commits
Date: Tuesday, October 5, 2021 @ 20:24:11
  Author: alucryd
Revision: 1027784

add emby-theater

Added:
  emby-theater/
  emby-theater/trunk/
  emby-theater/trunk/PKGBUILD
  emby-theater/trunk/emby-theater.desktop
  emby-theater/trunk/emby-theater.png

--+
 PKGBUILD |   95 +
 emby-theater.desktop |6 +++
 emby-theater.png |1 
 3 files changed, 102 insertions(+)

Added: emby-theater/trunk/PKGBUILD
===
--- emby-theater/trunk/PKGBUILD (rev 0)
+++ emby-theater/trunk/PKGBUILD 2021-10-05 20:24:11 UTC (rev 1027784)
@@ -0,0 +1,95 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=emby-theater
+pkgver=3.0.15
+_libmpv_ver=2021_10_05
+pkgrel=1
+pkgdesc='An Electron app for Emby'
+arch=(x86_64)
+url=https://emby.media
+license=(GPL2)
+depends=(
+  at-spi2-atk
+  at-spi2-core
+  cairo
+  gcc-libs
+  glibc
+  libasound.so
+  libatk-1.0.so
+  libcups
+  libdbus-1.so
+  libdrm
+  libexpat.so
+  libfontconfig.so
+  libfreetype.so
+  libgdk-3.so
+  libgdk_pixbuf-2.0.so
+  libgio-2.0.so
+  libglib-2.0.so
+  libgobject-2.0.so
+  libgtk-3.so
+  libmfx
+  libpango-1.0.so
+  libpangocairo-1.0.so
+  libpulse.so
+  libuuid.so
+  libva-drm.so
+  libva.so
+  libx11
+  libxcb
+  libxcomposite
+  libxcursor
+  libxdamage
+  libxext
+  libxfixes
+  libxi
+  libxrandr
+  libxrender
+  libxss
+  libxtst
+  mesa
+  nspr
+  nss
+  ocl-icd
+  zlib
+)
+makedepends=(
+  git
+  npm
+)
+_commit=68ca6e4b9e3918dfd96bccef79d6a1937daf7e78
+#_tag=aeaab148c71414f5b6c29cfc0f7cf4eac0f95c55
+source=(
+  
git+https://github.com/MediaBrowser/emby-theater-electron.git#commit=${_commit}
+  #git+https://github.com/MediaBrowser/emby-theater-electron.git#tag=${_tag}
+  https://mediabrowser.github.io/embytools/libmpv-${_libmpv_ver}-x64.tar.xz
+  emby-theater.desktop
+  emby-theater.png
+)
+b2sums=('SKIP'
+
'514898625050a05ccfd2c5b1eb4d57c459a538bbcae705a2c5fc0f9a6030ef6822375644909c399f447d2933f47f8002079a9a75232db56b6c54cf106f12d430'
+
'33b1230792bfc034d28fed21c60f9ecb3d7392293289a878866a20a505acabd03848df92300c9b1fd76d40ff03a6926451308c2b525ded0a75a17b77672c1e3b'
+
'130bcfad0a216d66e44e3551af14700b3745d55b89c4523543646ae0d1fc00f6787ad8ace827a47f0f671d340308e4529c91f1c018002e64c89cb0ca924aeb4b')
+
+prepare() {
+  cd emby-theater-electron
+  npm install
+  npm install electron-packager
+}
+
+build() {
+  cd emby-theater-electron
+  npx electron-packager . emby-theater --platform linux --arch x64
+}
+
+package() {
+  install -dm 755 "${pkgdir}"/usr/{bin,lib}
+  cp -dr --no-preserve='ownership' 
emby-theater-electron/emby-theater-linux-x64 "${pkgdir}"/usr/lib/emby-theater
+  rm -rf 
"${pkgdir}"/usr/lib/emby-theater/resources/app/libmpv/{arm,arm64,ia32,mpv-win32-*}
+  ln -s /usr/lib/emby-theater/emby-theater "${pkgdir}"/usr/bin/emby-theater
+  install -Dm 755 lib/libmpv.so* -t "${pkgdir}"/usr/lib/emby-theater/
+  install -Dm 644 emby-theater.desktop -t "${pkgdir}"/usr/share/applications/
+  install -Dm 644 emby-theater.png -t "${pkgdir}"/usr/share/pixmaps/
+}
+
+# vim: ts=2 sw=2 et:

Added: emby-theater/trunk/emby-theater.desktop
===
--- emby-theater/trunk/emby-theater.desktop (rev 0)
+++ emby-theater/trunk/emby-theater.desktop 2021-10-05 20:24:11 UTC (rev 
1027784)
@@ -0,0 +1,6 @@
+[Desktop Entry]
+Name=Emby Theater
+Exec=emby-theater
+Type=Application
+Icon=emby-theater
+Categories=AudioVideo;
\ No newline at end of file

Added: emby-theater/trunk/emby-theater.png
===
(Binary files differ)

Index: emby-theater/trunk/emby-theater.png
===
--- emby-theater/trunk/emby-theater.png 2021-10-05 19:51:55 UTC (rev 1027783)
+++ emby-theater/trunk/emby-theater.png 2021-10-05 20:24:11 UTC (rev 1027784)

Property changes on: emby-theater/trunk/emby-theater.png
___
Added: svn:mime-type
## -0,0 +1 ##
+image/png
\ No newline at end of property


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

2021-10-05 Thread Orhun Parmaksiz via arch-commits
Date: Tuesday, October 5, 2021 @ 19:51:55
  Author: orhun
Revision: 1027783

archrelease: copy trunk to community-x86_64

Added:
  xcolor/repos/community-x86_64/
  xcolor/repos/community-x86_64/PKGBUILD
(from rev 1027782, xcolor/trunk/PKGBUILD)

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

Copied: xcolor/repos/community-x86_64/PKGBUILD (from rev 1027782, 
xcolor/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-10-05 19:51:55 UTC (rev 1027783)
@@ -0,0 +1,45 @@
+# Maintainer: Orhun Parmaksız 
+# Contributor: Samuel Laurén 
+
+pkgname=xcolor
+pkgver=0.5.1
+pkgrel=3
+pkgdesc="Lightweight color picker for X11"
+arch=('x86_64')
+url="https://github.com/Soft/xcolor;
+license=('MIT')
+depends=('libxcb' 'libxcursor' 'libx11' 'gcc-libs' 'hicolor-icon-theme')
+makedepends=('rust' 'python')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha256sums=("cff417d0ccbece766c66a183413e167868fdbd98b8129516ff9021a4b11a5647")
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --frozen
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo test --frozen
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   install -D -m755 target/release/xcolor "$pkgdir/usr/bin/xcolor"
+   install -D -m644 man/xcolor.1 "$pkgdir/usr/share/man/man1/xcolor.1"
+   install -D -m644 extra/xcolor.desktop 
"$pkgdir/usr/share/applications/xcolor.desktop"
+   install -D -m644 extra/icons/xcolor-16.png 
"$pkgdir/usr/share/icons/hicolor/16x16/apps/xcolor.png"
+   install -D -m644 extra/icons/xcolor-24.png 
"$pkgdir/usr/share/icons/hicolor/24x24/apps/xcolor.png"
+   install -D -m644 extra/icons/xcolor-32.png 
"$pkgdir/usr/share/icons/hicolor/32x32/apps/xcolor.png"
+   install -D -m644 extra/icons/xcolor-48.png 
"$pkgdir/usr/share/icons/hicolor/48x48/apps/xcolor.png"
+   install -D -m644 extra/icons/xcolor-256.png 
"$pkgdir/usr/share/icons/hicolor/256x256/apps/xcolor.png"
+   install -D -m644 extra/icons/xcolor-512.png 
"$pkgdir/usr/share/icons/hicolor/512x512/apps/xcolor.png"
+   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/xcolor/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-10-05 Thread Orhun Parmaksiz via arch-commits
Date: Tuesday, October 5, 2021 @ 19:51:40
  Author: orhun
Revision: 1027782

addpkg: xcolor 0.5.1-3

Added:
  xcolor/
  xcolor/repos/
  xcolor/trunk/
  xcolor/trunk/PKGBUILD

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

Added: xcolor/trunk/PKGBUILD
===
--- xcolor/trunk/PKGBUILD   (rev 0)
+++ xcolor/trunk/PKGBUILD   2021-10-05 19:51:40 UTC (rev 1027782)
@@ -0,0 +1,45 @@
+# Maintainer: Orhun Parmaksız 
+# Contributor: Samuel Laurén 
+
+pkgname=xcolor
+pkgver=0.5.1
+pkgrel=3
+pkgdesc="Lightweight color picker for X11"
+arch=('x86_64')
+url="https://github.com/Soft/xcolor;
+license=('MIT')
+depends=('libxcb' 'libxcursor' 'libx11' 'gcc-libs' 'hicolor-icon-theme')
+makedepends=('rust' 'python')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha256sums=("cff417d0ccbece766c66a183413e167868fdbd98b8129516ff9021a4b11a5647")
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  cargo fetch --locked
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --frozen
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  cargo test --frozen
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   install -D -m755 target/release/xcolor "$pkgdir/usr/bin/xcolor"
+   install -D -m644 man/xcolor.1 "$pkgdir/usr/share/man/man1/xcolor.1"
+   install -D -m644 extra/xcolor.desktop 
"$pkgdir/usr/share/applications/xcolor.desktop"
+   install -D -m644 extra/icons/xcolor-16.png 
"$pkgdir/usr/share/icons/hicolor/16x16/apps/xcolor.png"
+   install -D -m644 extra/icons/xcolor-24.png 
"$pkgdir/usr/share/icons/hicolor/24x24/apps/xcolor.png"
+   install -D -m644 extra/icons/xcolor-32.png 
"$pkgdir/usr/share/icons/hicolor/32x32/apps/xcolor.png"
+   install -D -m644 extra/icons/xcolor-48.png 
"$pkgdir/usr/share/icons/hicolor/48x48/apps/xcolor.png"
+   install -D -m644 extra/icons/xcolor-256.png 
"$pkgdir/usr/share/icons/hicolor/256x256/apps/xcolor.png"
+   install -D -m644 extra/icons/xcolor-512.png 
"$pkgdir/usr/share/icons/hicolor/512x512/apps/xcolor.png"
+   install -D -m644 LICENSE "$pkgdir/usr/share/licenses/xcolor/LICENSE"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 19:42:07
  Author: felixonmars
Revision: 1027781

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 1027780, 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 1027780, haskell-hls-test-utils/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 19:42:07 UTC (rev 1027781)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-test-utils
+pkgname=haskell-hls-test-utils
+pkgver=1.1.0.0
+pkgrel=1
+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)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 19:41:54
  Author: felixonmars
Revision: 1027780

upgpkg: haskell-hls-test-utils 1.1.0.0-1: rebuild with ghcide 1.4.1.0, hiedb 
0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, hls-class-plugin 
1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 1.0.1.0, 
hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 19:40:46 UTC (rev 1027779)
+++ PKGBUILD2021-10-05 19:41:54 UTC (rev 1027780)
@@ -2,8 +2,8 @@
 
 _hkgname=hls-test-utils
 pkgname=haskell-hls-test-utils
-pkgver=1.0.1.0
-pkgrel=65
+pkgver=1.1.0.0
+pkgrel=1
 pkgdesc="Utilities used in the tests of Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")
@@ -16,7 +16,7 @@
  'haskell-unordered-containers')
 makedepends=('ghc' 'uusi')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha512sums=('ba5c13ce3fe5dc502d25221456e832d3ee521c112a9f1a3e066d10205e4b553b2de21c476ad0f4f051041ed421d03499abde14a7ff1bed29cf94bc3b29a40c19')
+sha512sums=('08bb01af48a07b37c6d99c6da42341147259ee3f26aef4737a796a62fabbe9600464fdecb3ae4908a4df24e044abf786bcf30103b15b8d7c72f12f9a0c07fcb5')
 
 prepare() {
   cd $_hkgname-$pkgver



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 19:40:46
  Author: felixonmars
Revision: 1027779

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 1027778, 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 1027778, haskell-hls-explicit-imports-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 19:40:46 UTC (rev 1027779)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-explicit-imports-plugin
+pkgname=haskell-hls-explicit-imports-plugin
+pkgver=1.0.1.0
+pkgrel=1
+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 -u 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)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 19:40:34
  Author: felixonmars
Revision: 1027778

upgpkg: haskell-hls-explicit-imports-plugin 1.0.1.0-1: rebuild with ghcide 
1.4.1.0, hiedb 0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, 
hls-class-plugin 1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 
1.0.1.0, hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 19:39:33 UTC (rev 102)
+++ PKGBUILD2021-10-05 19:40:34 UTC (rev 1027778)
@@ -2,8 +2,8 @@
 
 _hkgname=hls-explicit-imports-plugin
 pkgname=haskell-hls-explicit-imports-plugin
-pkgver=1.0.0.3
-pkgrel=65
+pkgver=1.0.1.0
+pkgrel=1
 pkgdesc="Explicit imports plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-explicit-imports-plugin;
 license=("Apache")
@@ -12,11 +12,12 @@
  '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=('9ee3ef0e88179ec03f64e2f23ba21c00ed02dd2b64c097de926c9502d2b4b77fb3c5e17c1ebe7f3e7e4a8db2a38a888de6ddb523b247f2883c9750452c603358')
+sha512sums=('7691ecc341fb511e51ccb6c1f67cd6f3c908f771b62423d7713d05bf13893b7ac53ae9c453ab8b6ca227ed8c9b42191cd30b9745b57f00c51f3f3646954955b8')
 
 prepare() {
   cd $_hkgname-$pkgver
   gen-setup
+  uusi -u ghc-api-compat $_hkgname.cabal
 }
 
 build() {



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 19:39:33
  Author: felixonmars
Revision: 102

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 1027776, 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 1027776, haskell-hls-hlint-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 19:39:33 UTC (rev 102)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-hlint-plugin
+pkgname=haskell-hls-hlint-plugin
+pkgver=1.0.1.1
+pkgrel=1
+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)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 19:39:20
  Author: felixonmars
Revision: 1027776

upgpkg: haskell-hls-hlint-plugin 1.0.1.1-1: rebuild with ghcide 1.4.1.0, hiedb 
0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, hls-class-plugin 
1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 1.0.1.0, 
hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 19:38:11 UTC (rev 1027775)
+++ PKGBUILD2021-10-05 19:39:20 UTC (rev 1027776)
@@ -2,8 +2,8 @@
 
 _hkgname=hls-hlint-plugin
 pkgname=haskell-hls-hlint-plugin
-pkgver=1.0.1.0
-pkgrel=65
+pkgver=1.0.1.1
+pkgrel=1
 pkgdesc="Hlint integration plugin with Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-hlint-plugin;
 license=("Apache")
@@ -14,7 +14,7 @@
  '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=('a76d166f8215fcaaf6b8d597f21ceafa64b34435b3aff6717db939f905c864efc3c441a9bc3f590677d76009d46e7783b72150c220c8f47ec2f56f57e23d6776')
+sha512sums=('0bed7570e2b543f482f123e2ce19d4a5c5d712bde7875e97e1c4fc6eda481752e4d65f8cd4a998634ac3e85a7ce737f3ef849959d77e1c9f814ddf039f33b807')
 
 prepare() {
   cd $_hkgname-$pkgver



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 19:38:11
  Author: felixonmars
Revision: 1027775

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 1027774, 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 1027774, haskell-hls-retrie-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 19:38:11 UTC (rev 1027775)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-retrie-plugin
+pkgname=haskell-hls-retrie-plugin
+pkgver=1.0.1.1
+pkgrel=1
+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 -u 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)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 19:37:59
  Author: felixonmars
Revision: 1027774

upgpkg: haskell-hls-retrie-plugin 1.0.1.1-1: rebuild with ghcide 1.4.1.0, hiedb 
0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, hls-class-plugin 
1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 1.0.1.0, 
hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 19:36:26 UTC (rev 1027773)
+++ PKGBUILD2021-10-05 19:37:59 UTC (rev 1027774)
@@ -2,8 +2,8 @@
 
 _hkgname=hls-retrie-plugin
 pkgname=haskell-hls-retrie-plugin
-pkgver=1.0.1.0
-pkgrel=65
+pkgver=1.0.1.1
+pkgrel=1
 pkgdesc="Retrie integration plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-retrie-plugin;
 license=("Apache")
@@ -14,11 +14,12 @@
  'haskell-unordered-containers')
 makedepends=('ghc' 'uusi')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha512sums=('42b17ab6aaca200f5eba741d276d68810a7568e6f41b85735ec9739dbd580de15da8737be9d416c7b5cb845fc12e18cc9d2b2ccfd841cece38907b6be07bd7ea')
+sha512sums=('d5059c9d1e5af9acf1a9842c76270400076f2eb168a2dfd61961cb5328c72e4aaf14ad9a1543a3729d87800d658b941e1daaa15a1bd628d3d72657499dd47488')
 
 prepare() {
   cd $_hkgname-$pkgver
   gen-setup
+  uusi -u ghc-api-compat $_hkgname.cabal
 }
 
 build() {



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 19:36:26
  Author: felixonmars
Revision: 1027773

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 1027772, haskell-ghcide/trunk/PKGBUILD)

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

Copied: haskell-ghcide/repos/community-staging-x86_64/PKGBUILD (from rev 
1027772, haskell-ghcide/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 19:36:26 UTC (rev 1027773)
@@ -0,0 +1,81 @@
+# Maintainer: Felix Yan 
+
+_hkgname=ghcide
+pkgname=haskell-ghcide
+pkgver=1.4.1.0
+pkgrel=1
+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 -u 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 "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 19:36:14
  Author: felixonmars
Revision: 1027772

upgpkg: haskell-ghcide 1.4.1.0-1: rebuild with ghcide 1.4.1.0, hiedb 0.4.1.0, 
hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, hls-class-plugin 1.0.1.0, 
hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 1.0.1.0, 
hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

Modified:
  haskell-ghcide/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 19:11:49 UTC (rev 1027771)
+++ PKGBUILD2021-10-05 19:36:14 UTC (rev 1027772)
@@ -2,8 +2,8 @@
 
 _hkgname=ghcide
 pkgname=haskell-ghcide
-pkgver=1.4.0.3
-pkgrel=51
+pkgver=1.4.1.0
+pkgrel=1
 pkgdesc="The core of an IDE"
 
url="https://github.com/haskell/haskell-language-server/tree/master/ghcide#readme;
 license=("Apache")
@@ -30,7 +30,7 @@
  '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=('9e8be452538a978f67bf0c799b8fcb7036c9fe3f351ee1484fe9f8ab661e88e158a459ff981b4811d70796436195b4f47e7cb22933984cd8c9848740c08f4949')
+sha512sums=('cea048a756cef35df6d90137b3cd70567cfbad485d4858a86e502770813c1e85e18f9971c46a9c8f25cca46445677343cbf57d6e43009848434bca1721b5f036')
 
 prepare() {
   cd $_hkgname-$pkgver
@@ -37,6 +37,8 @@
   gen-setup
   find test/data -name \*.cabal -exec uusi --add-options-all=-dynamic {} \;
 
+  uusi -u extra -u 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
 



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

2021-10-05 Thread Jelle van der Waa via arch-commits
Date: Tuesday, October 5, 2021 @ 19:29:20
  Author: jelle
Revision: 425157

archrelease: copy trunk to extra-x86_64

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

--+
 389-ds-base.sysusers |2 
 389-ds-base.tmpfiles |6 -
 PKGBUILD |  180 -
 bcf5e9f.patch|   82 +++---
 4 files changed, 135 insertions(+), 135 deletions(-)

Deleted: 389-ds-base.sysusers
===
--- 389-ds-base.sysusers2021-10-05 19:29:05 UTC (rev 425156)
+++ 389-ds-base.sysusers2021-10-05 19:29:20 UTC (rev 425157)
@@ -1 +0,0 @@
-u dirsrv   440  "389 Directory Server" /var/lib/389-ds-base

Copied: 389-ds-base/repos/extra-x86_64/389-ds-base.sysusers (from rev 425156, 
389-ds-base/trunk/389-ds-base.sysusers)
===
--- 389-ds-base.sysusers(rev 0)
+++ 389-ds-base.sysusers2021-10-05 19:29:20 UTC (rev 425157)
@@ -0,0 +1 @@
+u dirsrv   440  "389 Directory Server" /var/lib/389-ds-base

Deleted: 389-ds-base.tmpfiles
===
--- 389-ds-base.tmpfiles2021-10-05 19:29:05 UTC (rev 425156)
+++ 389-ds-base.tmpfiles2021-10-05 19:29:20 UTC (rev 425157)
@@ -1,3 +0,0 @@
-d /var/log/dirsrv 0700 dirsrv dirsrv -
-d /var/lib/dirsrv 0700 dirsrv dirsrv -
-d /run/lock/dirsrv 0770 dirsrv dirsrv -

Copied: 389-ds-base/repos/extra-x86_64/389-ds-base.tmpfiles (from rev 425156, 
389-ds-base/trunk/389-ds-base.tmpfiles)
===
--- 389-ds-base.tmpfiles(rev 0)
+++ 389-ds-base.tmpfiles2021-10-05 19:29:20 UTC (rev 425157)
@@ -0,0 +1,3 @@
+d /var/log/dirsrv 0700 dirsrv dirsrv -
+d /var/lib/dirsrv 0700 dirsrv dirsrv -
+d /run/lock/dirsrv 0770 dirsrv dirsrv -

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 19:29:05 UTC (rev 425156)
+++ PKGBUILD2021-10-05 19:29:20 UTC (rev 425157)
@@ -1,90 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Javier Torres 
-# Contributor: Jameson Pugh 
-# Contributor: Xiao-Long Chen 
-
-pkgname=389-ds-base
-pkgver=2.0.8
-pkgdesc="389 Directory Server (base)"
-pkgrel=1
-arch=(x86_64)
-url="http://port389.org/;
-license=(GPL)
-provides=('libsvrcore.so')
-replaces=('python-lib389')
-backup=(etc/dirsrv/config/certmap.conf
-etc/dirsrv/config/ldap-agent.conf
-etc/dirsrv/config/slapd-collations.conf
-etc/dirsrv/config/template-initconfig)
-depends=('cracklib' 'libevent' 'nspr' 'nss' 'net-snmp' 'pam' 'openldap' 'perl' 
'icu'
- 'python-argcomplete' 'python-dateutil' 'python-ldap' 
'python-packaging')
-makedepends=('cargo' 'rsync' 'doxygen' 'cmocka' 'python-setuptools' 
'python-argparse-manpage'
- 'npm' 'nodejs-lts-fermium' 'systemd' 'python2')
-source=(https://github.com/389ds/389-ds-base/archive/389-ds-base-${pkgver}.tar.gz
-389-ds-base.sysusers
-389-ds-base.tmpfiles)
-sha512sums=('46166e27d0d33598c1dc60c8bab57d42c0830aa7cf2d2e060856062c1866e4f14bb4a40caa51a62d91fd0366fc3d98be7ac2eb018ca3e7fbfbd5a514fdb7ee56'
-
'8689b60f13517e6541e1faa62e61781654a8e4678990d14a3fe0cfe4673697cdde1c46763fdc7ef6203e4026286fa004c73b2857fd7fecff69483e6d1e8e6d68'
-
'69ed8b8f3bdbf9098088b0c92c41a238f16d14ba9f86ebc2b5debe5f001b4d8e235f7cff4731d72b30b5ac70486b0f4300b99646aa3926a3fa59515a64f16402')
-
-prepare() {
-  cd "${pkgname}-${pkgname}-${pkgver}"
-
-  autoreconf -fiv
-}
-
-build() {
-  cd "${pkgname}-${pkgname}-${pkgver}"
-
-  # Build 389-ds-base
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---sbindir=/usr/bin \
---localstatedir=/var \
---libexecdir=/usr/lib/${pkgname} \
---with-tmpfiles-d=/usr/lib/tmpfiles.d \
---with-systemd \
---with-systemdsystemunitdir=/usr/lib/systemd/system \
---with-systemdsystemconfdir=/etc/systemd/system \
---with-journald \
---with-openldap \
---enable-autobind \
---enable-cmocka \
---enable-rust \
---enable-perl
-  make
-
-  # Build lib389
-  cd src/lib389
-  COLUMNS=80 python setup.py build
-
-  # Build cockpit plugin
-  cd ../cockpit/389-console
-  npm install
-  npm run 

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

2021-10-05 Thread Jelle van der Waa via arch-commits
Date: Tuesday, October 5, 2021 @ 19:29:05
  Author: jelle
Revision: 425156

upgpkg: 389-ds-base 2.0.10-1

Modified:
  389-ds-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 19:19:22 UTC (rev 425155)
+++ PKGBUILD2021-10-05 19:29:05 UTC (rev 425156)
@@ -4,7 +4,7 @@
 # Contributor: Xiao-Long Chen 
 
 pkgname=389-ds-base
-pkgver=2.0.8
+pkgver=2.0.10
 pkgdesc="389 Directory Server (base)"
 pkgrel=1
 arch=(x86_64)
@@ -19,11 +19,11 @@
 depends=('cracklib' 'libevent' 'nspr' 'nss' 'net-snmp' 'pam' 'openldap' 'perl' 
'icu'
  'python-argcomplete' 'python-dateutil' 'python-ldap' 
'python-packaging')
 makedepends=('cargo' 'rsync' 'doxygen' 'cmocka' 'python-setuptools' 
'python-argparse-manpage'
- 'npm' 'nodejs-lts-fermium' 'systemd' 'python2')
+ 'npm' 'nodejs-lts-fermium' 'systemd')
 
source=(https://github.com/389ds/389-ds-base/archive/389-ds-base-${pkgver}.tar.gz
 389-ds-base.sysusers
 389-ds-base.tmpfiles)
-sha512sums=('46166e27d0d33598c1dc60c8bab57d42c0830aa7cf2d2e060856062c1866e4f14bb4a40caa51a62d91fd0366fc3d98be7ac2eb018ca3e7fbfbd5a514fdb7ee56'
+sha512sums=('e648c8de6032d9e8714030b2300f3af79fdb17004606cebee345903ef76fca5df4fef7eb80fd982b656b6937560f43350af90c3da08515a8ce2fb88e2a662f22'
 
'8689b60f13517e6541e1faa62e61781654a8e4678990d14a3fe0cfe4673697cdde1c46763fdc7ef6203e4026286fa004c73b2857fd7fecff69483e6d1e8e6d68'
 
'69ed8b8f3bdbf9098088b0c92c41a238f16d14ba9f86ebc2b5debe5f001b4d8e235f7cff4731d72b30b5ac70486b0f4300b99646aa3926a3fa59515a64f16402')
 



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 19:19:22
  Author: felixonmars
Revision: 425155

archrelease: copy trunk to testing-x86_64

Added:
  python-cryptography/repos/testing-x86_64/
  python-cryptography/repos/testing-x86_64/PKGBUILD
(from rev 425154, python-cryptography/trunk/PKGBUILD)

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

Copied: python-cryptography/repos/testing-x86_64/PKGBUILD (from rev 425154, 
python-cryptography/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-10-05 19:19:22 UTC (rev 425155)
@@ -0,0 +1,35 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-cryptography
+pkgver=35.0.0
+pkgrel=1
+pkgdesc="A package designed to expose cryptographic recipes and primitives to 
Python developers"
+arch=('x86_64')
+license=('Apache')
+url="https://pypi.python.org/pypi/cryptography;
+depends=('python-cffi')
+makedepends=('python-setuptools-rust')
+checkdepends=('python-pytest-runner' 'python-pytest-subtests' 
"python-cryptography-vectors=$pkgver"
+  'python-iso8601' 'python-pretend' 'python-hypothesis' 
'python-pytz')
+source=("https://pypi.io/packages/source/c/cryptography/cryptography-$pkgver.tar.gz;)
+sha512sums=('447fd81ea82bd5875f14b3dca0fe6c1e8ebe661485252b00c3a19ab91bc0261289fbc59f9a22ba9317e8ba01f7f197c90ca6973f9d87a5d8851eeff2e1168d1d')
+
+prepare() {
+  # https://github.com/pyca/cryptography/pull/5777
+  sed -i '/install_requires/d' cryptography-$pkgver/setup.py
+}
+
+build() {
+  cd cryptography-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd cryptography-$pkgver
+  python setup.py pytest
+}
+
+package() {
+  cd cryptography-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 19:19:10
  Author: felixonmars
Revision: 425154

upgpkg: python-cryptography 35.0.0-1

Modified:
  python-cryptography/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 18:06:29 UTC (rev 425153)
+++ PKGBUILD2021-10-05 19:19:10 UTC (rev 425154)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-cryptography
-pkgver=3.4.8
-pkgrel=2
+pkgver=35.0.0
+pkgrel=1
 pkgdesc="A package designed to expose cryptographic recipes and primitives to 
Python developers"
 arch=('x86_64')
 license=('Apache')
@@ -12,7 +12,7 @@
 checkdepends=('python-pytest-runner' 'python-pytest-subtests' 
"python-cryptography-vectors=$pkgver"
   'python-iso8601' 'python-pretend' 'python-hypothesis' 
'python-pytz')
 
source=("https://pypi.io/packages/source/c/cryptography/cryptography-$pkgver.tar.gz;)
-sha512sums=('b0d64a573b488af3e453fc1885bbafb65f8a2260e81cf64830f981589afca0bd7be052a5f5b8ed83dd78d9638da37c680f3705cbf2d47d5b28fb5a5454f1cea5')
+sha512sums=('447fd81ea82bd5875f14b3dca0fe6c1e8ebe661485252b00c3a19ab91bc0261289fbc59f9a22ba9317e8ba01f7f197c90ca6973f9d87a5d8851eeff2e1168d1d')
 
 prepare() {
   # https://github.com/pyca/cryptography/pull/5777



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

2021-10-05 Thread Jelle van der Waa via arch-commits
Date: Tuesday, October 5, 2021 @ 19:11:49
  Author: jelle
Revision: 1027771

Drop python2 as make dependency

Fixes: FS#70004

Modified:
  code/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 18:34:49 UTC (rev 1027770)
+++ PKGBUILD2021-10-05 19:11:49 UTC (rev 1027771)
@@ -21,7 +21,7 @@
 optdepends=('bash-completion: Bash completions'
 'zsh-completions: ZSH completitons'
 'x11-ssh-askpass: SSH authentication')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-fermium')
+makedepends=('git' 'gulp' 'npm' 'python' 'yarn' 'nodejs-lts-fermium')
 provides=('vscode')
 source=("$pkgname::git+$url.git#tag=$pkgver"
 'code.js'
@@ -99,11 +99,6 @@
 }
 
 build() {
-  # https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
   cd $pkgname
 
   yarn install --arch=$_vscode_arch



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 18:34:49
  Author: felixonmars
Revision: 1027770

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hls-plugin-api/repos/community-staging-x86_64/PKGBUILD (from 
rev 1027769, haskell-hls-plugin-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 18:34:49 UTC (rev 1027770)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-plugin-api
+pkgname=haskell-hls-plugin-api
+pkgver=1.2.0.0
+pkgrel=1
+pkgdesc="Haskell Language Server API for plugin communication"
+url="https://github.com/haskell/haskell-language-server/hls-plugin-api;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-diff' 'haskell-aeson' 'haskell-data-default' 
'haskell-dependent-map'
+ 'haskell-dependent-sum' 'haskell-dlist' 'haskell-ghc' 
'haskell-ghc-api-compat'
+ 'haskell-hashable' 'haskell-hls-graph' 'haskell-hslogger' 
'haskell-lens' 'haskell-lsp'
+ 'haskell-optparse-applicative' 'haskell-opentelemetry' 
'haskell-regex-tdfa'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('71e6addec81ba84bb26d8048107cb60a94ddb01ac4879640ec7ab7db8586515f1e0419db79e5fe3d8bfc0b37679f307c0c6e97e83739723439c48b14d2124d96')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u 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-plugin-api/trunk (PKGBUILD)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 18:34:36
  Author: felixonmars
Revision: 1027769

upgpkg: haskell-hls-plugin-api 1.2.0.0-1: rebuild with ghcide 1.4.1.0, hiedb 
0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, hls-class-plugin 
1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 1.0.1.0, 
hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 18:33:27 UTC (rev 1027768)
+++ PKGBUILD2021-10-05 18:34:36 UTC (rev 1027769)
@@ -2,8 +2,8 @@
 
 _hkgname=hls-plugin-api
 pkgname=haskell-hls-plugin-api
-pkgver=1.1.0.2
-pkgrel=45
+pkgver=1.2.0.0
+pkgrel=1
 pkgdesc="Haskell Language Server API for plugin communication"
 url="https://github.com/haskell/haskell-language-server/hls-plugin-api;
 license=("Apache")
@@ -11,14 +11,16 @@
 depends=('ghc-libs' 'haskell-diff' 'haskell-aeson' 'haskell-data-default' 
'haskell-dependent-map'
  'haskell-dependent-sum' 'haskell-dlist' 'haskell-ghc' 
'haskell-ghc-api-compat'
  'haskell-hashable' 'haskell-hls-graph' 'haskell-hslogger' 
'haskell-lens' 'haskell-lsp'
- 'haskell-opentelemetry' 'haskell-regex-tdfa' 
'haskell-unordered-containers')
+ 'haskell-optparse-applicative' 'haskell-opentelemetry' 
'haskell-regex-tdfa'
+ 'haskell-unordered-containers')
 makedepends=('ghc' 'uusi')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha512sums=('fd6be87c3103fd3a87d1f83652861075bda2016fb7a5db9071f76f3a153fd8a6f36b7d4f0bab3f04d9012b127ed3ed6eb52f4516c67cc2840911e204ef89cc46')
+sha512sums=('71e6addec81ba84bb26d8048107cb60a94ddb01ac4879640ec7ab7db8586515f1e0419db79e5fe3d8bfc0b37679f307c0c6e97e83739723439c48b14d2124d96')
 
 prepare() {
   cd $_hkgname-$pkgver
   gen-setup
+  uusi -u ghc-api-compat $_hkgname.cabal
 }
 
 build() {



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 18:33:27
  Author: felixonmars
Revision: 1027768

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-lsp-test/repos/community-staging-x86_64/
  haskell-lsp-test/repos/community-staging-x86_64/PKGBUILD
(from rev 1027767, haskell-lsp-test/trunk/PKGBUILD)

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

Copied: haskell-lsp-test/repos/community-staging-x86_64/PKGBUILD (from rev 
1027767, haskell-lsp-test/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 18:33:27 UTC (rev 1027768)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+
+_hkgname=lsp-test
+pkgname=haskell-lsp-test
+pkgver=0.14.0.1
+pkgrel=1
+pkgdesc="Functional test framework for LSP servers."
+url="https://github.com/haskell/lsp/blob/master/lsp-test/README.md;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-diff' 'haskell-glob' 'haskell-aeson' 
'haskell-aeson-pretty'
+ 'haskell-ansi-terminal' 'haskell-async' 'haskell-conduit' 
'haskell-conduit-parse'
+ 'haskell-data-default' 'haskell-lens' 'haskell-lsp' 
'haskell-lsp-types'
+ 'haskell-parser-combinators' 'haskell-some' 'haskell-unliftio'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hspec')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('0159cb688617658653588c4d5e1599440e27fc37705227ae920c8a5d280ef4effefc80e2f40ca64da0cf62a2ab05b4463490c2dbb92b8300f1e777a973b98169')
+
+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-lsp-test/trunk (PKGBUILD)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 18:33:14
  Author: felixonmars
Revision: 1027767

upgpkg: haskell-lsp-test 0.14.0.1-1: rebuild with ghcide 1.4.1.0, hiedb 
0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, hls-class-plugin 
1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 1.0.1.0, 
hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

Modified:
  haskell-lsp-test/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 18:26:47 UTC (rev 1027766)
+++ PKGBUILD2021-10-05 18:33:14 UTC (rev 1027767)
@@ -2,8 +2,8 @@
 
 _hkgname=lsp-test
 pkgname=haskell-lsp-test
-pkgver=0.14.0.0
-pkgrel=47
+pkgver=0.14.0.1
+pkgrel=1
 pkgdesc="Functional test framework for LSP servers."
 url="https://github.com/haskell/lsp/blob/master/lsp-test/README.md;
 license=("BSD")
@@ -14,19 +14,16 @@
  'haskell-parser-combinators' 'haskell-some' 'haskell-unliftio'
  'haskell-unordered-containers')
 makedepends=('ghc' 'uusi' 'haskell-hspec')
-# https://github.com/bubba/lsp-test/issues/92
-source=("https://github.com/haskell/lsp/archive/refs/tags/lsp-test-$pkgver.tar.gz;)
-#source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha512sums=('8d45e3ac432a01ba38b5b79c5c1ed3173a4dbc8be55671e617be722f0760aed7179be595aa72d55fec37b1677746431d1f3e1a07df2916be34b7e3abfa823761')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('0159cb688617658653588c4d5e1599440e27fc37705227ae920c8a5d280ef4effefc80e2f40ca64da0cf62a2ab05b4463490c2dbb92b8300f1e777a973b98169')
 
 prepare() {
-  cd lsp-$_hkgname-$pkgver/$_hkgname
+  cd $_hkgname-$pkgver
   gen-setup
-  uusi -u base $_hkgname.cabal
 }
 
 build() {
-  cd lsp-$_hkgname-$pkgver/$_hkgname
+  cd $_hkgname-$pkgver
 
   runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
 --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
@@ -42,12 +39,12 @@
 }
 
 check() {
-  cd lsp-$_hkgname-$pkgver/$_hkgname
+  cd $_hkgname-$pkgver
   runhaskell Setup test --show-details=direct
 }
 
 package() {
-  cd lsp-$_hkgname-$pkgver/$_hkgname
+  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



[arch-commits] Commit in grafana/repos/community-x86_64 (10 files)

2021-10-05 Thread Jelle van der Waa via arch-commits
Date: Tuesday, October 5, 2021 @ 18:26:47
  Author: jelle
Revision: 1027766

archrelease: copy trunk to community-x86_64

Added:
  grafana/repos/community-x86_64/PKGBUILD
(from rev 1027765, grafana/trunk/PKGBUILD)
  grafana/repos/community-x86_64/grafana.install
(from rev 1027765, grafana/trunk/grafana.install)
  grafana/repos/community-x86_64/grafana.service
(from rev 1027765, grafana/trunk/grafana.service)
  grafana/repos/community-x86_64/grafana.sysusers
(from rev 1027765, grafana/trunk/grafana.sysusers)
  grafana/repos/community-x86_64/grafana.tmpfiles
(from rev 1027765, grafana/trunk/grafana.tmpfiles)
Deleted:
  grafana/repos/community-x86_64/PKGBUILD
  grafana/repos/community-x86_64/grafana.install
  grafana/repos/community-x86_64/grafana.service
  grafana/repos/community-x86_64/grafana.sysusers
  grafana/repos/community-x86_64/grafana.tmpfiles

--+
 PKGBUILD |  192 ++---
 grafana.install  |   44 ++--
 grafana.service  |   46 ++--
 grafana.sysusers |2 
 grafana.tmpfiles |4 -
 5 files changed, 144 insertions(+), 144 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 18:26:33 UTC (rev 1027765)
+++ PKGBUILD2021-10-05 18:26:47 UTC (rev 1027766)
@@ -1,96 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer
-# Contributor: Carsten Feuls 
-# Contributor: Gilles Hamel 
-
-pkgname=grafana
-pkgver=8.1.5
-pkgrel=1
-pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
-url='https://grafana.com/'
-arch=('x86_64')
-license=('Apache')
-depends=('glibc' 'freetype2' 'fontconfig' 'gsfonts')
-makedepends=('git' 'go' 'npm' 'grunt-cli' 'python' 'nodejs' 'yarn')
-backup=('etc/grafana.ini')
-source=("git+https://github.com/grafana/grafana.git#tag=v$pkgver;
-'grafana.service'
-'grafana.sysusers'
-'grafana.tmpfiles'
-   )
-install=$pkgname.install
-sha512sums=('SKIP'
-
'02a597225ee6ba8da9491a94daa33fe681846e2140e02fbb461ff7d39acd4cf99694dc03fb5f2c5ecfd180b09c44a41fe639b121499b4222b67ada57dc60d850'
-
'38b46d953837a7afa5a654dfeef163b210d56cad57d937018531d00cd63b5341d6f9cd777299bdc7a994d0cb7df09b8157aad0f166e76ad47564e1ad6d5441d4'
-
'c1724bfc7cbd6a406f17acb661efca0f1e57e2c30cc1841f4cb7ccfc420adc40cc61cb1c023d00444827b2c40e9caa4c2fefbfd503419848c74a0b455b2375ab')
-validpgpkeys=("D45B6DC53E9057C46487E25CE17E9ABACEFA59EB"
-  "43511C6A68C9A1DE451EF51890AA4FDC4D63CBEA"
-  "AA70DF6234FBF96AB9101D09E6D5D452E87026E9"  # 
https://github.com/aknuds1.gpg
-  "622E7A764E0C94351E061C57F8D44788D50B48DF"  # 
https://github.com/xlson.gpg
-  "E9EBB044CD6A98482208FE569A774B897EAAB194"  # 
https://github.com/torkelo.gpg
-  "2E240E94A7ADC77A1DFE1085EBFE0FB04612DD4A"  # 
https://github.com/marefr.gpg
-  "5990A087E92D7E15FBF3161103BA4D7E39F0DAF8"  # 
https://github.com/hugohaggmark.gpg
-  "73B00FD007FF40A7B877F8E1C56C450B04996310"  # 
https://github.com/mckn.gpg
-  "3FEB0F042AF5DABD20CDB845539F8AEBA0B8E5DB"  # 
https://github.com/dprokop.gpg
-  "07B19EBA2380F3B0BE4DD234D2A1C6ABC44CEB74"  # 
https://github.com/kylebrandt.gpg
-  "721354FBE3B3088258A3123371A8B8168DFA6ECC") # 
https://github.com/wbrowne.gpg
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  echo "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-  # set arch linux paths
-  sed -ri 's,^(\s*data\s*=).*,\1 /var/lib/grafana,' conf/defaults.ini
-  sed -ri 's,^(\s*plugins\s*=).*,\1 /var/lib/grafana/plugins,' 
conf/defaults.ini
-  sed -ri 's,^(\s*provisioning\s*=).*,\1 /var/lib/grafana/conf/provisioning,' 
conf/defaults.ini
-  sed -ri 's,^(\s*logs\s*=).*,\1 /var/log/grafana,' conf/defaults.ini
-}
-
-build() {
-  echo 'GOPATH setup'
-  export GOPATH="$srcdir/gopath"
-  export PATH+=":$GOPATH/bin"
-  mkdir -p "$GOPATH/src/github.com/grafana/"
-  ln -fsrT "$srcdir/grafana/" "$GOPATH/src/github.com/grafana/grafana"
-  cd "$GOPATH/src/github.com/grafana/grafana"
-
-  echo 'building the backend'
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -modcacherw"
-  go run build.go setup
-  go run build.go build
-
-  echo 'building the frontend'
-  export NPM_CONFIG_PREFIX="$srcdir/npm"
-  export PATH+=":$NPM_CONFIG_PREFIX/bin"
-  yarn install --pure-lockfile --no-progress
-  NODE_ENV=production yarn run build
-}
-
-package() {
-  install -Dm644 grafana.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/grafana.conf"
-  install -Dm644 grafana.sysusers 

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

2021-10-05 Thread Jelle van der Waa via arch-commits
Date: Tuesday, October 5, 2021 @ 18:26:33
  Author: jelle
Revision: 1027765

upgpkg: grafana 8.1.6-1

Modified:
  grafana/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 18:19:36 UTC (rev 1027764)
+++ PKGBUILD2021-10-05 18:26:33 UTC (rev 1027765)
@@ -3,7 +3,7 @@
 # Contributor: Gilles Hamel 
 
 pkgname=grafana
-pkgver=8.1.5
+pkgver=8.1.6
 pkgrel=1
 pkgdesc='Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & 
OpenTSDB'
 url='https://grafana.com/'



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 18:19:36
  Author: felixonmars
Revision: 1027764

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-lsp/repos/community-staging-x86_64/PKGBUILD (from rev 1027763, 
haskell-lsp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 18:19:36 UTC (rev 1027764)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+
+_hkgname=lsp
+pkgname=haskell-lsp
+pkgver=1.2.0.1
+pkgrel=1
+pkgdesc="Haskell library for the Microsoft Language Server Protocol"
+url="https://github.com/haskell/lsp;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-async' 'haskell-attoparsec' 
'haskell-data-default'
+ 'haskell-dependent-map' 'haskell-exceptions' 'haskell-hashable' 
'haskell-hslogger'
+ 'haskell-lens' 'haskell-lsp-types' 'haskell-network-uri' 
'haskell-random'
+ 'haskell-scientific' 'haskell-sorted-list' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-uuid' 'haskell-unliftio')
+makedepends=('ghc' 'uusi' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-hspec-discover'
+ 'haskell-quickcheck-instances' 'haskell-rope-utf16-splay')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('77c79d06cec9bf5fab707c9c1907ca8428ba15f763cad16c5a4b18fb4ee80a1b04770c2b9579d0f4ba31b16f71c2296501c2bd2d3da2475974b42e3c7daf3838')
+
+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' \
+-fdemo
+
+  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-lsp/trunk (PKGBUILD)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 18:19:24
  Author: felixonmars
Revision: 1027763

upgpkg: haskell-lsp 1.2.0.1-1: rebuild with ghcide 1.4.1.0, hiedb 0.4.1.0, 
hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, hls-class-plugin 1.0.1.0, 
hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 1.0.1.0, 
hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

Modified:
  haskell-lsp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 18:16:12 UTC (rev 1027762)
+++ PKGBUILD2021-10-05 18:19:24 UTC (rev 1027763)
@@ -2,26 +2,25 @@
 
 _hkgname=lsp
 pkgname=haskell-lsp
-pkgver=1.2.0.0
-pkgrel=39
+pkgver=1.2.0.1
+pkgrel=1
 pkgdesc="Haskell library for the Microsoft Language Server Protocol"
 url="https://github.com/haskell/lsp;
 license=("MIT")
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-aeson' 'haskell-async' 'haskell-attoparsec' 
'haskell-data-default'
- 'haskell-dependent-map' 'haskell-hashable' 'haskell-hslogger' 
'haskell-lens'
- 'haskell-lsp-types' 'haskell-network-uri' 'haskell-random' 
'haskell-scientific'
- 'haskell-sorted-list' 'haskell-unliftio-core' 
'haskell-unordered-containers' 'haskell-uuid'
- 'haskell-unliftio')
+ 'haskell-dependent-map' 'haskell-exceptions' 'haskell-hashable' 
'haskell-hslogger'
+ 'haskell-lens' 'haskell-lsp-types' 'haskell-network-uri' 
'haskell-random'
+ 'haskell-scientific' 'haskell-sorted-list' 'haskell-unliftio-core'
+ 'haskell-unordered-containers' 'haskell-uuid' 'haskell-unliftio')
 makedepends=('ghc' 'uusi' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-hspec-discover'
  'haskell-quickcheck-instances' 'haskell-rope-utf16-splay')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha512sums=('0da7d04a9117d014211705131192ac87881679cbc863e68e54d2ee20e4f77e7df588a9c90cbc16ef0606af4018b9f836fcb4e746dcfbc850fd909e1cb2d1d6bb')
+sha512sums=('77c79d06cec9bf5fab707c9c1907ca8428ba15f763cad16c5a4b18fb4ee80a1b04770c2b9579d0f4ba31b16f71c2296501c2bd2d3da2475974b42e3c7daf3838')
 
 prepare() {
   cd $_hkgname-$pkgver
   gen-setup
-  uusi -u base $_hkgname.cabal
 }
 
 build() {



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 18:16:12
  Author: felixonmars
Revision: 1027762

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-lsp-types/repos/community-staging-x86_64/
  haskell-lsp-types/repos/community-staging-x86_64/PKGBUILD
(from rev 1027761, haskell-lsp-types/trunk/PKGBUILD)

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

Copied: haskell-lsp-types/repos/community-staging-x86_64/PKGBUILD (from rev 
1027761, haskell-lsp-types/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 18:16:12 UTC (rev 1027762)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=lsp-types
+pkgname=haskell-lsp-types
+pkgver=1.3.0.1
+pkgrel=1
+pkgdesc="Haskell library for the Microsoft Language Server Protocol, data 
types"
+url="https://github.com/haskell/lsp;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-data-default' 
'haskell-dependent-sum'
+ 'haskell-dependent-sum-template' 'haskell-diff' 'haskell-dlist' 
'haskell-hashable'
+ 'haskell-hslogger' 'haskell-lens' 'haskell-network-uri' 
'haskell-rope-utf16-splay'
+ 'haskell-scientific' 'haskell-some' 'haskell-temporary' 
'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('074a2a383efefd3754ed1c835af913e1ab5fee9f634cb343f392bc8148f1a62030777dbb1104cd0e60cec1405d2cc5067c8fb00f2e902a3ffa52601ff7b02c2b')
+
+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
+}
+
+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-lsp-types/trunk (PKGBUILD ghc9.patch)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 18:15:59
  Author: felixonmars
Revision: 1027761

upgpkg: haskell-lsp-types 1.3.0.1-1: rebuild with ghcide 1.4.1.0, hiedb 
0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, hls-class-plugin 
1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 1.0.1.0, 
hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

Modified:
  haskell-lsp-types/trunk/PKGBUILD
Deleted:
  haskell-lsp-types/trunk/ghc9.patch

+
 PKGBUILD   |   17 ---
 ghc9.patch |   89 ---
 2 files changed, 7 insertions(+), 99 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 17:56:03 UTC (rev 1027760)
+++ PKGBUILD2021-10-05 18:15:59 UTC (rev 1027761)
@@ -2,26 +2,23 @@
 
 _hkgname=lsp-types
 pkgname=haskell-lsp-types
-pkgver=1.2.0.0
-pkgrel=38
+pkgver=1.3.0.1
+pkgrel=1
 pkgdesc="Haskell library for the Microsoft Language Server Protocol, data 
types"
 url="https://github.com/haskell/lsp;
 license=("MIT")
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-aeson' 'haskell-data-default' 
'haskell-dependent-sum'
- 'haskell-dependent-sum-template' 'haskell-hashable' 
'haskell-hslogger' 'haskell-lens'
- 'haskell-network-uri' 'haskell-rope-utf16-splay' 'haskell-scientific' 
'haskell-some'
- 'haskell-temporary' 'haskell-unordered-containers')
+ 'haskell-dependent-sum-template' 'haskell-diff' 'haskell-dlist' 
'haskell-hashable'
+ 'haskell-hslogger' 'haskell-lens' 'haskell-network-uri' 
'haskell-rope-utf16-splay'
+ 'haskell-scientific' 'haskell-some' 'haskell-temporary' 
'haskell-unordered-containers')
 makedepends=('ghc' 'uusi')
-source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;
-ghc9.patch)
-sha512sums=('c413f16dac35e7096e439cf7e1b8ec8f1c80b0a7dfea681512ff1dccf9e1d8a436bab38ce2c6ab15a584a5ebceebd96a85a5694ef30889df6275163843cef18a'
-
'9e1ae0c72dba23b7065bc82e412392427aeba8a0cf2ec514b1918570d03f038c42c3dc2d0e23dc9e9efb081238e11c7f82083ee03b6625b683ae257f776c08a5')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('074a2a383efefd3754ed1c835af913e1ab5fee9f634cb343f392bc8148f1a62030777dbb1104cd0e60cec1405d2cc5067c8fb00f2e902a3ffa52601ff7b02c2b')
 
 prepare() {
   cd $_hkgname-$pkgver
   gen-setup
-  patch -p2 -i ../ghc9.patch
 }
 
 build() {

Deleted: ghc9.patch
===
--- ghc9.patch  2021-10-05 17:56:03 UTC (rev 1027760)
+++ ghc9.patch  2021-10-05 18:15:59 UTC (rev 1027761)
@@ -1,89 +0,0 @@
-From 8f499cec4148da2295f214bac44fe6a2ed8eea55 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Andreas=20K=C3=A4llberg?= 
-Date: Tue, 30 Mar 2021 10:58:50 +0800
-Subject: [PATCH] Shuffle around TH lines, since ghc-9 seems to have stricter
- staging rules
-

- lsp-types/lsp-types.cabal| 2 +-
- lsp-types/src/Language/LSP/Types/Method.hs   | 3 ++-
- lsp-types/src/Language/LSP/Types/TextDocument.hs | 4 ++--
- lsp-types/src/Language/LSP/Types/WatchedFiles.hs | 5 ++---
- lsp/lsp.cabal| 2 +-
- 5 files changed, 8 insertions(+), 8 deletions(-)
-
-diff --git a/lsp-types/lsp-types.cabal b/lsp-types/lsp-types.cabal
-index 36a383c3..55020743 100644
 a/lsp-types/lsp-types.cabal
-+++ b/lsp-types/lsp-types.cabal
-@@ -69,7 +69,7 @@ library
-  , Language.LSP.Types.WorkspaceSymbol
-  -- other-extensions:
-   ghc-options: -Wall
--  build-depends:   base >= 4.11 && < 4.15
-+  build-depends:   base >= 4.11 && < 4.16
-  , aeson >=1.2.2.0
-  , binary
-  , bytestring
-diff --git a/lsp-types/src/Language/LSP/Types/Method.hs 
b/lsp-types/src/Language/LSP/Types/Method.hs
-index 89462f5a..90897283 100644
 a/lsp-types/src/Language/LSP/Types/Method.hs
-+++ b/lsp-types/src/Language/LSP/Types/Method.hs
-@@ -312,7 +312,6 @@ instance A.FromJSON SomeServerMethod where
-   parseJSON _= fail 
"SomeServerMethod"
- 
- -- instance FromJSON (SMethod m)
--makeSingletonFromJSON 'SomeMethod ''SMethod
- 
- -- -
- -- TO JSON
-@@ -396,3 +395,5 @@ instance A.ToJSON (SMethod m) where
-   toJSON SCancelRequest  = A.String "$/cancelRequest"
- -- Custom
-   toJSON (SCustomMethod m)   = A.String m

[arch-commits] Commit in qt5-base/repos/extra-x86_64 (6 files)

2021-10-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 5, 2021 @ 18:06:29
  Author: arojas
Revision: 425153

archrelease: copy trunk to extra-x86_64

Added:
  qt5-base/repos/extra-x86_64/PKGBUILD
(from rev 425152, qt5-base/trunk/PKGBUILD)
  qt5-base/repos/extra-x86_64/qt5-base-cflags.patch
(from rev 425152, qt5-base/trunk/qt5-base-cflags.patch)
  qt5-base/repos/extra-x86_64/qt5-base-nostrip.patch
(from rev 425152, qt5-base/trunk/qt5-base-nostrip.patch)
Deleted:
  qt5-base/repos/extra-x86_64/PKGBUILD
  qt5-base/repos/extra-x86_64/qt5-base-cflags.patch
  qt5-base/repos/extra-x86_64/qt5-base-nostrip.patch

+
 PKGBUILD   |  222 +++
 qt5-base-cflags.patch  |   92 +--
 qt5-base-nostrip.patch |   26 ++---
 3 files changed, 170 insertions(+), 170 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 18:06:13 UTC (rev 425152)
+++ PKGBUILD2021-10-05 18:06:29 UTC (rev 425153)
@@ -1,111 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Andrea Scarpino 
-
-pkgbase=qt5-base
-pkgname=(qt5-base qt5-xcb-private-headers)
-pkgver=5.15.2+kde+r234
-pkgrel=1
-_commit=cbb138f4f1292bea1243160941a27894e337beec
-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-renderutil' 'libgl' 
'fontconfig' 'xdg-utils'
- 'shared-mime-info' 'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 
'xcb-util-image' 'mesa'
- 'tslib' 'libinput' 'libxkbcommon-x11' 'libproxy' 'libcups' 
'double-conversion' 'md4c')
-makedepends=('libfbclient' 'mariadb-libs' 'unixodbc' 'postgresql-libs' 
'alsa-lib' 'gst-plugins-base-libs'
- 'gtk3' 'libpulse' 'cups' 'freetds' 'vulkan-headers' 'git')
-optdepends=('qt5-svg: to use SVG icon themes'
-'qt5-wayland: to run Qt applications in a Wayland session'
-'qt5-translations: for some native UI translations'
-'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 fixqt4headers and syncqt')
-conflicts=('qtchooser')
-groups=('qt' 'qt5')
-_pkgfqn=qtbase
-source=(git+https://invent.kde.org/qt/qt/$_pkgfqn#commit=$_commit
-qt5-base-cflags.patch
-qt5-base-nostrip.patch)
-sha256sums=('SKIP'
-'cf707cd970650f8b60f8897692b36708ded9ba116723ec8fcd885576783fe85c'
-'4b93f6a79039e676a56f9d6990a324a64a36f143916065973ded89adc621e094')
-
-pkgver() {
-  cd $_pkgfqn
-  echo "5.15.2+kde+r"`git rev-list --count origin/5.15.2..$_commit`
-}
-
-prepare() {
-  cd ${_pkgfqn}
-
-  git revert -n 6344955d17e17e2398720fe60c34cfc2a4a95208 # Revert version bump
-
-  patch -p1 < ../qt5-base-cflags.patch # Use system CFLAGS in qmake
-  patch -p1 < ../qt5-base-nostrip.patch # Don't strip binaries with qmake
-}
-
-build() {
-  cd ${_pkgfqn}
-
-  ./configure -confirm-license -opensource -v \
--prefix /usr \
--docdir /usr/share/doc/qt \
--headerdir /usr/include/qt \
--archdatadir /usr/lib/qt \
--datadir /usr/share/qt \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--openssl-linked \
--nomake examples \
--no-rpath \
--dbus-linked \
--system-harfbuzz \
--journald \
--no-mimetype-database \
--no-use-gold-linker \
--reduce-relocations \
--no-strip
-  make
-}
-
-package_qt5-base() {
-  pkgdesc='A cross-platform application and UI framework'
-
-  cd ${_pkgfqn}
-  make INSTALL_ROOT="${pkgdir}" install
-
-  install -Dm644 LICENSE* -t "$pkgdir"/usr/share/licenses/$pkgbase
-
-  # Drop QMAKE_PRL_BUILD_DIR because reference the build dir
-  find "${pkgdir}/usr/lib" -type f -name '*.prl' \
--exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
-
-  # Fix wrong qmake path in pri file
-  sed -i "s|${srcdir}/${_pkgfqn}|/usr|" \
-"${pkgdir}"/usr/lib/qt/mkspecs/modules/qt_lib_bootstrap_private.pri
-
-  # Symlinks for backwards compatibility
-  for b in "${pkgdir}"/usr/bin/*; do
-ln -s $(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
-  done
-}
-
-package_qt5-xcb-private-headers() {
-  pkgdesc='Private headers for Qt5 Xcb'
-
-  depends=("qt5-base=$pkgver")
-  optdepends=()
-  groups=()
-  conflicts=()
-
-  cd ${_pkgfqn}
-  install -d -m755 "$pkgdir"/usr/include/qtxcb-private
-  cp -r src/plugins/platforms/xcb/*.h "$pkgdir"/usr/include/qtxcb-private/
-}

Copied: qt5-base/repos/extra-x86_64/PKGBUILD (from rev 425152, 
qt5-base/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 18:06:29 UTC (rev 425153)
@@ -0,0 

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

2021-10-05 Thread Antonio Rojas via arch-commits
Date: Tuesday, October 5, 2021 @ 18:06:13
  Author: arojas
Revision: 425152

Bump revision

Modified:
  qt5-base/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 15:42:08 UTC (rev 425151)
+++ PKGBUILD2021-10-05 18:06:13 UTC (rev 425152)
@@ -3,9 +3,9 @@
 
 pkgbase=qt5-base
 pkgname=(qt5-base qt5-xcb-private-headers)
-pkgver=5.15.2+kde+r234
+pkgver=5.15.2+kde+r236
 pkgrel=1
-_commit=cbb138f4f1292bea1243160941a27894e337beec
+_commit=42ae032f3bdb7dc6e23220da6bf297a21fa8c36c
 arch=('x86_64')
 url='https://www.qt.io'
 license=('GPL3' 'LGPL3' 'FDL' 'custom')



[arch-commits] Commit in haskell-implicit-hie-cradle/repos (2 files)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 17:56:03
  Author: felixonmars
Revision: 1027760

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-implicit-hie-cradle/repos/community-staging-x86_64/
  haskell-implicit-hie-cradle/repos/community-staging-x86_64/PKGBUILD
(from rev 1027759, haskell-implicit-hie-cradle/trunk/PKGBUILD)

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

Copied: haskell-implicit-hie-cradle/repos/community-staging-x86_64/PKGBUILD 
(from rev 1027759, haskell-implicit-hie-cradle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 17:56:03 UTC (rev 1027760)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=implicit-hie-cradle
+pkgname=haskell-implicit-hie-cradle
+pkgver=0.3.0.5
+pkgrel=35
+pkgdesc="Auto generate hie-bios cradles"
+url="https://github.com/Avi-D-coder/implicit-hie-cradle#readme;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-base16-bytestring' 'haskell-extra' 
'haskell-hie-bios'
+ 'haskell-hslogger' 'haskell-implicit-hie' 'haskell-temporary' 
'haskell-unix-compat'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('692534bce4513e039e8f7fe162f8ceb88ef42ced0f314ba01a4d07e2a2f5bb5be60f64a04674498e45c0766fe801aba7102763704aa857695f770318dc3e')
+
+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-implicit-hie-cradle/trunk (PKGBUILD)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 17:55:50
  Author: felixonmars
Revision: 1027759

upgpkg: haskell-implicit-hie-cradle 0.3.0.5-35: rebuild with ghcide 1.4.1.0, 
hiedb 0.4.1.0, hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, 
hls-class-plugin 1.0.1.0, hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 
1.0.1.0, hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

Modified:
  haskell-implicit-hie-cradle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 17:54:59 UTC (rev 1027758)
+++ PKGBUILD2021-10-05 17:55:50 UTC (rev 1027759)
@@ -3,7 +3,7 @@
 _hkgname=implicit-hie-cradle
 pkgname=haskell-implicit-hie-cradle
 pkgver=0.3.0.5
-pkgrel=34
+pkgrel=35
 pkgdesc="Auto generate hie-bios cradles"
 url="https://github.com/Avi-D-coder/implicit-hie-cradle#readme;
 license=("BSD")



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 17:54:59
  Author: felixonmars
Revision: 1027758

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hiedb/repos/community-staging-x86_64/PKGBUILD (from rev 
1027757, haskell-hiedb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 17:54:59 UTC (rev 1027758)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hiedb
+pkgname=haskell-hiedb
+pkgver=0.4.1.0
+pkgrel=1
+pkgdesc="Generates a references DB from .hie files"
+url="https://github.com/wz1000/HieDb;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-algebraic-graphs' 'haskell-ansi-terminal' 
'haskell-extra' 'haskell-ghc'
+ 'haskell-ghc-api-compat' 'haskell-ghc-paths' 'haskell-hie-compat' 
'haskell-lucid'
+ 'haskell-optparse-applicative' 'haskell-sqlite-simple' 
'haskell-terminal-size')
+makedepends=('ghc' 'haskell-hspec' 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('b4d20f110e756a4bc056df41d6115e9faa8c91b2668abbae64de27b6169e4fb7e1067e1584f7a08dcc6e7a82923e41bab02ad7f0c6958fae764e94a46ee01aed')
+
+prepare() {
+  cd hiedb-$pkgver
+  sed -i 's/callProcess hc args/callProcess hc (["-dynamic"] ++ args)/' 
test/Main.hs
+}
+
+build() {
+  cd hiedb-$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 hiedb-$pkgver
+  PATH="$PWD/dist/build/hiedb:$PATH" LD_LIBRARY_PATH="$PWD/dist/build" 
runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd hiedb-$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-hiedb/trunk (PKGBUILD)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 17:54:47
  Author: felixonmars
Revision: 1027757

upgpkg: haskell-hiedb 0.4.1.0-1: rebuild with ghcide 1.4.1.0, hiedb 0.4.1.0, 
hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, hls-class-plugin 1.0.1.0, 
hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 1.0.1.0, 
hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

Modified:
  haskell-hiedb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 17:53:30 UTC (rev 1027756)
+++ PKGBUILD2021-10-05 17:54:47 UTC (rev 1027757)
@@ -2,8 +2,8 @@
 
 _hkgname=hiedb
 pkgname=haskell-hiedb
-pkgver=0.4.0.0
-pkgrel=21
+pkgver=0.4.1.0
+pkgrel=1
 pkgdesc="Generates a references DB from .hie files"
 url="https://github.com/wz1000/HieDb;
 license=("BSD")
@@ -13,7 +13,7 @@
  'haskell-optparse-applicative' 'haskell-sqlite-simple' 
'haskell-terminal-size')
 makedepends=('ghc' 'haskell-hspec' 'haskell-temporary')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha512sums=('b45bb1e08544379c61a9bd3f38613be844320cd5bed65d181cc01c7f77724daf63e4cf6930db7f14873de8f2122efe7e10b933bd5d53d3a4df4c55f8343c0d7b')
+sha512sums=('b4d20f110e756a4bc056df41d6115e9faa8c91b2668abbae64de27b6169e4fb7e1067e1584f7a08dcc6e7a82923e41bab02ad7f0c6958fae764e94a46ee01aed')
 
 prepare() {
   cd hiedb-$pkgver



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

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 17:53:30
  Author: felixonmars
Revision: 1027756

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hie-bios/repos/community-staging-x86_64/
  haskell-hie-bios/repos/community-staging-x86_64/PKGBUILD
(from rev 1027755, haskell-hie-bios/trunk/PKGBUILD)

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

Copied: haskell-hie-bios/repos/community-staging-x86_64/PKGBUILD (from rev 
1027755, haskell-hie-bios/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-10-05 17:53:30 UTC (rev 1027756)
@@ -0,0 +1,65 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hie-bios
+pkgname=haskell-hie-bios
+pkgver=0.7.6
+pkgrel=1
+pkgdesc="Set up a GHC API session"
+url="https://github.com/mpickering/hie-bios;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base16-bytestring' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-cryptohash-sha1' 
'haskell-exceptions' 'haskell-extra'
+ 'haskell-file-embed' 'haskell-ghc-api-compat' 'haskell-hslogger'
+ 'haskell-optparse-applicative' 'haskell-temporary' 
'haskell-unix-compat'
+ 'haskell-unordered-containers' 'haskell-vector' 'haskell-yaml')
+makedepends=('ghc' 'uusi' 'haskell-hspec-expectations' 'haskell-tasty' 
'haskell-tasty-expected-failure'
+ 'haskell-tasty-hunit')
+checkdepends=('cabal-install')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('33ffb37f5f39ebd9e4000de298d2645c15426818704f1d806b5f186d0d0d82bfd22df70aed181a9eab9d3b2581055a1e9c0925051fa05d97f38f4c8c7c7d0d14')
+
+prepare() {
+  cd $_hkgname-$pkgver
+
+  # It is broken only in the hackage tarball
+  sed -i 's/FilePah/FilePath/' tests/ParserTests.hs
+
+  # Additional fixes for dynamic ghc
+  sed -i 's/updateWays \.//' src/HIE/Bios/Environment.hs
+
+  # https://github.com/mpickering/hie-bios/issues/290
+  chmod +x tests/projects/*/*.sh
+}
+
+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  # Generate cabal config for tests
+  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-hie-bios/trunk (PKGBUILD ghc9.patch)

2021-10-05 Thread Felix Yan via arch-commits
Date: Tuesday, October 5, 2021 @ 17:53:17
  Author: felixonmars
Revision: 1027755

upgpkg: haskell-hie-bios 0.7.6-1: rebuild with ghcide 1.4.1.0, hiedb 0.4.1.0, 
hie-bios 0.7.6, hls-call-hierarchy-plugin 1.0.0.0, hls-class-plugin 1.0.1.0, 
hls-eval-plugin 1.1.2.0, hls-explicit-imports-plugin 1.0.1.0, 
hls-floskell-plugin 1.0.0.1, hls-fourmolu-plugin 1.0.0.2, 
hls-haddock-comments-plugin 1.0.0.3, hls-hlint-plugin 1.0.1.1, 
hls-module-name-plugin 1.0.0.1, hls-ormolu-plugin 1.0.1.0, hls-pragmas-plugin 
1.0.1.0, hls-refine-imports-plugin 1.0.0.1, hls-retrie-plugin 1.0.1.1, 
hls-splice-plugin 1.0.0.4, hls-stylish-haskell-plugin 1.0.0.2, hls-test-utils 
1.1.0.0, hls-plugin-api 1.2.0.0, lsp 1.2.0.1, lsp-test 0.14.0.1, lsp-types 
1.3.0.1

Modified:
  haskell-hie-bios/trunk/PKGBUILD
Deleted:
  haskell-hie-bios/trunk/ghc9.patch

+
 PKGBUILD   |   15 -
 ghc9.patch |  761 ---
 2 files changed, 7 insertions(+), 769 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 17:11:36 UTC (rev 1027754)
+++ PKGBUILD2021-10-05 17:53:17 UTC (rev 1027755)
@@ -2,8 +2,8 @@
 
 _hkgname=hie-bios
 pkgname=haskell-hie-bios
-pkgver=0.7.5
-pkgrel=67
+pkgver=0.7.6
+pkgrel=1
 pkgdesc="Set up a GHC API session"
 url="https://github.com/mpickering/hie-bios;
 license=("BSD")
@@ -16,18 +16,17 @@
 makedepends=('ghc' 'uusi' 'haskell-hspec-expectations' 'haskell-tasty' 
'haskell-tasty-expected-failure'
  'haskell-tasty-hunit')
 checkdepends=('cabal-install')
-source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;
-ghc9.patch)
-sha512sums=('decc7d47a5b44a041a43779d26a2db07d09754d3d1b40a90ee031f09487237890f9509256638aec9ec29fd92dcd37332c7bf36852586e2589b274eb42d5d9262'
-
'2863a6f77523446c025e28bfff0f1fff82c29a5cb513ea3687c84d18f7bb841cc5ca90d60be6d17f895d6f57a9466dc0217d430e5da5115cbb62d4b7b065717b')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('33ffb37f5f39ebd9e4000de298d2645c15426818704f1d806b5f186d0d0d82bfd22df70aed181a9eab9d3b2581055a1e9c0925051fa05d97f38f4c8c7c7d0d14')
 
 prepare() {
   cd $_hkgname-$pkgver
-  patch -p1 -i ../ghc9.patch
 
+  # It is broken only in the hackage tarball
+  sed -i 's/FilePah/FilePath/' tests/ParserTests.hs
+
   # Additional fixes for dynamic ghc
   sed -i 's/updateWays \.//' src/HIE/Bios/Environment.hs
-  uusi -r tasty-expected-failure:tasty-expected-failure,ghc-api-compat 
$_hkgname.cabal
 
   # https://github.com/mpickering/hie-bios/issues/290
   chmod +x tests/projects/*/*.sh

Deleted: ghc9.patch
===
--- ghc9.patch  2021-10-05 17:11:36 UTC (rev 1027754)
+++ ghc9.patch  2021-10-05 17:53:17 UTC (rev 1027755)
@@ -1,761 +0,0 @@
-From a2783dc0c55ccbe5647fe87c422c9a65354fc3ef Mon Sep 17 00:00:00 2001
-From: Fendor 
-Date: Sat, 5 Sep 2020 13:50:09 +0200
-Subject: [PATCH 01/10] Make hie-bios compile with GHC-HEAD
-

- hie-bios.cabal  |   3 +-
- src/HIE/Bios/Environment.hs |  19 +++---
- src/HIE/Bios/Ghc/Api.hs |   3 +-
- src/HIE/Bios/Ghc/Check.hs   |   2 +-
- src/HIE/Bios/Ghc/Doc.hs |  10 +++-
- src/HIE/Bios/Ghc/Gap.hs | 113 ++--
- src/HIE/Bios/Ghc/Load.hs|   6 +-
- src/HIE/Bios/Ghc/Logger.hs  |  23 +---
- 8 files changed, 145 insertions(+), 34 deletions(-)
-
-diff --git a/hie-bios.cabal b/hie-bios.cabal
-index 1ee5a8c0..735efe34 100644
 a/hie-bios.cabal
-+++ b/hie-bios.cabal
-@@ -156,8 +156,9 @@ Library
- filepath >= 1.4.1 && < 1.5,
- time >= 1.8.0 && < 1.12,
- extra>= 1.6.14 && < 1.8,
-+exceptions,
- process  >= 1.6.1 && < 1.7,
--ghc  >= 8.4.1 && < 8.11,
-+ghc-api-compat,
- transformers >= 0.5.2 && < 0.6,
- temporary>= 1.2 && < 1.4,
- text >= 1.2.3 && < 1.3,
-diff --git a/src/HIE/Bios/Environment.hs b/src/HIE/Bios/Environment.hs
-index 48ed0e4d..15670333 100644
 a/src/HIE/Bios/Environment.hs
-+++ b/src/HIE/Bios/Environment.hs
-@@ -7,6 +7,7 @@ import qualified GHC as G
- import qualified DriverPhases as G
- import qualified Util as G
- import DynFlags
-+import qualified HIE.Bios.Ghc.Gap as Gap
- 
- import Control.Applicative
- import Control.Monad (void)
-@@ -123,9 +124,8 @@ getCacheDir fp = do
- -- (HscInterpreted) which implies LinkInMemory
- -- HscInterpreted
- setLinkerOptions :: DynFlags -> DynFlags
--setLinkerOptions df = df {
-+setLinkerOptions df = setNoCode $ df {
- ghcLink   = LinkInMemory
--  , hscTarget = HscNothing
-   , ghcMode = 

[arch-commits] Commit in firefox-developer-edition-i18n/repos/community-any (2 files)

2021-10-05 Thread Andrew Crerar via arch-commits
Date: Tuesday, October 5, 2021 @ 17:11:36
  Author: andrewsc
Revision: 1027754

archrelease: copy trunk to community-any

Added:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD
(from rev 1027753, firefox-developer-edition-i18n/trunk/PKGBUILD)
Deleted:
  firefox-developer-edition-i18n/repos/community-any/PKGBUILD

--+
 PKGBUILD |  460 ++---
 1 file changed, 230 insertions(+), 230 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 17:11:14 UTC (rev 1027753)
+++ PKGBUILD2021-10-05 17:11:36 UTC (rev 1027754)
@@ -1,230 +0,0 @@
-# Maintainer: Andrew Crerar 
-
-pkgbase=firefox-developer-edition-i18n
-pkgver=93.0b9
-pkgrel=1
-pkgdesc="Language pack for Firefox Developer Edition"
-arch=('any')
-url="https://www.mozilla.com/;
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach "Acholi"'
-  'af  "Afrikaans"'
-  'an  "Aragonese"'
-  'ar  "Arabic"'
-  'ast "Asturian"'
-  'az  "Azerbaijani"'
-  'be  "Belarusian"'
-  'bg  "Bulgarian"'
-  'bn  "Bengali"'
-  'br  "Breton"'
-  'bs  "Bosnian"'
-  'ca  "Catalan"'
-  'ca-valencia "Catalan (Valencian)"'
-  'cak "Maya Kaqchikel"'
-  'cs  "Czech"'
-  'cy  "Welsh"'
-  'da  "Danish"'
-  'de  "German"'
-  'dsb "Lower Sorbian"'
-  'el  "Greek"'
-  'en-CA   "English (Canada)"'
-  'en-GB   "English (British)"'
-  'en-US   "English (American)"'
-  'eo  "Esperanto"'
-  'es-AR   "Spanish (Argentina)"'
-  'es-CL   "Spanish (Chile)"'
-  'es-ES   "Spanish (Spain)"'
-  'es-MX   "Spanish (Mexico)"'
-  'et  "Estonian"'
-  'eu  "Basque"'
-  'fa  "Persian"'
-  'ff  "Fulah"'
-  'fi  "Finnish"'
-  'fr  "French"'
-  'fy-NL   "Frisian"'
-  'ga-IE   "Irish"'
-  'gd  "Gaelic (Scotland)"'
-  'gl  "Galician"'
-  'gn  "Guarani"'
-  'gu-IN   "Gujarati (India)"'
-  'he  "Hebrew"'
-  'hi-IN   "Hindi (India)"'
-  'hr  "Croatian"'
-  'hsb "Upper Sorbian"'
-  'hu  "Hungarian"'
-  'hy-AM   "Armenian"'
-  'ia  "Interlingua"'
-  'id  "Indonesian"'
-  'is  "Icelandic"'
-  'it  "Italian"'
-  'ja  "Japanese"'
-  'ka  "Georgian"'
-  'kab "Kabyle"'
-  'kk  "Kazakh"'
-  'km  "Khmer"'
-  'kn  "Kannada"'
-  'ko  "Korean"'
-  'lij "Ligurian"'
-  'lt  "Lithuanian"'
-  'lv  "Latvian"'
-  'mk  "Macedonian"'
-  'mr  "Marathi"'
-  'ms  "Malay"'
-  'my  "Burmese"'
-  'nb-NO   "Norwegian (Bokmål)"'
-  'ne-NP   "Nepali"'
-  'nl  "Dutch"'
-  'nn-NO   "Norwegian (Nynorsk)"'
-  'oc  "Occitan"'
-  'pa-IN   "Punjabi (India)"'
-  'pl  "Polish"'
-  'pt-BR   "Portuguese (Brazilian)"'
-  'pt-PT   "Portuguese (Portugal)"'
-  'rm  "Romansh"'
-  'ro  "Romanian"'
-  'ru  "Russian"'
-  'si  "Sinhala"'
-  'sk  "Slovak"'
-  'sl  "Slovenian"'
-  'son "Songhai"'
-  'sq  "Albanian"'
-  'sr  "Serbian"'
-  'sv-SE   "Swedish"'
-  'ta  "Tamil"'
-  'te  "Telugu"'
-  'th  "Thai"'
-  'tl  "Tagalog"'
-  'tr  "Turkish"'
-  'trs "Triqui"'
-  'uk  "Ukrainian"'
-  'ur  "Urdu"'
-  'uz  "Uzbek"'
-  'vi  "Vietnamese"'
-  'xh  "Xhosa"'
-  'zh-CN   "Chinese (Simplified)"'
-  'zh-TW   "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://archive.mozilla.org/pub/firefox/releases/$pkgver/linux-x86_64/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-developer-edition-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  
source+=("firefox-developer-edition-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox Developer Edition"
-  depends=("firefox-developer-edition>=$pkgver")
-  install -Dm644 firefox-developer-edition-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha512sums=('aec9499b42f13b2fe1f18381f6f1a2365974afb6edcae2755913ae29a1fefc815796d904ca7cd0bce79579405bf03acb8ca2b44088e504768c61057713734535'
-
'f0242b3eb9bad1547b5c76e540e733a766d718f68d1ea045b004b03e44795533d02ded5400a270d6b1d0c70f11e1960680b10bca7d3bbc788717be2115349f1e'
-
'31a87270a12d2b24ac5b1e16bc056828ee3164c42cdbd89a66a132eef7a93dc3ef507dbe75ef92a18b4363bd49802133c62cdf8a23c96e34f539e0c937a261e0'
-

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

2021-10-05 Thread Andrew Crerar via arch-commits
Date: Tuesday, October 5, 2021 @ 17:11:14
  Author: andrewsc
Revision: 1027753

upgpkg: firefox-developer-edition-i18n 94.0b1-1

Modified:
  firefox-developer-edition-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 17:05:14 UTC (rev 1027752)
+++ PKGBUILD2021-10-05 17:11:14 UTC (rev 1027753)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=93.0b9
+pkgver=94.0b1
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -132,99 +132,99 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha512sums=('aec9499b42f13b2fe1f18381f6f1a2365974afb6edcae2755913ae29a1fefc815796d904ca7cd0bce79579405bf03acb8ca2b44088e504768c61057713734535'
-
'f0242b3eb9bad1547b5c76e540e733a766d718f68d1ea045b004b03e44795533d02ded5400a270d6b1d0c70f11e1960680b10bca7d3bbc788717be2115349f1e'
-
'31a87270a12d2b24ac5b1e16bc056828ee3164c42cdbd89a66a132eef7a93dc3ef507dbe75ef92a18b4363bd49802133c62cdf8a23c96e34f539e0c937a261e0'
-
'299d0604cfb96f0b7cd4b7e8ae21b7ede01428900d3e1d7964bcbde02bcccfa534eb2997dfc5dfb2647c0d87af82ba80df7696fcaabead18b59aff0f59bd3541'
-
'ec05c82ecc3604082693ce4d2e594f710eaf03b7796afcadfd23ae8435da59e1890c9f111da9ef1d6122167362024a2117eb1230f2965bf0b4069a656004b298'
-
'38b0a399edeeca7c799826e285edeb006170274f605f5791cdd19480b3c9f15874b6d72fcf491b1eccdd0d75542166f7703f9b462be58150cae535ebc1d79635'
-
'eb8ca6e2fb645a0126de605b519001613454256f7b82f0ecafa7756cb12b0f93589a959b72dbee079309862034074fc97251c8108503b457cf1fa166e5f9c654'
-
'921b72d7b008715f805c96c7d07a505e5f022c3bcb5981885cb075c8ced26c8946ffef0ae01c70c70bd13ac20e3f18360fcae4819fdb5e3861e60c82c36822fa'
-
'ef7cc8827445e08b8b131b91ca019dbc1c89ac19267b9dc49b6a34a629eab2dd16da1817249779dbd325603417629b10163f3169d535250ef7f4cb9609681df8'
-
'c75bf27a9e1fdbeef7c4d2143738e9efade5bf0f46975a76568cc0a7572ea6ee2eb91c3476863a2ad4753cb9c07f649209213d49d7c4663c11ef40d9b84eddfb'
-
'ba3a152db1d462aecdbd20d1b43a585234c64071ff188fe69d666ae4efa1a6e3925a250c146f41a15db54ce5c8674c4cb3b3017174fdf3cf740d4edce9c7ed4b'
-
'12578b9bb373a4dadb83b6c09f488f4fd13d8bb0c99f32497ae16bc7dc8d3630811a730a0c5fd1ce7d12c1a0094c862b863566cff0d3d9617cbd7682446ef775'
-
'a566176cdf48c27906a67986df471652526f79e85bb7354aeed597f34de7c38916da87d5f2c15cfb977d7aeecfca92de92065dc91df979960fe73246d0eac3b2'
-
'ba9303ed2cdc8b8e7910d03fc22544e5883d8bf83f9414bde9369d558c1243a8f859e1be6af26d4b7f3a7d056f3d9bcd1be0ddf9d71fa281b441453f29c29a18'
-
'c132d184987b99b2d861c03061234cb3e3efc149ac0e04d833f6bf8b6ea618dd522b53f6711c259c43328d82563e5b283b9a2edba9b30df39a7726b3c5793a73'
-
'2b533161415e37115a96e5eff1b10e09cd1c78b4c8574ceac560c8f35819735d0b8c93a627c3aae2dd32258f45cd5571b4980965652bd719d3027bdc834c96e8'
-
'78e3666afd14a34a03fa961fff3e6017b2b7fab697ee6559b1cbef2d3646ff35f73f0335ce43c44506c549a486d1de03e6dd420fcb74cb9592dcf9b9634f1921'
-
'd33b75411c14f5450d50200bb595570c0da8bd9caba1c1fc9d09f0bbd11a232108816f7560e344475f8c347eafa84491631af2ea3e688bbb14f361ba7f3d2cf7'
-
'cc61436cc7a34a342415db9483124d5d543e4483d91048ec033be8d776d0cf747af80b3a296944bc8d97da3f8077b36cf2e32612fdd3c1367e12de81f9faa9af'
-
'4d3858dab9e5a565e00a3ccd5d96f604a720a4361cadfeb345611313c17858dfc509c99ae313079ad085785755eaabbe15129b01f64aa444093e6a62542d1c9c'
-
'5fb5219b423939d9895611ce336e8c8f760c4449fe47c7d7c7a856a03b066a9d494d3c3b8085e0ac4588f07fed326a1a693b3d965bc4fff0105b9a046a35e02a'
-
'3445eb65b595cf3184b833512fc48d2bd1c79ae6095fffeaa6b2f01f5bfd7fc93fd742c5f9917e77b89194da6acdfa2fc536f558967803ceb650500f11cc3698'
-
'3f52de57fbb1b7b05270f317054d62cb22ce3d756392162184dba474bd984c1c453584ed5479740d896b0193ab984668229d7027b02f85f2d2c48bf96a8b1cac'
-
'8498d8bf4517ca093f9c2512e3f825c985c851e9c25407249edfff2c2902e7a6ed3a4af65cc939168f7dd403c331badbdf865d55d6c19e1a2f1143315631d033'
-
'875efeb7eb2571020f33f93fc71bf450cea8699a0dae14c366ff4ace97f93a00af6c1bd202ebe2c5e86458776e57e44e9b21b4f387241a41c45268ee361be543'
-
'0367d0fb4bca63cb4939b470f448b49b3deb9476b61c5d580e70e5c1a67dd96a86fd23adb27ac47be30ef8dbd5bc2cb9f807a447cb55cf5da5efcfa0883c18be'
-
'd2baf00aff91541af948bc5446c681325080eaed2b2dbd4e101b7b6a81abcfa7a5e59ac2a1d30b5ecd21ad7f9b618778f78a11560062b6f563a06e6c1a0ab61c'
-
'658045a7ca39997bfa67ad285183d520e25ff598b7f02217262613b3d88592674426a87208db1b1bd88e8e0be427a2e38de19ff2d477efcd1c296cefa83621b1'
-

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

2021-10-05 Thread Andrew Crerar via arch-commits
Date: Tuesday, October 5, 2021 @ 17:04:46
  Author: andrewsc
Revision: 1027751

upgpkg: firefox-developer-edition 94.0b1-1

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 16:36:10 UTC (rev 1027750)
+++ PKGBUILD2021-10-05 17:04:46 UTC (rev 1027751)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=93.0b9
+pkgver=94.0b1
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')
@@ -23,7 +23,7 @@
 firefox-install-dir.patch
 0001-Use-remoting-name-for-GDK-application-names.patch
 "$pkgname".desktop)
-sha512sums=('e2eba7e8c534ae884e518f52989f25ba50726c5606cdaabd74cfa29eb531baa3810a5d0e06a9967f9e22a03bd41ff75756b430a7eab24b48b635f752a6a125d3'
+sha512sums=('5f258f010eb0f9ae198d373abf71209734308f57d4c913873dc71ae1a8d7fba0bf255ae4305d16410d14fb19288e55718a83043d15013aec7d39f55ffb329f4a'
 'SKIP'
 
'b66dbe7f262d036e5a5b895ab5b0dbb03313bca18b0823c001ef2dbaeb1a33169b57db0cf4dfd268499f28913845119902b5d62e8a6a9cc4820eb0ee2f322a1e'
 
'8df3228209334aaaddec9c761c063e61ebbf3e75c6b249db9347dc4cabb79d912ccc8abdcfe4fab63387f2a0e09b4f3c9edf3b7e25aa0fd00ee56bcc7e9dde2c'



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

2021-10-05 Thread Orhun Parmaksiz via arch-commits
Date: Tuesday, October 5, 2021 @ 16:36:10
  Author: orhun
Revision: 1027750

archrelease: copy trunk to community-x86_64

Added:
  xplr/repos/community-x86_64/PKGBUILD
(from rev 1027749, xplr/trunk/PKGBUILD)
Deleted:
  xplr/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 16:36:03 UTC (rev 1027749)
+++ PKGBUILD2021-10-05 16:36:10 UTC (rev 1027750)
@@ -1,46 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-pkgname=xplr
-pkgver=0.14.7
-pkgrel=1
-pkgdesc="A hackable, minimal, fast TUI file explorer"
-arch=('x86_64')
-url="https://github.com/sayanarijit/xplr;
-license=('MIT')
-depends=('gcc-libs' 'hicolor-icon-theme')
-makedepends=('rust')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
-
"$pkgname-$pkgver.tar.gz.asc::$url/releases/download/v${pkgver}/source.tar.gz.asc")
-sha512sums=('d5d52884b6f2673937d8074259dc6517a4acc336f09b55aa4414aa43e4bf3bbe9b26bd7137ccd3aaad108ca42cb17c96fcc633ef596c00f34252c37347d7dfa2'
-'SKIP')
-validpgpkeys=('D59CA14710C17C6B24717AF90F8EF5258DC38077') # Arijit Basu (June 
3, 2021)
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --locked --release
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  # unit tests need the binary, so build it first.
-  # building in debug mode (both bin and tests) in order to not overwrite the 
binary produced in build() that we will later package
-  cargo build --locked 
-  cargo test --locked
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 docs/en/src/* -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm 644 src/init.lua -t "$pkgdir/usr/share/$pkgname/examples"
-  install -Dm 644 "assets/desktop/$pkgname.desktop" -t 
"$pkgdir/usr/share/applications"
-  for i in 128 16 32 64; do
-install -Dm 644 "assets/icon/${pkgname}${i}.png" 
"$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/${pkgname}.png"
-  done
-  install -Dm 644 "assets/icon/$pkgname.svg" -t 
"$pkgdir/usr/share/icons/hicolor/scalable/apps"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xplr/repos/community-x86_64/PKGBUILD (from rev 1027749, 
xplr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 16:36:10 UTC (rev 1027750)
@@ -0,0 +1,46 @@
+# Maintainer: Orhun Parmaksız 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+pkgname=xplr
+pkgver=0.15.0
+pkgrel=1
+pkgdesc="A hackable, minimal, fast TUI file explorer"
+arch=('x86_64')
+url="https://github.com/sayanarijit/xplr;
+license=('MIT')
+depends=('gcc-libs' 'hicolor-icon-theme')
+makedepends=('rust')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
+
"$pkgname-$pkgver.tar.gz.asc::$url/releases/download/v${pkgver}/source.tar.gz.asc")
+sha512sums=('55e6ac3a5d8127c1b3ce743e4273043ebb3278cf5a661877eeac504d5b64fb52ac3341ca1764b084efa55c002973de21cdf1657dc6e5b8ab0ce6338111d83f78'
+'SKIP')
+validpgpkeys=('D59CA14710C17C6B24717AF90F8EF5258DC38077') # Arijit Basu (June 
3, 2021)
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --locked --release
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  # unit tests need the binary, so build it first.
+  # building in debug mode (both bin and tests) in order to not overwrite the 
binary produced in build() that we will later package
+  cargo build --locked 
+  cargo test --locked
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 docs/en/src/* -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm 644 src/init.lua -t "$pkgdir/usr/share/$pkgname/examples"
+  install -Dm 644 "assets/desktop/$pkgname.desktop" -t 
"$pkgdir/usr/share/applications"
+  for i in 128 16 32 64; do
+install -Dm 644 "assets/icon/${pkgname}${i}.png" 
"$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/${pkgname}.png"
+  done
+  install -Dm 644 "assets/icon/$pkgname.svg" -t 
"$pkgdir/usr/share/icons/hicolor/scalable/apps"
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-10-05 Thread Orhun Parmaksiz via arch-commits
Date: Tuesday, October 5, 2021 @ 16:36:03
  Author: orhun
Revision: 1027749

upgpkg: xplr 0.15.0-1: upstream release

Modified:
  xplr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 15:22:53 UTC (rev 1027748)
+++ PKGBUILD2021-10-05 16:36:03 UTC (rev 1027749)
@@ -2,7 +2,7 @@
 # Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
 
 pkgname=xplr
-pkgver=0.14.7
+pkgver=0.15.0
 pkgrel=1
 pkgdesc="A hackable, minimal, fast TUI file explorer"
 arch=('x86_64')
@@ -12,7 +12,7 @@
 makedepends=('rust')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
 
"$pkgname-$pkgver.tar.gz.asc::$url/releases/download/v${pkgver}/source.tar.gz.asc")
-sha512sums=('d5d52884b6f2673937d8074259dc6517a4acc336f09b55aa4414aa43e4bf3bbe9b26bd7137ccd3aaad108ca42cb17c96fcc633ef596c00f34252c37347d7dfa2'
+sha512sums=('55e6ac3a5d8127c1b3ce743e4273043ebb3278cf5a661877eeac504d5b64fb52ac3341ca1764b084efa55c002973de21cdf1657dc6e5b8ab0ce6338111d83f78'
 'SKIP')
 validpgpkeys=('D59CA14710C17C6B24717AF90F8EF5258DC38077') # Arijit Basu (June 
3, 2021)
 



[arch-commits] Commit in xkeyboard-config/repos/extra-any (PKGBUILD PKGBUILD)

2021-10-05 Thread Andreas Radke via arch-commits
Date: Tuesday, October 5, 2021 @ 15:42:08
  Author: andyrtr
Revision: 425151

archrelease: copy trunk to extra-any

Added:
  xkeyboard-config/repos/extra-any/PKGBUILD
(from rev 425150, xkeyboard-config/trunk/PKGBUILD)
Deleted:
  xkeyboard-config/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 15:41:53 UTC (rev 425150)
+++ PKGBUILD2021-10-05 15:42:08 UTC (rev 425151)
@@ -1,41 +0,0 @@
-# Maintainer: Andreas Radke 
-# Maintainer: Jan de Groot 
-
-pkgname=xkeyboard-config
-pkgver=2.33
-pkgrel=2
-pkgdesc="X keyboard configuration files"
-arch=(any)
-license=('custom')
-url="https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config;
-makedepends=('xorg-xkbcomp' 'libxslt' 'python' 'meson')
-provides=('xkbdata')
-replaces=('xkbdata')
-conflicts=('xkbdata')
-source=(https://xorg.freedesktop.org/archive/individual/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
-validpgpkeys=('FFB4CCD275AAA422F5F9808E0661D98FC933A145')
-validpgpkeys+=('15CFA5C595041D2CCBEA155F1732AA424A0E86B4') # "Sergey Udaltsov 
(For GNOME-related tasks) "
-sha512sums=('084f79350d5dc7f9ebd5b5333d386459b0ab587f6cec27ee2d8d5c3a56b08993f9fafb9d893307f4d43cfeaf2e225c5295ad6297ae8287c68efc48a82638feb1'
-'SKIP')
-
-build() {
-  arch-meson ${pkgname}-${pkgver} build \
-   -D xkb-base="/usr/share/X11/xkb" \
-   -D compat-rules=true \
-   -D xorg-rules-symlinks=true
-
-  # Print config
-  meson configure build
-
-  ninja -C build
-
- }
- 
- package() { 
-
-  DESTDIR="$pkgdir" ninja -C build install
-
-  install -m755 -d "${pkgdir}/var/lib/xkb"
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 ${pkgname}-${pkgver}/COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xkeyboard-config/repos/extra-any/PKGBUILD (from rev 425150, 
xkeyboard-config/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 15:42:08 UTC (rev 425151)
@@ -0,0 +1,41 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=xkeyboard-config
+pkgver=2.34
+pkgrel=1
+pkgdesc="X keyboard configuration files"
+arch=(any)
+license=('custom')
+url="https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config;
+makedepends=('xorg-xkbcomp' 'libxslt' 'python' 'meson')
+provides=('xkbdata')
+replaces=('xkbdata')
+conflicts=('xkbdata')
+source=(https://xorg.freedesktop.org/archive/individual/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
+validpgpkeys=('FFB4CCD275AAA422F5F9808E0661D98FC933A145')
+validpgpkeys+=('15CFA5C595041D2CCBEA155F1732AA424A0E86B4') # "Sergey Udaltsov 
(For GNOME-related tasks) "
+sha512sums=('cf3bdb658349b2db9db44ea1a0f7060b890b95520319101d83ba5aefeb0b1e2fd578b6f72a90758438f04bffbe7536cf112b76297fd47c95e02029fd203c51fb'
+'SKIP')
+
+build() {
+  arch-meson ${pkgname}-${pkgver} build \
+   -D xkb-base="/usr/share/X11/xkb" \
+   -D compat-rules=true \
+   -D xorg-rules-symlinks=true
+
+  # Print config
+  meson configure build
+
+  ninja -C build
+
+ }
+ 
+ package() { 
+
+  DESTDIR="$pkgdir" ninja -C build install
+
+  install -m755 -d "${pkgdir}/var/lib/xkb"
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 ${pkgname}-${pkgver}/COPYING 
"${pkgdir}/usr/share/licenses/${pkgname}/"
+}



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

2021-10-05 Thread Andreas Radke via arch-commits
Date: Tuesday, October 5, 2021 @ 15:41:53
  Author: andyrtr
Revision: 425150

upgpkg: xkeyboard-config 2.34-1: upstream update 2.34

Modified:
  xkeyboard-config/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 15:40:57 UTC (rev 425149)
+++ PKGBUILD2021-10-05 15:41:53 UTC (rev 425150)
@@ -2,8 +2,8 @@
 # Maintainer: Jan de Groot 
 
 pkgname=xkeyboard-config
-pkgver=2.33
-pkgrel=2
+pkgver=2.34
+pkgrel=1
 pkgdesc="X keyboard configuration files"
 arch=(any)
 license=('custom')
@@ -15,7 +15,7 @@
 
source=(https://xorg.freedesktop.org/archive/individual/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.sig})
 validpgpkeys=('FFB4CCD275AAA422F5F9808E0661D98FC933A145')
 validpgpkeys+=('15CFA5C595041D2CCBEA155F1732AA424A0E86B4') # "Sergey Udaltsov 
(For GNOME-related tasks) "
-sha512sums=('084f79350d5dc7f9ebd5b5333d386459b0ab587f6cec27ee2d8d5c3a56b08993f9fafb9d893307f4d43cfeaf2e225c5295ad6297ae8287c68efc48a82638feb1'
+sha512sums=('cf3bdb658349b2db9db44ea1a0f7060b890b95520319101d83ba5aefeb0b1e2fd578b6f72a90758438f04bffbe7536cf112b76297fd47c95e02029fd203c51fb'
 'SKIP')
 
 build() {



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

2021-10-05 Thread Tobias Powalowski via arch-commits
Date: Tuesday, October 5, 2021 @ 15:40:57
  Author: tpowa
Revision: 425149

archrelease: copy trunk to extra-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 15:40:53 UTC (rev 425148)
+++ PKGBUILD2021-10-05 15:40:57 UTC (rev 425149)
@@ -1,42 +0,0 @@
-# Maintainer : Tobias Powalowski 
-
-pkgname=archboot
-pkgver=2021.10
-pkgrel=7
-pkgdesc="Advanced, modular arch boot/install image creation utility"
-arch=(any)
-license=('GPL')
-url="https://wiki.archlinux.org/title/Archboot;
-depends=('mkinitcpio' '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' 'memtest86+' 'inetutils'
- 'openssh' 'hwdetect' 'shadow' 'bridge-utils' 'ifenslave' 'dosfstools' 
'glibc' 'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
- 'iptables-nft' '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' 'libsasl' 'libldap' 'gpm' 'libevent' 
'gcc-libs' 'sdparm' 'licenses' 'pptpclient' 'ipw2100-fw'
-'ipw2200-fw' 'smbclient'  'dhcpcd' 'openssl' 'dmraid' 'linux-atm' 
'netctl' 'parted' 'tzdata' 'ntp' 'libgcrypt' 'iw' 'crda'
-'libnl' 'iproute2' 'wireless-regdb' 'dhclient' 'syslinux' 'mtools' 
'fsarchiver' 'xz' 'libtirpc' 'rpcbind' 'testdisk'
-'wipe' 'ddrescue' 'ifplugd' 'libgssglue' 'mkinitcpio-nfs-utils' 
'gptfdisk' 'nilfs-utils' 'btrfs-progs'
-'iana-etc' 'libusb-compat' 'keyutils' 'libisoburn' 'file' 'curl'  
'smartmontools' 'dnsmasq' 'lftp'
-'openconnect' 'libxml2' 'libproxy' 'tcpdump' 'nmap' 'lua' 'gnutls' 
'nettle' 'libtasn1' 'expat' 'progsreiserfs'
-'glib2' 'freetype2' 'libssh2' 'libedit' 'talloc' 'libjpeg-turbo' 
'dmidecode' 'pth' 'gnupg' 'libksba' 'libassuan' 'pinentry'
-'gpgme' 'ldns' 'dnssec-anchors' 'hwids' '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' 
'lockdown-ms' 'efivar' 'ethtool' 'exfatprogs' 'broadcom-wl'
-'fuse3' 'flex' 'expac' 'amd-ucode' 'edk2-shell' 'cdrtools' 'mktorrent' 
'nvme-cli' 'fatresize' 'iwd' 'elinks' 'lshw')
-makedepends=('git')
-optdepends=('archboot-linux-firmware: for stripped down firmware inclusion on 
image file'
-'linux-firmware: for firmware inclusion on image file')
-source=("git+https://gitlab.archlinux.org/tpowa/archboot.git#tag=${pkgver}-${pkgrel}?signed;)
-backup=('etc/archboot/x86_64.conf'
-'etc/archboot/presets/x86_64'
-)
-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 425148, 
archboot/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 15:40:57 UTC (rev 425149)
@@ -0,0 +1,42 @@
+# Maintainer : Tobias Powalowski 
+
+pkgname=archboot
+pkgver=2021.10
+pkgrel=8
+pkgdesc="Advanced, modular arch boot/install image creation utility"
+arch=(any)
+license=('GPL')
+url="https://wiki.archlinux.org/title/Archboot;
+depends=('mkinitcpio' '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' 'memtest86+' 'inetutils'
+ 'openssh' 'hwdetect' 'shadow' 'bridge-utils' 'ifenslave' 'dosfstools' 
'glibc' 'linux' 'kexec-tools' 'ppp' 'rp-pppoe'
+ 'iptables-nft' 'ntfs-3g' 'pciutils' 'usbutils' 'vpnc' 'openvpn' 
'b43-fwcutter' 'wpa_supplicant' 'rsync' 'gzip' 'libarchive'
+'device-mapper' 'screen' 'elfutils' 'pam' 'cracklib' 'nfs-utils' 
'nfsidmap' 'readline' 

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

2021-10-05 Thread Tobias Powalowski via arch-commits
Date: Tuesday, October 5, 2021 @ 15:40:53
  Author: tpowa
Revision: 425148

upgpkg: archboot 2021.10-8: bump to latest version

Modified:
  archboot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 14:53:56 UTC (rev 425147)
+++ PKGBUILD2021-10-05 15:40:53 UTC (rev 425148)
@@ -2,7 +2,7 @@
 
 pkgname=archboot
 pkgver=2021.10
-pkgrel=7
+pkgrel=8
 pkgdesc="Advanced, modular arch boot/install image creation utility"
 arch=(any)
 license=('GPL')



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

2021-10-05 Thread Maxime Gauduin via arch-commits
Date: Tuesday, October 5, 2021 @ 15:22:53
  Author: alucryd
Revision: 1027748

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 15:22:48 UTC (rev 1027747)
+++ PKGBUILD2021-10-05 15:22:53 UTC (rev 1027748)
@@ -1,42 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Steven Allen 
-# Contributor: Limao Luo 
-# Contributor: Wieland Hoffmann 
-# Contributor: Amr Hassan 
-
-pkgname=python-pylast
-pkgver=4.2.1
-pkgrel=1
-pkgdesc='A Python interface to Last.fm and Libre.fm'
-arch=(any)
-url='https://github.com/pylast/pylast'
-license=(Apache)
-depends=(python-six)
-makedepends=(
-  git
-  python-setuptools
-  python-setuptools-scm
-)
-_tag=a516a44c329d6921755ebd7cd7e5fda9e851ad95
-source=(git+https://github.com/pylast/pylast.git#tag=${_tag})
-sha256sums=(SKIP)
-
-pkgver() {
-  cd pylast
-
-  git describe --tags
-}
-
-build() {
-  cd pylast
-
-  python setup.py build
-}
-
-package() {
-  cd pylast
-
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-pylast/repos/community-any/PKGBUILD (from rev 1027747, 
python-pylast/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 15:22:53 UTC (rev 1027748)
@@ -0,0 +1,42 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Steven Allen 
+# Contributor: Limao Luo 
+# Contributor: Wieland Hoffmann 
+# Contributor: Amr Hassan 
+
+pkgname=python-pylast
+pkgver=4.3.0
+pkgrel=1
+pkgdesc='A Python interface to Last.fm and Libre.fm'
+arch=(any)
+url='https://github.com/pylast/pylast'
+license=(Apache)
+depends=(python-six)
+makedepends=(
+  git
+  python-setuptools
+  python-setuptools-scm
+)
+_tag=3db88e98ce77bc86bf533389b06a028a75251409
+source=(git+https://github.com/pylast/pylast.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+  cd pylast
+
+  git describe --tags
+}
+
+build() {
+  cd pylast
+
+  python setup.py build
+}
+
+package() {
+  cd pylast
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+# vim: ts=2 sw=2 et:



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

2021-10-05 Thread Maxime Gauduin via arch-commits
Date: Tuesday, October 5, 2021 @ 15:22:48
  Author: alucryd
Revision: 1027747

upgpkg: python-pylast 4.3.0-1

Modified:
  python-pylast/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 15:22:15 UTC (rev 1027746)
+++ PKGBUILD2021-10-05 15:22:48 UTC (rev 1027747)
@@ -5,7 +5,7 @@
 # Contributor: Amr Hassan 
 
 pkgname=python-pylast
-pkgver=4.2.1
+pkgver=4.3.0
 pkgrel=1
 pkgdesc='A Python interface to Last.fm and Libre.fm'
 arch=(any)
@@ -17,7 +17,7 @@
   python-setuptools
   python-setuptools-scm
 )
-_tag=a516a44c329d6921755ebd7cd7e5fda9e851ad95
+_tag=3db88e98ce77bc86bf533389b06a028a75251409
 source=(git+https://github.com/pylast/pylast.git#tag=${_tag})
 sha256sums=(SKIP)
 



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

2021-10-05 Thread Maxime Gauduin via arch-commits
Date: Tuesday, October 5, 2021 @ 15:22:15
  Author: alucryd
Revision: 1027746

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 15:22:10 UTC (rev 1027745)
+++ PKGBUILD2021-10-05 15:22:15 UTC (rev 1027746)
@@ -1,44 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Stefan Husmann 
-
-pkgname=python-dateparser
-pkgver=1.0.0
-pkgrel=2
-pkgdesc='Python parser for human readable dates'
-url=https://github.com/scrapinghub/dateparser
-arch=(any)
-license=(BSD)
-depends=(
-  python-dateutil
-  python-regex
-  python-tzlocal
-  python-ruamel-yaml
-)
-makedepends=(
-  git
-  python-setuptools
-)
-_tag=355052ad986e27a340da8732551c4c153444ac3c
-source=(git+https://github.com/scrapinghub/dateparser.git#tag=${_tag})
-sha256sums=(SKIP)
-
-pkgver() {
-  cd dateparser
-
-  git describe --tags | sed 's/^v//'
-}
-
-build() {
-  cd dateparser
-
-  python setup.py build
-}
-
-package() {
-  cd dateparser
-
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-dateparser/
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-dateparser/repos/community-any/PKGBUILD (from rev 1027745, 
python-dateparser/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 15:22:15 UTC (rev 1027746)
@@ -0,0 +1,44 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Stefan Husmann 
+
+pkgname=python-dateparser
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='Python parser for human readable dates'
+url=https://github.com/scrapinghub/dateparser
+arch=(any)
+license=(BSD)
+depends=(
+  python-dateutil
+  python-regex
+  python-tzlocal
+  python-ruamel-yaml
+)
+makedepends=(
+  git
+  python-setuptools
+)
+_tag=507dc6dd775429d89481083db57d56851b704744
+source=(git+https://github.com/scrapinghub/dateparser.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+  cd dateparser
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd dateparser
+
+  python setup.py build
+}
+
+package() {
+  cd dateparser
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-dateparser/
+}
+
+# vim: ts=2 sw=2 et:



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

2021-10-05 Thread Maxime Gauduin via arch-commits
Date: Tuesday, October 5, 2021 @ 15:22:10
  Author: alucryd
Revision: 1027745

upgpkg: python-dateparser 1.1.0-1

Modified:
  python-dateparser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-10-05 15:21:14 UTC (rev 1027744)
+++ PKGBUILD2021-10-05 15:22:10 UTC (rev 1027745)
@@ -2,8 +2,8 @@
 # Contributor: Stefan Husmann 
 
 pkgname=python-dateparser
-pkgver=1.0.0
-pkgrel=2
+pkgver=1.1.0
+pkgrel=1
 pkgdesc='Python parser for human readable dates'
 url=https://github.com/scrapinghub/dateparser
 arch=(any)
@@ -18,7 +18,7 @@
   git
   python-setuptools
 )
-_tag=355052ad986e27a340da8732551c4c153444ac3c
+_tag=507dc6dd775429d89481083db57d56851b704744
 source=(git+https://github.com/scrapinghub/dateparser.git#tag=${_tag})
 sha256sums=(SKIP)
 



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

2021-10-05 Thread Maxime Gauduin via arch-commits
Date: Tuesday, October 5, 2021 @ 15:21:14
  Author: alucryd
Revision: 1027744

archrelease: copy trunk to community-x86_64

Added:
  dolphin-emu/repos/community-x86_64/PKGBUILD
(from rev 1027743, dolphin-emu/trunk/PKGBUILD)
  dolphin-emu/repos/community-x86_64/dolphin-emu-system-libmgba.patch
(from rev 1027743, dolphin-emu/trunk/dolphin-emu-system-libmgba.patch)
Deleted:
  dolphin-emu/repos/community-x86_64/PKGBUILD
  dolphin-emu/repos/community-x86_64/dolphin-emu-system-libmgba.patch

--+
 PKGBUILD |  170 ++---
 dolphin-emu-system-libmgba.patch |   48 +-
 2 files changed, 109 insertions(+), 109 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-10-05 15:21:08 UTC (rev 1027743)
+++ PKGBUILD2021-10-05 15:21:14 UTC (rev 1027744)
@@ -1,85 +0,0 @@
-# Maintainer: schuay 
-# Maintainer: Maxime Gauduin 
-# Contributor: Jeremy Newton (Mystro256) 
-
-pkgname=dolphin-emu
-pkgver=5.0.r15105.4b8b53ac73
-pkgrel=1
-epoch=1
-pkgdesc='A Gamecube / Wii / Triforce emulator'
-arch=(x86_64)
-url=https://dolphin-emu.org
-license=(GPL2)
-depends=(
-  alsa-lib
-  bluez-libs
-  enet
-  gcc-libs
-  glibc
-  hidapi
-  libavcodec.so
-  libavformat.so
-  libavutil.so
-  libcurl.so
-  libevdev
-  libgl
-  #libmgba
-  libminiupnpc.so
-  libpng
-  libpulse
-  libswscale.so
-  libudev.so
-  libusb-1.0.so
-  libx11
-  libxi
-  libxrandr
-  lzo
-  mbedtls
-  pugixml
-  qt5-base
-  sfml
-  zlib
-)
-makedepends=(
-  cmake
-  git
-  ninja
-  python
-)
-optdepends=('pulseaudio: PulseAudio backend')
-options=(!emptydirs)
-_commit=4b8b53ac732645f6c0fd3f4b11733cb3d86c9c41
-source=(
-  dolphin-emu::git+https://github.com/dolphin-emu/dolphin.git#commit=${_commit}
-  dolphin-emu-system-libmgba.patch
-)
-b2sums=('SKIP'
-
'004692abcfa3a0a10996afba3a8fe71627300224a6f96cc5b6c6183c32d5f7bd1ece36775cd2642a0c4d7fc9225f72da39063cc68ff089e8d01685a2fbbd6957')
-
-prepare() {
-  cd dolphin-emu
-  #patch -Np1 -i ../dolphin-emu-system-libmgba.patch
-}
-
-pkgver() {
-  cd dolphin-emu
-  git describe | sed 's/-/.r/; s/-g/./'
-}
-
-build() {
-  cmake -S dolphin-emu -B build -G Ninja \
--DCMAKE_BUILD_TYPE=None \
--DCMAKE_INSTALL_PREFIX=/usr \
--DDISTRIBUTOR=archlinux.org \
--DUSE_MGBA=OFF \
--DUSE_SHARED_ENET=ON
-  cmake --build build
-}
-
-package() {
-  DESTDIR="${pkgdir}" cmake --install build
-  install -Dm 644 dolphin-emu/Data/51-usb-device.rules -t 
"${pkgdir}"/usr/lib/udev/rules.d/
-  rm -rf "${pkgdir}"/usr/{include,lib/libdiscord-rpc.a}
-}
-
-# vim: ts=2 sw=2 et:

Copied: dolphin-emu/repos/community-x86_64/PKGBUILD (from rev 1027743, 
dolphin-emu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-10-05 15:21:14 UTC (rev 1027744)
@@ -0,0 +1,85 @@
+# Maintainer: schuay 
+# Maintainer: Maxime Gauduin 
+# Contributor: Jeremy Newton (Mystro256) 
+
+pkgname=dolphin-emu
+pkgver=5.0.r15260.207c931a04
+pkgrel=1
+epoch=1
+pkgdesc='A Gamecube / Wii / Triforce emulator'
+arch=(x86_64)
+url=https://dolphin-emu.org
+license=(GPL2)
+depends=(
+  alsa-lib
+  bluez-libs
+  enet
+  gcc-libs
+  glibc
+  hidapi
+  libavcodec.so
+  libavformat.so
+  libavutil.so
+  libcurl.so
+  libevdev
+  libgl
+  #libmgba
+  libminiupnpc.so
+  libpng
+  libpulse
+  libswscale.so
+  libudev.so
+  libusb-1.0.so
+  libx11
+  libxi
+  libxrandr
+  lzo
+  mbedtls
+  pugixml
+  qt5-base
+  sfml
+  zlib
+)
+makedepends=(
+  cmake
+  git
+  ninja
+  python
+)
+optdepends=('pulseaudio: PulseAudio backend')
+options=(!emptydirs)
+_commit=207c931a04c8e2629a735bc2b3f36b5c89365ca7
+source=(
+  dolphin-emu::git+https://github.com/dolphin-emu/dolphin.git#commit=${_commit}
+  dolphin-emu-system-libmgba.patch
+)
+b2sums=('SKIP'
+
'004692abcfa3a0a10996afba3a8fe71627300224a6f96cc5b6c6183c32d5f7bd1ece36775cd2642a0c4d7fc9225f72da39063cc68ff089e8d01685a2fbbd6957')
+
+prepare() {
+  cd dolphin-emu
+  #patch -Np1 -i ../dolphin-emu-system-libmgba.patch
+}
+
+pkgver() {
+  cd dolphin-emu
+  git describe | sed 's/-/.r/; s/-g/./'
+}
+
+build() {
+  cmake -S dolphin-emu -B build -G Ninja \
+-DCMAKE_BUILD_TYPE=None \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DDISTRIBUTOR=archlinux.org \
+-DUSE_MGBA=OFF \
+-DUSE_SHARED_ENET=ON
+  cmake --build build
+}
+
+package() {
+  DESTDIR="${pkgdir}" cmake --install build
+  install -Dm 644 dolphin-emu/Data/51-usb-device.rules -t 
"${pkgdir}"/usr/lib/udev/rules.d/
+  rm -rf "${pkgdir}"/usr/{include,lib/libdiscord-rpc.a}
+}
+
+# vim: ts=2 sw=2 et:

Deleted: dolphin-emu-system-libmgba.patch
===
--- dolphin-emu-system-libmgba.patch2021-10-05 15:21:08 UTC (rev 1027743)
+++ dolphin-emu-system-libmgba.patch2021-10-05 15:21:14 UTC (rev 1027744)
@@ -1,24 +0,0 @@
-diff --git a/CMakeLists.txt 

  1   2   >