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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:40:25
  Author: felixonmars
Revision: 1228723

archrelease: copy trunk to community-staging-x86_64

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

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

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



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:40:14
  Author: felixonmars
Revision: 1228722

upgpkg: haskell-language-server 1.3.0.0-202: rebuild with HTTP 4000.4.1

Modified:
  haskell-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:38:00 UTC (rev 1228721)
+++ PKGBUILD2022-06-08 05:40:14 UTC (rev 1228722)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-language-server
 pkgver=1.3.0.0
-pkgrel=201
+pkgrel=202
 pkgdesc="LSP server for GHC"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:38:00
  Author: felixonmars
Revision: 1228721

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



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:37:48
  Author: felixonmars
Revision: 1228720

upgpkg: haskell-hls-eval-plugin 1.1.2.0-175: rebuild with HTTP 4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:37:41 UTC (rev 1228719)
+++ PKGBUILD2022-06-08 05:37:48 UTC (rev 1228720)
@@ -3,7 +3,7 @@
 _hkgname=hls-eval-plugin
 pkgname=haskell-hls-eval-plugin
 pkgver=1.1.2.0
-pkgrel=174
+pkgrel=175
 pkgdesc="Eval plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:37:29
  Author: felixonmars
Revision: 1228718

upgpkg: haskell-hls-pragmas-plugin 1.0.1.0-172: rebuild with HTTP 4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:37:22 UTC (rev 1228717)
+++ PKGBUILD2022-06-08 05:37:29 UTC (rev 1228718)
@@ -3,7 +3,7 @@
 _hkgname=hls-pragmas-plugin
 pkgname=haskell-hls-pragmas-plugin
 pkgver=1.0.1.0
-pkgrel=171
+pkgrel=172
 pkgdesc="Pragmas plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-pragmas-plugin;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:37:41
  Author: felixonmars
Revision: 1228719

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 1228718, 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 1228718, haskell-hls-pragmas-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 05:37:41 UTC (rev 1228719)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-pragmas-plugin
+pkgname=haskell-hls-pragmas-plugin
+pkgver=1.0.1.0
+pkgrel=172
+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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_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/repos (2 files)

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:37:22
  Author: felixonmars
Revision: 1228717

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 1228716, 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 1228716, haskell-hls-floskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 05:37:22 UTC (rev 1228717)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-floskell-plugin
+pkgname=haskell-hls-floskell-plugin
+pkgver=1.0.0.1
+pkgrel=173
+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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:37:09
  Author: felixonmars
Revision: 1228716

upgpkg: haskell-hls-floskell-plugin 1.0.0.1-173: rebuild with HTTP 4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:37:00 UTC (rev 1228715)
+++ PKGBUILD2022-06-08 05:37:09 UTC (rev 1228716)
@@ -3,7 +3,7 @@
 _hkgname=hls-floskell-plugin
 pkgname=haskell-hls-floskell-plugin
 pkgver=1.0.0.1
-pkgrel=172
+pkgrel=173
 pkgdesc="Integration with the Floskell code formatter"
 url="https://hackage.haskell.org/package/hls-floskell-plugin;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:37:00
  Author: felixonmars
Revision: 1228715

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 1228714, 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 1228714, haskell-hls-hlint-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 05:37:00 UTC (rev 1228715)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-hlint-plugin
+pkgname=haskell-hls-hlint-plugin
+pkgver=1.0.1.1
+pkgrel=172
+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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' -fhlint33
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:36:48
  Author: felixonmars
Revision: 1228714

upgpkg: haskell-hls-hlint-plugin 1.0.1.1-172: rebuild with HTTP 4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:36:41 UTC (rev 1228713)
+++ PKGBUILD2022-06-08 05:36:48 UTC (rev 1228714)
@@ -3,7 +3,7 @@
 _hkgname=hls-hlint-plugin
 pkgname=haskell-hls-hlint-plugin
 pkgver=1.0.1.1
-pkgrel=171
+pkgrel=172
 pkgdesc="Hlint integration plugin with Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-hlint-plugin;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:36:41
  Author: felixonmars
Revision: 1228713

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



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:36:30
  Author: felixonmars
Revision: 1228712

upgpkg: haskell-hls-explicit-imports-plugin 1.0.1.0-172: rebuild with HTTP 
4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:36:23 UTC (rev 1228711)
+++ PKGBUILD2022-06-08 05:36:30 UTC (rev 1228712)
@@ -3,7 +3,7 @@
 _hkgname=hls-explicit-imports-plugin
 pkgname=haskell-hls-explicit-imports-plugin
 pkgver=1.0.1.0
-pkgrel=171
+pkgrel=172
 pkgdesc="Explicit imports plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-explicit-imports-plugin;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:36:23
  Author: felixonmars
Revision: 1228711

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 1228710, 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 1228710, haskell-hls-stylish-haskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 05:36:23 UTC (rev 1228711)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-stylish-haskell-plugin
+pkgname=haskell-hls-stylish-haskell-plugin
+pkgver=1.0.0.2
+pkgrel=175
+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 -u stylish-haskell $_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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:36:04
  Author: felixonmars
Revision: 1228709

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



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:36:11
  Author: felixonmars
Revision: 1228710

upgpkg: haskell-hls-stylish-haskell-plugin 1.0.0.2-175: rebuild with HTTP 
4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:36:04 UTC (rev 1228709)
+++ PKGBUILD2022-06-08 05:36:11 UTC (rev 1228710)
@@ -3,7 +3,7 @@
 _hkgname=hls-stylish-haskell-plugin
 pkgname=haskell-hls-stylish-haskell-plugin
 pkgver=1.0.0.2
-pkgrel=174
+pkgrel=175
 pkgdesc="Integration with the Stylish Haskell code formatter"
 url="https://hackage.haskell.org/package/hls-stylish-haskell-plugin;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:35:52
  Author: felixonmars
Revision: 1228708

upgpkg: haskell-hls-call-hierarchy-plugin 1.0.0.0-172: rebuild with HTTP 
4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:35:45 UTC (rev 1228707)
+++ PKGBUILD2022-06-08 05:35:52 UTC (rev 1228708)
@@ -3,7 +3,7 @@
 _hkgname=hls-call-hierarchy-plugin
 pkgname=haskell-hls-call-hierarchy-plugin
 pkgver=1.0.0.0
-pkgrel=171
+pkgrel=172
 pkgdesc="Call hierarchy plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-call-hierarchy-plugin;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:35:45
  Author: felixonmars
Revision: 1228707

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 1228706, 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 1228706, haskell-hls-fourmolu-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 05:35:45 UTC (rev 1228707)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-fourmolu-plugin
+pkgname=haskell-hls-fourmolu-plugin
+pkgver=1.0.0.2
+pkgrel=179
+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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:35:34
  Author: felixonmars
Revision: 1228706

upgpkg: haskell-hls-fourmolu-plugin 1.0.0.2-179: rebuild with HTTP 4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:35:27 UTC (rev 1228705)
+++ PKGBUILD2022-06-08 05:35:34 UTC (rev 1228706)
@@ -3,7 +3,7 @@
 _hkgname=hls-fourmolu-plugin
 pkgname=haskell-hls-fourmolu-plugin
 pkgver=1.0.0.2
-pkgrel=178
+pkgrel=179
 pkgdesc="Integration with the Fourmolu code formatter"
 url="https://hackage.haskell.org/package/hls-fourmolu-plugin;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:35:27
  Author: felixonmars
Revision: 1228705

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 1228704, 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 1228704, haskell-hls-module-name-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 05:35:27 UTC (rev 1228705)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-module-name-plugin
+pkgname=haskell-hls-module-name-plugin
+pkgver=1.0.0.1
+pkgrel=172
+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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:35:15
  Author: felixonmars
Revision: 1228704

upgpkg: haskell-hls-module-name-plugin 1.0.0.1-172: rebuild with HTTP 4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:35:09 UTC (rev 1228703)
+++ PKGBUILD2022-06-08 05:35:15 UTC (rev 1228704)
@@ -3,7 +3,7 @@
 _hkgname=hls-module-name-plugin
 pkgname=haskell-hls-module-name-plugin
 pkgver=1.0.0.1
-pkgrel=171
+pkgrel=172
 pkgdesc="Module name plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-module-name-plugin;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:35:09
  Author: felixonmars
Revision: 1228703

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 1228702, 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 1228702, haskell-hls-haddock-comments-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 05:35:09 UTC (rev 1228703)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-haddock-comments-plugin
+pkgname=haskell-hls-haddock-comments-plugin
+pkgver=1.0.0.3
+pkgrel=172
+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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:34:57
  Author: felixonmars
Revision: 1228702

upgpkg: haskell-hls-haddock-comments-plugin 1.0.0.3-172: rebuild with HTTP 
4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:34:50 UTC (rev 1228701)
+++ PKGBUILD2022-06-08 05:34:57 UTC (rev 1228702)
@@ -3,7 +3,7 @@
 _hkgname=hls-haddock-comments-plugin
 pkgname=haskell-hls-haddock-comments-plugin
 pkgver=1.0.0.3
-pkgrel=171
+pkgrel=172
 pkgdesc="Haddock comments plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:34:50
  Author: felixonmars
Revision: 1228701

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



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:34:39
  Author: felixonmars
Revision: 1228700

upgpkg: haskell-hls-ormolu-plugin 1.0.1.0-177: rebuild with HTTP 4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:34:32 UTC (rev 1228699)
+++ PKGBUILD2022-06-08 05:34:39 UTC (rev 1228700)
@@ -3,7 +3,7 @@
 _hkgname=hls-ormolu-plugin
 pkgname=haskell-hls-ormolu-plugin
 pkgver=1.0.1.0
-pkgrel=176
+pkgrel=177
 pkgdesc="Integration with the Ormolu code formatter"
 url="https://hackage.haskell.org/package/hls-ormolu-plugin;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:34:32
  Author: felixonmars
Revision: 1228699

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



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:34:21
  Author: felixonmars
Revision: 1228698

upgpkg: haskell-hls-retrie-plugin 1.0.1.1-172: rebuild with HTTP 4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:33:58 UTC (rev 1228697)
+++ PKGBUILD2022-06-08 05:34:21 UTC (rev 1228698)
@@ -3,7 +3,7 @@
 _hkgname=hls-retrie-plugin
 pkgname=haskell-hls-retrie-plugin
 pkgver=1.0.1.1
-pkgrel=171
+pkgrel=172
 pkgdesc="Retrie integration plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-retrie-plugin;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:33:58
  Author: felixonmars
Revision: 1228697

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 1228696, 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 1228696, haskell-hls-test-utils/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 05:33:58 UTC (rev 1228697)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-test-utils
+pkgname=haskell-hls-test-utils
+pkgver=1.1.0.0
+pkgrel=173
+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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:33:46
  Author: felixonmars
Revision: 1228696

upgpkg: haskell-hls-test-utils 1.1.0.0-173: rebuild with HTTP 4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:33:07 UTC (rev 1228695)
+++ PKGBUILD2022-06-08 05:33:46 UTC (rev 1228696)
@@ -3,7 +3,7 @@
 _hkgname=hls-test-utils
 pkgname=haskell-hls-test-utils
 pkgver=1.1.0.0
-pkgrel=172
+pkgrel=173
 pkgdesc="Utilities used in the tests of Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:33:07
  Author: felixonmars
Revision: 1228695

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

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

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

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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:32:55
  Author: felixonmars
Revision: 1228694

upgpkg: haskell-ghcide 1.4.1.0-173: rebuild with HTTP 4000.4.1

Modified:
  haskell-ghcide/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:19:35 UTC (rev 1228693)
+++ PKGBUILD2022-06-08 05:32:55 UTC (rev 1228694)
@@ -3,7 +3,7 @@
 _hkgname=ghcide
 pkgname=haskell-ghcide
 pkgver=1.4.1.0
-pkgrel=172
+pkgrel=173
 pkgdesc="The core of an IDE"
 
url="https://github.com/haskell/haskell-language-server/tree/master/ghcide#readme;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:19:35
  Author: felixonmars
Revision: 1228693

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 1228692, postgrest/trunk/PKGBUILD)

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 1228692, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 05:19:35 UTC (rev 1228693)
@@ -0,0 +1,73 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=8.0.0
+pkgrel=211
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-ranged-sets' 'haskell-aeson' 
'haskell-ansi-wl-pprint'
+ 'haskell-base64-bytestring' 'haskell-case-insensitive' 
'haskell-cassava'
+ 'haskell-configurator-pg' 'haskell-contravariant' 
'haskell-contravariant-extras'
+ 'haskell-cookie' 'haskell-either' 'haskell-fast-logger' 
'haskell-gitrev' 'haskell-hasql'
+ 'haskell-hasql-dynamic-statements' 'haskell-hasql-notifications' 
'haskell-hasql-pool'
+ 'haskell-hasql-transaction' 'haskell-heredoc' 'haskell-http-types'
+ 'haskell-insert-ordered-containers' 
'haskell-interpolatedstring-perl6' 'haskell-jose'
+ 'haskell-lens' 'haskell-lens-aeson' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-protolude' 'haskell-regex-tdfa' 'haskell-scientific'
+ 'haskell-swagger2' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-cors' 'haskell-wai-extra' 'haskell-wai-logger' 
'haskell-wai-middleware-static'
+ 'haskell-auto-update' 'haskell-retry' 'haskell-warp')
+makedepends=('ghc' 'uusi' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-monad-control' 
'haskell-transformers-base')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("https://github.com/begriffs/postgrest/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('ae3f004d3042e236ffd3870c980cdfbb615a3de5433bd917816e8c0e719edb0bfcba763bb3c920dad64461410374231a6ab7710d48b310cdc30d5dd6f1f58337')
+
+prepare() {
+cd $pkgname-$pkgver
+uusi -u base -u hasql -u hasql-pool -u hspec -u HTTP -u lens -u retry 
$pkgname.cabal
+
+# TODO: not a proper fix. probably newly added "column" should be shown too
+sed -i 's/H.RowError i/H.RowError i _/' src/PostgREST/Error.hs
+}
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-f-CI --ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1)
+createuser -s postgrest_test
+# https://github.com/PostgREST/postgrest/issues/1857
+POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test 
--show-details=direct || echo "Tests failed"
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:19:23
  Author: felixonmars
Revision: 1228692

upgpkg: postgrest 8.0.0-211: rebuild with HTTP 4000.4.1

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 05:19:10 UTC (rev 1228691)
+++ PKGBUILD2022-06-08 05:19:23 UTC (rev 1228692)
@@ -3,7 +3,7 @@
 
 pkgname=postgrest
 pkgver=8.0.0
-pkgrel=210
+pkgrel=211
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:19:10
  Author: felixonmars
Revision: 1228691

archrelease: copy trunk to community-staging-x86_64

Added:
  cabal-install/repos/community-staging-x86_64/
  cabal-install/repos/community-staging-x86_64/PKGBUILD
(from rev 1228690, cabal-install/trunk/PKGBUILD)
  
cabal-install/repos/community-staging-x86_64/cabal-install-base16-bytestring1.0.patch
(from rev 1228690, 
cabal-install/trunk/cabal-install-base16-bytestring1.0.patch)

--+
 PKGBUILD |   46 +
 cabal-install-base16-bytestring1.0.patch |   78 +
 2 files changed, 124 insertions(+)

Copied: cabal-install/repos/community-staging-x86_64/PKGBUILD (from rev 
1228690, cabal-install/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 05:19:10 UTC (rev 1228691)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+
+pkgname=cabal-install
+pkgver=3.4.0.0
+pkgrel=151
+pkgdesc="The command-line interface for Cabal and Hackage."
+url="https://hackage.haskell.org/package/cabal-install;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-base16-bytestring' 
'haskell-cryptohash-sha256'
+ 'haskell-echo' 'haskell-edit-distance' 'haskell-hackage-security' 
'haskell-hashable'
+ 'haskell-http' 'haskell-network-uri' 'haskell-random' 
'haskell-regex-base'
+ 'haskell-regex-posix' 'haskell-resolv' 'haskell-tar' 'haskell-zlib' 
'haskell-lukko')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/package/cabal-install-${pkgver}/cabal-install-${pkgver}.tar.gz;
+$pkgname-base16-bytestring1.0.patch)
+sha512sums=('0fd93c86c59e3c626341be3c67e69a1502f1ce1413b4a456cd930d5449cabdaeb033ac5f47673db0e708fc194aadf8ab0aa2904b6b0f195b57907c5b40588323'
+
'966e2f0e3fd1cff3d673cb91f73b2a42049653e39a3025cdbbf86ec8ebfbd49bad278c8d01f521bbe580369bd11baf2aa7f8195e0ae450efd8ae615d13aa2300')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p2 -i ../$pkgname-base16-bytestring1.0.patch
+uusi -u base -u hashable -u HTTP $pkgname.cabal
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname
+  runhaskell Setup build $MAKEFLAGS
+}
+
+package() {
+  cd $pkgname-$pkgver
+  runhaskell Setup copy --destdir="${pkgdir}"
+
+  install -Dm644 LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  install -Dm644 bash-completion/cabal \
+"${pkgdir}/usr/share/bash-completion/completions/cabal"
+}

Copied: 
cabal-install/repos/community-staging-x86_64/cabal-install-base16-bytestring1.0.patch
 (from rev 1228690, 
cabal-install/trunk/cabal-install-base16-bytestring1.0.patch)
===
--- community-staging-x86_64/cabal-install-base16-bytestring1.0.patch   
(rev 0)
+++ community-staging-x86_64/cabal-install-base16-bytestring1.0.patch   
2022-06-08 05:19:10 UTC (rev 1228691)
@@ -0,0 +1,78 @@
+diff --git a/cabal-install/Distribution/Client/HashValue.hs 
b/cabal-install/Distribution/Client/HashValue.hs
+index 54b8aee9e..11e647c1c 100644
+--- a/cabal-install/Distribution/Client/HashValue.hs
 b/cabal-install/Distribution/Client/HashValue.hs
+@@ -1,3 +1,4 @@
++{-# LANGUAGE CPP  #-}
+ {-# LANGUAGE DeriveDataTypeable #-}
+ {-# LANGUAGE DeriveGeneric  #-}
+ module Distribution.Client.HashValue (
+@@ -72,10 +73,14 @@ hashFromTUF (Sec.Hash hashstr) =
+ --TODO: [code cleanup] either we should get TUF to use raw bytestrings or
+ -- perhaps we should also just use a base16 string as the internal rep.
+ case Base16.decode (BS.pack hashstr) of
++#if MIN_VERSION_base16_bytestring(1,0,0)
++  Right hash -> HashValue hash
++  Left _ -> error "hashFromTUF: cannot decode base16"
++#else
+   (hash, trailing) | not (BS.null hash) && BS.null trailing
+ -> HashValue hash
+   _ -> error "hashFromTUF: cannot decode base16 hash"
+-
++#endif
+ 
+ -- | Truncate a 32 byte SHA256 hash to
+ --
+diff --git a/cabal-install/src/Distribution/Client/HttpUtils.hs 
b/cabal-install/src/Distribution/Client/HttpUtils.hs
+index 9b8a8ecb844..0c334bec44a 100644
+--- a/cabal-install/Distribution/Client/HttpUtils.hs
 b/cabal-install/Distribution/Client/HttpUtils.hs
+@@ -1,4 +1,5 @@
+ {-# LANGUAGE BangPatterns #-}
++{-# LANGUAGE CPP  #-}
+ -
+ -- | Separate module for HTTP actions, using a proxy server if one exists.
+ 

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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 05:18:55
  Author: felixonmars
Revision: 1228690

upgpkg: cabal-install 3.4.0.0-151: rebuild with HTTP 4000.4.1

Modified:
  cabal-install/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 04:26:53 UTC (rev 1228689)
+++ PKGBUILD2022-06-08 05:18:55 UTC (rev 1228690)
@@ -5,7 +5,7 @@
 
 pkgname=cabal-install
 pkgver=3.4.0.0
-pkgrel=150
+pkgrel=151
 pkgdesc="The command-line interface for Cabal and Hackage."
 url="https://hackage.haskell.org/package/cabal-install;
 license=('BSD')



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:26:53
  Author: felixonmars
Revision: 1228689

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 1228688, 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 1228688, haskell-hls-plugin-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 04:26:53 UTC (rev 1228689)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-plugin-api
+pkgname=haskell-hls-plugin-api
+pkgver=1.2.0.0
+pkgrel=132
+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 -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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+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)

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:26:42
  Author: felixonmars
Revision: 1228688

upgpkg: haskell-hls-plugin-api 1.2.0.0-132: rebuild with HTTP 4000.4.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 04:26:04 UTC (rev 1228687)
+++ PKGBUILD2022-06-08 04:26:42 UTC (rev 1228688)
@@ -3,7 +3,7 @@
 _hkgname=hls-plugin-api
 pkgname=haskell-hls-plugin-api
 pkgver=1.2.0.0
-pkgrel=131
+pkgrel=132
 pkgdesc="Haskell Language Server API for plugin communication"
 url="https://github.com/haskell/haskell-language-server/hls-plugin-api;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:26:04
  Author: felixonmars
Revision: 1228687

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hls-graph/repos/community-staging-x86_64/
  haskell-hls-graph/repos/community-staging-x86_64/PKGBUILD
(from rev 1228686, haskell-hls-graph/trunk/PKGBUILD)

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

Copied: haskell-hls-graph/repos/community-staging-x86_64/PKGBUILD (from rev 
1228686, haskell-hls-graph/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 04:26:04 UTC (rev 1228687)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-graph
+pkgname=haskell-hls-graph
+pkgver=1.4.0.0
+pkgrel=152
+pkgdesc="Haskell Language Server internal graph API"
+url="https://github.com/haskell/haskell-language-server#readme;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-shake' 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('8ee3bf2a7f11f15741c94a9d40560aa2fe35af3c8fce40166796233322a5a474')
+
+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 --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+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-graph/trunk (PKGBUILD)

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:25:52
  Author: felixonmars
Revision: 1228686

upgpkg: haskell-hls-graph 1.4.0.0-152: rebuild with HTTP 4000.4.1

Modified:
  haskell-hls-graph/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 04:25:23 UTC (rev 1228685)
+++ PKGBUILD2022-06-08 04:25:52 UTC (rev 1228686)
@@ -3,7 +3,7 @@
 _hkgname=hls-graph
 pkgname=haskell-hls-graph
 pkgver=1.4.0.0
-pkgrel=151
+pkgrel=152
 pkgdesc="Haskell Language Server internal graph API"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:25:23
  Author: felixonmars
Revision: 1228685

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-shake/repos/community-staging-x86_64/PKGBUILD (from rev 
1228684, haskell-shake/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 04:25:23 UTC (rev 1228685)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shake
+pkgname=haskell-shake
+pkgver=0.19.5
+pkgrel=150
+pkgdesc="Build system library, like Make, but more accurate dependencies."
+url="https://shakebuild.com;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-extra' 'haskell-filepattern' 'haskell-hashable'
+ 'haskell-heaps' 'haskell-js-dgtable' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-primitive' 'haskell-random' 'haskell-unordered-containers' 
'haskell-utf8-string')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('655c146102ca6479d5a1de11040e7c6b5f18c5386f9bb93d5305c837bc405e6bd3dd9f2e9daec74fb59de6a91272485f83bb708028cd55d9771afb39ff3b9f64')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/ghc --make/ghc -dynamic --make/' 
src/Test/{Command.hs,CloseFileHandles.hs}
+sed -e 's/ghc -package=Cabal/ghc -package=Cabal -dynamic/' \
+-e 's/ghc -fno-code/ghc -dynamic -fno-code/' \
+-e 
's/"configure",/"configure","--enable-executable-dynamic","--disable-library-vanilla",/'
 \
+-i src/Test/Docs.hs
+sed -i 's/cmd "ghc" flags/cmd "ghc" "-dynamic" flags/' src/Test/Self.hs 
src/Test/SelfMake.hs
+sed -i 's/ghc --make/ghc -dynamic --make/' docs/manual/build.sh
+
+# Not sure about this one:
+sed -i 's/at cmd, called at/at want, called at/' src/Test/Errors.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-f-portable -f-cloud -f-embed-files
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:25:11
  Author: felixonmars
Revision: 1228684

upgpkg: haskell-shake 0.19.5-150: rebuild with HTTP 4000.4.1

Modified:
  haskell-shake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 04:21:19 UTC (rev 1228683)
+++ PKGBUILD2022-06-08 04:25:11 UTC (rev 1228684)
@@ -4,7 +4,7 @@
 _hkgname=shake
 pkgname=haskell-shake
 pkgver=0.19.5
-pkgrel=149
+pkgrel=150
 pkgdesc="Build system library, like Make, but more accurate dependencies."
 url="https://shakebuild.com;
 license=("BSD")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:21:19
  Author: felixonmars
Revision: 1228683

archrelease: copy trunk to community-staging-x86_64

Added:
  hoogle/repos/community-staging-x86_64/
  hoogle/repos/community-staging-x86_64/PKGBUILD
(from rev 1228682, hoogle/trunk/PKGBUILD)

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 1228682, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 04:21:19 UTC (rev 1228683)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.18.3
+pkgrel=31
+pkgdesc="Haskell API Search"
+url="https://www.haskell.org/hoogle/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-cmdargs' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-connection' 'haskell-extra' 'haskell-foundation' 
'haskell-hashable'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-old-locale' 
'haskell-process-extras'
+ 'haskell-resourcet' 'haskell-src-exts' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-uniplate' 'haskell-utf8-string' 'haskell-vector' 
'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('9e1f736411390c2807b46a555962b6346e8ce3b7cb2bb61ef38142992b02f2fcf636e4bc796d7bb582834810191a2f296b094cfc9630ab3ab170949c5aab1d23')
+
+build() {
+cd $pkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+--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 $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:21:08
  Author: felixonmars
Revision: 1228682

upgpkg: hoogle 5.0.18.3-31: rebuild with HTTP 4000.4.1

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 04:19:51 UTC (rev 1228681)
+++ PKGBUILD2022-06-08 04:21:08 UTC (rev 1228682)
@@ -3,7 +3,7 @@
 
 pkgname=hoogle
 pkgver=5.0.18.3
-pkgrel=30
+pkgrel=31
 pkgdesc="Haskell API Search"
 url="https://www.haskell.org/hoogle/;
 license=("BSD")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:19:51
  Author: felixonmars
Revision: 1228681

archrelease: copy trunk to community-staging-x86_64

Added:
  xmobar/repos/community-staging-x86_64/
  xmobar/repos/community-staging-x86_64/PKGBUILD
(from rev 1228680, xmobar/trunk/PKGBUILD)

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

Copied: xmobar/repos/community-staging-x86_64/PKGBUILD (from rev 1228680, 
xmobar/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 04:19:51 UTC (rev 1228681)
@@ -0,0 +1,69 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Jelle van der Waa 
+# Contributer: Sergej Pupykin 
+# Contributor: Arch Haskell Team 
+
+pkgname=xmobar
+pkgver=0.39
+pkgrel=152
+pkgdesc='Minimalistic Text Based Status Bar'
+url='https://hackage.haskell.org/package/xmobar'
+license=('BSD')
+arch=('x86_64')
+depends=('libxft' 'libxinerama' 'libxrandr' 'libxpm' 'ghc-libs' 'haskell-x11'
+ 'haskell-x11-xft' 'haskell-utf8-string' 'haskell-network-uri'
+ 'haskell-hinotify' 'haskell-parsec-numbers'
+ 'haskell-regex-compat' 'haskell-old-locale'
+ 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-cereal' 
'haskell-netlink'
+ 'haskell-async' 'haskell-aeson'
+ 'haskell-timezone-olson' 'haskell-timezone-series' 'alsa-lib'
+ 'haskell-extensible-exceptions' 'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-http-client-tls' 'haskell-alsa-core' 
'haskell-alsa-mixer')
+makedepends=('ghc' 'uusi' 'haskell-hspec' 'haskell-temporary')
+source=(https://github.com/jaor/xmobar/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('a47d7cf16fdea4bece1d622db1c2ac76acc9d9369043eec6ff41a22c1f59c9757932fbcebfe804a636c783e9a66317bb3aaf72edc4a373c48e7db3c9292d9658')
+
+prepare() {
+  cd xmobar-${pkgver}
+  uusi -u base xmobar.cabal
+}
+
+build() {
+  cd xmobar-${pkgver}
+
+  _flags=(with_xft with_utf8 with_inotify with_mpd with_alsa with_nl80211
+  with_datezone with_mpris with_dbus with_xpm with_threaded
+  with_rtsopts with_weather)
+
+  runhaskell setup configure -O \
+--enable-shared \
+--enable-executable-dynamic \
+--disable-library-vanilla \
+--prefix=/usr \
+--dynlibdir=/usr/lib \
+--libsubdir=\$compiler/site-local/\$pkgid --ghc-option=-fllvm \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' \
+--flags="${_flags[*]}" \
+--enable-tests
+  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 xmobar-${pkgver}
+  runhaskell setup test
+}
+
+package() {
+  cd xmobar-${pkgver}
+  install -Dm 744 register.sh   
"${pkgdir}/usr/share/haskell/register/xmobar.sh"
+  install -Dm 744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/xmobar.sh"
+  runhaskell setup copy --destdir="${pkgdir}"
+  install -Dm 644 license -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:19:40
  Author: felixonmars
Revision: 1228680

upgpkg: xmobar 0.39-152: rebuild with HTTP 4000.4.1

Modified:
  xmobar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 04:18:16 UTC (rev 1228679)
+++ PKGBUILD2022-06-08 04:19:40 UTC (rev 1228680)
@@ -5,7 +5,7 @@
 
 pkgname=xmobar
 pkgver=0.39
-pkgrel=151
+pkgrel=152
 pkgdesc='Minimalistic Text Based Status Bar'
 url='https://hackage.haskell.org/package/xmobar'
 license=('BSD')



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:18:16
  Author: felixonmars
Revision: 1228679

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-js-jquery/repos/community-staging-x86_64/
  haskell-js-jquery/repos/community-staging-x86_64/PKGBUILD
(from rev 1228678, haskell-js-jquery/trunk/PKGBUILD)

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

Copied: haskell-js-jquery/repos/community-staging-x86_64/PKGBUILD (from rev 
1228678, haskell-js-jquery/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 04:18:16 UTC (rev 1228679)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=js-jquery
+pkgname=haskell-js-jquery
+pkgver=3.3.1
+pkgrel=807
+pkgdesc="Obtain minified jQuery code"
+url="https://github.com/ndmitchell/js-jquery#readme;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'haskell-http')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('359a4342bc5156d5360385a478e235def04db0381cc48f342baac5018e91350dce760adb9b9ada796bc6341d5629f807672f629ee127faefe521801d62bb')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
"${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:18:05
  Author: felixonmars
Revision: 1228678

upgpkg: haskell-js-jquery 3.3.1-807: rebuild with HTTP 4000.4.1

Modified:
  haskell-js-jquery/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 04:17:36 UTC (rev 1228677)
+++ PKGBUILD2022-06-08 04:18:05 UTC (rev 1228678)
@@ -4,7 +4,7 @@
 _hkgname=js-jquery
 pkgname=haskell-js-jquery
 pkgver=3.3.1
-pkgrel=806
+pkgrel=807
 pkgdesc="Obtain minified jQuery code"
 url="https://github.com/ndmitchell/js-jquery#readme;
 license=("MIT")



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:17:36
  Author: felixonmars
Revision: 1228677

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-http/repos/community-staging-x86_64/PKGBUILD (from rev 1228676, 
haskell-http/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-06-08 04:17:36 UTC (rev 1228677)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=HTTP
+pkgname=haskell-http
+pkgver=4000.4.1
+pkgrel=1
+pkgdesc="A library for client-side HTTP"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-network' 'haskell-network-uri')
+makedepends=('ghc' 'haskell-hunit' 'haskell-httpd-shed' 'haskell-puremd5' 
'haskell-split'
+ 'haskell-test-framework' 'haskell-test-framework-hunit' 
'haskell-case-insensitive'
+ 'haskell-http-types' 'haskell-wai' 'haskell-warp' 
'haskell-conduit'
+ 'haskell-conduit-extra')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('c1edc529032013391263bcc0f8abd9534fc53a617b5033dfdc478318465cd988732b2644c7144979156c62bd1a08b1ace507b4fb4e2806f22ec7696cbdfd0147')
+
+build() {
+cd $_hkgname-$pkgver
+
+if (( CHECKFUNC )); then
+_opts=('--enable-tests')
+else
+_opts=('--disable-tests')
+fi
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname 
"${_opts[@]}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid 
--ghc-option=-fllvm \
+-f-mtl1 -f-warn-as-error -f-conduit10 -fwarp-tests -fnetwork-uri
+runhaskell Setup build $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test --show-details=direct
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-06-07 Thread Felix Yan via arch-commits
Date: Wednesday, June 8, 2022 @ 04:17:24
  Author: felixonmars
Revision: 1228676

upgpkg: haskell-http 4000.4.1-1: rebuild with HTTP 4000.4.1

Modified:
  haskell-http/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 04:15:59 UTC (rev 1228675)
+++ PKGBUILD2022-06-08 04:17:24 UTC (rev 1228676)
@@ -3,8 +3,8 @@
 
 _hkgname=HTTP
 pkgname=haskell-http
-pkgver=4000.4.0
-pkgrel=27
+pkgver=4000.4.1
+pkgrel=1
 pkgdesc="A library for client-side HTTP"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=('BSD')
@@ -15,7 +15,7 @@
  'haskell-http-types' 'haskell-wai' 'haskell-warp' 
'haskell-conduit'
  'haskell-conduit-extra')
 
source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('00b52b08e76ab3225dcb88d481a6535e6be3644ede056afed8e925106f3be9229e62d38ca0fabe95249a2d6e28df429653e72e23b7573c6cfa20cd0272ebf4b4')
+sha512sums=('c1edc529032013391263bcc0f8abd9534fc53a617b5033dfdc478318465cd988732b2644c7144979156c62bd1a08b1ace507b4fb4e2806f22ec7696cbdfd0147')
 
 build() {
 cd $_hkgname-$pkgver



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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:57:58
  Author: grawlinson
Revision: 1228657

archrelease: copy trunk to community-any

Added:
  certbot-nginx/repos/community-any/PKGBUILD
(from rev 1228656, certbot-nginx/trunk/PKGBUILD)
Deleted:
  certbot-nginx/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:57:26 UTC (rev 1228656)
+++ PKGBUILD2022-06-08 03:57:58 UTC (rev 1228657)
@@ -1,62 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-# Contributor: Gordian Edenhofer 
-
-pkgname=certbot-nginx
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="Nginx plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'python-pyopenssl'
-  'python-pyparsing'
-  'python-setuptools'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('7516933c36bd87860fd3efb8b987575946df51cc85d673b10ee15d801dfca9872dc709261390247094f888b9b14ce201c5d302bdc3dc310c508c22e27796f9b0'
-'SKIP')
-b2sums=('21d3b3fe9994dcdbd2a35f0bb042abdfb512651af3b1cae769d84eba8b64a41a23dd4e6ca6723479e25c9b569bd90bbd8959e18936cf3d27c4c1b52fd50a0817'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-nginx/repos/community-any/PKGBUILD (from rev 1228656, 
certbot-nginx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:57:58 UTC (rev 1228657)
@@ -0,0 +1,62 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+# Contributor: Gordian Edenhofer 
+
+pkgname=certbot-nginx
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="Nginx plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'python-pyopenssl'
+  'python-pyparsing'
+  'python-setuptools'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('4bdd6f63fcb03f1536b735cec9955f72c2c08467c213f2c5da3a3946cb2c22daf44e39ab3590a1a8831b26a5b40eed7ef32a6bbc4246dbe57dd5135ab9670edb'
+'SKIP')
+b2sums=('09977bb28ca74edda889a758410245c37d65c14be16dacc5e9f0a32b6bdcedc089d7b44bc781f3b94401b9cbfc024652aa8a6c73b4f3914f0f92d96715cffcab'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:57:26
  Author: grawlinson
Revision: 1228656

upgpkg: certbot-nginx 1.28.0-1

Modified:
  certbot-nginx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:57:15 UTC (rev 1228655)
+++ PKGBUILD2022-06-08 03:57:26 UTC (rev 1228656)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot-nginx
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="Nginx plugin for Certbot"
 arch=('any')
@@ -29,9 +29,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('7516933c36bd87860fd3efb8b987575946df51cc85d673b10ee15d801dfca9872dc709261390247094f888b9b14ce201c5d302bdc3dc310c508c22e27796f9b0'
+sha512sums=('4bdd6f63fcb03f1536b735cec9955f72c2c08467c213f2c5da3a3946cb2c22daf44e39ab3590a1a8831b26a5b40eed7ef32a6bbc4246dbe57dd5135ab9670edb'
 'SKIP')
-b2sums=('21d3b3fe9994dcdbd2a35f0bb042abdfb512651af3b1cae769d84eba8b64a41a23dd4e6ca6723479e25c9b569bd90bbd8959e18936cf3d27c4c1b52fd50a0817'
+b2sums=('09977bb28ca74edda889a758410245c37d65c14be16dacc5e9f0a32b6bdcedc089d7b44bc781f3b94401b9cbfc024652aa8a6c73b4f3914f0f92d96715cffcab'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-sakuracloud/repos/community-any (2 files)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:57:15
  Author: grawlinson
Revision: 1228655

archrelease: copy trunk to community-any

Added:
  certbot-dns-sakuracloud/repos/community-any/PKGBUILD
(from rev 1228654, certbot-dns-sakuracloud/trunk/PKGBUILD)
Deleted:
  certbot-dns-sakuracloud/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:56:43 UTC (rev 1228654)
+++ PKGBUILD2022-06-08 03:57:15 UTC (rev 1228655)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-sakuracloud
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="Sakura Cloud DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'dns-lexicon'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('e43e02eaa163f005fb27b63a967ade43fd1d786997deb2c486ef8a66a9c24275d688bd50ee13bc1885223a1a75737cd9f874bab9829a82a9c233653dab0eda53'
-'SKIP')
-b2sums=('6b9ce480a21cd53c52e15ab2468e07097fe87c15ba4e51fb999c443a57fbc51d8a90d9b997299fed8aa4b6ce90342b720ae6fc95536cae901ee6b1cb5669599a'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-sakuracloud/repos/community-any/PKGBUILD (from rev 1228654, 
certbot-dns-sakuracloud/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:57:15 UTC (rev 1228655)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-sakuracloud
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="Sakura Cloud DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'dns-lexicon'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('f67db357444dc97f8d32fb8412d2e31f29cb64f156c0185420db0f56f321fd99a4dcf6940bc2dc780d48f58608be46fb4f0eefc43d57142eef6cd83fb8a1029f'
+'SKIP')
+b2sums=('376668105f30a3938d72a68132875dfb34b2d26b5030d07de213ea529fe9fa73fa2d864d2eae37215b58711457aa9013be1ee431b4e0c7e4bb3c61af2be9b590'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



[arch-commits] Commit in certbot-dns-sakuracloud/trunk (PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:56:43
  Author: grawlinson
Revision: 1228654

upgpkg: certbot-dns-sakuracloud 1.28.0-1

Modified:
  certbot-dns-sakuracloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:56:32 UTC (rev 1228653)
+++ PKGBUILD2022-06-08 03:56:43 UTC (rev 1228654)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-sakuracloud
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="Sakura Cloud DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -26,9 +26,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('e43e02eaa163f005fb27b63a967ade43fd1d786997deb2c486ef8a66a9c24275d688bd50ee13bc1885223a1a75737cd9f874bab9829a82a9c233653dab0eda53'
+sha512sums=('f67db357444dc97f8d32fb8412d2e31f29cb64f156c0185420db0f56f321fd99a4dcf6940bc2dc780d48f58608be46fb4f0eefc43d57142eef6cd83fb8a1029f'
 'SKIP')
-b2sums=('6b9ce480a21cd53c52e15ab2468e07097fe87c15ba4e51fb999c443a57fbc51d8a90d9b997299fed8aa4b6ce90342b720ae6fc95536cae901ee6b1cb5669599a'
+b2sums=('376668105f30a3938d72a68132875dfb34b2d26b5030d07de213ea529fe9fa73fa2d864d2eae37215b58711457aa9013be1ee431b4e0c7e4bb3c61af2be9b590'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-route53/repos/community-any (PKGBUILD PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:56:32
  Author: grawlinson
Revision: 1228653

archrelease: copy trunk to community-any

Added:
  certbot-dns-route53/repos/community-any/PKGBUILD
(from rev 1228652, certbot-dns-route53/trunk/PKGBUILD)
Deleted:
  certbot-dns-route53/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:56:01 UTC (rev 1228652)
+++ PKGBUILD2022-06-08 03:56:32 UTC (rev 1228653)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-route53
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="Route53 DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'python-boto3'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('8e1862702f8b5c187c5f6a86da63edcb61b874685d804d6b60219656e39da35193bdb075e037f954d5701f84700974bcb40479bcd2312bdb914d951c73fde451'
-'SKIP')
-b2sums=('ef5967f084a6e4625ed1084a1278936c409e1d1bc028048a2ce4c9d4dc4f5927f74e78ebc1c1598ec133320ab2cc67b62f9e1f781ec886a9f032a477a70fafc6'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-route53/repos/community-any/PKGBUILD (from rev 1228652, 
certbot-dns-route53/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:56:32 UTC (rev 1228653)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-route53
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="Route53 DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'python-boto3'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('2501120a4a0d759c2eb0e92b686faab9addb4bab913a05152c52280a4dfb12676b299ee2a12b22c75d08d43548085974a399915fcd8b87c57aab362226df8729'
+'SKIP')
+b2sums=('1a3fbb3288093853b599cee9319386f171b67ffb5334ee36728beeb72bbcc77fcbccc471b8930dc63e610024e779c3987a3fe076ba8b7dd1babb5172ca74b654'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



[arch-commits] Commit in certbot-dns-route53/trunk (PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:56:01
  Author: grawlinson
Revision: 1228652

upgpkg: certbot-dns-route53 1.28.0-1

Modified:
  certbot-dns-route53/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:55:51 UTC (rev 1228651)
+++ PKGBUILD2022-06-08 03:56:01 UTC (rev 1228652)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-route53
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="Route53 DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -26,9 +26,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('8e1862702f8b5c187c5f6a86da63edcb61b874685d804d6b60219656e39da35193bdb075e037f954d5701f84700974bcb40479bcd2312bdb914d951c73fde451'
+sha512sums=('2501120a4a0d759c2eb0e92b686faab9addb4bab913a05152c52280a4dfb12676b299ee2a12b22c75d08d43548085974a399915fcd8b87c57aab362226df8729'
 'SKIP')
-b2sums=('ef5967f084a6e4625ed1084a1278936c409e1d1bc028048a2ce4c9d4dc4f5927f74e78ebc1c1598ec133320ab2cc67b62f9e1f781ec886a9f032a477a70fafc6'
+b2sums=('1a3fbb3288093853b599cee9319386f171b67ffb5334ee36728beeb72bbcc77fcbccc471b8930dc63e610024e779c3987a3fe076ba8b7dd1babb5172ca74b654'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-rfc2136/repos/community-any (PKGBUILD PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:55:51
  Author: grawlinson
Revision: 1228651

archrelease: copy trunk to community-any

Added:
  certbot-dns-rfc2136/repos/community-any/PKGBUILD
(from rev 1228650, certbot-dns-rfc2136/trunk/PKGBUILD)
Deleted:
  certbot-dns-rfc2136/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:55:20 UTC (rev 1228650)
+++ PKGBUILD2022-06-08 03:55:51 UTC (rev 1228651)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-rfc2136
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="RFC2136 DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'python-dnspython'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('4c8c43dc1dcd06532c8b7f6bb81a7dbd5117cc216befdd0512c07c44424e6b12da70975f6e8fe1557fdd944fd9cc1a073fd4381d5755df881798e1a5cc4bae73'
-'SKIP')
-b2sums=('a9703df4773d28e8391f6ba94845823ba675cab09d91b75c33a18b79859f615e00996c955a629f53a150b6dcce674d5c3091e9dac27b8d977dd2f3fc8cbb9c1e'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-rfc2136/repos/community-any/PKGBUILD (from rev 1228650, 
certbot-dns-rfc2136/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:55:51 UTC (rev 1228651)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-rfc2136
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="RFC2136 DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'python-dnspython'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('94e230a3c1f6cc8e91792bd6f555f0a623f3d3d6cf2f88b555df44d2df95a430d9480d873b42528c89c11c1e2fd8325f34a7cd06e6ccb553a15724801e28'
+'SKIP')
+b2sums=('b38f089972c0e20037c343fe989aefcad6a84a71ec0c242e5c5c05cd141589f65790e69a4a3b9870283697a5f5596eb5efc4683013d1509d433f50a7af3dcff5'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



[arch-commits] Commit in certbot-dns-rfc2136/trunk (PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:55:20
  Author: grawlinson
Revision: 1228650

upgpkg: certbot-dns-rfc2136 1.28.0-1

Modified:
  certbot-dns-rfc2136/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:55:09 UTC (rev 1228649)
+++ PKGBUILD2022-06-08 03:55:20 UTC (rev 1228650)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-rfc2136
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="RFC2136 DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -26,9 +26,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('4c8c43dc1dcd06532c8b7f6bb81a7dbd5117cc216befdd0512c07c44424e6b12da70975f6e8fe1557fdd944fd9cc1a073fd4381d5755df881798e1a5cc4bae73'
+sha512sums=('94e230a3c1f6cc8e91792bd6f555f0a623f3d3d6cf2f88b555df44d2df95a430d9480d873b42528c89c11c1e2fd8325f34a7cd06e6ccb553a15724801e28'
 'SKIP')
-b2sums=('a9703df4773d28e8391f6ba94845823ba675cab09d91b75c33a18b79859f615e00996c955a629f53a150b6dcce674d5c3091e9dac27b8d977dd2f3fc8cbb9c1e'
+b2sums=('b38f089972c0e20037c343fe989aefcad6a84a71ec0c242e5c5c05cd141589f65790e69a4a3b9870283697a5f5596eb5efc4683013d1509d433f50a7af3dcff5'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-ovh/repos/community-any (PKGBUILD PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:55:09
  Author: grawlinson
Revision: 1228649

archrelease: copy trunk to community-any

Added:
  certbot-dns-ovh/repos/community-any/PKGBUILD
(from rev 1228648, certbot-dns-ovh/trunk/PKGBUILD)
Deleted:
  certbot-dns-ovh/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:54:38 UTC (rev 1228648)
+++ PKGBUILD2022-06-08 03:55:09 UTC (rev 1228649)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-ovh
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="OVH DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'dns-lexicon'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('ac5b53c914d532e070c9398282ac1247f53cbc0012ae4550d292cf38cee59a458467fd6a6637275e5447228de1ce67ecccbe8a283275e7a809018d11480a8e6f'
-'SKIP')
-b2sums=('44e6af85ca6aa119b3179d571c914aa9346ea65c5f9734f93e6433f5b65f6dd8645ff454ee4c6a08b4c6b583d047eab5b4c11ae569cca43bf222cccea5a477d0'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-ovh/repos/community-any/PKGBUILD (from rev 1228648, 
certbot-dns-ovh/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:55:09 UTC (rev 1228649)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-ovh
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="OVH DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'dns-lexicon'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('f9b37928dd253a73cb603985b6bc5240815230bbc7ef0d3729f054f5f2eec2a17c18a5a73ee5227c0fab17d05a49055d7087f3636fef29d9848ccebc897a9ca3'
+'SKIP')
+b2sums=('5d09e9d77abcc60c1fc906ab1f61c8de52fe5836bcc43ee39e43eb7a2e20f4529d9937ecac8965192a3083855d33548467f5a7e3a1bed7d4de668a2659a9e848'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



[arch-commits] Commit in certbot-dns-ovh/trunk (PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:54:38
  Author: grawlinson
Revision: 1228648

upgpkg: certbot-dns-ovh 1.28.0-1

Modified:
  certbot-dns-ovh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:54:27 UTC (rev 1228647)
+++ PKGBUILD2022-06-08 03:54:38 UTC (rev 1228648)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-ovh
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="OVH DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -26,9 +26,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('ac5b53c914d532e070c9398282ac1247f53cbc0012ae4550d292cf38cee59a458467fd6a6637275e5447228de1ce67ecccbe8a283275e7a809018d11480a8e6f'
+sha512sums=('f9b37928dd253a73cb603985b6bc5240815230bbc7ef0d3729f054f5f2eec2a17c18a5a73ee5227c0fab17d05a49055d7087f3636fef29d9848ccebc897a9ca3'
 'SKIP')
-b2sums=('44e6af85ca6aa119b3179d571c914aa9346ea65c5f9734f93e6433f5b65f6dd8645ff454ee4c6a08b4c6b583d047eab5b4c11ae569cca43bf222cccea5a477d0'
+b2sums=('5d09e9d77abcc60c1fc906ab1f61c8de52fe5836bcc43ee39e43eb7a2e20f4529d9937ecac8965192a3083855d33548467f5a7e3a1bed7d4de668a2659a9e848'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-nsone/repos/community-any (PKGBUILD PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:54:27
  Author: grawlinson
Revision: 1228647

archrelease: copy trunk to community-any

Added:
  certbot-dns-nsone/repos/community-any/PKGBUILD
(from rev 1228646, certbot-dns-nsone/trunk/PKGBUILD)
Deleted:
  certbot-dns-nsone/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:53:57 UTC (rev 1228646)
+++ PKGBUILD2022-06-08 03:54:27 UTC (rev 1228647)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-nsone
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="NS1 DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'dns-lexicon'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('80d5e4fce4de50595263db42dffcb6773c571230d9a6d036518f37cd1f01678f4d208bdbba27e049126bc3171520518d5efb15fc0f4cdde2a61afa977cc90be5'
-'SKIP')
-b2sums=('ee64e71911240b346acc0cd9ae37d2c85217a5b24c42bb60ff76d9802b218dbfba2b1cd83b36e23ec1775fb1116d40e4201484ac17579cebd078ea74e8ca1123'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-nsone/repos/community-any/PKGBUILD (from rev 1228646, 
certbot-dns-nsone/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:54:27 UTC (rev 1228647)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-nsone
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="NS1 DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'dns-lexicon'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('c3327cb2ceca99da5be816e3c6d66254109d02f32026dec39e0fac34717a8548adde4d2dbfd57d3c096b8835d6b3389d2a7ede4b4cafe8337c22a9b5738b5803'
+'SKIP')
+b2sums=('6c4a19bc9d26baad9ecf4369bc7e8b37678d70fd18711037d52fd80d36edda9f28573e60bbf8ddf86192f1856d03ff1db4b72d4f3d8076dbec661cd4ecbb6d6d'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



[arch-commits] Commit in certbot-dns-nsone/trunk (PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:53:57
  Author: grawlinson
Revision: 1228646

upgpkg: certbot-dns-nsone 1.28.0-1

Modified:
  certbot-dns-nsone/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:53:46 UTC (rev 1228645)
+++ PKGBUILD2022-06-08 03:53:57 UTC (rev 1228646)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-nsone
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="NS1 DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -26,9 +26,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('80d5e4fce4de50595263db42dffcb6773c571230d9a6d036518f37cd1f01678f4d208bdbba27e049126bc3171520518d5efb15fc0f4cdde2a61afa977cc90be5'
+sha512sums=('c3327cb2ceca99da5be816e3c6d66254109d02f32026dec39e0fac34717a8548adde4d2dbfd57d3c096b8835d6b3389d2a7ede4b4cafe8337c22a9b5738b5803'
 'SKIP')
-b2sums=('ee64e71911240b346acc0cd9ae37d2c85217a5b24c42bb60ff76d9802b218dbfba2b1cd83b36e23ec1775fb1116d40e4201484ac17579cebd078ea74e8ca1123'
+b2sums=('6c4a19bc9d26baad9ecf4369bc7e8b37678d70fd18711037d52fd80d36edda9f28573e60bbf8ddf86192f1856d03ff1db4b72d4f3d8076dbec661cd4ecbb6d6d'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-luadns/repos/community-any (PKGBUILD PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:53:46
  Author: grawlinson
Revision: 1228645

archrelease: copy trunk to community-any

Added:
  certbot-dns-luadns/repos/community-any/PKGBUILD
(from rev 1228644, certbot-dns-luadns/trunk/PKGBUILD)
Deleted:
  certbot-dns-luadns/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:53:13 UTC (rev 1228644)
+++ PKGBUILD2022-06-08 03:53:46 UTC (rev 1228645)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-luadns
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="LuaDNS DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'dns-lexicon'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('b7be9e4b702f0344fa9d0298f275672830dbfb5031523852631f59be523e325826640e5800e77614895aa2eb4b9da12f0c17102e6e54e64c318c626f7f5850ee'
-'SKIP')
-b2sums=('90622527bd0470c047daa13f6821d360c9850d6e05774e7a1f26c549500a145aba184da672eb5e160a4ebf28d1f53561a0ae64080af83dd58cc494fa9e464e2e'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-luadns/repos/community-any/PKGBUILD (from rev 1228644, 
certbot-dns-luadns/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:53:46 UTC (rev 1228645)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-luadns
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="LuaDNS DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'dns-lexicon'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('1335bc04438d60ad6003b80186bdfec87cd97a7ca95be8c63d3cb1671ef29446bcea3fd1c400ca7abc98d78d82dcee9c56e7766ca1a962767d6d460dc3ca7df2'
+'SKIP')
+b2sums=('fe2cb92962bef844e3003843aebb0e114e604c0f20175f55dc5e006e34217f86a1b1f88343ad96c3c0e6c09792683359782321b7c9f7643a1b403ad5cdb5a2cb'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



[arch-commits] Commit in certbot-dns-luadns/trunk (PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:53:13
  Author: grawlinson
Revision: 1228644

upgpkg: certbot-dns-luadns 1.28.0-1

Modified:
  certbot-dns-luadns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:53:02 UTC (rev 1228643)
+++ PKGBUILD2022-06-08 03:53:13 UTC (rev 1228644)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-luadns
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="LuaDNS DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -26,9 +26,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('b7be9e4b702f0344fa9d0298f275672830dbfb5031523852631f59be523e325826640e5800e77614895aa2eb4b9da12f0c17102e6e54e64c318c626f7f5850ee'
+sha512sums=('1335bc04438d60ad6003b80186bdfec87cd97a7ca95be8c63d3cb1671ef29446bcea3fd1c400ca7abc98d78d82dcee9c56e7766ca1a962767d6d460dc3ca7df2'
 'SKIP')
-b2sums=('90622527bd0470c047daa13f6821d360c9850d6e05774e7a1f26c549500a145aba184da672eb5e160a4ebf28d1f53561a0ae64080af83dd58cc494fa9e464e2e'
+b2sums=('fe2cb92962bef844e3003843aebb0e114e604c0f20175f55dc5e006e34217f86a1b1f88343ad96c3c0e6c09792683359782321b7c9f7643a1b403ad5cdb5a2cb'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-linode/repos/community-any (PKGBUILD PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:53:02
  Author: grawlinson
Revision: 1228643

archrelease: copy trunk to community-any

Added:
  certbot-dns-linode/repos/community-any/PKGBUILD
(from rev 1228642, certbot-dns-linode/trunk/PKGBUILD)
Deleted:
  certbot-dns-linode/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:52:31 UTC (rev 1228642)
+++ PKGBUILD2022-06-08 03:53:02 UTC (rev 1228643)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-linode
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="Linode DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'dns-lexicon'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('9e47340d106ac7a06ef4f2b6c7fca2fab0ab843ce5a41fcd29688d973171d9554b94a9d9a0e4ddf3662ea3e53de69610ea37beef730b2ba3d727eb021f123a99'
-'SKIP')
-b2sums=('fd2956708bd2e489066678d10361010787c4e7348b9e47a56a776cd9321c52fb3abbd3cb4a98f864118cc692d70c7f1529812c207f2d8b8a60490c30ae1888cf'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-linode/repos/community-any/PKGBUILD (from rev 1228642, 
certbot-dns-linode/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:53:02 UTC (rev 1228643)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-linode
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="Linode DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'dns-lexicon'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('a15e8d7fdda07ffa52a7ebb8915a57351e85b1485fd6faf2547e21b7f13d6e9b0ce3304351e6f019b2c513955d7222d114a5abee94c7d20b74933321ecf2'
+'SKIP')
+b2sums=('a1a1a463a40762be993b808ace927f238c16bccc8e896252cb31cce5541343b24a8db79c5b04419672f2ef19738add4c2a9c8137381c34de5749a5b0651c10f3'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



[arch-commits] Commit in certbot-dns-linode/trunk (PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:52:31
  Author: grawlinson
Revision: 1228642

upgpkg: certbot-dns-linode 1.28.0-1

Modified:
  certbot-dns-linode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:52:20 UTC (rev 1228641)
+++ PKGBUILD2022-06-08 03:52:31 UTC (rev 1228642)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-linode
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="Linode DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -26,9 +26,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('9e47340d106ac7a06ef4f2b6c7fca2fab0ab843ce5a41fcd29688d973171d9554b94a9d9a0e4ddf3662ea3e53de69610ea37beef730b2ba3d727eb021f123a99'
+sha512sums=('a15e8d7fdda07ffa52a7ebb8915a57351e85b1485fd6faf2547e21b7f13d6e9b0ce3304351e6f019b2c513955d7222d114a5abee94c7d20b74933321ecf2'
 'SKIP')
-b2sums=('fd2956708bd2e489066678d10361010787c4e7348b9e47a56a776cd9321c52fb3abbd3cb4a98f864118cc692d70c7f1529812c207f2d8b8a60490c30ae1888cf'
+b2sums=('a1a1a463a40762be993b808ace927f238c16bccc8e896252cb31cce5541343b24a8db79c5b04419672f2ef19738add4c2a9c8137381c34de5749a5b0651c10f3'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-google/repos/community-any (PKGBUILD PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:52:20
  Author: grawlinson
Revision: 1228641

archrelease: copy trunk to community-any

Added:
  certbot-dns-google/repos/community-any/PKGBUILD
(from rev 1228640, certbot-dns-google/trunk/PKGBUILD)
Deleted:
  certbot-dns-google/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:51:49 UTC (rev 1228640)
+++ PKGBUILD2022-06-08 03:52:20 UTC (rev 1228641)
@@ -1,61 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-google
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="Google Cloud DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'python-google-api-python-client'
-  'python-oauth2client'
-  'python-httplib2'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('e41df04af7eec053fbf20ee966766266f38cb83d5307194715b9d97cf8bc20e57e99ba0970c3a8358b973680d47a775d123d10a3b0e3ba48bb32a66523b3e8ce'
-'SKIP')
-b2sums=('754da356a84d8711014f6fa81c8fa77b709d16e3625420e873db54f56adf2695910521cd30d2a7779ac9f48c9f09f19e09b144c6efb5d89e899b22e3fa0386d9'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-google/repos/community-any/PKGBUILD (from rev 1228640, 
certbot-dns-google/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:52:20 UTC (rev 1228641)
@@ -0,0 +1,61 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-google
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="Google Cloud DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'python-google-api-python-client'
+  'python-oauth2client'
+  'python-httplib2'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('8faea7046ac52b2d620cd9e733d399450e7fd82f030058612a919d1e3ae5811f2ea9db99c7f7a4f6b5fe5c4754264137251723677b1a98dbf82010bea2a213f3'
+'SKIP')
+b2sums=('4e7c60c8cea60ff7ab6d3fa1bfd213c2e9fef7cfda2019171a01a6750a92d6a6aa489cc53f95e2ce00aa287390b586d221250e664724085fd9524d565a0d2819'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



[arch-commits] Commit in certbot-dns-google/trunk (PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:51:49
  Author: grawlinson
Revision: 1228640

upgpkg: certbot-dns-google 1.28.0-1

Modified:
  certbot-dns-google/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:51:38 UTC (rev 1228639)
+++ PKGBUILD2022-06-08 03:51:49 UTC (rev 1228640)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-google
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="Google Cloud DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -28,9 +28,9 @@
   'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('e41df04af7eec053fbf20ee966766266f38cb83d5307194715b9d97cf8bc20e57e99ba0970c3a8358b973680d47a775d123d10a3b0e3ba48bb32a66523b3e8ce'
+sha512sums=('8faea7046ac52b2d620cd9e733d399450e7fd82f030058612a919d1e3ae5811f2ea9db99c7f7a4f6b5fe5c4754264137251723677b1a98dbf82010bea2a213f3'
 'SKIP')
-b2sums=('754da356a84d8711014f6fa81c8fa77b709d16e3625420e873db54f56adf2695910521cd30d2a7779ac9f48c9f09f19e09b144c6efb5d89e899b22e3fa0386d9'
+b2sums=('4e7c60c8cea60ff7ab6d3fa1bfd213c2e9fef7cfda2019171a01a6750a92d6a6aa489cc53f95e2ce00aa287390b586d221250e664724085fd9524d565a0d2819'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-gehirn/repos/community-any (PKGBUILD PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:51:38
  Author: grawlinson
Revision: 1228639

archrelease: copy trunk to community-any

Added:
  certbot-dns-gehirn/repos/community-any/PKGBUILD
(from rev 1228638, certbot-dns-gehirn/trunk/PKGBUILD)
Deleted:
  certbot-dns-gehirn/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:51:07 UTC (rev 1228638)
+++ PKGBUILD2022-06-08 03:51:38 UTC (rev 1228639)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-gehirn
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="Gehirn DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'dns-lexicon'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('9f8c915e76dfbc93af644286ee262f815f19794782a3c8ddcf760af0687aa70b1b7d7122717314823c47196d14fa5f4b2feb3196a218988db10c1022cdfec7bb'
-'SKIP')
-b2sums=('79adee281ed870bdab01ac98921a5b72c08e06ad92a93e09686cabe1e807b14f95280eb8e4ea0e9f407534c0092a2bb3b6b6d866dcc70d839e789236c5e469ea'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-gehirn/repos/community-any/PKGBUILD (from rev 1228638, 
certbot-dns-gehirn/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:51:38 UTC (rev 1228639)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-gehirn
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="Gehirn DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'dns-lexicon'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('feedf1fd9d0d0a401011dff75249b633ac6e26d084431f8c5599b404d09fe23a6a997de69e15980f983ab37f64a2fa4b7423ff9d1b5b59112126eb45a755bd49'
+'SKIP')
+b2sums=('16320c6d8777e94fe6f87efd3266763e9cc9fac92fb20314d806c1bd9f43597e841baebe5a83a75dd1e59118d7b0a46725b5e34714a81a3e0772bf6c59480c50'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



[arch-commits] Commit in certbot-dns-gehirn/trunk (PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:51:07
  Author: grawlinson
Revision: 1228638

upgpkg: certbot-dns-gehirn 1.28.0-1

Modified:
  certbot-dns-gehirn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:50:57 UTC (rev 1228637)
+++ PKGBUILD2022-06-08 03:51:07 UTC (rev 1228638)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-gehirn
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="Gehirn DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -26,9 +26,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('9f8c915e76dfbc93af644286ee262f815f19794782a3c8ddcf760af0687aa70b1b7d7122717314823c47196d14fa5f4b2feb3196a218988db10c1022cdfec7bb'
+sha512sums=('feedf1fd9d0d0a401011dff75249b633ac6e26d084431f8c5599b404d09fe23a6a997de69e15980f983ab37f64a2fa4b7423ff9d1b5b59112126eb45a755bd49'
 'SKIP')
-b2sums=('79adee281ed870bdab01ac98921a5b72c08e06ad92a93e09686cabe1e807b14f95280eb8e4ea0e9f407534c0092a2bb3b6b6d866dcc70d839e789236c5e469ea'
+b2sums=('16320c6d8777e94fe6f87efd3266763e9cc9fac92fb20314d806c1bd9f43597e841baebe5a83a75dd1e59118d7b0a46725b5e34714a81a3e0772bf6c59480c50'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-dnsmadeeasy/repos/community-any (2 files)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:50:57
  Author: grawlinson
Revision: 1228637

archrelease: copy trunk to community-any

Added:
  certbot-dns-dnsmadeeasy/repos/community-any/PKGBUILD
(from rev 1228636, certbot-dns-dnsmadeeasy/trunk/PKGBUILD)
Deleted:
  certbot-dns-dnsmadeeasy/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:50:25 UTC (rev 1228636)
+++ PKGBUILD2022-06-08 03:50:57 UTC (rev 1228637)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-dnsmadeeasy
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="DNS Made Easy DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'dns-lexicon'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('4420be35fd8740667c3f39180365f8cfe095550ccc7e2f521c0dba0348d2691b9c235109b8a405fcd36f16cba0d1c6b133729630da35a1de3175ac3c53fcc57f'
-'SKIP')
-b2sums=('60cd75feda6ccf4cad5b3380d2025aee60ce0947f0b662236f537a368a86bdf318cf59e3d3c1da5756338a0c598e39add28e6681e55492e6f498db9ab3224349'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-dnsmadeeasy/repos/community-any/PKGBUILD (from rev 1228636, 
certbot-dns-dnsmadeeasy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:50:57 UTC (rev 1228637)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-dnsmadeeasy
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="DNS Made Easy DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'dns-lexicon'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('fefeec6901de3812adc123d9bd0250e79391673ad4d744904bc09113da09df0acecdd624506c60ab297918b9954ffae0f4abb3c577c85a115b99e9722e8b96c0'
+'SKIP')
+b2sums=('681cb3bb29e0eafc6c45ee4e53e0772c0b3d0e9ce60fa3367cef23304993250303dc083532405ae271b65ce8266ed39c294f8e86d03f521eb58724ea18518399'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



[arch-commits] Commit in certbot-dns-dnsmadeeasy/trunk (PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:50:25
  Author: grawlinson
Revision: 1228636

upgpkg: certbot-dns-dnsmadeeasy 1.28.0-1

Modified:
  certbot-dns-dnsmadeeasy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:50:13 UTC (rev 1228635)
+++ PKGBUILD2022-06-08 03:50:25 UTC (rev 1228636)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-dnsmadeeasy
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="DNS Made Easy DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -26,9 +26,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('4420be35fd8740667c3f39180365f8cfe095550ccc7e2f521c0dba0348d2691b9c235109b8a405fcd36f16cba0d1c6b133729630da35a1de3175ac3c53fcc57f'
+sha512sums=('fefeec6901de3812adc123d9bd0250e79391673ad4d744904bc09113da09df0acecdd624506c60ab297918b9954ffae0f4abb3c577c85a115b99e9722e8b96c0'
 'SKIP')
-b2sums=('60cd75feda6ccf4cad5b3380d2025aee60ce0947f0b662236f537a368a86bdf318cf59e3d3c1da5756338a0c598e39add28e6681e55492e6f498db9ab3224349'
+b2sums=('681cb3bb29e0eafc6c45ee4e53e0772c0b3d0e9ce60fa3367cef23304993250303dc083532405ae271b65ce8266ed39c294f8e86d03f521eb58724ea18518399'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-dnsimple/repos/community-any (PKGBUILD PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:50:13
  Author: grawlinson
Revision: 1228635

archrelease: copy trunk to community-any

Added:
  certbot-dns-dnsimple/repos/community-any/PKGBUILD
(from rev 1228634, certbot-dns-dnsimple/trunk/PKGBUILD)
Deleted:
  certbot-dns-dnsimple/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:49:41 UTC (rev 1228634)
+++ PKGBUILD2022-06-08 03:50:13 UTC (rev 1228635)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-dnsimple
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="DNSimple DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'dns-lexicon'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('61405c02c67e2274ca2323254b55b03e6a72f71a4478bf13cbde67b7555d9646690451dc9dee08205472c321a03cde3d41c36a7868b91b5e4da70fa2634a'
-'SKIP')
-b2sums=('4cf13e3f90c6c805ea4f17e15b6f5c775717c8b8edd2cbee505b4cbf2bdcd0585b078f82b9bdc38f6cfd913e27efedd6f4e967d63949da6a7f1de01f1a1e5edd'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-dnsimple/repos/community-any/PKGBUILD (from rev 1228634, 
certbot-dns-dnsimple/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:50:13 UTC (rev 1228635)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-dnsimple
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="DNSimple DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'dns-lexicon'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('b7b456d1c079ddb280c90436d43ec7410ef72d062604609f07ed719b95bcb65eee9b813851643a0dd6ebeaee0d5f050e452be9bb93590f5b0887309c495051d2'
+'SKIP')
+b2sums=('ce7f894a6167aa7c94f08673047912951fe49eade91c364595d5b5b540e70f7e31e750dbb952250b00de959319bbae0a508166a7ea3693c94b64ff619b841b26'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



[arch-commits] Commit in certbot-dns-dnsimple/trunk (PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:49:41
  Author: grawlinson
Revision: 1228634

upgpkg: certbot-dns-dnsimple 1.28.0-1

Modified:
  certbot-dns-dnsimple/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:49:30 UTC (rev 1228633)
+++ PKGBUILD2022-06-08 03:49:41 UTC (rev 1228634)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-dnsimple
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="DNSimple DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -26,9 +26,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('61405c02c67e2274ca2323254b55b03e6a72f71a4478bf13cbde67b7555d9646690451dc9dee08205472c321a03cde3d41c36a7868b91b5e4da70fa2634a'
+sha512sums=('b7b456d1c079ddb280c90436d43ec7410ef72d062604609f07ed719b95bcb65eee9b813851643a0dd6ebeaee0d5f050e452be9bb93590f5b0887309c495051d2'
 'SKIP')
-b2sums=('4cf13e3f90c6c805ea4f17e15b6f5c775717c8b8edd2cbee505b4cbf2bdcd0585b078f82b9bdc38f6cfd913e27efedd6f4e967d63949da6a7f1de01f1a1e5edd'
+b2sums=('ce7f894a6167aa7c94f08673047912951fe49eade91c364595d5b5b540e70f7e31e750dbb952250b00de959319bbae0a508166a7ea3693c94b64ff619b841b26'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-digitalocean/repos/community-any (2 files)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:49:30
  Author: grawlinson
Revision: 1228633

archrelease: copy trunk to community-any

Added:
  certbot-dns-digitalocean/repos/community-any/PKGBUILD
(from rev 1228632, certbot-dns-digitalocean/trunk/PKGBUILD)
Deleted:
  certbot-dns-digitalocean/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:48:59 UTC (rev 1228632)
+++ PKGBUILD2022-06-08 03:49:30 UTC (rev 1228633)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-digitalocean
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="DigitalOcean DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'python-digitalocean'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('0ea3b1cb51bda13edff2be07b415e866f958d717341b5e2aa21630c02665ee2900758d0b96807dd9cf93baf6bd856c51d8d468cb3555dfc3bde03c5a6f4b7dfe'
-'SKIP')
-b2sums=('85f8f720770c1eda5eacd523f4f3f4adff699bca18c098396526546f83a0c3b623ef1bf61a1ebe61ee54906ad46b9d8185ab2503001453ab88e9b278ff8faa63'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-digitalocean/repos/community-any/PKGBUILD (from rev 
1228632, certbot-dns-digitalocean/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:49:30 UTC (rev 1228633)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-digitalocean
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="DigitalOcean DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'python-digitalocean'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('485a91f9054580f1acc7d981b31c91a9f9896d81a58eeb9c730a1b52e01d5cd96e73468ea8720a50fc38d0b374f07e3ed5b9f5ddc201b8e46084b5f4a5aa8ed1'
+'SKIP')
+b2sums=('246db6580b799277e2f5998f28b7611c7570126f1921d0f8076012f8498e6e2788a9b77b47852cc85edb11659410913763ec8ea92741c3de9d1ddd4f96107534'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:48:59
  Author: grawlinson
Revision: 1228632

upgpkg: certbot-dns-digitalocean 1.28.0-1

Modified:
  certbot-dns-digitalocean/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:48:49 UTC (rev 1228631)
+++ PKGBUILD2022-06-08 03:48:59 UTC (rev 1228632)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-digitalocean
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="DigitalOcean DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -26,9 +26,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('0ea3b1cb51bda13edff2be07b415e866f958d717341b5e2aa21630c02665ee2900758d0b96807dd9cf93baf6bd856c51d8d468cb3555dfc3bde03c5a6f4b7dfe'
+sha512sums=('485a91f9054580f1acc7d981b31c91a9f9896d81a58eeb9c730a1b52e01d5cd96e73468ea8720a50fc38d0b374f07e3ed5b9f5ddc201b8e46084b5f4a5aa8ed1'
 'SKIP')
-b2sums=('85f8f720770c1eda5eacd523f4f3f4adff699bca18c098396526546f83a0c3b623ef1bf61a1ebe61ee54906ad46b9d8185ab2503001453ab88e9b278ff8faa63'
+b2sums=('246db6580b799277e2f5998f28b7611c7570126f1921d0f8076012f8498e6e2788a9b77b47852cc85edb11659410913763ec8ea92741c3de9d1ddd4f96107534'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-cloudxns/repos/community-any (PKGBUILD PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:48:49
  Author: grawlinson
Revision: 1228631

archrelease: copy trunk to community-any

Added:
  certbot-dns-cloudxns/repos/community-any/PKGBUILD
(from rev 1228630, certbot-dns-cloudxns/trunk/PKGBUILD)
Deleted:
  certbot-dns-cloudxns/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:48:18 UTC (rev 1228630)
+++ PKGBUILD2022-06-08 03:48:49 UTC (rev 1228631)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-cloudxns
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="CloudXNS DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'dns-lexicon'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('7cb2b27fbc17933980f726f8ea8b317127a696e51ba8d236903fd1b76ef48c02645f1fe383164dbf95f64e705a84c51ea55575f727780207d84b3278a3db25f0'
-'SKIP')
-b2sums=('da51f351eb4d83f4cd48b50bf6017a6e84997b81b89b861bc642dca63982a777e96101ab6fa5fcac5ca106226b417baf404d4d61549064744859fa07b2937e49'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-cloudxns/repos/community-any/PKGBUILD (from rev 1228630, 
certbot-dns-cloudxns/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:48:49 UTC (rev 1228631)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-cloudxns
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="CloudXNS DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'dns-lexicon'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('316aa7457ce500419025144e1eff9a96cad32492b99484056f448ef536b87e095255fceaf59611436a42337fa6c6ddbb64ba90182e59a6f7d36c8cce6045ca0a'
+'SKIP')
+b2sums=('fca9f4ccd23043cfdee6e95511163cfd9629c4bddb931682f8b06b5f8eb639e26eb26425e9bb0a945373f4d62bc8ed9840ac7b44dd89bd62a69fd7b4039fa765'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



[arch-commits] Commit in certbot-dns-cloudxns/trunk (PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:48:18
  Author: grawlinson
Revision: 1228630

upgpkg: certbot-dns-cloudxns 1.28.0-1

Modified:
  certbot-dns-cloudxns/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:48:07 UTC (rev 1228629)
+++ PKGBUILD2022-06-08 03:48:18 UTC (rev 1228630)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-cloudxns
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="CloudXNS DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -26,9 +26,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('7cb2b27fbc17933980f726f8ea8b317127a696e51ba8d236903fd1b76ef48c02645f1fe383164dbf95f64e705a84c51ea55575f727780207d84b3278a3db25f0'
+sha512sums=('316aa7457ce500419025144e1eff9a96cad32492b99484056f448ef536b87e095255fceaf59611436a42337fa6c6ddbb64ba90182e59a6f7d36c8cce6045ca0a'
 'SKIP')
-b2sums=('da51f351eb4d83f4cd48b50bf6017a6e84997b81b89b861bc642dca63982a777e96101ab6fa5fcac5ca106226b417baf404d4d61549064744859fa07b2937e49'
+b2sums=('fca9f4ccd23043cfdee6e95511163cfd9629c4bddb931682f8b06b5f8eb639e26eb26425e9bb0a945373f4d62bc8ed9840ac7b44dd89bd62a69fd7b4039fa765'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot-dns-cloudflare/repos/community-any (2 files)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:48:07
  Author: grawlinson
Revision: 1228629

archrelease: copy trunk to community-any

Added:
  certbot-dns-cloudflare/repos/community-any/PKGBUILD
(from rev 1228628, certbot-dns-cloudflare/trunk/PKGBUILD)
Deleted:
  certbot-dns-cloudflare/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:47:36 UTC (rev 1228628)
+++ PKGBUILD2022-06-08 03:48:07 UTC (rev 1228629)
@@ -1,59 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-
-pkgname=certbot-dns-cloudflare
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="Cloudflare DNS Authenticator plugin for Certbot"
-arch=('any')
-license=('Apache')
-url="https://pypi.python.org/pypi/$pkgname;
-depends=(
-  'certbot'
-  'python-acme'
-  'python-cloudflare'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('5c8eef1be2c25938c3baac3181c45977fa4164f02338ac0705de5b3d561ea6a60b609480bf2bdc4606ce4200ac51d7b600ec0d735cc349971da644d6665dab26'
-'SKIP')
-b2sums=('f8508785c0a36c0a941be8afa5ee20ef98c681608b653bdec7328cd129d538f487d74a121ec37fb403d98e09d2a4f9505c57c9d8cb7f4ccdbc71ca2d6424d982'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-dns-cloudflare/repos/community-any/PKGBUILD (from rev 1228628, 
certbot-dns-cloudflare/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:48:07 UTC (rev 1228629)
@@ -0,0 +1,59 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+
+pkgname=certbot-dns-cloudflare
+pkgver=1.28.0
+pkgrel=1
+pkgdesc="Cloudflare DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname;
+depends=(
+  'certbot'
+  'python-acme'
+  'python-cloudflare'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('f78f7303a747f0925717643e215c09a729219db22af946a3d9070f84c52d884eea28de7c30eede9976ca47c365488331e27aed098bf63c0ccec2325a38aa124c'
+'SKIP')
+b2sums=('1f97644d32e8ac62fddc7a9e123a4f881529a1b7edb68e00c24c6fbbbd976e47a54177fa1f573e9678c4813718397d7f3c492b7bdfa07bd2fde02661108d1414'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



[arch-commits] Commit in certbot-dns-cloudflare/trunk (PKGBUILD)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:47:36
  Author: grawlinson
Revision: 1228628

upgpkg: certbot-dns-cloudflare 1.28.0-1

Modified:
  certbot-dns-cloudflare/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:47:24 UTC (rev 1228627)
+++ PKGBUILD2022-06-08 03:47:36 UTC (rev 1228628)
@@ -2,7 +2,7 @@
 # Contributor: Felix Yan 
 
 pkgname=certbot-dns-cloudflare
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="Cloudflare DNS Authenticator plugin for Certbot"
 arch=('any')
@@ -26,9 +26,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('5c8eef1be2c25938c3baac3181c45977fa4164f02338ac0705de5b3d561ea6a60b609480bf2bdc4606ce4200ac51d7b600ec0d735cc349971da644d6665dab26'
+sha512sums=('f78f7303a747f0925717643e215c09a729219db22af946a3d9070f84c52d884eea28de7c30eede9976ca47c365488331e27aed098bf63c0ccec2325a38aa124c'
 'SKIP')
-b2sums=('f8508785c0a36c0a941be8afa5ee20ef98c681608b653bdec7328cd129d538f487d74a121ec37fb403d98e09d2a4f9505c57c9d8cb7f4ccdbc71ca2d6424d982'
+b2sums=('1f97644d32e8ac62fddc7a9e123a4f881529a1b7edb68e00c24c6fbbbd976e47a54177fa1f573e9678c4813718397d7f3c492b7bdfa07bd2fde02661108d1414'
 'SKIP')
 
 prepare() {



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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:47:24
  Author: grawlinson
Revision: 1228627

archrelease: copy trunk to community-any

Added:
  certbot-apache/repos/community-any/PKGBUILD
(from rev 1228626, certbot-apache/trunk/PKGBUILD)
Deleted:
  certbot-apache/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:46:53 UTC (rev 1228626)
+++ PKGBUILD2022-06-08 03:47:24 UTC (rev 1228627)
@@ -1,62 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-# Contributor: Gordian Edenhofer 
-
-pkgname=certbot-apache
-pkgver=1.27.0
-pkgrel=1
-pkgdesc='Apache plugin for Certbot'
-arch=('any')
-license=('Apache')
-url='https://pypi.python.org/pypi/certbot-apache'
-replaces=('letsencrypt-apache')
-depends=(
-  'certbot'
-  'python-acme'
-  'python-augeas'
-  'python-setuptools'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-)
-checkdepends=('python-pytest')
-source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('b46beff5305ac85fb2da558b25276d650425bd3f7d10d006d57ae8496a6b9f174fd05d089683edcda23a9323f224b99bb721793c3bf26af596982cec67466e82'
-'SKIP')
-b2sums=('cbef07fcbfd24519c7e9f3135fd370d35189bee7b8086c771c3eef5ee195e94fe942b9a547650a3c53010bb93b9f6661cfb02bd7e79efcf1e57422ee9de0e669'
-'SKIP')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" dist/*.whl
-}

Copied: certbot-apache/repos/community-any/PKGBUILD (from rev 1228626, 
certbot-apache/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:47:24 UTC (rev 1228627)
@@ -0,0 +1,62 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+# Contributor: Gordian Edenhofer 
+
+pkgname=certbot-apache
+pkgver=1.28.0
+pkgrel=1
+pkgdesc='Apache plugin for Certbot'
+arch=('any')
+license=('Apache')
+url='https://pypi.python.org/pypi/certbot-apache'
+replaces=('letsencrypt-apache')
+depends=(
+  'certbot'
+  'python-acme'
+  'python-augeas'
+  'python-setuptools'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
+  '20F201346BF8F3F455A73F9A780CC99432A28621'
+  'F2871B4152AE13C49519111F447BF683AA3B26C3')
+sha512sums=('a45d3ec5395e6671a2fddc8c77849a78d8bd049a844a58b52b62a973c863651f55292339740846fec12414133f24de57848805bfc86b05e2c046c701dcba99ad'
+'SKIP')
+b2sums=('fff48a81c243aa04cd6c4b15629becd8af23d19a01adf40b7a4bc635a13d60eac6970b00ca66cb02cbc1269c1b266f0db202e45083b0327c9a8852921ed83ccd'
+'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:46:53
  Author: grawlinson
Revision: 1228626

upgpkg: certbot-apache 1.28.0-1

Modified:
  certbot-apache/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:46:41 UTC (rev 1228625)
+++ PKGBUILD2022-06-08 03:46:53 UTC (rev 1228626)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot-apache
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc='Apache plugin for Certbot'
 arch=('any')
@@ -29,9 +29,9 @@
   '86379B4F0AF371B50CD9E5FF3402831161D1D280'
   '20F201346BF8F3F455A73F9A780CC99432A28621'
   'F2871B4152AE13C49519111F447BF683AA3B26C3')
-sha512sums=('b46beff5305ac85fb2da558b25276d650425bd3f7d10d006d57ae8496a6b9f174fd05d089683edcda23a9323f224b99bb721793c3bf26af596982cec67466e82'
+sha512sums=('a45d3ec5395e6671a2fddc8c77849a78d8bd049a844a58b52b62a973c863651f55292339740846fec12414133f24de57848805bfc86b05e2c046c701dcba99ad'
 'SKIP')
-b2sums=('cbef07fcbfd24519c7e9f3135fd370d35189bee7b8086c771c3eef5ee195e94fe942b9a547650a3c53010bb93b9f6661cfb02bd7e79efcf1e57422ee9de0e669'
+b2sums=('fff48a81c243aa04cd6c4b15629becd8af23d19a01adf40b7a4bc635a13d60eac6970b00ca66cb02cbc1269c1b266f0db202e45083b0327c9a8852921ed83ccd'
 'SKIP')
 
 prepare() {



[arch-commits] Commit in certbot/repos/community-any (10 files)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:46:41
  Author: grawlinson
Revision: 1228625

archrelease: copy trunk to community-any

Added:
  certbot/repos/community-any/86379B4F0AF371B50CD9E5FF3402831161D1D280.asc
(from rev 1228624, 
certbot/trunk/86379B4F0AF371B50CD9E5FF3402831161D1D280.asc)
  certbot/repos/community-any/PKGBUILD
(from rev 1228624, certbot/trunk/PKGBUILD)
  certbot/repos/community-any/certbot-renew.service
(from rev 1228624, certbot/trunk/certbot-renew.service)
  certbot/repos/community-any/certbot-renew.timer
(from rev 1228624, certbot/trunk/certbot-renew.timer)
  certbot/repos/community-any/tmpfiles.conf
(from rev 1228624, certbot/trunk/tmpfiles.conf)
Deleted:
  certbot/repos/community-any/86379B4F0AF371B50CD9E5FF3402831161D1D280.asc
  certbot/repos/community-any/PKGBUILD
  certbot/repos/community-any/certbot-renew.service
  certbot/repos/community-any/certbot-renew.timer
  certbot/repos/community-any/tmpfiles.conf

---+
 PKGBUILD  |  202 
 certbot-renew.service |   16 +--
 certbot-renew.timer   |   20 ++--
 tmpfiles.conf |6 -
 4 files changed, 122 insertions(+), 122 deletions(-)

Deleted: 86379B4F0AF371B50CD9E5FF3402831161D1D280.asc
===
(Binary files differ)

Copied: 
certbot/repos/community-any/86379B4F0AF371B50CD9E5FF3402831161D1D280.asc (from 
rev 1228624, certbot/trunk/86379B4F0AF371B50CD9E5FF3402831161D1D280.asc)
===
(Binary files differ)

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:45:46 UTC (rev 1228624)
+++ PKGBUILD2022-06-08 03:46:41 UTC (rev 1228625)
@@ -1,101 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-# Contributor: Gordian Edenhofer 
-
-pkgname=certbot
-pkgver=1.27.0
-pkgrel=1
-pkgdesc="An ACME client"
-arch=('any')
-license=('Apache')
-url="https://certbot.eff.org;
-depends=(
-  'ca-certificates'
-  'python-acme'
-  'python-configargparse'
-  'python-configobj'
-  'python-cryptography'
-  'python-distro'
-  'python-parsedatetime'
-  'python-pyrfc3339'
-  'python-pytz'
-  'python-setuptools'
-  'python-zope-component'
-  'python-zope-interface'
-)
-makedepends=(
-  'python-build'
-  'python-wheel'
-  'python-installer'
-  'python-sphinx'
-  'python-sphinx_rtd_theme'
-)
-checkdepends=('python-pytest')
-optdepends=(
-  'certbot-apache: Apache plugin for Let’s Encrypt client'
-  'certbot-nginx: Nginx plugin for Let’s Encrypt client'
-)
-replaces=('letsencrypt')
-source=(
-  
"https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc}
-  'tmpfiles.conf'
-  'certbot-renew.service'
-  'certbot-renew.timer'
-)
-sha512sums=('25b20d217543f70d14a4ebf5362babbe73c37224b570df4902e0be469e6f22a7b602422dd57fec9ff4aabae6f2e02d85c2bb93a9eec85524fa7c4002edce7d90'
-'SKIP'
-
'fbb7bb4591876aeb2e118c3f3fc8ff507b6a3127de0f921c689e1d74c70320b4f2b8bf05b488ec4f714259701f1ac54e64a9f6181475da6bd6d1e3da3a602217'
-
'ad639f33201089d5531d1b1dcd163e2f85bd84a6a9aa233bb04f1f86b34a4f9afa4aed274a27cc89a0664150e80af31742d425923015d585b781a8b139cb8954'
-
'471d371de385daf18f58a2e4eaed74f0d2d9931beb74ee28481ffb17ce4e4450752c135b920b6efd17a16f84f99fe38b69e6602e230ba09059f85390b08aaba1')
-b2sums=('d0a5dd92df8baf4eff98346ca59e47791a3b1ba996c697b56b49488fbea9ab70f045fe962c0976cee68400b532e4a8300ae0fe9ec2e03a4a98aae3bcaf996b68'
-'SKIP'
-
'7d2c26a9953d3b5a899053bdd7bd77051c67abe6480af2bfaaee06f20a399b0b4c0af35cfe9e6d2b1fc833dbff928ba46771a9127720073dda29aef9a2e0'
-
'773be7c45aaf84b79b260053dd4555be1b913238f680cf2c816e20d585db21c11ff41c985915ab0804bb3bc78af2e1e09133ed3b04e276e6379f63e9522064c1'
-
'a75e09a662be6ce1bc533c39bea8ecfd6c0feb3f0066db854de701c1af71534bca750ef5b50826446708823564945aac887649225d15a347efd864dd1e1a8e81')
-validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
-  '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
-  'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
-  '20F201346BF8F3F455A73F9A780CC99432A28621'
-  '86379B4F0AF371B50CD9E5FF3402831161D1D280'
-  'F2871B4152AE13C49519111F447BF683AA3B26C3')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  python -m build --wheel --no-isolation
-
-  # create man pages
-  make -C docs man
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  # systemd integration
-  install -vDm644 -t "$pkgdir/usr/lib/systemd/system" certbot-renew.*
-  install -vDm644 tmpfiles.conf "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
-
-  cd "$pkgname-$pkgver"
-
-  python -m installer --destdir="$pkgdir" 

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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:45:46
  Author: grawlinson
Revision: 1228624

upgpkg: certbot 1.28.0-1

Modified:
  certbot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:45:26 UTC (rev 1228623)
+++ PKGBUILD2022-06-08 03:45:46 UTC (rev 1228624)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=certbot
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc="An ACME client"
 arch=('any')
@@ -42,12 +42,12 @@
   'certbot-renew.service'
   'certbot-renew.timer'
 )
-sha512sums=('25b20d217543f70d14a4ebf5362babbe73c37224b570df4902e0be469e6f22a7b602422dd57fec9ff4aabae6f2e02d85c2bb93a9eec85524fa7c4002edce7d90'
+sha512sums=('102fcd727e864274e432123a134010204d60168bdacb7eaac3bb201fd60a628198651901591971321b56177f584ee2dea349c4102e38bd1bcfe4ac1597ecd8b1'
 'SKIP'
 
'fbb7bb4591876aeb2e118c3f3fc8ff507b6a3127de0f921c689e1d74c70320b4f2b8bf05b488ec4f714259701f1ac54e64a9f6181475da6bd6d1e3da3a602217'
 
'ad639f33201089d5531d1b1dcd163e2f85bd84a6a9aa233bb04f1f86b34a4f9afa4aed274a27cc89a0664150e80af31742d425923015d585b781a8b139cb8954'
 
'471d371de385daf18f58a2e4eaed74f0d2d9931beb74ee28481ffb17ce4e4450752c135b920b6efd17a16f84f99fe38b69e6602e230ba09059f85390b08aaba1')
-b2sums=('d0a5dd92df8baf4eff98346ca59e47791a3b1ba996c697b56b49488fbea9ab70f045fe962c0976cee68400b532e4a8300ae0fe9ec2e03a4a98aae3bcaf996b68'
+b2sums=('68545dd77852d9b85286a0fb81014f32f1d7c05d57872c04c6317af4fe6bfe9f002688d5329e6c865626daa3138e328b0b8661f37ea5b22866d05f5ffceff73c'
 'SKIP'
 
'7d2c26a9953d3b5a899053bdd7bd77051c67abe6480af2bfaaee06f20a399b0b4c0af35cfe9e6d2b1fc833dbff928ba46771a9127720073dda29aef9a2e0'
 
'773be7c45aaf84b79b260053dd4555be1b913238f680cf2c816e20d585db21c11ff41c985915ab0804bb3bc78af2e1e09133ed3b04e276e6379f63e9522064c1'



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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:45:26
  Author: grawlinson
Revision: 1228623

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:44:36 UTC (rev 1228622)
+++ PKGBUILD2022-06-08 03:45:26 UTC (rev 1228623)
@@ -1,62 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: Felix Yan 
-# Contributor: Gordian Edenhofer 
-
-pkgname=python-acme
-pkgver=1.27.0
-pkgrel=1
-pkgdesc='ACME protocol implementation in Python'
-arch=('any')
-license=('Apache')
-url='https://github.com/certbot/certbot'
-depends=(
-  'python-cryptography'
-  'python-josepy'
-  'python-pyopenssl'
-  'python-pyrfc3339'
-  'python-pytz'
-  'python-requests'
-  'python-requests-toolbelt'
-)
-makedepends=(
-  'python-setuptools'
-  'python-sphinx'
-  'python-sphinx_rtd_theme'
-)
-checkdepends=('python-pytest')
-source=("$pkgname-$pkgver.tar.gz::https://pypi.io/packages/source/a/acme/acme-$pkgver.tar.gz;)
-sha512sums=('25b6231f822a50ab64fbc8625a6db8995d21c8f0a654bad173db529b2221f5e6762ce5c877d91263d7f5b47bbb77a3ad3275565d55f1b22afcaf11823cf9')
-b2sums=('151e5195d7c334c9afc8b6a57270f46195fe89f7836e0c192dedb304ac690ae41f3a4f1aca99d6e5738745f1c887f479622ac345b547fd93acf30f067342')
-
-prepare() {
-  cd "acme-$pkgver"
-
-  # nuke setuptools from orbit ^W install_requires
-  sed \
--e '/setuptools>=/d' \
--i setup.py
-}
-
-build() {
-  cd "acme-$pkgver"
-
-  python setup.py build
-
-  # create man page
-  make -C docs man
-}
-
-check() {
-  cd "acme-$pkgver"
-
-  python -m pytest
-}
-
-package() {
-  cd "acme-$pkgver"
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  # man pages
-  install -vDm644 -t "$pkgdir/usr/share/man/man1" docs/_build/man/*.1
-}

Copied: python-acme/repos/community-any/PKGBUILD (from rev 1228622, 
python-acme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:45:26 UTC (rev 1228623)
@@ -0,0 +1,62 @@
+# Maintainer: George Rawlinson 
+# Contributor: Felix Yan 
+# Contributor: Gordian Edenhofer 
+
+pkgname=python-acme
+pkgver=1.28.0
+pkgrel=1
+pkgdesc='ACME protocol implementation in Python'
+arch=('any')
+license=('Apache')
+url='https://github.com/certbot/certbot'
+depends=(
+  'python-cryptography'
+  'python-josepy'
+  'python-pyopenssl'
+  'python-pyrfc3339'
+  'python-pytz'
+  'python-requests'
+  'python-requests-toolbelt'
+)
+makedepends=(
+  'python-setuptools'
+  'python-sphinx'
+  'python-sphinx_rtd_theme'
+)
+checkdepends=('python-pytest')
+source=("$pkgname-$pkgver.tar.gz::https://pypi.io/packages/source/a/acme/acme-$pkgver.tar.gz;)
+sha512sums=('13a2d418fb2d0c1a339c005a7e2c188f51aae66073334209e2bd63af9addff1fec59603114a2285c6e61b5be0b8a6797d70509b274a03186812c0e5e1528d367')
+b2sums=('425b8e01d91cf4420ec80af6aaa2cd7a1068d5ce4d5a95bd33853e359a1c5e04654b6790a493b6f83129aad32be335832c2a6237828e2e720f4b830ea82083cf')
+
+prepare() {
+  cd "acme-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+-e '/setuptools>=/d' \
+-i setup.py
+}
+
+build() {
+  cd "acme-$pkgver"
+
+  python setup.py build
+
+  # create man page
+  make -C docs man
+}
+
+check() {
+  cd "acme-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "acme-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  # man pages
+  install -vDm644 -t "$pkgdir/usr/share/man/man1" docs/_build/man/*.1
+}



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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 03:44:36
  Author: grawlinson
Revision: 1228622

upgpkg: python-acme 1.28.0-1

Modified:
  python-acme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 03:35:58 UTC (rev 1228621)
+++ PKGBUILD2022-06-08 03:44:36 UTC (rev 1228622)
@@ -3,7 +3,7 @@
 # Contributor: Gordian Edenhofer 
 
 pkgname=python-acme
-pkgver=1.27.0
+pkgver=1.28.0
 pkgrel=1
 pkgdesc='ACME protocol implementation in Python'
 arch=('any')
@@ -25,8 +25,8 @@
 )
 checkdepends=('python-pytest')
 
source=("$pkgname-$pkgver.tar.gz::https://pypi.io/packages/source/a/acme/acme-$pkgver.tar.gz;)
-sha512sums=('25b6231f822a50ab64fbc8625a6db8995d21c8f0a654bad173db529b2221f5e6762ce5c877d91263d7f5b47bbb77a3ad3275565d55f1b22afcaf11823cf9')
-b2sums=('151e5195d7c334c9afc8b6a57270f46195fe89f7836e0c192dedb304ac690ae41f3a4f1aca99d6e5738745f1c887f479622ac345b547fd93acf30f067342')
+sha512sums=('13a2d418fb2d0c1a339c005a7e2c188f51aae66073334209e2bd63af9addff1fec59603114a2285c6e61b5be0b8a6797d70509b274a03186812c0e5e1528d367')
+b2sums=('425b8e01d91cf4420ec80af6aaa2cd7a1068d5ce4d5a95bd33853e359a1c5e04654b6790a493b6f83129aad32be335832c2a6237828e2e720f4b830ea82083cf')
 
 prepare() {
   cd "acme-$pkgver"



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

2022-06-07 Thread Daniel M. Capella via arch-commits
Date: Wednesday, June 8, 2022 @ 03:35:58
  Author: polyzen
Revision: 1228621

archrelease: copy trunk to community-x86_64

Added:
  selene-linter/repos/community-x86_64/PKGBUILD
(from rev 1228620, selene-linter/trunk/PKGBUILD)
Deleted:
  selene-linter/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 03:35:30 UTC (rev 1228620)
+++ PKGBUILD2022-06-08 03:35:58 UTC (rev 1228621)
@@ -1,36 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-_name=selene
-pkgname=selene-linter
-pkgver=0.17.0
-pkgrel=1
-pkgdesc='Blazing-fast modern Lua linter written in Rust'
-arch=('x86_64')
-url=https://github.com/Kampfkarren/selene
-license=('MPL2')
-depends=('gcc-libs' 'openssl')
-makedepends=('rust')
-source=("$url/archive/$pkgver/$_name-$pkgver.tar.gz")
-b2sums=('60f2f5cb6d7becaa0137ad90e1b03ebd9f2e23dfed2c248fa59c87e1565c049c7298a8e2ffd6355571f7e696379d5c943193e5ab438b9c3f1a74b1b3a399cf6a')
-
-prepare() {
-  cd $_name-$pkgver
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-  cd $_name-$pkgver
-  cargo build --release --locked --offline
-}
-
-check() {
-  cd $_name-$pkgver
-  cargo test --locked --offline
-}
-
-package() {
-  cd $_name-$pkgver
-  install -Dt "$pkgdir"/usr/bin target/release/$_name
-}
-
-# vim:set ts=2 sw=2 et:

Copied: selene-linter/repos/community-x86_64/PKGBUILD (from rev 1228620, 
selene-linter/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 03:35:58 UTC (rev 1228621)
@@ -0,0 +1,37 @@
+# Maintainer: Daniel M. Capella 
+
+_name=selene
+pkgname=selene-linter
+pkgver=0.18.0
+pkgrel=1
+pkgdesc='Blazing-fast modern Lua linter written in Rust'
+arch=('x86_64')
+url=https://github.com/Kampfkarren/selene
+license=('MPL2')
+depends=('gcc-libs' 'openssl')
+makedepends=('rust')
+options=('!lto')
+source=("$url/archive/$pkgver/$_name-$pkgver.tar.gz")
+b2sums=('c2f7859287ff9c66323bd23472988acc813f0ca51f61536c9ce611578d12c20fd41dc77f070115b24a744ff254709f18c96e4cf28e35948e0c93447fc368cfd9')
+
+prepare() {
+  cd $_name-$pkgver
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+  cd $_name-$pkgver
+  cargo build --release --locked --offline
+}
+
+check() {
+  cd $_name-$pkgver
+  cargo test --locked --offline
+}
+
+package() {
+  cd $_name-$pkgver
+  install -Dt "$pkgdir"/usr/bin target/release/$_name
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-06-07 Thread Daniel M. Capella via arch-commits
Date: Wednesday, June 8, 2022 @ 03:35:30
  Author: polyzen
Revision: 1228620

upgpkg: selene-linter 0.18.0-1

Modified:
  selene-linter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 02:25:43 UTC (rev 1228619)
+++ PKGBUILD2022-06-08 03:35:30 UTC (rev 1228620)
@@ -2,7 +2,7 @@
 
 _name=selene
 pkgname=selene-linter
-pkgver=0.17.0
+pkgver=0.18.0
 pkgrel=1
 pkgdesc='Blazing-fast modern Lua linter written in Rust'
 arch=('x86_64')
@@ -10,8 +10,9 @@
 license=('MPL2')
 depends=('gcc-libs' 'openssl')
 makedepends=('rust')
+options=('!lto')
 source=("$url/archive/$pkgver/$_name-$pkgver.tar.gz")
-b2sums=('60f2f5cb6d7becaa0137ad90e1b03ebd9f2e23dfed2c248fa59c87e1565c049c7298a8e2ffd6355571f7e696379d5c943193e5ab438b9c3f1a74b1b3a399cf6a')
+b2sums=('c2f7859287ff9c66323bd23472988acc813f0ca51f61536c9ce611578d12c20fd41dc77f070115b24a744ff254709f18c96e4cf28e35948e0c93447fc368cfd9')
 
 prepare() {
   cd $_name-$pkgver



[arch-commits] Commit in python-jaraco.classes (3 files)

2022-06-07 Thread Chih-Hsuan Yen via arch-commits
Date: Wednesday, June 8, 2022 @ 02:25:43
  Author: yan12125
Revision: 1228619

archrelease: copy trunk to community-staging-any

Added:
  python-jaraco.classes/repos/
  python-jaraco.classes/repos/community-staging-any/
  python-jaraco.classes/repos/community-staging-any/PKGBUILD
(from rev 1228618, python-jaraco.classes/trunk/PKGBUILD)

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

Copied: python-jaraco.classes/repos/community-staging-any/PKGBUILD (from rev 
1228618, python-jaraco.classes/trunk/PKGBUILD)
===
--- repos/community-staging-any/PKGBUILD(rev 0)
+++ repos/community-staging-any/PKGBUILD2022-06-08 02:25:43 UTC (rev 
1228619)
@@ -0,0 +1,27 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Kyle Keen 
+
+pkgname=python-jaraco.classes
+pkgver=3.2.1
+pkgrel=1
+pkgdesc='Module for classes manipulation'
+arch=('any')
+url='https://github.com/jaraco/jaraco.classes'
+license=('MIT')
+depends=('python-more-itertools')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
+source=("https://files.pythonhosted.org/packages/source/j/jaraco.classes/jaraco.classes-$pkgver.tar.gz;)
+sha512sums=('4c85cfdd1da88de01596867365147be6cadd7e1d230798683236fdfde579747e3309aac95ae4f3ef86c91bb4493f3096c4ecc14e3db764ef308aab41ead88e23')
+
+build() {
+  cd "$srcdir/jaraco.classes-$pkgver"
+  python -m build --wheel --no-isolation
+}
+
+package() {
+  cd "$srcdir/jaraco.classes-$pkgver"
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (3 files)

2022-06-07 Thread Chih-Hsuan Yen via arch-commits
Date: Wednesday, June 8, 2022 @ 02:24:37
  Author: yan12125
Revision: 1228618

addpkg: python-jaraco.classes 3.2.1-1; split from python-jaraco

See: https://archlinux.org/todo/depend-on-specific-python-jaraco-package/

Added:
  python-jaraco.classes/
  python-jaraco.classes/trunk/
  python-jaraco.classes/trunk/PKGBUILD

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

Added: python-jaraco.classes/trunk/PKGBUILD
===
--- python-jaraco.classes/trunk/PKGBUILD(rev 0)
+++ python-jaraco.classes/trunk/PKGBUILD2022-06-08 02:24:37 UTC (rev 
1228618)
@@ -0,0 +1,27 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Kyle Keen 
+
+pkgname=python-jaraco.classes
+pkgver=3.2.1
+pkgrel=1
+pkgdesc='Module for classes manipulation'
+arch=('any')
+url='https://github.com/jaraco/jaraco.classes'
+license=('MIT')
+depends=('python-more-itertools')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
+source=("https://files.pythonhosted.org/packages/source/j/jaraco.classes/jaraco.classes-$pkgver.tar.gz;)
+sha512sums=('4c85cfdd1da88de01596867365147be6cadd7e1d230798683236fdfde579747e3309aac95ae4f3ef86c91bb4493f3096c4ecc14e3db764ef308aab41ead88e23')
+
+build() {
+  cd "$srcdir/jaraco.classes-$pkgver"
+  python -m build --wheel --no-isolation
+}
+
+package() {
+  cd "$srcdir/jaraco.classes-$pkgver"
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in python-jaraco.text (3 files)

2022-06-07 Thread Chih-Hsuan Yen via arch-commits
Date: Wednesday, June 8, 2022 @ 02:16:32
  Author: yan12125
Revision: 1228617

archrelease: copy trunk to community-staging-any

Added:
  python-jaraco.text/repos/
  python-jaraco.text/repos/community-staging-any/
  python-jaraco.text/repos/community-staging-any/PKGBUILD
(from rev 1228616, python-jaraco.text/trunk/PKGBUILD)

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

Copied: python-jaraco.text/repos/community-staging-any/PKGBUILD (from rev 
1228616, python-jaraco.text/trunk/PKGBUILD)
===
--- repos/community-staging-any/PKGBUILD(rev 0)
+++ repos/community-staging-any/PKGBUILD2022-06-08 02:16:32 UTC (rev 
1228617)
@@ -0,0 +1,28 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Kyle Keen 
+
+pkgname=python-jaraco.text
+pkgver=3.8.0
+pkgrel=1
+pkgdesc='Module for text manipulation'
+arch=('any')
+url='https://github.com/jaraco/jaraco.text'
+license=('MIT')
+depends=('python-jaraco.functools' 'python-jaraco.context')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
+conflicts=('python-jaraco')
+source=("https://files.pythonhosted.org/packages/source/j/jaraco.text/jaraco.text-$pkgver.tar.gz;)
+sha512sums=('3526f1371d8f2e7c79dff61941b1b4ead3d0f4b5144f0e22dbd098ec244b9ffddba4bbeaa0d817a80ff422fa5c7ae11d0959d3f56044d7c5f95d8c8a5de8ad2f')
+
+build() {
+  cd "$srcdir/jaraco.text-$pkgver"
+  python -m build --wheel --no-isolation
+}
+
+package() {
+  cd "$srcdir/jaraco.text-$pkgver"
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (3 files)

2022-06-07 Thread Chih-Hsuan Yen via arch-commits
Date: Wednesday, June 8, 2022 @ 02:16:10
  Author: yan12125
Revision: 1228616

addpkg: python-jaraco.text 3.8.0-1; split from python-jaraco

See: https://archlinux.org/todo/depend-on-specific-python-jaraco-package/

Added:
  python-jaraco.text/
  python-jaraco.text/trunk/
  python-jaraco.text/trunk/PKGBUILD

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

Added: python-jaraco.text/trunk/PKGBUILD
===
--- python-jaraco.text/trunk/PKGBUILD   (rev 0)
+++ python-jaraco.text/trunk/PKGBUILD   2022-06-08 02:16:10 UTC (rev 1228616)
@@ -0,0 +1,28 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Kyle Keen 
+
+pkgname=python-jaraco.text
+pkgver=3.8.0
+pkgrel=1
+pkgdesc='Module for text manipulation'
+arch=('any')
+url='https://github.com/jaraco/jaraco.text'
+license=('MIT')
+depends=('python-jaraco.functools' 'python-jaraco.context')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
+conflicts=('python-jaraco')
+source=("https://files.pythonhosted.org/packages/source/j/jaraco.text/jaraco.text-$pkgver.tar.gz;)
+sha512sums=('3526f1371d8f2e7c79dff61941b1b4ead3d0f4b5144f0e22dbd098ec244b9ffddba4bbeaa0d817a80ff422fa5c7ae11d0959d3f56044d7c5f95d8c8a5de8ad2f')
+
+build() {
+  cd "$srcdir/jaraco.text-$pkgver"
+  python -m build --wheel --no-isolation
+}
+
+package() {
+  cd "$srcdir/jaraco.text-$pkgver"
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in python-jaraco.functools (3 files)

2022-06-07 Thread Chih-Hsuan Yen via arch-commits
Date: Wednesday, June 8, 2022 @ 02:11:05
  Author: yan12125
Revision: 1228615

archrelease: copy trunk to community-staging-any

Added:
  python-jaraco.functools/repos/
  python-jaraco.functools/repos/community-staging-any/
  python-jaraco.functools/repos/community-staging-any/PKGBUILD
(from rev 1228614, python-jaraco.functools/trunk/PKGBUILD)

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

Copied: python-jaraco.functools/repos/community-staging-any/PKGBUILD (from rev 
1228614, python-jaraco.functools/trunk/PKGBUILD)
===
--- repos/community-staging-any/PKGBUILD(rev 0)
+++ repos/community-staging-any/PKGBUILD2022-06-08 02:11:05 UTC (rev 
1228615)
@@ -0,0 +1,28 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Kyle Keen 
+
+pkgname=python-jaraco.functools
+pkgver=3.5.0
+pkgrel=1
+pkgdesc='Functools like those found in stdlib'
+arch=('any')
+url='https://github.com/jaraco/jaraco.functools'
+license=('MIT')
+depends=('python-more-itertools')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
+conflicts=('python-jaraco')
+source=("https://files.pythonhosted.org/packages/source/j/jaraco.functools/jaraco.functools-$pkgver.tar.gz;)
+sha512sums=('7257f41506f90ca2fda1bd12fed58fa4d4ff5738547f8cdae8ccad1901e0c818afb701dd8e9050fc77ca1271bc2466d5a542990138bc3db2cf9b04d12850844c')
+
+build() {
+  cd "$srcdir/jaraco.functools-$pkgver"
+  python -m build --wheel --no-isolation
+}
+
+package() {
+  cd "$srcdir/jaraco.functools-$pkgver"
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (3 files)

2022-06-07 Thread Chih-Hsuan Yen via arch-commits
Date: Wednesday, June 8, 2022 @ 02:10:45
  Author: yan12125
Revision: 1228614

addpkg: python-jaraco.functools 3.5.0-1; split from python-jaraco

See: https://archlinux.org/todo/depend-on-specific-python-jaraco-package/

Added:
  python-jaraco.functools/
  python-jaraco.functools/trunk/
  python-jaraco.functools/trunk/PKGBUILD

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

Added: python-jaraco.functools/trunk/PKGBUILD
===
--- python-jaraco.functools/trunk/PKGBUILD  (rev 0)
+++ python-jaraco.functools/trunk/PKGBUILD  2022-06-08 02:10:45 UTC (rev 
1228614)
@@ -0,0 +1,28 @@
+# Maintainer: Chih-Hsuan Yen 
+# Contributor: Kyle Keen 
+
+pkgname=python-jaraco.functools
+pkgver=3.5.0
+pkgrel=1
+pkgdesc='Functools like those found in stdlib'
+arch=('any')
+url='https://github.com/jaraco/jaraco.functools'
+license=('MIT')
+depends=('python-more-itertools')
+makedepends=('python-build' 'python-installer' 'python-setuptools-scm' 
'python-wheel')
+conflicts=('python-jaraco')
+source=("https://files.pythonhosted.org/packages/source/j/jaraco.functools/jaraco.functools-$pkgver.tar.gz;)
+sha512sums=('7257f41506f90ca2fda1bd12fed58fa4d4ff5738547f8cdae8ccad1901e0c818afb701dd8e9050fc77ca1271bc2466d5a542990138bc3db2cf9b04d12850844c')
+
+build() {
+  cd "$srcdir/jaraco.functools-$pkgver"
+  python -m build --wheel --no-isolation
+}
+
+package() {
+  cd "$srcdir/jaraco.functools-$pkgver"
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 02:07:51
  Author: grawlinson
Revision: 1228613

archrelease: copy trunk to community-x86_64

Added:
  dagger/repos/community-x86_64/PKGBUILD
(from rev 1228612, dagger/trunk/PKGBUILD)
Deleted:
  dagger/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  126 ++---
 1 file changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 02:06:55 UTC (rev 1228612)
+++ PKGBUILD2022-06-08 02:07:51 UTC (rev 1228613)
@@ -1,63 +0,0 @@
-# Maintainer: George Rawlinson 
-
-pkgname=dagger
-pkgver=0.2.14
-pkgrel=1
-pkgdesc='A portable devkit for CI/CD pipelines'
-arch=('x86_64')
-url='https://dagger.io'
-license=('Apache')
-depends=('glibc')
-makedepends=('git' 'go')
-options=('!lto')
-_commit='a2eeac11b20d4b9003d380b8461f19ff281eabbf'
-source=("$pkgname::git+https://github.com/dagger/dagger.git#commit=$_commit;)
-b2sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  git describe --tags | sed 's/^v//'
-}
-
-prepare() {
-  cd "$pkgname"
-
-  # create directory for build output
-  mkdir build
-
-  # download dependencies
-  go mod download
-}
-
-build() {
-  cd "$pkgname"
-
-  # set Go flags
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-
-  go build -v \
--trimpath \
--buildmode=pie \
--mod=readonly \
--modcacherw \
--ldflags "-linkmode external -extldflags $LDFLAGS \
--X go.dagger.io/dagger/version.Revision=$_commit \
--X go.dagger.io/dagger/version.Version=$pkgver" \
--o build \
-./cmd/...
-}
-
-check() {
-  cd "$pkgname"
-
-  go test -v ./...
-}
-
-package() {
-  cd "$pkgname"
-
-  install -vDm755 -t "$pkgdir/usr/bin" build/dagger
-}

Copied: dagger/repos/community-x86_64/PKGBUILD (from rev 1228612, 
dagger/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 02:07:51 UTC (rev 1228613)
@@ -0,0 +1,63 @@
+# Maintainer: George Rawlinson 
+
+pkgname=dagger
+pkgver=0.2.17
+pkgrel=1
+pkgdesc='A portable devkit for CI/CD pipelines'
+arch=('x86_64')
+url='https://dagger.io'
+license=('Apache')
+depends=('glibc')
+makedepends=('git' 'go')
+options=('!lto')
+_commit='0bdc0bf916e684c905252c54b7ae2cd59386e9f4'
+source=("$pkgname::git+https://github.com/dagger/dagger.git#commit=$_commit;)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # create directory for build output
+  mkdir build
+
+  # download dependencies
+  go mod download
+}
+
+build() {
+  cd "$pkgname"
+
+  # set Go flags
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+
+  go build -v \
+-trimpath \
+-buildmode=pie \
+-mod=readonly \
+-modcacherw \
+-ldflags "-linkmode external -extldflags $LDFLAGS \
+-X go.dagger.io/dagger/version.Revision=$_commit \
+-X go.dagger.io/dagger/version.Version=$pkgver" \
+-o build \
+./cmd/...
+}
+
+check() {
+  cd "$pkgname"
+
+  go test -v ./...
+}
+
+package() {
+  cd "$pkgname"
+
+  install -vDm755 -t "$pkgdir/usr/bin" build/dagger
+}



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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 02:06:55
  Author: grawlinson
Revision: 1228612

archrelease: copy trunk to community-x86_64

Added:
  hck/repos/community-x86_64/PKGBUILD
(from rev 1228611, hck/trunk/PKGBUILD)
Deleted:
  hck/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 02:06:18 UTC (rev 1228611)
+++ PKGBUILD2022-06-08 02:06:55 UTC (rev 1228612)
@@ -1,54 +0,0 @@
-# Maintainer: George Rawlinson 
-# Contributor: aulonsal 
-
-pkgname=hck
-pkgver=0.7.2
-pkgrel=1
-pkgdesc='A drop in replacement for cut that can use a regex delimiter instead 
of a fixed string'
-arch=('x86_64')
-url='https://github.com/sstadick/hck'
-license=('Unlicense' 'MIT')
-depends=('gcc-libs')
-makedepends=('git' 'rust' 'cmake')
-options=('!lto')
-_commit='e2b95c02c6b0ba4ee77db5044696af4b75d310c1'
-source=("$pkgname::git+$url.git#commit=$_commit")
-md5sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  git describe --tags | sed 's/^v//'
-}
-
-prepare() {
-  cd "$pkgname"
-
-  # download dependencies
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-build() {
-   cd "$pkgname"
-
-   cargo build --release --frozen
-}
-
-check() {
-   cd "$pkgname"
-
-   cargo test --frozen
-}
-
-package() {
-   cd "$pkgname"
-
-  # binary
-  install -vDm755 -t "$pkgdir/usr/bin" target/release/hck
-
-  # documentation
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
-
-  # licenses
-   install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE-MIT 
UNLICENSE
-}

Copied: hck/repos/community-x86_64/PKGBUILD (from rev 1228611, 
hck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-06-08 02:06:55 UTC (rev 1228612)
@@ -0,0 +1,54 @@
+# Maintainer: George Rawlinson 
+# Contributor: aulonsal 
+
+pkgname=hck
+pkgver=0.7.5
+pkgrel=1
+pkgdesc='A drop in replacement for cut that can use a regex delimiter instead 
of a fixed string'
+arch=('x86_64')
+url='https://github.com/sstadick/hck'
+license=('Unlicense' 'MIT')
+depends=('gcc-libs')
+makedepends=('git' 'rust' 'cmake')
+options=('!lto')
+_commit='cf7cfb1c7c5c17098e0fe1b321af44122d45bff8'
+source=("$pkgname::git+$url.git#commit=$_commit")
+md5sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  cd "$pkgname"
+
+  # download dependencies
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+build() {
+   cd "$pkgname"
+
+   cargo build --release --frozen
+}
+
+check() {
+   cd "$pkgname"
+
+   cargo test --frozen
+}
+
+package() {
+   cd "$pkgname"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" target/release/hck
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+
+  # licenses
+   install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE-MIT 
UNLICENSE
+}



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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 02:06:18
  Author: grawlinson
Revision: 1228611

upgpkg: dagger 0.2.17-1

New upstream release.

Modified:
  dagger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 02:05:51 UTC (rev 1228610)
+++ PKGBUILD2022-06-08 02:06:18 UTC (rev 1228611)
@@ -1,7 +1,7 @@
 # Maintainer: George Rawlinson 
 
 pkgname=dagger
-pkgver=0.2.14
+pkgver=0.2.17
 pkgrel=1
 pkgdesc='A portable devkit for CI/CD pipelines'
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('glibc')
 makedepends=('git' 'go')
 options=('!lto')
-_commit='a2eeac11b20d4b9003d380b8461f19ff281eabbf'
+_commit='0bdc0bf916e684c905252c54b7ae2cd59386e9f4'
 source=("$pkgname::git+https://github.com/dagger/dagger.git#commit=$_commit;)
 b2sums=('SKIP')
 



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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 02:05:51
  Author: grawlinson
Revision: 1228610

upgpkg: hck 0.7.5-1

New upstream release.

Modified:
  hck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 02:02:37 UTC (rev 1228609)
+++ PKGBUILD2022-06-08 02:05:51 UTC (rev 1228610)
@@ -2,7 +2,7 @@
 # Contributor: aulonsal 
 
 pkgname=hck
-pkgver=0.7.2
+pkgver=0.7.5
 pkgrel=1
 pkgdesc='A drop in replacement for cut that can use a regex delimiter instead 
of a fixed string'
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('gcc-libs')
 makedepends=('git' 'rust' 'cmake')
 options=('!lto')
-_commit='e2b95c02c6b0ba4ee77db5044696af4b75d310c1'
+_commit='cf7cfb1c7c5c17098e0fe1b321af44122d45bff8'
 source=("$pkgname::git+$url.git#commit=$_commit")
 md5sums=('SKIP')
 



[arch-commits] Commit in nix/repos/community-x86_64 (14 files)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 02:02:37
  Author: grawlinson
Revision: 1228609

archrelease: copy trunk to community-x86_64

Added:
  nix/repos/community-x86_64/PKGBUILD
(from rev 1228608, nix/trunk/PKGBUILD)
  nix/repos/community-x86_64/nix.conf
(from rev 1228608, nix/trunk/nix.conf)
  nix/repos/community-x86_64/nix.install
(from rev 1228608, nix/trunk/nix.install)
  nix/repos/community-x86_64/sysusers.conf
(from rev 1228608, nix/trunk/sysusers.conf)
  nix/repos/community-x86_64/tmpfiles.conf
(from rev 1228608, nix/trunk/tmpfiles.conf)
  nix/repos/community-x86_64/user.environment.conf
(from rev 1228608, nix/trunk/user.environment.conf)
  nix/repos/community-x86_64/user.tmpfiles.conf
(from rev 1228608, nix/trunk/user.tmpfiles.conf)
Deleted:
  nix/repos/community-x86_64/PKGBUILD
  nix/repos/community-x86_64/nix.conf
  nix/repos/community-x86_64/nix.install
  nix/repos/community-x86_64/sysusers.conf
  nix/repos/community-x86_64/tmpfiles.conf
  nix/repos/community-x86_64/user.environment.conf
  nix/repos/community-x86_64/user.tmpfiles.conf

---+
 PKGBUILD  |  265 
 nix.conf  |   18 +--
 nix.install   |   18 +--
 sysusers.conf |   54 -
 tmpfiles.conf |8 -
 user.environment.conf |6 -
 user.tmpfiles.conf|   10 -
 7 files changed, 190 insertions(+), 189 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-06-08 02:00:51 UTC (rev 1228608)
+++ PKGBUILD2022-06-08 02:02:37 UTC (rev 1228609)
@@ -1,132 +0,0 @@
-# Maintainer: George Rawlinson 
-# Maintainer: Caleb Maclennan 
-
-pkgbase=nix
-pkgname=('nix' 'nix-docs')
-pkgver=2.9.0
-_commit='daa14b89103b1246e8d7297ffe8ac5b4f4c8c45c'
-pkgrel=1
-pkgdesc='A purely functional package manager'
-arch=('x86_64')
-url='https://nixos.org/nix'
-license=('LGPL')
-makedepends=(
-  'git'
-  'autoconf-archive'
-  'jq'
-  'libcpuid'
-  'gtest'
-  'lowdown'
-  'mdbook'
-  'boost'
-  'brotli'
-  'bzip2'
-  'curl'
-  'editline'
-  'gc'
-  'libseccomp'
-  'libsodium'
-  'nlohmann-json'
-  'openssl'
-  'sqlite'
-)
-source=(
-  "$pkgbase::git+https://github.com/NixOS/nix.git#commit=$_commit;
-  'nix.conf'
-  'sysusers.conf'
-  'tmpfiles.conf'
-  'user.environment.conf'
-  'user.tmpfiles.conf'
-)
-sha512sums=('SKIP'
-
'46fdd1134626da81f0ec3ada47b69bb803277e8dd379052db5d8606475f5ff7ece63c8ae41b5f8ba6d2174465e1e977212c648a11c853b199e11b2014789a661'
-
'6511badd6e4c71d9b7f6e6a87ea521a9727a5569ecf48dca11ee0d04151adf083453dcf7e05eadd5c28278fd8aee9fe44bbb90067f5fc8067c99c5e9665affd9'
-
'879bc28faf877a560ac67500388d9774ec890391ef08d367a18f98ef17faeef8c7d208e747fed1fd501b07c3a3b2286af436eb1bd137de2d8ea9a9c32b48088a'
-
'5f66bbb07912fb5eb52002558ca5eec49e8b7787787c3fbb3ec7cb9831d29f1f064c392dd68807e98bc3a45fa6be87a5d420f75b7cfd52f68a821616e4cdbe70'
-
'da5b6d449f8e69c9211e6bd97b1ce4c6e398da5a34fea9a8a89a28084489a1549188e52f66ce7536903afeb75e690e764188daac20a16227b66cc14a72b7311a')
-b2sums=('SKIP'
-
'e79ceeb12faf7c38a167857ded355a74511c1d98e7fcb1efb589072c16b35f017239e6723bad04e13ed5b16cbebc91923363e36c130bf51d06a66a4d4ef54f6b'
-
'e92b8192bae89f0bc8c62371fbe63b4bfd68352699e5ea6900bf4313fd573322a06cb85074b292a005cbf644a50abbb67694f9458f071b0fd223d220494f6b6c'
-
'bffaabbe8c9efee79c7761e72a189796f35c0a40805b53fe954c10590ab9bfd0a321b45c7050ddf30810e36fa4431768f36f19fdc55085c0396ac5338b88f839'
-
'b644b6313745dca057e265281c318982750e9d55ce9b7705f47832ae66f07006cec97e9cbd79bb918a4c1174c8d20c159f8874d212381596f6fb684cb8ea928d'
-
'57610fc5fa370f9c3df50ab411dfe154b273349b3b321ad01768cacdf371e27603e8446a4e4269ccf4ca6cdb59b4a70fdcac59cda29c47eb7e7224555ec7e2e2')
-
-pkgver() {
-  cd "$pkgbase"
-
-  git describe --tags
-}
-
-prepare() {
-  cd "$pkgbase"
-
-  sed -i "s:\$(bindir):src/nix:g" doc/manual/local.mk
-}
-
-build() {
-  cd "$pkgbase"
-
-  ./bootstrap.sh
-
-  ./configure \
---prefix=/usr \
---libexecdir="/usr/lib/$pkgname" \
---sysconfdir=/etc \
---localstatedir=/nix/var \
---with-sandbox-shell=/usr/lib/nix/busybox \
---enable-gc
-
-  make
-}
-
-package_nix() {
-  depends=(
-'boost-libs'
-'brotli'
-'curl'
-'editline'
-'gc'
-'libarchive'
-'libcpuid'
-'lowdown'
-'libseccomp'
-'libsodium'
-'nix-busybox'
-'openssl'
-'sqlite'
-  )
-  backup=("etc/$pkgname/$pkgname.conf")
-  install="$pkgname.install"
-
-  # systemd integration
-  install -vDm644 tmpfiles.conf 
"$pkgdir/usr/lib/tmpfiles.d/$pkgname-daemon.conf"
-  install -vDm644 sysusers.conf 
"$pkgdir/usr/lib/sysusers.d/$pkgname-daemon.conf"
-  install -vDm644 user.tmpfiles.conf 
"$pkgdir/usr/share/user-tmpfiles.d/$pkgname-daemon.conf"
-  install -vDm644 user.environment.conf 
"$pkgdir/usr/lib/environment.d/$pkgname-daemon.conf"
-
-  # configuration
-  

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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 02:00:51
  Author: grawlinson
Revision: 1228608

upgpkg: nix 2.9.1-1

* New upstream release.
* Added missing makedepends: nix-busybox.

Modified:
  nix/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-06-08 01:32:38 UTC (rev 1228607)
+++ PKGBUILD2022-06-08 02:00:51 UTC (rev 1228608)
@@ -3,8 +3,8 @@
 
 pkgbase=nix
 pkgname=('nix' 'nix-docs')
-pkgver=2.9.0
-_commit='daa14b89103b1246e8d7297ffe8ac5b4f4c8c45c'
+pkgver=2.9.1
+_commit='624e38aa43f304fbb78b4779172809add042b513'
 pkgrel=1
 pkgdesc='A purely functional package manager'
 arch=('x86_64')
@@ -29,6 +29,7 @@
   'nlohmann-json'
   'openssl'
   'sqlite'
+  'nix-busybox'
 )
 source=(
   "$pkgbase::git+https://github.com/NixOS/nix.git#commit=$_commit;



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

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 01:32:38
  Author: grawlinson
Revision: 1228607

archrelease: copy trunk to community-any

Added:
  python-psycopg-pool/repos/community-any/
  python-psycopg-pool/repos/community-any/PKGBUILD
(from rev 1228606, python-psycopg-pool/trunk/PKGBUILD)

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

Copied: python-psycopg-pool/repos/community-any/PKGBUILD (from rev 1228606, 
python-psycopg-pool/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2022-06-08 01:32:38 UTC (rev 1228607)
@@ -0,0 +1,35 @@
+# Maintainer: George Rawlinson 
+# Contributor: Guillaume Horel 
+
+pkgname=python-psycopg-pool
+# source is shared with python-psycopg package, hence the weird naming
+_pkgname=python-psycopg
+pkgver=3.1.1
+pkgrel=2
+pkgdesc='Connection pool for psycopg'
+arch=('any')
+url='https://www.psycopg.org/psycopg3/'
+license=('LGPL3')
+depends=('python' 'python-psycopg')
+makedepends=('git' 'python-setuptools')
+_commit='fe5d33d573724fc80945fca1d1c7da22d822dab5'
+source=("$_pkgname::git+https://github.com/psycopg/psycopg.git#commit=$_commit;)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$_pkgname"
+
+  git describe --tags | sed 's/^pool-//'
+}
+
+build(){
+  cd "$_pkgname/psycopg_pool"
+
+  python setup.py build
+}
+
+package(){
+  cd "$_pkgname/psycopg_pool"
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



[arch-commits] Commit in (4 files)

2022-06-07 Thread George Rawlinson via arch-commits
Date: Wednesday, June 8, 2022 @ 01:32:01
  Author: grawlinson
Revision: 1228606

addpkg: python-psycopg-pool 3.1.1-2

Added:
  python-psycopg-pool/
  python-psycopg-pool/repos/
  python-psycopg-pool/trunk/
  python-psycopg-pool/trunk/PKGBUILD

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

Added: python-psycopg-pool/trunk/PKGBUILD
===
--- python-psycopg-pool/trunk/PKGBUILD  (rev 0)
+++ python-psycopg-pool/trunk/PKGBUILD  2022-06-08 01:32:01 UTC (rev 1228606)
@@ -0,0 +1,35 @@
+# Maintainer: George Rawlinson 
+# Contributor: Guillaume Horel 
+
+pkgname=python-psycopg-pool
+# source is shared with python-psycopg package, hence the weird naming
+_pkgname=python-psycopg
+pkgver=3.1.1
+pkgrel=2
+pkgdesc='Connection pool for psycopg'
+arch=('any')
+url='https://www.psycopg.org/psycopg3/'
+license=('LGPL3')
+depends=('python' 'python-psycopg')
+makedepends=('git' 'python-setuptools')
+_commit='fe5d33d573724fc80945fca1d1c7da22d822dab5'
+source=("$_pkgname::git+https://github.com/psycopg/psycopg.git#commit=$_commit;)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$_pkgname"
+
+  git describe --tags | sed 's/^pool-//'
+}
+
+build(){
+  cd "$_pkgname/psycopg_pool"
+
+  python setup.py build
+}
+
+package(){
+  cd "$_pkgname/psycopg_pool"
+
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}



  1   2   3   4   5   6   7   8   9   >