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

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:56:51
  Author: felixonmars
Revision: 1276001

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 1276000, pandoc/trunk/PKGBUILD)

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 1276000, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-24 05:56:51 UTC (rev 1276001)
@@ -0,0 +1,69 @@
+# Maintainer: Felix Yan 
+# Maintainer: Caleb Maclennan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.18
+pkgrel=32
+pkgdesc='Conversion between markup formats'
+url='https://pandoc.org'
+license=('GPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-glob' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-attoparsec' 
'haskell-base64-bytestring'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-case-insensitive' 'haskell-citeproc'
+ 'haskell-commonmark' 'haskell-commonmark-extensions' 
'haskell-commonmark-pandoc'
+ 'haskell-connection' 'haskell-data-default' 'haskell-doclayout' 
'haskell-doctemplates'
+ 'haskell-emojis' 'haskell-file-embed' 'haskell-haddock-library' 
'haskell-hslua'
+ 'haskell-hslua-module-doclayout' 'haskell-hslua-module-path' 
'haskell-hslua-module-system'
+ 'haskell-hslua-module-text' 'haskell-hslua-module-version' 
'haskell-http-client'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-ipynb' 
'haskell-jira-wiki-markup'
+ 'haskell-lpeg' 'haskell-network' 'haskell-network-uri' 
'haskell-pandoc-lua-marshal'
+ 'haskell-pandoc-types' 'haskell-pretty-show' 'haskell-random' 
'haskell-safe'
+ 'haskell-scientific' 'haskell-skylighting' 'haskell-skylighting-core' 
'haskell-split'
+ 'haskell-syb' 'haskell-tagsoup' 'haskell-temporary' 'haskell-texmath'
+ 'haskell-text-conversions' 'haskell-unicode-collation' 
'haskell-unicode-transforms'
+ 'haskell-xml' 'haskell-xml-conduit' 'haskell-xml-types' 'haskell-yaml'
+ 'haskell-zip-archive' 'haskell-zlib')
+optdepends=('pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-golden' 
'haskell-tasty-hunit'
+ 'haskell-tasty-lua' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('0e8210a37dda6818b23b9fac25b73b240d67f8e03c41d1f3a776dcf95d7fdf48354a25c08ad64eea069003f4ab7a3167ee9c3e80d4f6684ad6ec33d8c477d212')
+
+prepare() {
+cd $pkgname-$pkgver
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.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-trypandoc -f-embed_data_files -f-static
+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
+LC_CTYPE=en_US.UTF-8 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}"
+rm "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+install -Dm644 man/pandoc.1 -t "${pkgdir}"/usr/share/man/man1/
+}



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:56:36
  Author: felixonmars
Revision: 1276000

upgpkg: pandoc 2.18-32: rebuild with tree-diff 0.2.2

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-24 05:52:21 UTC (rev 1275999)
+++ PKGBUILD2022-08-24 05:56:36 UTC (rev 1276000)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc
 pkgver=2.18
-pkgrel=31
+pkgrel=32
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:52:21
  Author: felixonmars
Revision: 1275999

archrelease: copy trunk to community-staging-x86_64

Added:
  cabal-plan/repos/community-staging-x86_64/
  cabal-plan/repos/community-staging-x86_64/PKGBUILD
(from rev 1275998, cabal-plan/trunk/PKGBUILD)

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

Copied: cabal-plan/repos/community-staging-x86_64/PKGBUILD (from rev 1275998, 
cabal-plan/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-24 05:52:21 UTC (rev 1275999)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=cabal-plan
+pkgname=cabal-plan
+pkgver=0.7.2.0
+pkgrel=183
+pkgdesc="Library and utility for processing cabal's plan.json file"
+url="https://github.com/hvr/cabal-plan;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 'haskell-async' 
'haskell-base-compat'
+ 'haskell-base16-bytestring' 'haskell-cabal-install-parsers' 
'haskell-optics-core'
+ 'haskell-optparse-applicative' 'haskell-semialign' 
'haskell-singleton-bool' 'haskell-tar'
+ 'haskell-these' 'haskell-topograph' 'haskell-vector' 'haskell-zlib')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('233a3d1460732fe3486169023758e431d37c5c9156fb28d829decaf7b9170f85')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  uusi -u base -u base-compat -u Cabal -u optics-core -u semialign 
$_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' \
+-fexe -flicense-report
+
+  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"
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE.GPLv2
+}



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:52:08
  Author: felixonmars
Revision: 1275998

upgpkg: cabal-plan 0.7.2.0-183: rebuild with tree-diff 0.2.2

Modified:
  cabal-plan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-24 05:48:43 UTC (rev 1275997)
+++ PKGBUILD2022-08-24 05:52:08 UTC (rev 1275998)
@@ -3,7 +3,7 @@
 _hkgname=cabal-plan
 pkgname=cabal-plan
 pkgver=0.7.2.0
-pkgrel=182
+pkgrel=183
 pkgdesc="Library and utility for processing cabal's plan.json file"
 url="https://github.com/hvr/cabal-plan;
 license=("GPL")



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:48:43
  Author: felixonmars
Revision: 1275997

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-summoner-tui/repos/community-staging-x86_64/
  haskell-summoner-tui/repos/community-staging-x86_64/PKGBUILD
(from rev 1275996, haskell-summoner-tui/trunk/PKGBUILD)

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

Copied: haskell-summoner-tui/repos/community-staging-x86_64/PKGBUILD (from rev 
1275996, haskell-summoner-tui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-24 05:48:43 UTC (rev 1275997)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: berberman 
+
+_hkgname=summoner-tui
+pkgname=haskell-summoner-tui
+pkgver=2.0.1.1
+pkgrel=389
+pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects using TUI."
+url="https://github.com/kowainik/summoner;
+license=('MPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-brick' 'haskell-colourista' 'haskell-microlens' 
'haskell-microlens-th'
+ 'haskell-relude' 'haskell-summoner' 'haskell-validation-selective' 
'haskell-vty')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('9f840f25d72c54b4b5ed0c5e6755e52ca71e9961759de6bd0046d567bd1f2c27')
+
+prepare(){
+  cd $_hkgname-$pkgver
+  uusi -u base -u brick -u vty $_hkgname.cabal
+  gen-setup
+  sed -i 's|renderCheckbox :: Bool -> String|renderCheckbox :: (Ord n) => Bool 
-> String|' src/Summoner/Tui/Field.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
+  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-summoner-tui/trunk (PKGBUILD)

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:48:29
  Author: felixonmars
Revision: 1275996

upgpkg: haskell-summoner-tui 2.0.1.1-389: rebuild with tree-diff 0.2.2

Modified:
  haskell-summoner-tui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-24 05:48:14 UTC (rev 1275995)
+++ PKGBUILD2022-08-24 05:48:29 UTC (rev 1275996)
@@ -4,7 +4,7 @@
 _hkgname=summoner-tui
 pkgname=haskell-summoner-tui
 pkgver=2.0.1.1
-pkgrel=388
+pkgrel=389
 pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects using TUI."
 url="https://github.com/kowainik/summoner;
 license=('MPL2')



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:48:14
  Author: felixonmars
Revision: 1275995

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-cabal-install-parsers/repos/community-staging-x86_64/
  haskell-cabal-install-parsers/repos/community-staging-x86_64/PKGBUILD
(from rev 1275994, haskell-cabal-install-parsers/trunk/PKGBUILD)

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

Copied: haskell-cabal-install-parsers/repos/community-staging-x86_64/PKGBUILD 
(from rev 1275994, haskell-cabal-install-parsers/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-24 05:48:14 UTC (rev 1275995)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+
+_hkgname=cabal-install-parsers
+pkgname=haskell-cabal-install-parsers
+pkgver=0.4.2
+pkgrel=150
+pkgdesc="Utilities to work with cabal-install files"
+url="https://haskell-ci.rtfd.org/;
+license=("GPL" "BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base16-bytestring' 
'haskell-binary-instances'
+ 'haskell-cryptohash-sha256' 'haskell-lukko' 'haskell-network-uri' 
'haskell-tar')
+makedepends=('ghc' 'uusi' 'haskell-ansi-terminal' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tree-diff')
+checkdepends=('cabal-install')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('f41dd0fe65994330aca0b372f96e370eeaf5b7f9909682aa7d394244e4144358b70e482b2d4cd54ba78068b202155fb6dacd38b81eadeaa877c6bc5bbf2ba8fb')
+
+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
+  cabal update  # Generate cabal config for tests
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:48:00
  Author: felixonmars
Revision: 1275994

upgpkg: haskell-cabal-install-parsers 0.4.2-150: rebuild with tree-diff 0.2.2

Modified:
  haskell-cabal-install-parsers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-24 05:47:51 UTC (rev 1275993)
+++ PKGBUILD2022-08-24 05:48:00 UTC (rev 1275994)
@@ -3,7 +3,7 @@
 _hkgname=cabal-install-parsers
 pkgname=haskell-cabal-install-parsers
 pkgver=0.4.2
-pkgrel=149
+pkgrel=150
 pkgdesc="Utilities to work with cabal-install files"
 url="https://haskell-ci.rtfd.org/;
 license=("GPL" "BSD")



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:47:51
  Author: felixonmars
Revision: 1275993

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-haddock-library/repos/community-staging-x86_64/
  haskell-haddock-library/repos/community-staging-x86_64/PKGBUILD
(from rev 1275992, haskell-haddock-library/trunk/PKGBUILD)

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

Copied: haskell-haddock-library/repos/community-staging-x86_64/PKGBUILD (from 
rev 1275992, haskell-haddock-library/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-24 05:47:51 UTC (rev 1275993)
@@ -0,0 +1,48 @@
+# Maintainer: Sergej Pupykin 
+
+_hkgname=haddock-library
+pkgname=haskell-haddock-library
+pkgver=1.10.0
+pkgrel=159
+pkgdesc="A documentation-generation tool for Haskell libraries"
+url="https://www.haskell.org/haddock/;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs')
+makedepends=('ghc' 'uusi' 'haskell-base-compat' 'haskell-hspec' 
'haskell-hspec-discover'
+ 'haskell-quickcheck' 'haskell-optparse-applicative' 
'haskell-tree-diff')
+source=("https://hackage.haskell.org/packages/archive/haddock-library/${pkgver}/haddock-library-${pkgver}.tar.gz;)
+sha512sums=('dac536a2b8e2764de1a1b1a16fc328e15455656c2992fb3b3bccdeae2bb6ac81fe94e164aa2a70cff7cea3b97347b8510aadb5fa1c0564bb2429947f0aace0d1')
+
+prepare() {
+cd $_hkgname-$pkgver
+uusi -u base-compat -u tree-diff -u QuickCheck -u hspec -u 
optparse-applicative $_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
+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-haddock-library/trunk (PKGBUILD)

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:47:36
  Author: felixonmars
Revision: 1275992

upgpkg: haskell-haddock-library 1.10.0-159: rebuild with tree-diff 0.2.2

Modified:
  haskell-haddock-library/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-24 05:47:25 UTC (rev 1275991)
+++ PKGBUILD2022-08-24 05:47:36 UTC (rev 1275992)
@@ -3,7 +3,7 @@
 _hkgname=haddock-library
 pkgname=haskell-haddock-library
 pkgver=1.10.0
-pkgrel=158
+pkgrel=159
 pkgdesc="A documentation-generation tool for Haskell libraries"
 url="https://www.haskell.org/haddock/;
 license=("BSD")



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:47:25
  Author: felixonmars
Revision: 1275991

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-summoner/repos/community-staging-x86_64/PKGBUILD (from rev 
1275990, haskell-summoner/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-24 05:47:25 UTC (rev 1275991)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: berberman 
+
+_hkgname=summoner
+pkgname=haskell-summoner
+pkgver=2.0.1.1
+pkgrel=347
+pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects."
+url="https://github.com/kowainik/summoner;
+license=('MPL2')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-colourista' 
'haskell-generic-data' 'haskell-gitrev'
+ 'haskell-neat-interpolation' 'haskell-optparse-applicative' 
'haskell-relude'
+ 'haskell-shellmet' 'haskell-tomland' 'haskell-validation-selective')
+makedepends=('ghc' 'uusi' 'haskell-hedgehog' 'haskell-hspec' 
'haskell-hspec-hedgehog' 'haskell-tree-diff')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('5b6eee2848e2fb0b65d34f4a980ecd6e7766629a42394348dc2166e2216fc496')
+
+prepare(){
+  cd $_hkgname-$pkgver
+  echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+  uusi $_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 || :
+}
+
+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-summoner/trunk (PKGBUILD)

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:47:11
  Author: felixonmars
Revision: 1275990

upgpkg: haskell-summoner 2.0.1.1-347: rebuild with tree-diff 0.2.2

Modified:
  haskell-summoner/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-24 05:46:13 UTC (rev 1275989)
+++ PKGBUILD2022-08-24 05:47:11 UTC (rev 1275990)
@@ -4,7 +4,7 @@
 _hkgname=summoner
 pkgname=haskell-summoner
 pkgver=2.0.1.1
-pkgrel=346
+pkgrel=347
 pkgdesc="Tool for scaffolding fully configured batteries-included 
production-level Haskell projects."
 url="https://github.com/kowainik/summoner;
 license=('MPL2')



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:46:13
  Author: felixonmars
Revision: 1275989

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-tree-diff/repos/community-staging-x86_64/
  haskell-tree-diff/repos/community-staging-x86_64/PKGBUILD
(from rev 1275988, haskell-tree-diff/trunk/PKGBUILD)

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

Copied: haskell-tree-diff/repos/community-staging-x86_64/PKGBUILD (from rev 
1275988, haskell-tree-diff/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-24 05:46:13 UTC (rev 1275989)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=tree-diff
+pkgname=haskell-tree-diff
+pkgver=0.2.2
+pkgrel=1
+pkgdesc="Diffing of (expression) trees"
+url="https://github.com/phadej/tree-diff;
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-base-compat' 'haskell-hashable' 'haskell-parsers' 
'haskell-primitive'
+ 'haskell-quickcheck' 'haskell-scientific' 'haskell-semialign' 
'haskell-strict'
+ 'haskell-tagged' 'haskell-these' 'haskell-unordered-containers' 
'haskell-uuid-types'
+ 'haskell-vector')
+makedepends=('ghc' 'uusi' 'haskell-trifecta' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-quickcheck')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('ee93932dc26924c74dd6a43bad75cde5b300f5e10ec714c22ee262161c750ad0bbc43be2c7bd0f9ff1e27455df0720bf9cc8257ff71fd612413204f3522fb196')
+
+prepare() {
+cd $_hkgname-$pkgver
+gen-setup
+uusi -d bytestring-builder $_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
+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-tree-diff/trunk (PKGBUILD)

2022-08-23 Thread Felix Yan via arch-commits
Date: Wednesday, August 24, 2022 @ 05:45:59
  Author: felixonmars
Revision: 1275988

upgpkg: haskell-tree-diff 0.2.2-1: rebuild with tree-diff 0.2.2

Modified:
  haskell-tree-diff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-24 05:39:05 UTC (rev 1275987)
+++ PKGBUILD2022-08-24 05:45:59 UTC (rev 1275988)
@@ -2,8 +2,8 @@
 
 _hkgname=tree-diff
 pkgname=haskell-tree-diff
-pkgver=0.2.1.1
-pkgrel=83
+pkgver=0.2.2
+pkgrel=1
 pkgdesc="Diffing of (expression) trees"
 url="https://github.com/phadej/tree-diff;
 license=('BSD')
@@ -16,12 +16,12 @@
 makedepends=('ghc' 'uusi' 'haskell-trifecta' 'haskell-tasty' 
'haskell-tasty-golden'
  'haskell-tasty-quickcheck')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('07bd947b145ebf894a5f830601529517d003bf4b0ffc9581c8204d710ed8d3941f764376add84ab1757c7d3544e984166115f37c1348a32123d99aea816a0686')
+sha512sums=('ee93932dc26924c74dd6a43bad75cde5b300f5e10ec714c22ee262161c750ad0bbc43be2c7bd0f9ff1e27455df0720bf9cc8257ff71fd612413204f3522fb196')
 
 prepare() {
 cd $_hkgname-$pkgver
 gen-setup
-uusi -d bytestring-builder -u hashable $_hkgname.cabal
+uusi -d bytestring-builder $_hkgname.cabal
 }
 
 build() {



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

2022-08-23 Thread Daniel M. Capella via arch-commits
Date: Wednesday, August 24, 2022 @ 03:44:43
  Author: polyzen
Revision: 1275970

archrelease: copy trunk to community-any

Added:
  dark-reader/repos/community-any/PKGBUILD
(from rev 1275969, dark-reader/trunk/PKGBUILD)
Deleted:
  dark-reader/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-24 03:44:12 UTC (rev 1275969)
+++ PKGBUILD2022-08-24 03:44:43 UTC (rev 1275970)
@@ -1,50 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Cookie Engineer 
-
-pkgname=('dark-reader' 'firefox-dark-reader' 'thunderbird-dark-reader')
-pkgbase=dark-reader
-pkgver=4.9.56
-pkgrel=1
-pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
-arch=('any')
-url=https://darkreader.org/
-license=('MIT')
-makedepends=('npm' 'strip-nondeterminism')
-source=("https://github.com/darkreader/darkreader/archive/v$pkgver/darkreader-$pkgver.tar.gz;)
-b2sums=('c57c016e5ed89af3dd53303228c77a7dbf4b5bcbf4beaa51123a85b36cba34a22399fed78d1c38208d2a86fa27e7fa994c2207f1428601b526c74c6c4af13cdc')
-
-prepare() {
-  cd darkreader-$pkgver
-  npm ci
-}
-
-build() {
-  cd darkreader-$pkgver
-  npm run build
-  strip-nondeterminism -t zip build/release/*.xpi
-}
-
-check() {
-  cd darkreader-$pkgver
-  npm test
-}
-
-package_dark-reader() {
-  pkgdesc+=' (unpacked webextension)'
-  cd darkreader-$pkgver/build/release/chrome
-  install -d "$pkgdir"/usr/lib/$pkgbase
-  cp -r -- * "$pkgdir"/usr/lib/$pkgbase
-}
-
-package_firefox-dark-reader() {
-  groups=('firefox-addons')
-  cd darkreader-$pkgver/build/release
-  install -Dm644 darkreader-firefox.xpi \
-"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
-}
-
-package_thunderbird-dark-reader() {
-  cd darkreader-$pkgver/build/release
-  install -Dm644 darkreader-thunderbird.xpi \
-"$pkgdir"/usr/lib/thunderbird/extensions/ad...@darkreader.org.xpi
-}

Copied: dark-reader/repos/community-any/PKGBUILD (from rev 1275969, 
dark-reader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-24 03:44:43 UTC (rev 1275970)
@@ -0,0 +1,50 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Cookie Engineer 
+
+pkgname=('dark-reader' 'firefox-dark-reader' 'thunderbird-dark-reader')
+pkgbase=dark-reader
+pkgver=4.9.57
+pkgrel=1
+pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
+arch=('any')
+url=https://darkreader.org/
+license=('MIT')
+makedepends=('npm' 'strip-nondeterminism')
+source=("https://github.com/darkreader/darkreader/archive/v$pkgver/darkreader-$pkgver.tar.gz;)
+b2sums=('1bf8c82daa3716da99e8150d4c96a638c67bb58c9c7cf1dff9c914c52f17ccd7df924cc79704c547b8a151c2c3daea93a76844ccb6a70070e735f002d648d198')
+
+prepare() {
+  cd darkreader-$pkgver
+  npm ci
+}
+
+build() {
+  cd darkreader-$pkgver
+  npm run build
+  strip-nondeterminism -t zip build/release/*.xpi
+}
+
+check() {
+  cd darkreader-$pkgver
+  npm test
+}
+
+package_dark-reader() {
+  pkgdesc+=' (unpacked webextension)'
+  cd darkreader-$pkgver/build/release/chrome
+  install -d "$pkgdir"/usr/lib/$pkgbase
+  cp -r -- * "$pkgdir"/usr/lib/$pkgbase
+}
+
+package_firefox-dark-reader() {
+  groups=('firefox-addons')
+  cd darkreader-$pkgver/build/release
+  install -Dm644 darkreader-firefox.xpi \
+"$pkgdir"/usr/lib/firefox/browser/extensions/ad...@darkreader.org.xpi
+}
+
+package_thunderbird-dark-reader() {
+  cd darkreader-$pkgver/build/release
+  install -Dm644 darkreader-thunderbird.xpi \
+"$pkgdir"/usr/lib/thunderbird/extensions/ad...@darkreader.org.xpi
+}



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

2022-08-23 Thread Daniel M. Capella via arch-commits
Date: Wednesday, August 24, 2022 @ 03:44:12
  Author: polyzen
Revision: 1275969

upgpkg: dark-reader 4.9.57-1

Modified:
  dark-reader/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-24 01:29:17 UTC (rev 1275968)
+++ PKGBUILD2022-08-24 03:44:12 UTC (rev 1275969)
@@ -3,7 +3,7 @@
 
 pkgname=('dark-reader' 'firefox-dark-reader' 'thunderbird-dark-reader')
 pkgbase=dark-reader
-pkgver=4.9.56
+pkgver=4.9.57
 pkgrel=1
 pkgdesc='Inverts brightness of web pages and aims to reduce eyestrain while 
browsing the web'
 arch=('any')
@@ -11,7 +11,7 @@
 license=('MIT')
 makedepends=('npm' 'strip-nondeterminism')
 
source=("https://github.com/darkreader/darkreader/archive/v$pkgver/darkreader-$pkgver.tar.gz;)
-b2sums=('c57c016e5ed89af3dd53303228c77a7dbf4b5bcbf4beaa51123a85b36cba34a22399fed78d1c38208d2a86fa27e7fa994c2207f1428601b526c74c6c4af13cdc')
+b2sums=('1bf8c82daa3716da99e8150d4c96a638c67bb58c9c7cf1dff9c914c52f17ccd7df924cc79704c547b8a151c2c3daea93a76844ccb6a70070e735f002d648d198')
 
 prepare() {
   cd darkreader-$pkgver



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

2022-08-23 Thread Evangelos Foutras via arch-commits
Date: Wednesday, August 24, 2022 @ 02:49:35
  Author: foutrelis
Revision: 454467

archrelease: copy trunk to extra-any

Added:
  geoip-database/repos/extra-any/PKGBUILD
(from rev 454466, geoip-database/trunk/PKGBUILD)
  geoip-database/repos/extra-any/update.sh
(from rev 454466, geoip-database/trunk/update.sh)
Deleted:
  geoip-database/repos/extra-any/PKGBUILD
  geoip-database/repos/extra-any/update.sh

---+
 PKGBUILD  |  164 ++--
 update.sh |   56 ++--
 2 files changed, 110 insertions(+), 110 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-24 02:49:30 UTC (rev 454466)
+++ PKGBUILD2022-08-24 02:49:35 UTC (rev 454467)
@@ -1,82 +0,0 @@
-# Maintainer: Evangelos Foutras 
-
-pkgname=('geoip-database' 'geoip-database-extra')
-pkgver=20220802
-pkgrel=1
-arch=('any')
-url="https://mailfud.org/geoip-legacy/;
-license=('CCPL:by-sa')
-makedepends=('util-linux')
-checkdepends=('geoip')
-_source_base=https://sources.archlinux.org/other/packages/$pkgname/$pkgver
-source=(GeoIP-$pkgver.dat.gz::$_source_base/GeoIP.dat.gz
-GeoIPv6-$pkgver.dat.gz::$_source_base/GeoIPv6.dat.gz
-GeoIPCity-$pkgver.dat.gz::$_source_base/GeoIPCity.dat.gz
-GeoIPCityv6-$pkgver.dat.gz::$_source_base/GeoIPCityv6.dat.gz
-GeoIPASNum-$pkgver.dat.gz::$_source_base/GeoIPASNum.dat.gz
-GeoIPASNumv6-$pkgver.dat.gz::$_source_base/GeoIPASNumv6.dat.gz)
-sha256sums=('1a8acae78a84f9bb61d4ddefc4524cc9730f5c6b408b84adb7eebde9016d462c'
-'f6279b663ad48d4ef5a8c0069c07e80f9f08c1f56394488730237c71f16a6cca'
-'ea50dea5b418c4373aec7e6e797f75a25067b586876a86de905dc81f92185927'
-'abec2de28e81d6771946995e622ddb5cc7d805b9bc50a11b7a9e9ac36d8c56ee'
-'a092179c2d4b4834eb00ccd3d719da79be002fa16157f2d8f3435da6a8176164'
-'679e97d437698eaa317e9dc9c47430e02aec1867a9132958505af309dadc84d8')
-
-prepare() {
-  cd "$srcdir"
-  rename -v -- "-$pkgver" '' *.dat
-}
-
-check() {
-  cd "$srcdir"
-
-  if [[ $(geoiplookup -f GeoIP.dat 8.8.8.8) != *'US, United States' ]]; then
-echo >&2 'Unable to resolve IPv4 address to country.'
-return 1
-  fi
-
-  if [[ $(geoiplookup6 -f GeoIPv6.dat 2001:4860:4860::) != *'US, United 
States' ]]; then
-echo >&2 'Unable to resolve IPv6 address to country.'
-return 1
-  fi
-
-  if [[ $(geoiplookup -f GeoIPCity.dat 8.8.8.8) != *'US, 00, N/A, N/A'* ]]; 
then
-echo >&2 'Unable to resolve IPv4 address to city.'
-return 1
-  fi
-
-  if [[ $(geoiplookup6 -f GeoIPCityv6.dat 2001:4860:4860::) != *'US, 00, 
N/A, N/A'* ]]; then
-echo >&2 'Unable to resolve IPv6 address to city.'
-return 1
-  fi
-
-  if [[ $(geoiplookup -f GeoIPASNum.dat 8.8.8.8) != *'AS15169 GOOGLE' ]]; then
-echo >&2 'Unable to resolve IPv4 address to ASN.'
-return 1
-  fi
-
-  if [[ $(geoiplookup6 -f GeoIPASNumv6.dat 2001:4860:4860::) != *'AS15169 
GOOGLE' ]]; then
-echo >&2 'Unable to resolve IPv6 address to ASN.'
-return 1
-  fi
-}
-
-package_geoip-database() {
-  pkgdesc="GeoIP legacy country database (based on GeoLite2 data created by 
MaxMind)"
-
-  cd "$srcdir"
-
-  install -d "$pkgdir/usr/share/GeoIP"
-  install -m644 -t "$pkgdir/usr/share/GeoIP" GeoIP{,v6}.dat
-}
-
-package_geoip-database-extra() {
-  pkgdesc="GeoIP legacy city/ASN databases (based on GeoLite2 data created by 
MaxMind)"
-
-  cd "$srcdir"
-
-  install -d "$pkgdir/usr/share/GeoIP"
-  install -m644 -t "$pkgdir/usr/share/GeoIP" GeoIPCity{,v6}.dat 
GeoIPASNum{,v6}.dat
-}
-
-# vim:set ts=2 sw=2 et:

Copied: geoip-database/repos/extra-any/PKGBUILD (from rev 454466, 
geoip-database/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-24 02:49:35 UTC (rev 454467)
@@ -0,0 +1,82 @@
+# Maintainer: Evangelos Foutras 
+
+pkgname=('geoip-database' 'geoip-database-extra')
+pkgver=20220823
+pkgrel=1
+arch=('any')
+url="https://mailfud.org/geoip-legacy/;
+license=('CCPL:by-sa')
+makedepends=('util-linux')
+checkdepends=('geoip')
+_source_base=https://sources.archlinux.org/other/packages/$pkgname/$pkgver
+source=(GeoIP-$pkgver.dat.gz::$_source_base/GeoIP.dat.gz
+GeoIPv6-$pkgver.dat.gz::$_source_base/GeoIPv6.dat.gz
+GeoIPCity-$pkgver.dat.gz::$_source_base/GeoIPCity.dat.gz
+GeoIPCityv6-$pkgver.dat.gz::$_source_base/GeoIPCityv6.dat.gz
+GeoIPASNum-$pkgver.dat.gz::$_source_base/GeoIPASNum.dat.gz
+GeoIPASNumv6-$pkgver.dat.gz::$_source_base/GeoIPASNumv6.dat.gz)
+sha256sums=('1ebd739106f0a62a55101537d3012ef547fe84ce89d9490bef8592bfe293199a'
+'a863a20927c4a8f8da134359674d5ab4747494b2e800eb11c919bb8fe8b904

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

2022-08-23 Thread Evangelos Foutras via arch-commits
Date: Wednesday, August 24, 2022 @ 02:49:30
  Author: foutrelis
Revision: 454466

upgpkg: geoip-database 20220823-1: update

Modified:
  geoip-database/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 22:39:25 UTC (rev 454465)
+++ PKGBUILD2022-08-24 02:49:30 UTC (rev 454466)
@@ -1,7 +1,7 @@
 # Maintainer: Evangelos Foutras 
 
 pkgname=('geoip-database' 'geoip-database-extra')
-pkgver=20220802
+pkgver=20220823
 pkgrel=1
 arch=('any')
 url="https://mailfud.org/geoip-legacy/;
@@ -15,12 +15,12 @@
 GeoIPCityv6-$pkgver.dat.gz::$_source_base/GeoIPCityv6.dat.gz
 GeoIPASNum-$pkgver.dat.gz::$_source_base/GeoIPASNum.dat.gz
 GeoIPASNumv6-$pkgver.dat.gz::$_source_base/GeoIPASNumv6.dat.gz)
-sha256sums=('1a8acae78a84f9bb61d4ddefc4524cc9730f5c6b408b84adb7eebde9016d462c'
-'f6279b663ad48d4ef5a8c0069c07e80f9f08c1f56394488730237c71f16a6cca'
-'ea50dea5b418c4373aec7e6e797f75a25067b586876a86de905dc81f92185927'
-'abec2de28e81d6771946995e622ddb5cc7d805b9bc50a11b7a9e9ac36d8c56ee'
-'a092179c2d4b4834eb00ccd3d719da79be002fa16157f2d8f3435da6a8176164'
-'679e97d437698eaa317e9dc9c47430e02aec1867a9132958505af309dadc84d8')
+sha256sums=('1ebd739106f0a62a55101537d3012ef547fe84ce89d9490bef8592bfe293199a'
+'a863a20927c4a8f8da134359674d5ab4747494b2e800eb11c919bb8fe8b9042f'
+'047b2afe1e846e248d1e6c759e250f4038bb8d49c1b35656b5b0c19563e84bc5'
+'7a54fc61f7fd660811a6d0e7bfb7eae579dc408b0c26dd80823672fee7cb918b'
+'b065cfe1f4f8556daf6661055304853c56392a692456af4d96a780a7b45ee501'
+'f2e079f73de8c7211ccc9d275c8f6aef2315605e837f5154f225b420a0826f16')
 
 prepare() {
   cd "$srcdir"



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

2022-08-23 Thread Andrew Crerar via arch-commits
Date: Wednesday, August 24, 2022 @ 01:29:17
  Author: andrewsc
Revision: 1275968

archrelease: copy trunk to community-any

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

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

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

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

2022-08-23 Thread Andrew Crerar via arch-commits
Date: Wednesday, August 24, 2022 @ 01:28:51
  Author: andrewsc
Revision: 1275967

upgpkg: firefox-developer-edition-i18n 105.0b2-1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-24 01:24:35 UTC (rev 1275966)
+++ PKGBUILD2022-08-24 01:28:51 UTC (rev 1275967)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=105.0b1
+pkgver=105.0b2
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -132,99 +132,99 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha512sums=('caed98aa2ec54b0b14d0f081b15874b40278d8540b7c420f0f26303e37183fb3a798eb0972df4b3e2bbc93e541b5a040aa490fca5d6b4ca2bafe87fddbc2008c'
-
'70347b10eec0e512c3f5e7c32787bc59a2cee99419a5cf8ee91759005a5002160b602960b8aaa474786a5e04d4349691a4d278c02792c89431e5b522c21afd4e'
-
'6bae6948c94618a2f52b7f2ef58d2bdd5bbbda538654dd669a763d166d85db21d3aca057e5c1610230a37c3aa905cfde9544b4a02208b749850efad0e227c0a6'
-
'1ac8d599aaeb4d96c64d18b23444d3865fb6c9c2525496ea0416f6f4d18b1eaa61c31bbd4162e6e8156bf77c7683f1160639298305c04e0b24c04c80cbbfa11d'
-
'c06db4c7c31a4308c2743bc58149e7bf7c11d26313b6adc530c42f12974196c8439fa3ba0b43051db650237e118b2b6768513092cc4c751ac9390e174d6124ff'
-
'28390fe81baf2a469691c21a01be651892282e7197265aec2ed063dd076b13e6b38f0094bb4e990bf23e7a523cc809b3112e5cac0dc8b180c7a7dbb654d5c4fb'
-
'df9cf2ff73ffcbec25b685b970e642f16b3081ce274eebb7e256eaf440aebdf7beaadb01e74a4ba35480b669d0ebfefcc0f24ff9e3eeb404963f5701488d5712'
-
'e408aba7cacbf62f9a8c649add9050e8965316dcdc5e43dbc14db190f88a76854e5a220de39a7d7acc73d2ed1c4300a0cb4048b11a37498e4ee9b7964bda4bb1'
-
'e271b0717f487a32bf4fa105724f63320d67de2b8e66a311e72da6821fd3535ed6ad5c4f35b2b10e73f96fa830a07cb6fa71dba73271a7a24582c35187da8f0b'
-
'4315cd3a6f2379167602afa8e96fe8bbf9341458e2d51ade0f7c550d85e70ed01e11ce68b767a3ef07635de9c96a8a7e8ca8884fb7fcd68508f111e64d587731'
-
'192aef44f13065c661c3d85729d2638e1446c1bd2332cef93e52c5b61c52479846de87d751ed793e5a0c40be861322dc44fe20ac67d1f2e7dbd2bdaec76b98ce'
-
'cac74ca8e73caa2b5f0effd360fb4b0b5d047a6320b48850dabedb75e364d86dd872b254bec89021b072f8f32dc3841e5ba22f7e04f21b7b76d62a7f7246df2f'
-
'da9b3d1a71ee41d6ebb66cf414d366e2ed44d868cdee3621133895869ba791b7e0eba51c48074ba53fe312716b8bc9565a92fe2e909fb511ec735791ca8d1e6d'
-
'73350dd404532cb83698a6c996a9251892b6e00d6a9d972c7103ce1a685c4a345cf8e84972aeb23fc42f801bb579e32dc189d6fd821d77f61d7cbbb652446aa9'
-
'7549bdfedfea381fae12aca44c47d58e351ebbd2b467987b3a10ac3cc65592d945a293f16b60afdfb7c453d7933d6ec8351ebed4ea160914793dae35a286b64d'
-
'2673a652364560907a13cab703bb38b54da4099f89ebd6af4a883bcf43f629a146e6828c04375aafca3ab695183496aff30ce2fa681328b93a3e158bfaaef604'
-
'bfa26c1da333920686ec4a6ddaa7a1f5f3962615a1c94fa4551cc4ba217842a8927345bb1c23fcffcbc493e8f667b57246de5121d5fb9368566aa2f2662c62ce'
-
'679a9bdd386789c14572743ee1d2d7ed2d8eaacb948b62ad566ff8445aa2e6e80b067c9cdc84856d45cfba174a8ce45ec75c126ad4c81aec0b757a871e28ef54'
-
'd50dabd0c418c0a6584931da3367b8994244475be7fe4e9635467a55817122d4e66b545769496f787829eccd0247a4543cb8b5a3211e405c9d72fe8b67148273'
-
'8901db986a186d47576b6eb2fbe417d4d82b53a8fb3259d4bcf4c925a91dc6f15d595ddbac6c0c57a417f78368d4cc197c0b6d109919d8076b2372c685a2f868'
-
'c3a1ed536dfc9712b7265b065b8b2cacde2a0eda40e02c95b5bc55cb370670cdd8fc1baee4603791204125eec514d4a9e0fb81e7fd516e70e4f941ca9fa1b45d'
-
'1212f9a774911d1c9b99b06aea19c7cf175f0e66e5da3cfaddab30f0f588b9f1a33f53ad4e96f28b0b9ae921dad22e3434c18d7249e9cd85e79aa5fff5603c5f'
-
'fcf4921d0b9ea17510ba4eff8e30d5fdc9fb4b51753b4392931dc2f3ccf9b1cd44ba19b16099e4004cf04d46d20ce196a04ad699466eba26acc95d4b46e40524'
-
'b4f701abf292a269f94ed8b0445223e082d27f75d243a6261e56b5557aa87a9ba7d529d54774415a15c022d4839863a299d8985a5a1d6e85e165f1d58926c697'
-
'6083f392ec6fa254a7928268b5c6032e9986d082f27ac93c2437a85edad708f7d97215f63f53c91e2571cd47eec4d57c4b720e38fead300101d9966a19a1c5ce'
-
'e127a80cb6244314248049a16cccbe6725192a3fa273b7f08f2ec145f529ef082831317ca6e440081c9c250c2d09d886bee5ec95f7949a5467cd62a40beba44e'
-
'2737dc99c0352a424a5044ba3af1e4b8ed07d60728cedd8fcacebfacedcc020ae16e5b19a4b2e7df9d4e9295e63e3a5c6cce8a2df08cacec57299cc2cc051f60'
-
'14a0079d676f66289cff37ce5921bda63312dec5c6ea66c84cf8c7a0dbb05fe95a76df0c26e27104b072a54ed54efc123466aeb9c919f2abd93ab269f5861ad7'
-

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

2022-08-23 Thread Andrew Crerar via arch-commits
Date: Wednesday, August 24, 2022 @ 01:23:43
  Author: andrewsc
Revision: 1275965

upgpkg: firefox-developer-edition 105.0b2-1

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 23:11:05 UTC (rev 1275964)
+++ PKGBUILD2022-08-24 01:23:43 UTC (rev 1275965)
@@ -2,7 +2,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=firefox-developer-edition
-pkgver=105.0b1
+pkgver=105.0b2
 pkgrel=1
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')
@@ -26,7 +26,7 @@
 "$pkgname".desktop
 identity-icons-brand.svg
 zstandard-0.18.0.diff)
-sha512sums=('938d6adf815f413981ebc363454f11b3b2d3a98172438997a0d49c0c79adb8668714f1e919e83de8c6bafe4a5c74d56ea530082afb06364228bc58b6020fcf9b'
+sha512sums=('dab3b2811176be8480d54576783d16c415ddc0ac2327343af32a2f3a84e0b40c6be2a1d0cb30492316f4fdf226bc9439c1ff62e7ca721b26dc59723a8d75ed2e'
 'SKIP'
 
'b66dbe7f262d036e5a5b895ab5b0dbb03313bca18b0823c001ef2dbaeb1a33169b57db0cf4dfd268499f28913845119902b5d62e8a6a9cc4820eb0ee2f322a1e'
 
'2ff0cb8e2eb94cee306b488adf6d7f4debbaff6155be3ed3814cdb356e2e60fe38cc29d6c8d10079937fd2c930cfddf283977cf645395d31eaf76c7f0ac2'



[arch-commits] Commit in dummyhttp (3 files)

2022-08-23 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 23, 2022 @ 23:11:05
  Author: svenstaro
Revision: 1275964

archrelease: copy trunk to community-x86_64

Added:
  dummyhttp/repos/
  dummyhttp/repos/community-x86_64/
  dummyhttp/repos/community-x86_64/PKGBUILD
(from rev 1275963, dummyhttp/trunk/PKGBUILD)

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

Copied: dummyhttp/repos/community-x86_64/PKGBUILD (from rev 1275963, 
dummyhttp/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2022-08-23 23:11:05 UTC (rev 1275964)
@@ -0,0 +1,28 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=dummyhttp
+pkgver=0.5.0
+pkgrel=1
+pkgdesc="Super simple HTTP server that replies a fixed body with a fixed 
response code"
+arch=('x86_64')
+url="https://github.com/svenstaro/dummyhttp;
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('rust')
+options=('!lto')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/svenstaro/dummyhttp/archive/${pkgver}.tar.gz;)
+sha512sums=('913d913a1d4cb29e1668a5cdf7029a46351142d0b93180199c5c42f039a961ace1a8b894d5f743b5fb2beb860c2f3a9b424dd48ca828ae1055a0da64c77890ae')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  cargo build --release --locked
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  install -Dm755 target/release/dummyhttp "$pkgdir"/usr/bin/dummyhttp
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-08-23 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 23, 2022 @ 23:10:59
  Author: svenstaro
Revision: 1275963

upgpkg: dummyhttp 0.5.0-1

Modified:
  dummyhttp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 23:03:36 UTC (rev 1275962)
+++ PKGBUILD2022-08-23 23:10:59 UTC (rev 1275963)
@@ -6,7 +6,9 @@
 arch=('x86_64')
 url="https://github.com/svenstaro/dummyhttp;
 license=('MIT')
+depends=('gcc-libs')
 makedepends=('rust')
+options=('!lto')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/svenstaro/dummyhttp/archive/${pkgver}.tar.gz;)
 
sha512sums=('913d913a1d4cb29e1668a5cdf7029a46351142d0b93180199c5c42f039a961ace1a8b894d5f743b5fb2beb860c2f3a9b424dd48ca828ae1055a0da64c77890ae')
 



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

2022-08-23 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 23, 2022 @ 23:03:36
  Author: svenstaro
Revision: 1275962

Move dummyhttp from AUR

Added:
  dummyhttp/
  dummyhttp/trunk/
  dummyhttp/trunk/PKGBUILD

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

Added: dummyhttp/trunk/PKGBUILD
===
--- dummyhttp/trunk/PKGBUILD(rev 0)
+++ dummyhttp/trunk/PKGBUILD2022-08-23 23:03:36 UTC (rev 1275962)
@@ -0,0 +1,26 @@
+# Maintainer: Sven-Hendrik Haase 
+pkgname=dummyhttp
+pkgver=0.5.0
+pkgrel=1
+pkgdesc="Super simple HTTP server that replies a fixed body with a fixed 
response code"
+arch=('x86_64')
+url="https://github.com/svenstaro/dummyhttp;
+license=('MIT')
+makedepends=('rust')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/svenstaro/dummyhttp/archive/${pkgver}.tar.gz;)
+sha512sums=('913d913a1d4cb29e1668a5cdf7029a46351142d0b93180199c5c42f039a961ace1a8b894d5f743b5fb2beb860c2f3a9b424dd48ca828ae1055a0da64c77890ae')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  cargo build --release --locked
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  install -Dm755 target/release/dummyhttp "$pkgdir"/usr/bin/dummyhttp
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-08-23 Thread Jan Steffens via arch-commits
Date: Tuesday, August 23, 2022 @ 22:39:25
  Author: heftig
Revision: 454465

archrelease: copy trunk to testing-x86_64

Added:
  flatpak/repos/testing-x86_64/
  flatpak/repos/testing-x86_64/PKGBUILD
(from rev 454464, flatpak/trunk/PKGBUILD)
  flatpak/repos/testing-x86_64/flatpak-bindir.sh
(from rev 454464, flatpak/trunk/flatpak-bindir.sh)
  flatpak/repos/testing-x86_64/fusermount3.diff
(from rev 454464, flatpak/trunk/fusermount3.diff)

---+
 PKGBUILD  |   96 
 flatpak-bindir.sh |9 
 fusermount3.diff  |   66 +++
 3 files changed, 171 insertions(+)

Copied: flatpak/repos/testing-x86_64/PKGBUILD (from rev 454464, 
flatpak/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-08-23 22:39:25 UTC (rev 454465)
@@ -0,0 +1,96 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+pkgname=flatpak
+pkgver=1.14.0
+pkgrel=1
+epoch=1
+pkgdesc="Linux application sandboxing and distribution framework (formerly 
xdg-app)"
+url="https://flatpak.org;
+arch=(x86_64)
+license=(LGPL)
+depends=(dbus glib2 curl polkit libxau ostree json-glib libseccomp libarchive
+ python bubblewrap appstream xdg-dbus-proxy systemd fuse3 
libmalcontent)
+makedepends=(gobject-introspection gtk-doc git docbook-xsl xmlto)
+checkdepends=(valgrind socat)
+provides=(libflatpak.so)
+options=(debug)
+_commit=488038eed44c7edf334d1e28085975d96ce2bdcc  # tags/1.14.0^0
+source=(
+  "git+https://github.com/flatpak/flatpak#commit=$_commit;
+  git+https://gitlab.gnome.org/GNOME/libglnx.git
+  git+https://github.com/projectatomic/bubblewrap
+  git+https://github.com/flatpak/xdg-dbus-proxy
+  git+https://gitlab.gnome.org/alexl/variant-schema-compiler.git
+  https://dl.flathub.org/repo/flathub.flatpakrepo
+  fusermount3.diff
+  flatpak-bindir.sh
+)
+sha256sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'3371dd250e61d9e1633630073fefda153cd4426f72f4afa0c3373ae2e8fea03a'
+'23e01650d60222082ffb67a16d3ea033192cc9e6932027cf0ea0c55ea17863af'
+'1824cb4eb1cc88702cb2b9f1c55b6dfdf20fca5eab83f6e8e532099281328745')
+
+pkgver() {
+  cd flatpak
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd flatpak
+
+  # Support fuse3
+  # https://bugs.archlinux.org/task/75623
+  git apply -3 ../fusermount3.diff
+
+  git submodule init
+  git submodule set-url libglnx "$srcdir/libglnx"
+  git submodule set-url bubblewrap "$srcdir/bubblewrap"
+  git submodule set-url dbus-proxy "$srcdir/xdg-dbus-proxy"
+  git submodule set-url variant-schema-compiler 
"$srcdir/variant-schema-compiler"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd flatpak
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--disable-static \
+--enable-gtk-doc \
+--with-system-bubblewrap \
+--with-system-dbus-proxy \
+--with-dbus-config-dir=/usr/share/dbus-1/system.d
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd flatpak
+  make -k check
+}
+
+package() {
+  depends+=(xdg-desktop-portal)
+
+  make -C flatpak DESTDIR="$pkgdir" install
+
+  install -Dt "$pkgdir/etc/profile.d" -m644 flatpak-bindir.sh
+  install -Dt "$pkgdir/etc/flatpak/remotes.d" flathub.flatpakrepo
+
+  # Fixup mode to match polkit
+  install -d -o root -g 102 -m 750 "$pkgdir/usr/share/polkit-1/rules.d"
+}

Copied: flatpak/repos/testing-x86_64/flatpak-bindir.sh (from rev 454464, 
flatpak/trunk/flatpak-bindir.sh)
===
--- testing-x86_64/flatpak-bindir.sh(rev 0)
+++ testing-x86_64/flatpak-bindir.sh2022-08-23 22:39:25 UTC (rev 454465)
@@ -0,0 +1,9 @@
+if [ -n "$XDG_DATA_HOME" ] && [ -d "$XDG_DATA_HOME/flatpak/exports/bin" ]; then
+  append_path "$XDG_DATA_HOME/flatpak/exports/bin"
+elif [ -n "$HOME" ] && [ -d "$HOME/.local/share/flatpak/exports/bin" ]; then
+  append_path "$HOME/.local/share/flatpak/exports/bin"
+fi
+
+if [ -d /var/lib/flatpak/exports/bin ]; then
+  append_path /var/lib/flatpak/exports/bin
+fi

Copied: flatpak/repos/testing-x86_64/fusermount3.diff (from rev 454464, 
flatpak/trunk/fusermount3.diff)
===
--- testing-x86_64/fusermount3.diff (rev 0)
+++ testing-x86_64/fusermount3.diff 2022-08-23 22:39:25 UTC (rev 454465)
@@ -0,0 +1,66 @@
+diff --git i/common/flatpak-dir.c w/common/flatpak-dir.c
+index ca64902c..22302406 100644
+--- i/common/flatpak-dir.c
 w/common/flatpak-dir.c
+@@ -2109,7 +2109,7 @@ 

[arch-commits] Commit in flatpak/trunk (PKGBUILD fusermount3.diff)

2022-08-23 Thread Jan Steffens via arch-commits
Date: Tuesday, August 23, 2022 @ 22:39:16
  Author: heftig
Revision: 454464

1.14.0-1

Modified:
  flatpak/trunk/PKGBUILD
  flatpak/trunk/fusermount3.diff

--+
 PKGBUILD |   15 +++
 fusermount3.diff |   22 +++---
 2 files changed, 18 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 22:24:29 UTC (rev 454463)
+++ PKGBUILD2022-08-23 22:39:16 UTC (rev 454464)
@@ -3,20 +3,20 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=flatpak
-pkgver=1.12.7
-pkgrel=3
+pkgver=1.14.0
+pkgrel=1
 epoch=1
 pkgdesc="Linux application sandboxing and distribution framework (formerly 
xdg-app)"
 url="https://flatpak.org;
 arch=(x86_64)
 license=(LGPL)
-depends=(dbus glib2 libsoup polkit libxau ostree json-glib libseccomp 
libarchive
- python bubblewrap appstream-glib xdg-dbus-proxy systemd fuse3)
-makedepends=(intltool gobject-introspection gtk-doc git docbook-xsl xmlto)
+depends=(dbus glib2 curl polkit libxau ostree json-glib libseccomp libarchive
+ python bubblewrap appstream xdg-dbus-proxy systemd fuse3 
libmalcontent)
+makedepends=(gobject-introspection gtk-doc git docbook-xsl xmlto)
 checkdepends=(valgrind socat)
 provides=(libflatpak.so)
 options=(debug)
-_commit=9a6b71b62662f761046b868b798dcef9224739db  # tags/1.12.7^0
+_commit=488038eed44c7edf334d1e28085975d96ce2bdcc  # tags/1.14.0^0
 source=(
   "git+https://github.com/flatpak/flatpak#commit=$_commit;
   git+https://gitlab.gnome.org/GNOME/libglnx.git
@@ -33,7 +33,7 @@
 'SKIP'
 'SKIP'
 '3371dd250e61d9e1633630073fefda153cd4426f72f4afa0c3373ae2e8fea03a'
-'4a2b5a8b13709449e81170e2806b68c8971cb84bf6c52977311c34956115925e'
+'23e01650d60222082ffb67a16d3ea033192cc9e6932027cf0ea0c55ea17863af'
 '1824cb4eb1cc88702cb2b9f1c55b6dfdf20fca5eab83f6e8e532099281328745')
 
 pkgver() {
@@ -46,7 +46,6 @@
 
   # Support fuse3
   # https://bugs.archlinux.org/task/75623
-  git cherry-pick -n 4018419b15d0376a801ed09d978df409d1c6e46d
   git apply -3 ../fusermount3.diff
 
   git submodule init

Modified: fusermount3.diff
===
--- fusermount3.diff2022-08-23 22:24:29 UTC (rev 454463)
+++ fusermount3.diff2022-08-23 22:39:16 UTC (rev 454464)
@@ -1,8 +1,8 @@
 diff --git i/common/flatpak-dir.c w/common/flatpak-dir.c
-index 3f8f2567..aeb75c9b 100644
+index ca64902c..22302406 100644
 --- i/common/flatpak-dir.c
 +++ w/common/flatpak-dir.c
-@@ -2020,7 +2020,7 @@ flatpak_dir_revokefs_fuse_unmount (OstreeRepo **repo,
+@@ -2109,7 +2109,7 @@ flatpak_dir_revokefs_fuse_unmount (OstreeRepo **repo,
  
fusermount = g_subprocess_new (G_SUBPROCESS_FLAGS_NONE,
   error,
@@ -12,10 +12,10 @@
if (g_subprocess_wait_check (fusermount, NULL, error))
  {
 diff --git i/tests/can-use-fuse.c w/tests/can-use-fuse.c
-index 25f3936e..83517c89 100644
+index fb6e2000..759f0d84 100644
 --- i/tests/can-use-fuse.c
 +++ w/tests/can-use-fuse.c
-@@ -41,23 +41,23 @@ check_fuse (void)
+@@ -53,23 +53,23 @@ check_fuse (void)
return FALSE;
  }
  
@@ -43,10 +43,10 @@
  }
  
 diff --git i/tests/libtest.sh w/tests/libtest.sh
-index 4a9fd481..5921dda5 100644
+index 36d39ac4..e78d94ca 100644
 --- i/tests/libtest.sh
 +++ w/tests/libtest.sh
-@@ -536,7 +536,7 @@ skip_one_without_bwrap () {
+@@ -542,7 +542,7 @@ skip_one_without_bwrap () {
  }
  
  skip_without_fuse () {
@@ -55,12 +55,12 @@
  
  capsh --print | grep -q 'Bounding set.*[^a-z]cap_sys_admin' || \
  skip "No cap_sys_admin in bounding set, can't use FUSE"
-@@ -595,7 +595,7 @@ commit_to_path () {
+@@ -608,7 +608,7 @@ commit_to_path () {
  cleanup () {
  /bin/kill -9 $DBUS_SESSION_BUS_PID
- gpg-connect-agent --homedir "${FL_GPG_HOMEDIR}" killagent /bye || true
--fusermount -u $XDG_RUNTIME_DIR/doc || :
-+fusermount3 -u $XDG_RUNTIME_DIR/doc || :
+ gpg-connect-agent --homedir "${FL_GPG_HOMEDIR}" killagent /bye >&2 || true
+-fusermount -u $XDG_RUNTIME_DIR/doc >&2 || :
++fusermount3 -u $XDG_RUNTIME_DIR/doc >&2 || :
  kill $(jobs -p) &> /dev/null || true
  if test -n "${TEST_SKIP_CLEANUP:-}"; then
- echo "Skipping cleanup of ${TEST_DATA_DIR}"
+ echo "# Skipping cleanup of ${TEST_DATA_DIR}"



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

2022-08-23 Thread Jan Steffens via arch-commits
Date: Tuesday, August 23, 2022 @ 22:24:29
  Author: heftig
Revision: 454463

archrelease: copy trunk to extra-x86_64

Added:
  sof-bin/repos/extra-x86_64/PKGBUILD
(from rev 454462, sof-bin/trunk/PKGBUILD)
Deleted:
  sof-bin/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 22:24:20 UTC (rev 454462)
+++ PKGBUILD2022-08-23 22:24:29 UTC (rev 454463)
@@ -1,43 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgbase=sof-bin
-pkgname=(sof-firmware sof-tools)
-pkgver=2.2
-pkgrel=1
-pkgdesc="Sound Open Firmware"
-url="https://www.sofproject.org/;
-arch=(x86_64)
-license=(custom:BSD custom:ISC)
-makedepends=(rsync)
-_binver=v$pkgver
-source=(https://github.com/thesofproject/sof-bin/releases/download/$_binver/sof-bin-$_binver.tar.gz)
-sha256sums=('f0a22018aa02266e3713f1551b698847ca303859be4be8c711dd3685de55ad15')
-
-package_sof-firmware() {
-  options=(!strip)
-
-  cd sof-bin-$_binver
-
-  (
-export FW_DEST="$pkgdir/usr/lib/firmware/intel"
-export TOOLS_DEST="$srcdir/tools/usr/bin"
-
-mkdir -p "$FW_DEST" "$TOOLS_DEST"
-./install.sh $_binver
-  )
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENCE* Notice*
-}
-
-package_sof-tools() {
-  pkgdesc+=" - tools"
-  depends=(alsa-lib)
-
-  cd sof-bin-$_binver
-
-  mv "$srcdir"/tools/* "$pkgdir"
-
-  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENCE* Notice*
-}
-
-# vim:set sw=2 et:

Copied: sof-bin/repos/extra-x86_64/PKGBUILD (from rev 454462, 
sof-bin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 22:24:29 UTC (rev 454463)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgbase=sof-bin
+pkgname=(sof-firmware sof-tools)
+pkgver=2.2.1
+pkgrel=1
+pkgdesc="Sound Open Firmware"
+url="https://www.sofproject.org/;
+arch=(x86_64)
+license=(custom:BSD custom:ISC)
+options=(debug)
+_binver=v${pkgver%.*}
+_tplgver=v${pkgver}
+source=(https://github.com/thesofproject/sof-bin/releases/download/$_binver/sof-bin-$_binver.tar.gz
 
+
https://github.com/thesofproject/sof-bin/releases/download/$_tplgver/sof-tplg-$_tplgver.tar.gz)
+sha256sums=('f0a22018aa02266e3713f1551b698847ca303859be4be8c711dd3685de55ad15'
+'ccdda55f89a63f421ae9a019cc9c8f8f0f8668a0e8c35e384da09ea6be411bb7')
+
+package_sof-firmware() {
+  options+=(!strip)
+
+  local fwdir="$pkgdir/usr/lib/firmware/intel"
+  mkdir -p "$fwdir"
+
+  cp -at "$fwdir" sof-tplg-$_tplgver
+  ln -sr "$fwdir"/{sof-tplg-$_tplgver,sof-tplg}
+
+  cd sof-bin-$_binver
+
+  cp -at "$fwdir" sof-$_binver
+  ln -sr "$fwdir"/{sof-$_binver,sof}
+
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENCE* Notice*
+}
+
+package_sof-tools() {
+  pkgdesc+=" - tools"
+  depends=(alsa-lib)
+
+  cd sof-bin-$_binver
+
+  install -Dt "$pkgdir/usr/bin" tools-$_binver/*
+  install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENCE* Notice*
+}
+
+# vim:set sw=2 et:



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

2022-08-23 Thread Jan Steffens via arch-commits
Date: Tuesday, August 23, 2022 @ 22:24:20
  Author: heftig
Revision: 454462

2.2.1-1

Modified:
  sof-bin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 22:20:57 UTC (rev 454461)
+++ PKGBUILD2022-08-23 22:24:20 UTC (rev 454462)
@@ -2,30 +2,34 @@
 
 pkgbase=sof-bin
 pkgname=(sof-firmware sof-tools)
-pkgver=2.2
+pkgver=2.2.1
 pkgrel=1
 pkgdesc="Sound Open Firmware"
 url="https://www.sofproject.org/;
 arch=(x86_64)
 license=(custom:BSD custom:ISC)
-makedepends=(rsync)
-_binver=v$pkgver
-source=(https://github.com/thesofproject/sof-bin/releases/download/$_binver/sof-bin-$_binver.tar.gz)
-sha256sums=('f0a22018aa02266e3713f1551b698847ca303859be4be8c711dd3685de55ad15')
+options=(debug)
+_binver=v${pkgver%.*}
+_tplgver=v${pkgver}
+source=(https://github.com/thesofproject/sof-bin/releases/download/$_binver/sof-bin-$_binver.tar.gz
 
+
https://github.com/thesofproject/sof-bin/releases/download/$_tplgver/sof-tplg-$_tplgver.tar.gz)
+sha256sums=('f0a22018aa02266e3713f1551b698847ca303859be4be8c711dd3685de55ad15'
+'ccdda55f89a63f421ae9a019cc9c8f8f0f8668a0e8c35e384da09ea6be411bb7')
 
 package_sof-firmware() {
-  options=(!strip)
+  options+=(!strip)
 
+  local fwdir="$pkgdir/usr/lib/firmware/intel"
+  mkdir -p "$fwdir"
+
+  cp -at "$fwdir" sof-tplg-$_tplgver
+  ln -sr "$fwdir"/{sof-tplg-$_tplgver,sof-tplg}
+
   cd sof-bin-$_binver
 
-  (
-export FW_DEST="$pkgdir/usr/lib/firmware/intel"
-export TOOLS_DEST="$srcdir/tools/usr/bin"
+  cp -at "$fwdir" sof-$_binver
+  ln -sr "$fwdir"/{sof-$_binver,sof}
 
-mkdir -p "$FW_DEST" "$TOOLS_DEST"
-./install.sh $_binver
-  )
-
   install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENCE* Notice*
 }
 
@@ -35,8 +39,7 @@
 
   cd sof-bin-$_binver
 
-  mv "$srcdir"/tools/* "$pkgdir"
-
+  install -Dt "$pkgdir/usr/bin" tools-$_binver/*
   install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 LICENCE* Notice*
 }
 



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

2022-08-23 Thread Jan Steffens via arch-commits
Date: Tuesday, August 23, 2022 @ 22:20:57
  Author: heftig
Revision: 454461

archrelease: copy trunk to extra-x86_64

Added:
  pahole/repos/extra-x86_64/PKGBUILD
(from rev 454460, pahole/trunk/PKGBUILD)
  pahole/repos/extra-x86_64/python.diff
(from rev 454460, pahole/trunk/python.diff)
Deleted:
  pahole/repos/extra-x86_64/PKGBUILD
  pahole/repos/extra-x86_64/python.diff

-+
 PKGBUILD|  110 ++
 python.diff |   26 ++---
 2 files changed, 71 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 22:20:47 UTC (rev 454460)
+++ PKGBUILD2022-08-23 22:20:57 UTC (rev 454461)
@@ -1,52 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=pahole
-pkgver=1.23
-pkgrel=1
-pkgdesc="Pahole and other DWARF utils"
-url="https://git.kernel.org/pub/scm/devel/pahole/pahole.git;
-arch=(x86_64)
-license=(GPL2)
-depends=(libelf python)
-makedepends=(git cmake ninja)
-provides=(libdwarves{,_emit,_reorganize}.so)
-_commit=c2b7b8c20877d267159ace36119f6340b9d12823  # tags/v1.23^0
-source=("git+https://git.kernel.org/pub/scm/devel/pahole/pahole.git#commit=$_commit;
-"git+https://github.com/libbpf/libbpf;
-python.diff)
-sha256sums=('SKIP'
-'SKIP'
-'8f73631f14ca665204bf5be36c5082eb4f89884dda5e5ae2dd66c990b9c11d51')
-
-pkgver() {
-  cd pahole
-  git describe --tags | sed 's/^v//;s/-/+/g'
-}
-
-prepare() {
-  cd pahole
-
-  # https://bugs.archlinux.org/task/70013
-  git apply -3 ../python.diff
-
-  git submodule init
-  git submodule set-url lib/bpf "$srcdir/libbpf"
-  git submodule update
-}
-
-build() {
-  cmake -S pahole -B build -G Ninja \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=None \
--D__LIB=lib
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-
-  python -m compileall -d / "$pkgdir"
-  python -O -m compileall -d / "$pkgdir"
-}
-
-# vim:set sw=2 et:

Copied: pahole/repos/extra-x86_64/PKGBUILD (from rev 454460, 
pahole/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 22:20:57 UTC (rev 454461)
@@ -0,0 +1,58 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=pahole
+pkgver=1.24
+pkgrel=1
+pkgdesc="Pahole and other DWARF utils"
+url="https://git.kernel.org/pub/scm/devel/pahole/pahole.git;
+arch=(x86_64)
+license=(GPL2)
+depends=(libelf python)
+makedepends=(git cmake ninja)
+provides=(libdwarves{,_emit,_reorganize}.so)
+options=(debug)
+_commit=de2423445fa59a6ebbf6f1fba764f30818204348  # tags/v1.24^0
+source=("git+https://git.kernel.org/pub/scm/devel/pahole/pahole.git#commit=$_commit;
+"git+https://github.com/libbpf/libbpf;
+python.diff)
+sha256sums=('SKIP'
+'SKIP'
+'12f3d83bda3ec503aca910d0a4372ff8c72886a02aa512b2f37c3f1b21c690c7')
+
+pkgver() {
+  cd pahole
+  git describe --tags | sed 's/^v//;s/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd pahole
+
+  # https://bugs.archlinux.org/task/70013
+  git apply -3 ../python.diff
+
+  git submodule init
+  git submodule set-url lib/bpf "$srcdir/libbpf"
+  git submodule update
+}
+
+build() {
+  cmake -S pahole -B build -G Ninja \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=None \
+-D__LIB=lib
+  cmake --build build
+}
+
+check() {
+  cd build
+  ctest --output-on-failure --stop-on-failure -j$(nproc)
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+  python -m compileall -d / "$pkgdir"
+  python -O -m compileall -d / "$pkgdir"
+}
+
+# vim:set sw=2 et:

Deleted: python.diff
===
--- python.diff 2022-08-23 22:20:47 UTC (rev 454460)
+++ python.diff 2022-08-23 22:20:57 UTC (rev 454461)
@@ -1,13 +0,0 @@
-diff --git i/CMakeLists.txt w/CMakeLists.txt
-index c0363b8..58ff237 100644
 i/CMakeLists.txt
-+++ w/CMakeLists.txt
-@@ -188,7 +188,7 @@ install(FILES dwarves.h dwarves_emit.h dwarves_reorganize.h
- install(FILES man-pages/pahole.1 DESTINATION 
${CMAKE_INSTALL_PREFIX}/share/man/man1/)
- if(Python3_FOUND)
-   install(PROGRAMS ostra/ostra-cg DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
--  install(FILES ostra/python/ostra.py DESTINATION 
${CMAKE_INSTALL_PREFIX}/share/dwarves/runtime/python)
-+  install(FILES ostra/python/ostra.py DESTINATION ${Python3_SITELIB})
- endif()
- install(PROGRAMS btfdiff fullcircle DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
- install(FILES lib/Makefile lib/ctracer_relay.c lib/ctracer_relay.h 
lib/linux.blacklist.cu

Copied: pahole/repos/extra-x86_64/python.diff (from rev 454460, 
pahole/trunk/python.diff)
===
--- python.diff (rev 0)
+++ python.diff 2022-08-23 22:20:57 UTC (rev 454461)
@@ -0,0 +1,13 @@
+diff --git i/CMakeLists.txt 

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

2022-08-23 Thread Jan Steffens via arch-commits
Date: Tuesday, August 23, 2022 @ 22:20:47
  Author: heftig
Revision: 454460

1.24-1

Modified:
  pahole/trunk/PKGBUILD
  pahole/trunk/python.diff

-+
 PKGBUILD|   12 +---
 python.diff |2 +-
 2 files changed, 10 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 22:16:56 UTC (rev 454459)
+++ PKGBUILD2022-08-23 22:20:47 UTC (rev 454460)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=pahole
-pkgver=1.23
+pkgver=1.24
 pkgrel=1
 pkgdesc="Pahole and other DWARF utils"
 url="https://git.kernel.org/pub/scm/devel/pahole/pahole.git;
@@ -10,13 +10,14 @@
 depends=(libelf python)
 makedepends=(git cmake ninja)
 provides=(libdwarves{,_emit,_reorganize}.so)
-_commit=c2b7b8c20877d267159ace36119f6340b9d12823  # tags/v1.23^0
+options=(debug)
+_commit=de2423445fa59a6ebbf6f1fba764f30818204348  # tags/v1.24^0
 
source=("git+https://git.kernel.org/pub/scm/devel/pahole/pahole.git#commit=$_commit;
 "git+https://github.com/libbpf/libbpf;
 python.diff)
 sha256sums=('SKIP'
 'SKIP'
-'8f73631f14ca665204bf5be36c5082eb4f89884dda5e5ae2dd66c990b9c11d51')
+'12f3d83bda3ec503aca910d0a4372ff8c72886a02aa512b2f37c3f1b21c690c7')
 
 pkgver() {
   cd pahole
@@ -42,6 +43,11 @@
   cmake --build build
 }
 
+check() {
+  cd build
+  ctest --output-on-failure --stop-on-failure -j$(nproc)
+}
+
 package() {
   DESTDIR="$pkgdir" cmake --install build
 

Modified: python.diff
===
--- python.diff 2022-08-23 22:16:56 UTC (rev 454459)
+++ python.diff 2022-08-23 22:20:47 UTC (rev 454460)
@@ -1,5 +1,5 @@
 diff --git i/CMakeLists.txt w/CMakeLists.txt
-index c0363b8..58ff237 100644
+index 1cd82ad..91a10f3 100644
 --- i/CMakeLists.txt
 +++ w/CMakeLists.txt
 @@ -188,7 +188,7 @@ install(FILES dwarves.h dwarves_emit.h dwarves_reorganize.h



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 22:11:25
  Author: arodseth
Revision: 1275961

archrelease: copy trunk to community-x86_64

Added:
  netsurf/repos/community-x86_64/PKGBUILD
(from rev 1275960, netsurf/trunk/PKGBUILD)
  netsurf/repos/community-x86_64/netsurf.sh
(from rev 1275960, netsurf/trunk/netsurf.sh)
Deleted:
  netsurf/repos/community-x86_64/PKGBUILD
  netsurf/repos/community-x86_64/netsurf.sh

+
 PKGBUILD   |  122 +++
 netsurf.sh |8 +--
 2 files changed, 60 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 22:11:19 UTC (rev 1275960)
+++ PKGBUILD2022-08-23 22:11:25 UTC (rev 1275961)
@@ -1,66 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Paulo Matias 
-# Contributor: Georgij Kondratjev 
-# Contributor: Daniel J Griffiths 
-
-pkgname=netsurf
-pkgver=3.10
-pkgrel=2
-pkgdesc='Lightweight and fast web browser'
-arch=(x86_64)
-url='https://www.netsurf-browser.org/'
-license=(MIT GPL2)
-depends=(curl gtk3 'libhubbub=0.3.7' libjpeg-turbo 'libnsutils=0.1.0'
- 'libutf8proc>=2.5.0' 'libwapcaplet>=0.4.3' 'libdom>=0.4.1' libwebp)
-# vim is needed only for xxd when building
-makedepends=(check inetutils 'libcss>=0.9.1' 'libnsbmp>=0.1.6'
- 'libnsgif>=0.2.1' 'nsgenbind>=0.8' perl-html-parser setconf vim)
-source=("https://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-$pkgver.tar.gz;
-netsurf.sh)
-sha256sums=('495adf6b6614ce36fca6c605f7c321f9cb4a3df838043158122678ce2b3325b7'
-'34c1f41c02ff3791a1b734197d99ec7f58c403dee05f0f9b7b9b3509d32b51ac')
-
-prepare() {
-  cd "$pkgname-all-$pkgver/$pkgname"
-
-  # Fix compilation issues
-  sed -i 's:libutf8proc/::;s:UTF8PROC_CCC_VIRAMA:UTF8PROC_BIDI_CLASS_EN:' 
utils/idna.c
-  # Use "netsurf" as the name of the executable in /usr/bin
-  setconf frontends/gtk/res/netsurf-gtk.desktop 'Exec=netsurf %u'
-}
-
-build() {
-  CFLAGS="$CFLAGS -w -Os -funroll-loops" \
-make -C "$pkgname-all-$pkgver/$pkgname" \
-NETSURF_UA_FORMAT_STRING='"NetSurf/%d.%d (%s; Arch Linux)"' \
-TARGET=gtk3 \
-LIBDIR=lib \
-INCLUDEDIR=include \
-PREFIX=/usr
-}
-
-package() {
-  make -C "$pkgname-all-$pkgver/$pkgname" \
-TARGET=gtk3 \
-LIBDIR=lib \
-INCLUDEDIR=include \
-DESTDIR="$pkgdir" \
-PREFIX=/usr \
-install
-
-  # Launch script
-  install -Dm755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
-
-  cd "$pkgname-all-$pkgver/$pkgname"
-
-  # Desktop icon and shortcut
-  install -Dm644 frontends/gtk/res/$pkgname.xpm \
-"$pkgdir/usr/share/pixmaps/$pkgname.xpm"
-  install -Dm644 frontends/gtk/res/$pkgname-gtk.desktop \
-"$pkgdir/usr/share/applications/$pkgname.desktop"
-
-  # License
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim: ts=2 sw=2 et:

Copied: netsurf/repos/community-x86_64/PKGBUILD (from rev 1275960, 
netsurf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 22:11:25 UTC (rev 1275961)
@@ -0,0 +1,56 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Paulo Matias 
+# Contributor: Georgij Kondratjev 
+# Contributor: Daniel J Griffiths 
+
+pkgname=netsurf
+pkgver=3.10
+pkgrel=4
+pkgdesc='Lightweight and fast web browser'
+arch=(x86_64)
+url='https://www.netsurf-browser.org/'
+license=(MIT GPL2)
+depends=(bash curl gtk3 'libhubbub=0.3.7' libjpeg-turbo 'libnsutils=0.1.0'
+ 'libutf8proc>=2.6.0' 'libwapcaplet>=0.4.3' 'libdom>=0.4.1' libwebp)
+# vim is needed only for xxd when building
+makedepends=(check inetutils 'libcss>=0.9.1' 'libnsbmp>=0.1.6'
+ 'libnsgif>=0.2.1' 'nsgenbind>=0.8' perl-html-parser setconf vim)
+source=("https://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-$pkgver.tar.gz;
+netsurf.sh)
+b2sums=('7c33db550a99000fabc95a9d0e48b86189485076bbcf740d8ff865564ca243c1a66d65fc21c036790cd0d1426e7f8251a376fc8370e1530b75e3f171ddb22ce4'
+
'f0220a0c2c03d567434deeed20f821dc110947e16889aa78e12e3f468a431d2f721b9cff23bd6ed3545323f3ed975ea0941f0ee61c4b09938b8bfb99764f8bc8')
+
+prepare() {
+  cd $pkgname-all-$pkgver/$pkgname
+  # Fix compilation issues
+  sed -i 's:libutf8proc/::;s:UTF8PROC_CCC_VIRAMA:UTF8PROC_BIDI_CLASS_EN:' 
utils/idna.c
+  # Use "netsurf" as the name of the executable in /usr/bin
+  setconf frontends/gtk/res/netsurf-gtk.desktop 'Exec=netsurf %u'
+}
+
+build() {
+  CFLAGS="$CFLAGS -Os -funroll-loops -w" \
+make -C $pkgname-all-$pkgver/$pkgname \
+  INCLUDEDIR=include \
+  LIBDIR=lib \
+  NETSURF_UA_FORMAT_STRING='"NetSurf/%d.%d (%s; Arch Linux)"' \
+  PREFIX=/usr \
+  TARGET=gtk3
+}
+
+package() {
+  make -C $pkgname-all-$pkgver/$pkgname \
+DESTDIR="$pkgdir" \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr \
+TARGET=gtk3 \
+install
+  

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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 22:11:19
  Author: arodseth
Revision: 1275960

upgpkg: netsurf 3.10-4

Modified:
  netsurf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 22:06:56 UTC (rev 1275959)
+++ PKGBUILD2022-08-23 22:11:19 UTC (rev 1275960)
@@ -5,7 +5,7 @@
 
 pkgname=netsurf
 pkgver=3.10
-pkgrel=3
+pkgrel=4
 pkgdesc='Lightweight and fast web browser'
 arch=(x86_64)
 url='https://www.netsurf-browser.org/'
@@ -17,11 +17,11 @@
  'libnsgif>=0.2.1' 'nsgenbind>=0.8' perl-html-parser setconf vim)
 
source=("https://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-$pkgver.tar.gz;
 netsurf.sh)
-sha256sums=('495adf6b6614ce36fca6c605f7c321f9cb4a3df838043158122678ce2b3325b7'
-'34c1f41c02ff3791a1b734197d99ec7f58c403dee05f0f9b7b9b3509d32b51ac')
+b2sums=('7c33db550a99000fabc95a9d0e48b86189485076bbcf740d8ff865564ca243c1a66d65fc21c036790cd0d1426e7f8251a376fc8370e1530b75e3f171ddb22ce4'
+
'f0220a0c2c03d567434deeed20f821dc110947e16889aa78e12e3f468a431d2f721b9cff23bd6ed3545323f3ed975ea0941f0ee61c4b09938b8bfb99764f8bc8')
 
 prepare() {
-  cd "$pkgname-all-$pkgver/$pkgname"
+  cd $pkgname-all-$pkgver/$pkgname
   # Fix compilation issues
   sed -i 's:libutf8proc/::;s:UTF8PROC_CCC_VIRAMA:UTF8PROC_BIDI_CLASS_EN:' 
utils/idna.c
   # Use "netsurf" as the name of the executable in /usr/bin
@@ -29,25 +29,25 @@
 }
 
 build() {
-  CFLAGS="$CFLAGS -w -Os -funroll-loops" \
-make -C "$pkgname-all-$pkgver/$pkgname" \
-NETSURF_UA_FORMAT_STRING='"NetSurf/%d.%d (%s; Arch Linux)"' \
-TARGET=gtk3 \
-LIBDIR=lib \
-INCLUDEDIR=include \
-PREFIX=/usr
+  CFLAGS="$CFLAGS -Os -funroll-loops -w" \
+make -C $pkgname-all-$pkgver/$pkgname \
+  INCLUDEDIR=include \
+  LIBDIR=lib \
+  NETSURF_UA_FORMAT_STRING='"NetSurf/%d.%d (%s; Arch Linux)"' \
+  PREFIX=/usr \
+  TARGET=gtk3
 }
 
 package() {
-  make -C "$pkgname-all-$pkgver/$pkgname" \
-TARGET=gtk3 \
+  make -C $pkgname-all-$pkgver/$pkgname \
+DESTDIR="$pkgdir" \
+INCLUDEDIR=include \
 LIBDIR=lib \
-INCLUDEDIR=include \
-DESTDIR="$pkgdir" \
 PREFIX=/usr \
+TARGET=gtk3 \
 install
   install -Dm755 $pkgname.sh "$pkgdir/usr/bin/$pkgname"
-  cd "$pkgname-all-$pkgver/$pkgname"
+  cd $pkgname-all-$pkgver/$pkgname
   install -Dm644 frontends/gtk/res/$pkgname.xpm \
 "$pkgdir/usr/share/pixmaps/$pkgname.xpm"
   install -Dm644 frontends/gtk/res/$pkgname-gtk.desktop \



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 22:06:56
  Author: arodseth
Revision: 1275959

archrelease: copy trunk to community-x86_64

Added:
  libcss/repos/community-x86_64/PKGBUILD
(from rev 1275958, libcss/trunk/PKGBUILD)
Deleted:
  libcss/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 22:06:50 UTC (rev 1275958)
+++ PKGBUILD2022-08-23 22:06:56 UTC (rev 1275959)
@@ -1,40 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Brad Fanella 
-# Contributor: Daniel J Griffiths 
-
-pkgname=libcss
-pkgver=0.9.1
-pkgrel=5
-pkgdesc='CSS parser and selection engine'
-arch=(x86_64)
-url='https://www.netsurf-browser.org/projects/libcss/'
-license=(MIT)
-makedepends=(netsurf-buildsystem)
-depends=('libparserutils>=0.2.4' 'libwapcaplet>=0.4.3')
-source=("https://download.netsurf-browser.org/libs/releases/libcss-$pkgver-src.tar.gz;)
-b2sums=('32206403f77997e6692eed00c9233e6f49f08efc2515901a8bef7590883e44ef320511368fe5a67968102911d849696a4419735c7f6691f0f272fcc3b9a000d8')
-
-prepare() {
-  sed -i 's,_BSD_SOURCE,_DEFAULT_SOURCE,' $pkgname-$pkgver/Makefile
-}
-
-build() {
-  CFLAGS+=' -ffat-lto-objects -w'
-  make -C $pkgname-$pkgver \
-COMPONENT_TYPE=lib-shared \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr
-}
-
-package() {
-  make -C $pkgname-$pkgver \
-COMPONENT_TYPE=lib-shared \
-DESTDIR="$pkgdir" \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr \
-install
-  install -Dm644 $pkgname-$pkgver/COPYING \
-"$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: libcss/repos/community-x86_64/PKGBUILD (from rev 1275958, 
libcss/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 22:06:56 UTC (rev 1275959)
@@ -0,0 +1,41 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Brad Fanella 
+# Contributor: Daniel J Griffiths 
+
+pkgname=libcss
+pkgver=0.9.1
+pkgrel=6
+pkgdesc='CSS parser and selection engine'
+arch=(x86_64)
+url='https://www.netsurf-browser.org/projects/libcss/'
+license=(MIT)
+makedepends=(netsurf-buildsystem)
+depends=('libparserutils>=0.2.4' 'libwapcaplet>=0.4.3')
+source=("https://download.netsurf-browser.org/libs/releases/libcss-$pkgver-src.tar.gz;)
+b2sums=('32206403f77997e6692eed00c9233e6f49f08efc2515901a8bef7590883e44ef320511368fe5a67968102911d849696a4419735c7f6691f0f272fcc3b9a000d8')
+
+prepare() {
+  sed -i 's,_BSD_SOURCE,_DEFAULT_SOURCE,' $pkgname-$pkgver/Makefile
+}
+
+build() {
+  export CFLAGS="$CFLAGS -shared -fPIC -w"
+  export LDFLAGS="$LDFLAGS -shared -z,now"
+  make -C $pkgname-$pkgver \
+COMPONENT_TYPE=lib-shared \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr
+}
+
+package() {
+  make -C $pkgname-$pkgver \
+COMPONENT_TYPE=lib-shared \
+DESTDIR="$pkgdir" \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr \
+install
+  install -Dm644 $pkgname-$pkgver/COPYING \
+"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 22:06:50
  Author: arodseth
Revision: 1275958

Use the same build and link flags as libdom

Modified:
  libcss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 21:54:28 UTC (rev 1275957)
+++ PKGBUILD2022-08-23 22:06:50 UTC (rev 1275958)
@@ -4,7 +4,7 @@
 
 pkgname=libcss
 pkgver=0.9.1
-pkgrel=5
+pkgrel=6
 pkgdesc='CSS parser and selection engine'
 arch=(x86_64)
 url='https://www.netsurf-browser.org/projects/libcss/'
@@ -19,7 +19,8 @@
 }
 
 build() {
-  CFLAGS+=' -ffat-lto-objects -w'
+  export CFLAGS="$CFLAGS -shared -fPIC -w"
+  export LDFLAGS="$LDFLAGS -shared -z,now"
   make -C $pkgname-$pkgver \
 COMPONENT_TYPE=lib-shared \
 INCLUDEDIR=include \



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

2022-08-23 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 23, 2022 @ 22:01:55
  Author: svenstaro
Revision: 454457

archrelease: copy trunk to extra-x86_64

Added:
  sdl2_net/repos/extra-x86_64/PKGBUILD
(from rev 454456, sdl2_net/trunk/PKGBUILD)
  sdl2_net/repos/extra-x86_64/keys/
Deleted:
  sdl2_net/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 22:01:47 UTC (rev 454456)
+++ PKGBUILD2022-08-23 22:01:55 UTC (rev 454457)
@@ -1,27 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=sdl2_net
-epoch=1
-pkgver=2.0.1
-pkgrel=3
-pkgdesc="A small sample cross-platform networking library (Version 2)"
-arch=('x86_64')
-url="http://www.libsdl.org/projects/SDL_net;
-license=('MIT')
-depends=(sdl2)
-source=("https://www.libsdl.org/projects/SDL_net/release/SDL2_net-${pkgver}.tar.gz;)
-sha512sums=('d27faee3cddc3592dae38947e6c1df0cbaa95f82fde9c87db6d11f6312d868cea74f6830ad07ceeb3d0d75e9424cebf39e54fddf9a1147e8d9e664609de92b7a')
-
-build() {
-  cd "${srcdir}/SDL2_net-${pkgver}/"
-
-  ./configure --disable-static --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/SDL2_net-${pkgver}/"
-
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: sdl2_net/repos/extra-x86_64/PKGBUILD (from rev 454456, 
sdl2_net/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 22:01:55 UTC (rev 454457)
@@ -0,0 +1,29 @@
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=sdl2_net
+epoch=1
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="A small sample cross-platform networking library (Version 2)"
+arch=('x86_64')
+url="https://github.com/libsdl-org/SDL_net;
+license=('MIT')
+depends=(sdl2)
+source=("https://github.com/libsdl-org/SDL_net/releases/download/release-${pkgver}/SDL2_net-${pkgver}.tar.gz"{,.sig})
+sha512sums=('fa22f1a2c777aac6932551b5adc925288c424dc1af46a974fdb2e3579205b40b204db01d2a8c4048aa333a200efc241f784b9bc9276277e8ab4d23edb023ab69'
+'SKIP')
+validpgpkeys=('1528635D8053A57F77D1E08630A59377A7763BE6') # Sam Lantinga
+
+build() {
+  cd "${srcdir}/SDL2_net-${pkgver}/"
+
+  ./configure --disable-static --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/SDL2_net-${pkgver}/"
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}



[arch-commits] Commit in sdl2_net/trunk (4 files)

2022-08-23 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 23, 2022 @ 22:01:47
  Author: svenstaro
Revision: 454456

upgpkg: sdl2_net 1:2.2.0-1

Added:
  sdl2_net/trunk/keys/
  sdl2_net/trunk/keys/pgp/
  sdl2_net/trunk/keys/pgp/1528635D8053A57F77D1E08630A59377A7763BE6.asc
Modified:
  sdl2_net/trunk/PKGBUILD

---+
 PKGBUILD  |   16 +---
 keys/pgp/1528635D8053A57F77D1E08630A59377A7763BE6.asc |1 +
 2 files changed, 10 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 21:41:53 UTC (rev 454455)
+++ PKGBUILD2022-08-23 22:01:47 UTC (rev 454456)
@@ -1,16 +1,18 @@
-# Maintainer: Sven-Hendrik Haase 
+# Maintainer: Sven-Hendrik Haase 
 
 pkgname=sdl2_net
 epoch=1
-pkgver=2.0.1
-pkgrel=3
+pkgver=2.2.0
+pkgrel=1
 pkgdesc="A small sample cross-platform networking library (Version 2)"
 arch=('x86_64')
-url="http://www.libsdl.org/projects/SDL_net;
+url="https://github.com/libsdl-org/SDL_net;
 license=('MIT')
 depends=(sdl2)
-source=("https://www.libsdl.org/projects/SDL_net/release/SDL2_net-${pkgver}.tar.gz;)
-sha512sums=('d27faee3cddc3592dae38947e6c1df0cbaa95f82fde9c87db6d11f6312d868cea74f6830ad07ceeb3d0d75e9424cebf39e54fddf9a1147e8d9e664609de92b7a')
+source=("https://github.com/libsdl-org/SDL_net/releases/download/release-${pkgver}/SDL2_net-${pkgver}.tar.gz"{,.sig})
+sha512sums=('fa22f1a2c777aac6932551b5adc925288c424dc1af46a974fdb2e3579205b40b204db01d2a8c4048aa333a200efc241f784b9bc9276277e8ab4d23edb023ab69'
+'SKIP')
+validpgpkeys=('1528635D8053A57F77D1E08630A59377A7763BE6') # Sam Lantinga
 
 build() {
   cd "${srcdir}/SDL2_net-${pkgver}/"
@@ -23,5 +25,5 @@
   cd "${srcdir}/SDL2_net-${pkgver}/"
 
   make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }

Added: keys/pgp/1528635D8053A57F77D1E08630A59377A7763BE6.asc
===
(Binary files differ)

Index: sdl2_net/trunk/keys/pgp/1528635D8053A57F77D1E08630A59377A7763BE6.asc
===
--- keys/pgp/1528635D8053A57F77D1E08630A59377A7763BE6.asc   2022-08-23 
21:41:53 UTC (rev 454455)
+++ keys/pgp/1528635D8053A57F77D1E08630A59377A7763BE6.asc   2022-08-23 
22:01:47 UTC (rev 454456)

Property changes on: 
sdl2_net/trunk/keys/pgp/1528635D8053A57F77D1E08630A59377A7763BE6.asc
___
Added: svn:mime-type
## -0,0 +1 ##
+application/pgp-keys
\ No newline at end of property


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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 21:54:28
  Author: arodseth
Revision: 1275957

archrelease: copy trunk to community-x86_64

Added:
  libcss/repos/community-x86_64/PKGBUILD
(from rev 1275956, libcss/trunk/PKGBUILD)
Deleted:
  libcss/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 21:54:23 UTC (rev 1275956)
+++ PKGBUILD2022-08-23 21:54:28 UTC (rev 1275957)
@@ -1,39 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Brad Fanella 
-# Contributor: Daniel J Griffiths 
-
-pkgname=libcss
-pkgver=0.9.1
-pkgrel=4
-pkgdesc='CSS parser and selection engine'
-arch=(x86_64)
-url='https://www.netsurf-browser.org/projects/libcss/'
-license=(MIT)
-makedepends=(netsurf-buildsystem)
-depends=('libparserutils>=0.2.4' 'libwapcaplet>=0.4.3')
-source=("https://download.netsurf-browser.org/libs/releases/libcss-$pkgver-src.tar.gz;)
-b2sums=('32206403f77997e6692eed00c9233e6f49f08efc2515901a8bef7590883e44ef320511368fe5a67968102911d849696a4419735c7f6691f0f272fcc3b9a000d8')
-
-prepare() {
-  sed -i 's,_BSD_SOURCE,_DEFAULT_SOURCE,' "$pkgname-$pkgver/Makefile"
-}
-
-build() {
-  CFLAGS+=' -ffat-lto-objects -w'
-  make -C $pkgname-$pkgver \
-COMPONENT_TYPE=lib-shared \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr
-}
-
-package() {
-  make -C $pkgname-$pkgver \
-DESTDIR="$pkgdir" \
-INCLUDEDIR=include \
-LIBDIR=lib \
-PREFIX=/usr \
-install
-  install -Dm644 $pkgname-$pkgver/COPYING \
-"$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: libcss/repos/community-x86_64/PKGBUILD (from rev 1275956, 
libcss/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 21:54:28 UTC (rev 1275957)
@@ -0,0 +1,40 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Brad Fanella 
+# Contributor: Daniel J Griffiths 
+
+pkgname=libcss
+pkgver=0.9.1
+pkgrel=5
+pkgdesc='CSS parser and selection engine'
+arch=(x86_64)
+url='https://www.netsurf-browser.org/projects/libcss/'
+license=(MIT)
+makedepends=(netsurf-buildsystem)
+depends=('libparserutils>=0.2.4' 'libwapcaplet>=0.4.3')
+source=("https://download.netsurf-browser.org/libs/releases/libcss-$pkgver-src.tar.gz;)
+b2sums=('32206403f77997e6692eed00c9233e6f49f08efc2515901a8bef7590883e44ef320511368fe5a67968102911d849696a4419735c7f6691f0f272fcc3b9a000d8')
+
+prepare() {
+  sed -i 's,_BSD_SOURCE,_DEFAULT_SOURCE,' $pkgname-$pkgver/Makefile
+}
+
+build() {
+  CFLAGS+=' -ffat-lto-objects -w'
+  make -C $pkgname-$pkgver \
+COMPONENT_TYPE=lib-shared \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr
+}
+
+package() {
+  make -C $pkgname-$pkgver \
+COMPONENT_TYPE=lib-shared \
+DESTDIR="$pkgdir" \
+INCLUDEDIR=include \
+LIBDIR=lib \
+PREFIX=/usr \
+install
+  install -Dm644 $pkgname-$pkgver/COPYING \
+"$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 21:54:23
  Author: arodseth
Revision: 1275956

Add COMPONENT_TYPE=lib-shared

Modified:
  libcss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 21:52:20 UTC (rev 1275955)
+++ PKGBUILD2022-08-23 21:54:23 UTC (rev 1275956)
@@ -4,7 +4,7 @@
 
 pkgname=libcss
 pkgver=0.9.1
-pkgrel=4
+pkgrel=5
 pkgdesc='CSS parser and selection engine'
 arch=(x86_64)
 url='https://www.netsurf-browser.org/projects/libcss/'
@@ -15,7 +15,7 @@
 
b2sums=('32206403f77997e6692eed00c9233e6f49f08efc2515901a8bef7590883e44ef320511368fe5a67968102911d849696a4419735c7f6691f0f272fcc3b9a000d8')
 
 prepare() {
-  sed -i 's,_BSD_SOURCE,_DEFAULT_SOURCE,' "$pkgname-$pkgver/Makefile"
+  sed -i 's,_BSD_SOURCE,_DEFAULT_SOURCE,' $pkgname-$pkgver/Makefile
 }
 
 build() {
@@ -29,6 +29,7 @@
 
 package() {
   make -C $pkgname-$pkgver \
+COMPONENT_TYPE=lib-shared \
 DESTDIR="$pkgdir" \
 INCLUDEDIR=include \
 LIBDIR=lib \



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

2022-08-23 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 23, 2022 @ 21:52:20
  Author: svenstaro
Revision: 1275955

archrelease: copy trunk to community-staging-x86_64

Added:
  cudnn/repos/community-staging-x86_64/
  cudnn/repos/community-staging-x86_64/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf
(from rev 1275954, cudnn/trunk/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf)
  cudnn/repos/community-staging-x86_64/PKGBUILD
(from rev 1275954, cudnn/trunk/PKGBUILD)

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

Copied: 
cudnn/repos/community-staging-x86_64/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf 
(from rev 1275954, cudnn/trunk/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf)
===
(Binary files differ)

Copied: cudnn/repos/community-staging-x86_64/PKGBUILD (from rev 1275954, 
cudnn/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 21:52:20 UTC (rev 1275955)
@@ -0,0 +1,49 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Adria Arrufat 
+# Contributor: Sami B. 
+# Contributor: Yunhui Fu 
+
+pkgname=cudnn
+pkgver=8.5.0.96
+_pkgver=8.5.0
+_cudaver=11.7
+_majorver=8
+_archive="cudnn-linux-x86_64-${pkgver}_cuda11-archive.tar.xz"
+pkgrel=1
+pkgdesc="NVIDIA CUDA Deep Neural Network library"
+arch=('x86_64')
+url="https://developer.nvidia.com/cuDNN;
+license=('custom')
+depends=('cuda>='"${_cudaver}")
+options=(!strip staticlibs)
+# To figure out these URLs, check out the Dockerfiles at
+# https://gitlab.com/nvidia/container-images/cuda/-/tree/master/dist for the 
appropriate cuda version
+# or make an NVIDIA Developer account.
+# Alternatively, check 
https://github.com/pytorch/builder/blob/master/common/install_cuda.sh
+# or 
https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/
+source=("https://developer.download.nvidia.com/compute/redist/cudnn/v${_pkgver}/local_installers/${_cudaver}/${_archive};
+"NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf")
+sha512sums=('b206b9871b0d877005bd0ee91d8f661776c493e8464e3ce9ebf605e49a4bc759b00eccf078b31519fb8697a3f4a2082731cb88c5f5a6c3649c05f562b271a1cb'
+
'38bbb7eb287914e4d7ba79da20a47222382687832d4ba0290715199a129c08715a23681800cf8d381f40e24202470a7b20505a31c8cea51a78762a740860251b')
+noextract=("${_archive}")
+
+package() {
+  mkdir -p "${pkgdir}"/usr/share/licenses/
+  tar xf "${_archive}" --strip-components 1 -C "${pkgdir}/usr"
+
+  find "${pkgdir}/usr/lib" -type f \( -iname "*.a" -or -iname "*.a.*" \) 
-print0 | while read -rd $'\0' _so_file; do
+# make sure static libraries have proper permissions
+chmod 644 "${_so_file}"
+  done
+
+  install -Dm644 \
+  "${srcdir}"/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf \
+  
"${pkgdir}"/usr/share/licenses/"${pkgname}"/NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf
+
+  mv "${pkgdir}"/usr/LICENSE 
"${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
+
+  # fix permissions
+  chown -R root:root "${pkgdir}"/*
+}
+
+# vim: ts=2 sw=2 ft=sh syn=sh et



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

2022-08-23 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, August 23, 2022 @ 21:52:01
  Author: svenstaro
Revision: 1275954

upgpkg: cudnn 8.5.0.96-1

Modified:
  cudnn/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 21:38:35 UTC (rev 1275953)
+++ PKGBUILD2022-08-23 21:52:01 UTC (rev 1275954)
@@ -4,12 +4,12 @@
 # Contributor: Yunhui Fu 
 
 pkgname=cudnn
-pkgver=8.4.1.50
-_pkgver=8.4.1
-_cudaver=11.6
+pkgver=8.5.0.96
+_pkgver=8.5.0
+_cudaver=11.7
 _majorver=8
-_archive="cudnn-linux-x86_64-${pkgver}_cuda${_cudaver}-archive.tar.xz"
-pkgrel=2
+_archive="cudnn-linux-x86_64-${pkgver}_cuda11-archive.tar.xz"
+pkgrel=1
 pkgdesc="NVIDIA CUDA Deep Neural Network library"
 arch=('x86_64')
 url="https://developer.nvidia.com/cuDNN;
@@ -23,7 +23,7 @@
 # or 
https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/
 
source=("https://developer.download.nvidia.com/compute/redist/cudnn/v${_pkgver}/local_installers/${_cudaver}/${_archive};
 "NVIDIA_SLA+cuDNN_Supp_Feb2017_release.pdf")
-sha512sums=('bf2069edf5c73db325d4ef27e3976169b9bd32afc49f012bd1e6f7d9bd374179dd9312538e7be7b0f8d5da0f2edd79b6788868e183f00f8b99fda185302d07c3'
+sha512sums=('b206b9871b0d877005bd0ee91d8f661776c493e8464e3ce9ebf605e49a4bc759b00eccf078b31519fb8697a3f4a2082731cb88c5f5a6c3649c05f562b271a1cb'
 
'38bbb7eb287914e4d7ba79da20a47222382687832d4ba0290715199a129c08715a23681800cf8d381f40e24202470a7b20505a31c8cea51a78762a740860251b')
 noextract=("${_archive}")
 



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

2022-08-23 Thread Maxim Baz via arch-commits
Date: Tuesday, August 23, 2022 @ 21:38:35
  Author: maximbaz
Revision: 1275953

archrelease: copy trunk to community-x86_64

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

-+
 PKGBUILD|  208 +++---
 notmuch.install |   16 ++--
 2 files changed, 112 insertions(+), 112 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 21:38:30 UTC (rev 1275952)
+++ PKGBUILD2022-08-23 21:38:35 UTC (rev 1275953)
@@ -1,104 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Maintainer: Maxim Baz <$pkgbase at maximbaz dot com>
-# Contributor: Daniel Wallace 
-# Contributor: fauno 
-# Contributor: Olivier Ramonat 
-# Contributor: Richard Murri 
-
-pkgbase=notmuch
-pkgname=('notmuch' 'notmuch-vim' 'notmuch-mutt' 'notmuch-runtime')
-pkgver=0.36
-pkgrel=1
-arch=('x86_64')
-url="https://notmuchmail.org/;
-license=('GPL3')
-makedepends=('python' 'python-sphinx' 'python-cffi' 'emacs' 'gnupg' 'ruby' 
'pkgconfig' 'xapian-core' 'gmime3' 'talloc')
-options=(!distcc !makeflags)
-source=("https://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('00f89e46467cad1cb8135644ed6655e88c93edcba553ced503c21e53f048eb49a333127649ea69bd30e164e8322a3e1dd0fcd672b93e087a8b470e60a6e838fa')
-
-build() {
-cd "$srcdir/$pkgbase-$pkgver"
-
-./configure --prefix=/usr --sysconfdir=/etc --includedir=/usr/include 
--zshcompletiondir=/usr/share/zsh/site-functions
-make
-
-make -C "contrib/${pkgbase}-mutt"
-
-make ruby-bindings
-
-cd "$srcdir/$pkgbase-$pkgver/bindings/python"
-python setup.py build
-
-cd "$srcdir/$pkgbase-$pkgver/bindings/python-cffi"
-python setup.py build
-}
-
-package_notmuch-runtime(){
-pkgdesc="Runtime for notmuch and notmuch-mutt"
-depends=('xapian-core' 'gmime3' 'talloc')
-
-cd "$srcdir/$pkgbase-$pkgver"
-
-make DESTDIR="$pkgdir/" LIBDIR_IN_LDCONFIG=0 WITH_EMACS=0 install
-make DESTDIR="$pkgdir/" WITH_BASH=1 install-completion
-
-# Install manpages
-make DESTDIR="$pkgdir" install-man
-
-# this is provided both with and without a statically included 
libnotmuch.so ???
-install -Dm755 notmuch-shared "$pkgdir/usr/bin/notmuch"
-}
-
-
-package_notmuch-vim(){
-pkgdesc="Vim plugins for notmuch"
-depends=('notmuch-runtime' 'ruby')
-optdepends=('ruby-mail: for sending mail'
-'elinks: for previewing html mail')
-
-make -C "$srcdir/$pkgbase-$pkgver/vim" DESTDIR="$pkgdir" 
prefix="/usr/share/vim/vimfiles" install
-}
-
-
-package_notmuch(){
-pkgdesc="Notmuch is not much of an email program"
-depends=('notmuch-runtime')
-optdepends=('emacs: for using the emacs interface'
-'vim: for using the vim interface'
-'python-cffi: for using the python-cffi bindings'
-'ruby: for using the ruby bindings'
-'gnupg: for email encryption')
-install=notmuch.install
-
-cd "$srcdir/$pkgbase-$pkgver"
-
-# Install emacs parts
-make DESTDIR="$pkgdir" install-emacs
-
-
-# Install ruby bindings
-sed -i 's:INSTALL = .*[^D]$:& -D:' bindings/ruby/Makefile
-make -C bindings/ruby exec_prefix="$pkgdir"/usr install
-
-# Install python bindings
-cd "$srcdir/$pkgbase-$pkgver/bindings/python"
-python setup.py install --root="$pkgdir" --optimize=1
-
-cd "$srcdir/$pkgbase-$pkgver/bindings/python-cffi"
-python setup.py install --root="$pkgdir" --optimize=1
-
-# Remove mimeinfo.cache (fixes FS#53629).
-rm "$pkgdir/usr/share/applications/mimeinfo.cache"
-}
-
-package_notmuch-mutt(){
-pkgdesc="The mail indexer"
-depends=('notmuch-runtime' 'perl-mailtools' 'perl-mail-box' 
'perl-term-readline-gnu' 'perl-string-shellquote' 'perl-file-which')
-
-cd "$srcdir/$pkgbase-$pkgver"
-
-install -Dm755 "contrib/$pkgname/$pkgname" "$pkgdir/usr/bin/$pkgname"
-install -Dm644 "contrib/$pkgname/${pkgname}.rc" 
"${pkgdir}/etc/Muttrc.d/${pkgname}.rc"
-install -Dm644 "contrib/$pkgname/${pkgname}.1" 
"${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}

Copied: notmuch/repos/community-x86_64/PKGBUILD (from rev 1275952, 
notmuch/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 21:38:35 UTC (rev 1275953)
@@ -0,0 +1,104 @@
+# Maintainer: Lukas Fleischer 
+# Maintainer: Maxim Baz <$pkgbase at maximbaz dot com>
+# Contributor: Daniel Wallace 
+# Contributor: fauno 
+# Contributor: Olivier Ramonat 
+# Contributor: Richard Murri 
+
+pkgbase=notmuch
+pkgname=('notmuch' 'notmuch-vim' 'notmuch-mutt' 'notmuch-runtime')
+pkgver=0.37
+pkgrel=1
+arch=('x86_64')

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

2022-08-23 Thread Maxim Baz via arch-commits
Date: Tuesday, August 23, 2022 @ 21:38:30
  Author: maximbaz
Revision: 1275952

upgpkg: notmuch 0.37-1

Modified:
  notmuch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 21:29:15 UTC (rev 1275951)
+++ PKGBUILD2022-08-23 21:38:30 UTC (rev 1275952)
@@ -7,15 +7,15 @@
 
 pkgbase=notmuch
 pkgname=('notmuch' 'notmuch-vim' 'notmuch-mutt' 'notmuch-runtime')
-pkgver=0.36
+pkgver=0.37
 pkgrel=1
 arch=('x86_64')
 url="https://notmuchmail.org/;
 license=('GPL3')
-makedepends=('python' 'python-sphinx' 'python-cffi' 'emacs' 'gnupg' 'ruby' 
'pkgconfig' 'xapian-core' 'gmime3' 'talloc')
+makedepends=('python' 'python-setuptools' 'python-sphinx' 'python-cffi' 
'emacs' 'gnupg' 'ruby' 'pkgconfig' 'xapian-core' 'gmime3' 'talloc')
 options=(!distcc !makeflags)
 source=("https://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('00f89e46467cad1cb8135644ed6655e88c93edcba553ced503c21e53f048eb49a333127649ea69bd30e164e8322a3e1dd0fcd672b93e087a8b470e60a6e838fa')
+sha512sums=('31cac1ff03b139b18a4fec5e29907ba0e3a965f0a7bf5f2f2b0f75980f9663173745be854e83943f344a09cdb7f5615fa48218e327c4ade7a55b3a22b2a9c45e')
 
 build() {
 cd "$srcdir/$pkgbase-$pkgver"



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

2022-08-23 Thread Caleb Maclennan via arch-commits
Date: Tuesday, August 23, 2022 @ 21:29:15
  Author: alerque
Revision: 1275951

archrelease: copy trunk to community-any

Added:
  lua-luassert/repos/community-any/PKGBUILD
(from rev 1275950, lua-luassert/trunk/PKGBUILD)
Deleted:
  lua-luassert/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 21:29:06 UTC (rev 1275950)
+++ PKGBUILD2022-08-23 21:29:15 UTC (rev 1275951)
@@ -1,62 +0,0 @@
-# Maintainer: Daurnimator 
-
-pkgname=("lua-luassert" "lua53-luassert" "lua52-luassert" "lua51-luassert")
-pkgver=1.8.0
-pkgrel=7
-pkgdesc='Assertion library for Lua'
-arch=('any')
-url="https://github.com/Olivine-Labs/luassert;
-license=('MIT')
-makedepends=('luarocks'
- 'lua51' 'lua52' 'lua53' 'lua' # 
https://github.com/luarocks/luarocks/issues/1275
-)
-depends=()
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Olivine-Labs/luassert/archive/v$pkgver.tar.gz;)
-sha256sums=('5955234a63fdc208674314b2e97982bb551459b85b8ff11611a50421c6a29c76')
-
-build() {
-  cd "luassert-$pkgver"
-  for v in 5.1 5.2 5.3 5.4; do
-mkdir -p "$v/"
-luarocks make --lua-version="$v" \
-  --pack-binary-rock --deps-mode=none \
-  luassert-"$pkgver"-0.rockspec
-mv luassert-"$pkgver"-0.*.rock "$v/"
-  done
-}
-
-package_lua-luassert() {
-  pkgdesc="$pkgdesc 5.4"
-  depends+=('lua-say')
-
-  cd "luassert-$pkgver"
-  luarocks install --lua-version=5.4 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.4/*.rock
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua53-luassert() {
-  pkgdesc="$pkgdesc 5.3"
-  depends+=('lua53-say')
-
-  cd "luassert-$pkgver"
-  luarocks install --lua-version=5.3 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.3/*.rock
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua52-luassert() {
-  pkgdesc="$pkgdesc 5.2"
-  depends+=('lua52-say')
-
-  cd "luassert-$pkgver"
-  luarocks install --lua-version=5.2 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.2/*.rock
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua51-luassert() {
-  pkgdesc="$pkgdesc 5.1"
-  depends+=('lua51-say')
-
-  cd "luassert-$pkgver"
-  luarocks install --lua-version=5.1 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.1/*.rock
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: lua-luassert/repos/community-any/PKGBUILD (from rev 1275950, 
lua-luassert/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 21:29:15 UTC (rev 1275951)
@@ -0,0 +1,52 @@
+# Maintainer: Daurnimator 
+
+pkgname=("lua-luassert" "lua53-luassert" "lua52-luassert" "lua51-luassert")
+pkgver=1.9.0
+pkgrel=1
+_rockrel=1
+pkgdesc='Assertion library for Lua'
+arch=('any')
+url='https://github.com/lunarmodules/luassert'
+license=('MIT')
+makedepends=('luarocks'
+ # https://github.com/luarocks/luarocks/issues/1275
+ 'lua51'
+ 'lua52'
+ 'lua53'
+ 'lua')
+_archive="luassert-$pkgver"
+source=("$url/archive/v$pkgver/$_archive.tar.gz")
+sha256sums=('1db0fabf1bd87392860375b89a8a37d17b687325c988be0df8c42e7e96e7ed73')
+
+build() {
+cd "$_archive"
+for v in 5.1 5.2 5.3 5.4; do
+mkdir -p "$v/"
+luarocks make --pack-binary-rock --lua-version="$v" --deps-mode=none 
rockspecs/$_archive-$_rockrel.rockspec
+mv "$_archive-$_rockrel".*.rock "$v/"
+done
+}
+
+_package() {
+pkgdesc+=" for Lua $1"
+cd "$_archive"
+depends+=("${pkgname%-*}" "${pkgname%-*}-say")
+luarocks install --lua-version="$1" --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest "$1"/*.rock
+install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}
+
+package_lua51-luassert() {
+_package 5.1
+}
+
+package_lua52-luassert() {
+_package 5.2
+}
+
+package_lua53-luassert() {
+_package 5.3
+}
+
+package_lua-luassert() {
+_package 5.4
+}



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

2022-08-23 Thread Caleb Maclennan via arch-commits
Date: Tuesday, August 23, 2022 @ 21:29:06
  Author: alerque
Revision: 1275950

upgpkg: lua-luassert 1.9.0-1

Modified:
  lua-luassert/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 21:24:42 UTC (rev 1275949)
+++ PKGBUILD2022-08-23 21:29:06 UTC (rev 1275950)
@@ -1,62 +1,52 @@
 # Maintainer: Daurnimator 
 
 pkgname=("lua-luassert" "lua53-luassert" "lua52-luassert" "lua51-luassert")
-pkgver=1.8.0
-pkgrel=7
+pkgver=1.9.0
+pkgrel=1
+_rockrel=1
 pkgdesc='Assertion library for Lua'
 arch=('any')
-url="https://github.com/Olivine-Labs/luassert;
+url='https://github.com/lunarmodules/luassert'
 license=('MIT')
 makedepends=('luarocks'
- 'lua51' 'lua52' 'lua53' 'lua' # 
https://github.com/luarocks/luarocks/issues/1275
-)
-depends=()
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Olivine-Labs/luassert/archive/v$pkgver.tar.gz;)
-sha256sums=('5955234a63fdc208674314b2e97982bb551459b85b8ff11611a50421c6a29c76')
+ # https://github.com/luarocks/luarocks/issues/1275
+ 'lua51'
+ 'lua52'
+ 'lua53'
+ 'lua')
+_archive="luassert-$pkgver"
+source=("$url/archive/v$pkgver/$_archive.tar.gz")
+sha256sums=('1db0fabf1bd87392860375b89a8a37d17b687325c988be0df8c42e7e96e7ed73')
 
 build() {
-  cd "luassert-$pkgver"
-  for v in 5.1 5.2 5.3 5.4; do
-mkdir -p "$v/"
-luarocks make --lua-version="$v" \
-  --pack-binary-rock --deps-mode=none \
-  luassert-"$pkgver"-0.rockspec
-mv luassert-"$pkgver"-0.*.rock "$v/"
-  done
+cd "$_archive"
+for v in 5.1 5.2 5.3 5.4; do
+mkdir -p "$v/"
+luarocks make --pack-binary-rock --lua-version="$v" --deps-mode=none 
rockspecs/$_archive-$_rockrel.rockspec
+mv "$_archive-$_rockrel".*.rock "$v/"
+done
 }
 
-package_lua-luassert() {
-  pkgdesc="$pkgdesc 5.4"
-  depends+=('lua-say')
-
-  cd "luassert-$pkgver"
-  luarocks install --lua-version=5.4 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.4/*.rock
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+_package() {
+pkgdesc+=" for Lua $1"
+cd "$_archive"
+depends+=("${pkgname%-*}" "${pkgname%-*}-say")
+luarocks install --lua-version="$1" --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest "$1"/*.rock
+install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
 }
 
-package_lua53-luassert() {
-  pkgdesc="$pkgdesc 5.3"
-  depends+=('lua53-say')
-
-  cd "luassert-$pkgver"
-  luarocks install --lua-version=5.3 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.3/*.rock
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+package_lua51-luassert() {
+_package 5.1
 }
 
 package_lua52-luassert() {
-  pkgdesc="$pkgdesc 5.2"
-  depends+=('lua52-say')
+_package 5.2
+}
 
-  cd "luassert-$pkgver"
-  luarocks install --lua-version=5.2 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.2/*.rock
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+package_lua53-luassert() {
+_package 5.3
 }
 
-package_lua51-luassert() {
-  pkgdesc="$pkgdesc 5.1"
-  depends+=('lua51-say')
-
-  cd "luassert-$pkgver"
-  luarocks install --lua-version=5.1 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.1/*.rock
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+package_lua-luassert() {
+_package 5.4
 }



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

2022-08-23 Thread Caleb Maclennan via arch-commits
Date: Tuesday, August 23, 2022 @ 21:24:42
  Author: alerque
Revision: 1275949

archrelease: copy trunk to community-any

Added:
  lua-say/repos/community-any/PKGBUILD
(from rev 1275948, lua-say/trunk/PKGBUILD)
Deleted:
  lua-say/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 21:24:34 UTC (rev 1275948)
+++ PKGBUILD2022-08-23 21:24:42 UTC (rev 1275949)
@@ -1,51 +0,0 @@
-# Maintainer: Daurnimator 
-
-pkgname=('lua-say' 'lua51-say' 'lua52-say' 'lua53-say')
-pkgver=1.4.0
-pkgrel=1
-_rockrel=1
-pkgdesc='Lua string hashing library, useful for internationalization'
-arch=('any')
-url='https://github.com/lunarmodules/say'
-license=('MIT')
-makedepends=('luarocks'
- # https://github.com/luarocks/luarocks/issues/1275
- 'lua51'
- 'lua52'
- 'lua53'
- 'lua')
-_archive="say-$pkgver"
-source=("$url/archive/v$pkgver/$_archive.tar.gz")
-sha256sums=('b81e7519ebdff47e1aee69b2a53eda201824cdd7a15e743ff322b8e4fde350cb')
-
-build() {
-cd "$_archive"
-for v in 5.1 5.2 5.3 5.4; do
-mkdir -p "$v/"
-luarocks make --pack-binary-rock --lua-version="$v" --deps-mode=none 
rockspecs/$_archive-$_rockrel.rockspec
-mv "$_archive-$_rockrel".*.rock "$v/"
-done
-}
-
-_package() {
-pkgdesc+=" for Lua $1"
-cd "$_archive"
-luarocks install --lua-version="$1" --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest "$1"/*.rock
-install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
-}
-
-package_lua51-say() {
-_package 5.1
-}
-
-package_lua52-say() {
-_package 5.2
-}
-
-package_lua53-say() {
-_package 5.3
-}
-
-package_lua-say() {
-_package 5.4
-}

Copied: lua-say/repos/community-any/PKGBUILD (from rev 1275948, 
lua-say/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 21:24:42 UTC (rev 1275949)
@@ -0,0 +1,52 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-say' 'lua51-say' 'lua52-say' 'lua53-say')
+pkgver=1.4.0
+pkgrel=2
+_rockrel=1
+pkgdesc='Lua string hashing library, useful for internationalization'
+arch=('any')
+url='https://github.com/lunarmodules/say'
+license=('MIT')
+makedepends=('luarocks'
+ # https://github.com/luarocks/luarocks/issues/1275
+ 'lua51'
+ 'lua52'
+ 'lua53'
+ 'lua')
+_archive="say-$pkgver"
+source=("$url/archive/v$pkgver/$_archive.tar.gz")
+sha256sums=('b81e7519ebdff47e1aee69b2a53eda201824cdd7a15e743ff322b8e4fde350cb')
+
+build() {
+cd "$_archive"
+for v in 5.1 5.2 5.3 5.4; do
+mkdir -p "$v/"
+luarocks make --pack-binary-rock --lua-version="$v" --deps-mode=none 
rockspecs/$_archive-$_rockrel.rockspec
+mv "$_archive-$_rockrel".*.rock "$v/"
+done
+}
+
+_package() {
+pkgdesc+=" for Lua $1"
+cd "$_archive"
+depends+=("${pkgname%-*}")
+luarocks install --lua-version="$1" --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest "$1"/*.rock
+install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}
+
+package_lua51-say() {
+_package 5.1
+}
+
+package_lua52-say() {
+_package 5.2
+}
+
+package_lua53-say() {
+_package 5.3
+}
+
+package_lua-say() {
+_package 5.4
+}



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 21:24:31
  Author: arodseth
Revision: 1275947

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 21:24:26 UTC (rev 1275946)
+++ PKGBUILD2022-08-23 21:24:31 UTC (rev 1275947)
@@ -1,42 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Maintainer: David Runge 
-# Contributor: Panagiotis Mavrogiorgos 
-
-pkgname=nuitka
-pkgver=1.0.5
-pkgrel=1
-pkgdesc='Python compiler with full language support and CPython compatibility'
-arch=(any)
-url='https://nuitka.net/'
-license=(Apache)
-depends=(python-appdirs scons)
-makedepends=(gdb patchelf python-build python-installer python-setuptools 
python-wheel)
-checkdepends=(ccache fuse2 python-boto3 python-brotli strace)
-optdepends=('ccache: for build caching'
-'chrpath: for building standalone executables'
-'pyside2: for using Qt5 APIs')
-source=("https://nuitka.net/releases/${pkgname^}-${pkgver}.tar.bz2;)
-b2sums=('d4d1fb588d6390c3d58054751c26fd68c132b6ca9738576edebcff4fda0734de34b9ffe3822624ca1dbc138807d054839e7104b1b506b37ea7e0eacc92c31c22')
-
-prepare() {
-  cd ${pkgname^}-$pkgver
-  # in the build environment /etc/os-release does not exist, but 
/usr/lib/os-release does
-  sed -e 's,/etc/os-release,/usr/lib/os-release,' -i nuitka/utils/Utils.py
-}
-
-build() {
-  cd ${pkgname^}-$pkgver
-  python -m build --wheel --no-isolation
-}
-
-# TODO: Make all tests pass and/or report issues upstream (some have already 
been reported)
-#check() {
-#  cd ${pkgname^}-$pkgver
-#  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test
-#}
-
-package() {
-  cd ${pkgname^}-$pkgver
-  python -m installer --destdir="$pkgdir" dist/*.whl
-  install -vDm 644 {Changelog,Developer_Manual,README}.rst -t 
"$pkgdir/usr/share/doc/$pkgname/"
-}

Copied: nuitka/repos/community-any/PKGBUILD (from rev 1275946, 
nuitka/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 21:24:31 UTC (rev 1275947)
@@ -0,0 +1,41 @@
+# Maintainer: Alexander F. Rødseth 
+# Maintainer: David Runge 
+# Contributor: Panagiotis Mavrogiorgos 
+
+pkgname=nuitka
+pkgver=1.0.5
+pkgrel=2
+pkgdesc='Python compiler with full language support and CPython compatibility'
+arch=(any)
+url='https://nuitka.net/'
+license=(Apache)
+depends=(patchelf python-appdirs scons)
+makedepends=(gdb python-build python-installer python-setuptools python-wheel)
+checkdepends=(ccache fuse2 python-boto3 python-brotli strace)
+optdepends=('ccache: for build caching'
+'pyside2: for using Qt5 APIs')
+source=("https://nuitka.net/releases/${pkgname^}-${pkgver}.tar.bz2;)
+b2sums=('d4d1fb588d6390c3d58054751c26fd68c132b6ca9738576edebcff4fda0734de34b9ffe3822624ca1dbc138807d054839e7104b1b506b37ea7e0eacc92c31c22')
+
+prepare() {
+  cd ${pkgname^}-$pkgver
+  # in the build environment /etc/os-release does not exist, but 
/usr/lib/os-release does
+  sed -e 's,/etc/os-release,/usr/lib/os-release,' -i nuitka/utils/Utils.py
+}
+
+build() {
+  cd ${pkgname^}-$pkgver
+  python -m build --wheel --no-isolation
+}
+
+# TODO: Make tests pass and/or report issues upstream (some have already been 
reported)
+#check() {
+#  cd ${pkgname^}-$pkgver
+#  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test
+#}
+
+package() {
+  cd ${pkgname^}-$pkgver
+  python -m installer --destdir="$pkgdir" dist/*.whl
+  install -vDm 644 {Changelog,Developer_Manual,README}.rst -t 
"$pkgdir/usr/share/doc/$pkgname/"
+}



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

2022-08-23 Thread Caleb Maclennan via arch-commits
Date: Tuesday, August 23, 2022 @ 21:24:34
  Author: alerque
Revision: 1275948

upgpkg: lua-say 1.4.0-2; add missing deps on matching lua interpreter

Modified:
  lua-say/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 21:24:31 UTC (rev 1275947)
+++ PKGBUILD2022-08-23 21:24:34 UTC (rev 1275948)
@@ -2,7 +2,7 @@
 
 pkgname=('lua-say' 'lua51-say' 'lua52-say' 'lua53-say')
 pkgver=1.4.0
-pkgrel=1
+pkgrel=2
 _rockrel=1
 pkgdesc='Lua string hashing library, useful for internationalization'
 arch=('any')
@@ -30,6 +30,7 @@
 _package() {
 pkgdesc+=" for Lua $1"
 cd "$_archive"
+depends+=("${pkgname%-*}")
 luarocks install --lua-version="$1" --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest "$1"/*.rock
 install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
 }



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

2022-08-23 Thread Alexander Rødseth via arch-commits
Date: Tuesday, August 23, 2022 @ 21:24:26
  Author: arodseth
Revision: 1275946

Remove chrpath optdep, add patchelf dep, ref #75674

Modified:
  nuitka/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 20:54:44 UTC (rev 1275945)
+++ PKGBUILD2022-08-23 21:24:26 UTC (rev 1275946)
@@ -4,16 +4,15 @@
 
 pkgname=nuitka
 pkgver=1.0.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Python compiler with full language support and CPython compatibility'
 arch=(any)
 url='https://nuitka.net/'
 license=(Apache)
-depends=(python-appdirs scons)
-makedepends=(gdb patchelf python-build python-installer python-setuptools 
python-wheel)
+depends=(patchelf python-appdirs scons)
+makedepends=(gdb python-build python-installer python-setuptools python-wheel)
 checkdepends=(ccache fuse2 python-boto3 python-brotli strace)
 optdepends=('ccache: for build caching'
-'chrpath: for building standalone executables'
 'pyside2: for using Qt5 APIs')
 source=("https://nuitka.net/releases/${pkgname^}-${pkgver}.tar.bz2;)
 
b2sums=('d4d1fb588d6390c3d58054751c26fd68c132b6ca9738576edebcff4fda0734de34b9ffe3822624ca1dbc138807d054839e7104b1b506b37ea7e0eacc92c31c22')
@@ -29,7 +28,7 @@
   python -m build --wheel --no-isolation
 }
 
-# TODO: Make all tests pass and/or report issues upstream (some have already 
been reported)
+# TODO: Make tests pass and/or report issues upstream (some have already been 
reported)
 #check() {
 #  cd ${pkgname^}-$pkgver
 #  ./tests/run-tests --no-other-python --skip-onefile-tests 
--skip-other-cpython-tests --skip-reflection-test



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

2022-08-23 Thread Massimiliano Torromeo via arch-commits
Date: Tuesday, August 23, 2022 @ 20:54:44
  Author: mtorromeo
Revision: 1275945

archrelease: copy trunk to community-x86_64

Added:
  cockpit-podman/repos/community-x86_64/PKGBUILD
(from rev 1275944, cockpit-podman/trunk/PKGBUILD)
Deleted:
  cockpit-podman/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 20:54:33 UTC (rev 1275944)
+++ PKGBUILD2022-08-23 20:54:44 UTC (rev 1275945)
@@ -1,17 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=cockpit-podman
-pkgver=51.1
-pkgrel=1
-pkgdesc='Cockpit UI for podman containers'
-arch=('x86_64')
-url='https://github.com/cockpit-project/cockpit-podman'
-license=(LGPL)
-depends=(cockpit podman)
-source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('9f515241cc8f8cf8df2991d4222a42863ebf23b33ffefd1fdf7ee63e9bdb5447')
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: cockpit-podman/repos/community-x86_64/PKGBUILD (from rev 1275944, 
cockpit-podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 20:54:44 UTC (rev 1275945)
@@ -0,0 +1,17 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=cockpit-podman
+pkgver=52
+pkgrel=1
+pkgdesc='Cockpit UI for podman containers'
+arch=('x86_64')
+url='https://github.com/cockpit-project/cockpit-podman'
+license=(LGPL)
+depends=(cockpit podman)
+source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
+sha256sums=('f9d46f55b5580541927e9fb034fab4a3e3e219b946e46fdfdb46d9206c7cdce4')
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}



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

2022-08-23 Thread Massimiliano Torromeo via arch-commits
Date: Tuesday, August 23, 2022 @ 20:54:33
  Author: mtorromeo
Revision: 1275944

upgpkg: cockpit-podman 52-1

Modified:
  cockpit-podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:46:37 UTC (rev 1275943)
+++ PKGBUILD2022-08-23 20:54:33 UTC (rev 1275944)
@@ -1,7 +1,7 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=cockpit-podman
-pkgver=51.1
+pkgver=52
 pkgrel=1
 pkgdesc='Cockpit UI for podman containers'
 arch=('x86_64')
@@ -9,7 +9,7 @@
 license=(LGPL)
 depends=(cockpit podman)
 
source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;)
-sha256sums=('9f515241cc8f8cf8df2991d4222a42863ebf23b33ffefd1fdf7ee63e9bdb5447')
+sha256sums=('f9d46f55b5580541927e9fb034fab4a3e3e219b946e46fdfdb46d9206c7cdce4')
 
 package() {
   cd $pkgname



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

2022-08-23 Thread Morten Linderud via arch-commits
Date: Tuesday, August 23, 2022 @ 19:46:37
  Author: foxboron
Revision: 1275943

archrelease: copy trunk to community-any

Added:
  patatt/repos/community-any/PKGBUILD
(from rev 1275942, patatt/trunk/PKGBUILD)
  patatt/repos/community-any/keys/
Deleted:
  patatt/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 19:46:30 UTC (rev 1275942)
+++ PKGBUILD2022-08-23 19:46:37 UTC (rev 1275943)
@@ -1,31 +0,0 @@
-# Maintainer: Morten Linderud 
-# Contributor: Thomas Weißschuh 
-
-pkgname=patatt
-pkgver=0.5.0
-pkgrel=1
-pkgdesc="A simple library to add cryptographic attestation to patches sent via 
email"
-arch=("any")
-depends=('python-pynacl')
-makedepends=('python-setuptools')
-url="https://git.kernel.org/pub/scm/utils/patatt/patatt.git/about/;
-license=("MIT")
-source=("https://git.kernel.org/pub/scm/utils/$pkgname/$pkgname.git/snapshot/$pkgname-$pkgver.tar."{gz,asc})
-validpgpkeys=('DE0E66E32F1FDD0902666B96E63EDCA9329DD07E')
-sha256sums=('cb499b15ddee88de997293d23b403bdb2e6ce19a71ca49ffbcde190f04d48d90'
-'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-  python setup.py build
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  python setup.py install --root="$pkgdir"
-  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  install -d "$pkgdir/usr/share/man/man5"
-  install -m644 man/*.5 "$pkgdir/usr/share/man/man5"
-}
-

Copied: patatt/repos/community-any/PKGBUILD (from rev 1275942, 
patatt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 19:46:37 UTC (rev 1275943)
@@ -0,0 +1,31 @@
+# Maintainer: Morten Linderud 
+# Contributor: Thomas Weißschuh 
+
+pkgname=patatt
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="A simple library to add cryptographic attestation to patches sent via 
email"
+arch=("any")
+depends=('python-pynacl')
+makedepends=('python-setuptools')
+url="https://git.kernel.org/pub/scm/utils/patatt/patatt.git/about/;
+license=("MIT")
+source=("https://git.kernel.org/pub/scm/utils/$pkgname/$pkgname.git/snapshot/$pkgname-$pkgver.tar."{gz,asc})
+validpgpkeys=('DE0E66E32F1FDD0902666B96E63EDCA9329DD07E')
+sha256sums=('fedcf1d5f96ae8db0a9c7e61a4cdedbbf987fe4a567e8f92907e9be1733d76c9'
+'SKIP')
+
+build() {
+  cd "$pkgname-$pkgver"
+  python setup.py build
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  python setup.py install --root="$pkgdir"
+  install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  install -d "$pkgdir/usr/share/man/man5"
+  install -m644 man/*.5 "$pkgdir/usr/share/man/man5"
+}
+



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

2022-08-23 Thread Morten Linderud via arch-commits
Date: Tuesday, August 23, 2022 @ 19:46:30
  Author: foxboron
Revision: 1275942

upgpkg: patatt 0.6.0-1

Modified:
  patatt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:43:21 UTC (rev 1275941)
+++ PKGBUILD2022-08-23 19:46:30 UTC (rev 1275942)
@@ -2,7 +2,7 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=patatt
-pkgver=0.5.0
+pkgver=0.6.0
 pkgrel=1
 pkgdesc="A simple library to add cryptographic attestation to patches sent via 
email"
 arch=("any")
@@ -12,7 +12,7 @@
 license=("MIT")
 
source=("https://git.kernel.org/pub/scm/utils/$pkgname/$pkgname.git/snapshot/$pkgname-$pkgver.tar."{gz,asc})
 validpgpkeys=('DE0E66E32F1FDD0902666B96E63EDCA9329DD07E')
-sha256sums=('cb499b15ddee88de997293d23b403bdb2e6ce19a71ca49ffbcde190f04d48d90'
+sha256sums=('fedcf1d5f96ae8db0a9c7e61a4cdedbbf987fe4a567e8f92907e9be1733d76c9'
 'SKIP')
 
 build() {



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:43:21
  Author: felixonmars
Revision: 1275941

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 1275940, haskell-language-server/trunk/PKGBUILD)

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

Copied: haskell-language-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 1275940, haskell-language-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:43:21 UTC (rev 1275941)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+
+pkgname=haskell-language-server
+pkgver=1.4.0.0
+pkgrel=6
+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=('2f9222b5b9d748aaa885908e8784acbc5ff5d0ff9142954aced2f53ea97e0ea4eb2d47119d0a03129038d729ea2b9fe05b864577d20bc493e12e0262f5454f99')
+
+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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:43:08
  Author: felixonmars
Revision: 1275940

upgpkg: haskell-language-server 1.4.0.0-6: rebuild with opentelemetry 0.8.0

Modified:
  haskell-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:41:50 UTC (rev 1275939)
+++ PKGBUILD2022-08-23 19:43:08 UTC (rev 1275940)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-language-server
 pkgver=1.4.0.0
-pkgrel=5
+pkgrel=6
 pkgdesc="LSP server for GHC"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:41:50
  Author: felixonmars
Revision: 1275939

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 1275938, 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 1275938, haskell-hls-pragmas-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:41:50 UTC (rev 1275939)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-pragmas-plugin
+pkgname=haskell-hls-pragmas-plugin
+pkgver=1.0.1.1
+pkgrel=20
+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=('1cf220d43053fe57a28dc09f5faa07a492a112a9ac2a4c0ca0c8c321d105c0b03ae6469e4075ff3e8bd2972dc1375d03ed4b5e4ea9194d660ef7cbaa0268e51f')
+
+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-pragmas-plugin/trunk (PKGBUILD)

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:41:37
  Author: felixonmars
Revision: 1275938

upgpkg: haskell-hls-pragmas-plugin 1.0.1.1-20: rebuild with opentelemetry 0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:41:29 UTC (rev 1275937)
+++ PKGBUILD2022-08-23 19:41:37 UTC (rev 1275938)
@@ -3,7 +3,7 @@
 _hkgname=hls-pragmas-plugin
 pkgname=haskell-hls-pragmas-plugin
 pkgver=1.0.1.1
-pkgrel=19
+pkgrel=20
 pkgdesc="Pragmas plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-pragmas-plugin;
 license=("Apache")



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:41:29
  Author: felixonmars
Revision: 1275937

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 1275936, 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 1275936, haskell-hls-call-hierarchy-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:41:29 UTC (rev 1275937)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-call-hierarchy-plugin
+pkgname=haskell-hls-call-hierarchy-plugin
+pkgver=1.0.1.0
+pkgrel=22
+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=('f9dbac75f9b2257359dabe9347edc46c262e11b62dddf7d8527592203b8ffdef')
+
+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-call-hierarchy-plugin/trunk (PKGBUILD)

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:41:16
  Author: felixonmars
Revision: 1275936

upgpkg: haskell-hls-call-hierarchy-plugin 1.0.1.0-22: rebuild with 
opentelemetry 0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:41:07 UTC (rev 1275935)
+++ PKGBUILD2022-08-23 19:41:16 UTC (rev 1275936)
@@ -3,7 +3,7 @@
 _hkgname=hls-call-hierarchy-plugin
 pkgname=haskell-hls-call-hierarchy-plugin
 pkgver=1.0.1.0
-pkgrel=21
+pkgrel=22
 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-haddock-comments-plugin/repos (2 files)

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:41:07
  Author: felixonmars
Revision: 1275935

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 1275934, 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 1275934, haskell-hls-haddock-comments-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:41:07 UTC (rev 1275935)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-haddock-comments-plugin
+pkgname=haskell-hls-haddock-comments-plugin
+pkgver=1.0.0.3
+pkgrel=223
+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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:40:54
  Author: felixonmars
Revision: 1275934

upgpkg: haskell-hls-haddock-comments-plugin 1.0.0.3-223: rebuild with 
opentelemetry 0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:40:42 UTC (rev 1275933)
+++ PKGBUILD2022-08-23 19:40:54 UTC (rev 1275934)
@@ -3,7 +3,7 @@
 _hkgname=hls-haddock-comments-plugin
 pkgname=haskell-hls-haddock-comments-plugin
 pkgver=1.0.0.3
-pkgrel=222
+pkgrel=223
 pkgdesc="Haddock comments plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server;
 license=("Apache")



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:40:42
  Author: felixonmars
Revision: 1275933

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 1275932, 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 1275932, haskell-hls-eval-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:40:42 UTC (rev 1275933)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-eval-plugin
+pkgname=haskell-hls-eval-plugin
+pkgver=1.1.2.0
+pkgrel=226
+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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:40:28
  Author: felixonmars
Revision: 1275932

upgpkg: haskell-hls-eval-plugin 1.1.2.0-226: rebuild with opentelemetry 0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:40:18 UTC (rev 1275931)
+++ PKGBUILD2022-08-23 19:40:28 UTC (rev 1275932)
@@ -3,7 +3,7 @@
 _hkgname=hls-eval-plugin
 pkgname=haskell-hls-eval-plugin
 pkgver=1.1.2.0
-pkgrel=225
+pkgrel=226
 pkgdesc="Eval plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server;
 license=("Apache")



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:40:18
  Author: felixonmars
Revision: 1275931

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 1275930, 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 1275930, haskell-hls-fourmolu-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:40:18 UTC (rev 1275931)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-fourmolu-plugin
+pkgname=haskell-hls-fourmolu-plugin
+pkgver=1.0.0.2
+pkgrel=232
+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 -u fourmolu -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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:40:00
  Author: felixonmars
Revision: 1275930

upgpkg: haskell-hls-fourmolu-plugin 1.0.0.2-232: rebuild with opentelemetry 
0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:39:49 UTC (rev 1275929)
+++ PKGBUILD2022-08-23 19:40:00 UTC (rev 1275930)
@@ -3,7 +3,7 @@
 _hkgname=hls-fourmolu-plugin
 pkgname=haskell-hls-fourmolu-plugin
 pkgver=1.0.0.2
-pkgrel=231
+pkgrel=232
 pkgdesc="Integration with the Fourmolu code formatter"
 url="https://hackage.haskell.org/package/hls-fourmolu-plugin;
 license=("Apache")



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:39:49
  Author: felixonmars
Revision: 1275929

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 1275928, 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 1275928, haskell-hls-ormolu-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:39:49 UTC (rev 1275929)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-ormolu-plugin
+pkgname=haskell-hls-ormolu-plugin
+pkgver=1.0.1.0
+pkgrel=230
+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 -u ormolu $_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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:39:34
  Author: felixonmars
Revision: 1275928

upgpkg: haskell-hls-ormolu-plugin 1.0.1.0-230: rebuild with opentelemetry 0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:39:24 UTC (rev 1275927)
+++ PKGBUILD2022-08-23 19:39:34 UTC (rev 1275928)
@@ -3,7 +3,7 @@
 _hkgname=hls-ormolu-plugin
 pkgname=haskell-hls-ormolu-plugin
 pkgver=1.0.1.0
-pkgrel=229
+pkgrel=230
 pkgdesc="Integration with the Ormolu code formatter"
 url="https://hackage.haskell.org/package/hls-ormolu-plugin;
 license=("Apache")



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:39:24
  Author: felixonmars
Revision: 1275927

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 1275926, 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 1275926, haskell-hls-module-name-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:39:24 UTC (rev 1275927)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-module-name-plugin
+pkgname=haskell-hls-module-name-plugin
+pkgver=1.0.0.1
+pkgrel=223
+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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:39:10
  Author: felixonmars
Revision: 1275926

upgpkg: haskell-hls-module-name-plugin 1.0.0.1-223: rebuild with opentelemetry 
0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:38:59 UTC (rev 1275925)
+++ PKGBUILD2022-08-23 19:39:10 UTC (rev 1275926)
@@ -3,7 +3,7 @@
 _hkgname=hls-module-name-plugin
 pkgname=haskell-hls-module-name-plugin
 pkgver=1.0.0.1
-pkgrel=222
+pkgrel=223
 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-stylish-haskell-plugin/repos (2 files)

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:38:59
  Author: felixonmars
Revision: 1275925

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 1275924, 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 1275924, haskell-hls-stylish-haskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:38:59 UTC (rev 1275925)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-stylish-haskell-plugin
+pkgname=haskell-hls-stylish-haskell-plugin
+pkgver=1.0.0.2
+pkgrel=225
+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-stylish-haskell-plugin/trunk (PKGBUILD)

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:38:41
  Author: felixonmars
Revision: 1275924

upgpkg: haskell-hls-stylish-haskell-plugin 1.0.0.2-225: rebuild with 
opentelemetry 0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:38:29 UTC (rev 1275923)
+++ PKGBUILD2022-08-23 19:38:41 UTC (rev 1275924)
@@ -3,7 +3,7 @@
 _hkgname=hls-stylish-haskell-plugin
 pkgname=haskell-hls-stylish-haskell-plugin
 pkgver=1.0.0.2
-pkgrel=224
+pkgrel=225
 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-floskell-plugin/repos (2 files)

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:38:29
  Author: felixonmars
Revision: 1275923

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 1275922, 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 1275922, haskell-hls-floskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:38:29 UTC (rev 1275923)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-floskell-plugin
+pkgname=haskell-hls-floskell-plugin
+pkgver=1.0.0.2
+pkgrel=6
+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=('26ab3a1cf1dc9802cc7422fe1fbe351271db6590232b7c4a695b2df0452c28ea50867cfbf3443cbd68f801518000fa1bd361cadba2e63ae5fdf8f9bd2b493754')
+
+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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:38:13
  Author: felixonmars
Revision: 1275922

upgpkg: haskell-hls-floskell-plugin 1.0.0.2-6: rebuild with opentelemetry 0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:38:02 UTC (rev 1275921)
+++ PKGBUILD2022-08-23 19:38:13 UTC (rev 1275922)
@@ -3,7 +3,7 @@
 _hkgname=hls-floskell-plugin
 pkgname=haskell-hls-floskell-plugin
 pkgver=1.0.0.2
-pkgrel=5
+pkgrel=6
 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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:38:02
  Author: felixonmars
Revision: 1275921

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 1275920, 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 1275920, haskell-hls-hlint-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:38:02 UTC (rev 1275921)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-hlint-plugin
+pkgname=haskell-hls-hlint-plugin
+pkgver=1.0.1.1
+pkgrel=222
+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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:37:43
  Author: felixonmars
Revision: 1275920

upgpkg: haskell-hls-hlint-plugin 1.0.1.1-222: rebuild with opentelemetry 0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:37:33 UTC (rev 1275919)
+++ PKGBUILD2022-08-23 19:37:43 UTC (rev 1275920)
@@ -3,7 +3,7 @@
 _hkgname=hls-hlint-plugin
 pkgname=haskell-hls-hlint-plugin
 pkgver=1.0.1.1
-pkgrel=221
+pkgrel=222
 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-retrie-plugin/repos (2 files)

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:37:33
  Author: felixonmars
Revision: 1275919

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 1275918, 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 1275918, haskell-hls-retrie-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:37:33 UTC (rev 1275919)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-retrie-plugin
+pkgname=haskell-hls-retrie-plugin
+pkgver=1.0.1.2
+pkgrel=7
+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=('8ee5239c943d55c7b998d9e51b15c3d7b04b13eeda8bd8bbb1803f3fa5aa75e9668c9516628571ac1d7c010e9bcba86e4bdc5173df1c5176b2937e8ce437e50c')
+
+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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:37:17
  Author: felixonmars
Revision: 1275918

upgpkg: haskell-hls-retrie-plugin 1.0.1.2-7: rebuild with opentelemetry 0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:37:06 UTC (rev 1275917)
+++ PKGBUILD2022-08-23 19:37:17 UTC (rev 1275918)
@@ -3,7 +3,7 @@
 _hkgname=hls-retrie-plugin
 pkgname=haskell-hls-retrie-plugin
 pkgver=1.0.1.2
-pkgrel=6
+pkgrel=7
 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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:37:06
  Author: felixonmars
Revision: 1275917

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 1275916, 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 1275916, haskell-hls-test-utils/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:37:06 UTC (rev 1275917)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-test-utils
+pkgname=haskell-hls-test-utils
+pkgver=1.1.0.0
+pkgrel=223
+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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:36:50
  Author: felixonmars
Revision: 1275916

upgpkg: haskell-hls-test-utils 1.1.0.0-223: rebuild with opentelemetry 0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:36:38 UTC (rev 1275915)
+++ PKGBUILD2022-08-23 19:36:50 UTC (rev 1275916)
@@ -3,7 +3,7 @@
 _hkgname=hls-test-utils
 pkgname=haskell-hls-test-utils
 pkgver=1.1.0.0
-pkgrel=222
+pkgrel=223
 pkgdesc="Utilities used in the tests of Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:36:38
  Author: felixonmars
Revision: 1275915

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 1275914, 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 1275914, haskell-hls-explicit-imports-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:36:38 UTC (rev 1275915)
@@ -0,0 +1,47 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-explicit-imports-plugin
+pkgname=haskell-hls-explicit-imports-plugin
+pkgver=1.0.1.0
+pkgrel=222
+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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:36:23
  Author: felixonmars
Revision: 1275914

upgpkg: haskell-hls-explicit-imports-plugin 1.0.1.0-222: rebuild with 
opentelemetry 0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:35:41 UTC (rev 1275913)
+++ PKGBUILD2022-08-23 19:36:23 UTC (rev 1275914)
@@ -3,7 +3,7 @@
 _hkgname=hls-explicit-imports-plugin
 pkgname=haskell-hls-explicit-imports-plugin
 pkgver=1.0.1.0
-pkgrel=221
+pkgrel=222
 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-ghcide/repos (2 files)

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:35:41
  Author: felixonmars
Revision: 1275913

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

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

Copied: haskell-ghcide/repos/community-staging-x86_64/PKGBUILD (from rev 
1275912, haskell-ghcide/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:35:41 UTC (rev 1275913)
@@ -0,0 +1,81 @@
+# Maintainer: Felix Yan 
+
+_hkgname=ghcide
+pkgname=haskell-ghcide
+pkgver=1.4.2.3
+pkgrel=30
+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-monoid-subclasses'
+ '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' 'haskell-vector-algorithms')
+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=('f57bd36ef6df459271f182f68904c9b0f67e70333d9f6bf6bc29cd5cf430265083a2f53087072c420a678872a6844d6f5679b36906067104f158bfa100484fe2')
+
+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 

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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:35:28
  Author: felixonmars
Revision: 1275912

upgpkg: haskell-ghcide 1.4.2.3-30: rebuild with opentelemetry 0.8.0

Modified:
  haskell-ghcide/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:28:14 UTC (rev 1275911)
+++ PKGBUILD2022-08-23 19:35:28 UTC (rev 1275912)
@@ -3,7 +3,7 @@
 _hkgname=ghcide
 pkgname=haskell-ghcide
 pkgver=1.4.2.3
-pkgrel=29
+pkgrel=30
 pkgdesc="The core of an IDE"
 
url="https://github.com/haskell/haskell-language-server/tree/master/ghcide#readme;
 license=("Apache")



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

2022-08-23 Thread Andrew Crerar via arch-commits
Date: Tuesday, August 23, 2022 @ 19:28:14
  Author: andrewsc
Revision: 1275911

archrelease: copy trunk to community-any

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

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

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

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

2022-08-23 Thread Andrew Crerar via arch-commits
Date: Tuesday, August 23, 2022 @ 19:27:29
  Author: andrewsc
Revision: 1275910

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

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:24:57 UTC (rev 1275909)
+++ PKGBUILD2022-08-23 19:27:29 UTC (rev 1275910)
@@ -1,7 +1,7 @@
 # Maintainer: Andrew Crerar 
 
 pkgbase=firefox-developer-edition-i18n
-pkgver=104.0b9
+pkgver=105.0b1
 pkgrel=1
 pkgdesc="Language pack for Firefox Developer Edition"
 arch=('any')
@@ -132,99 +132,99 @@
 
"$pkgdir/usr/lib/firefox-developer-edition/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha512sums=('8b8db91fe38a38eaba1c2631ac1429fd5d652e8e8378329019a75b9514b7a1785119b5f7f5a8799650730e092570941b7aa63e14a81ab1d1572d2410109a6cf5'
-
'5942f2581dfa8b88266e71c1c49672a5ba446ea1dca68d06fd17d5b0052b7003a19465437fd0f16e1701a822219b8aede06edec335ecacd5f914f64793c47655'
-
'af60ae1531aee1b5911e7523575a4e5742ffe8514f9351bd33c8908527f0758fdffbe778625d2ad47a95f41e882998badeb29d80174b006b8dc6b72c978d5d85'
-
'1157950fd347011a4e5e44124540ed933551ceea762f66f0d9044994c89ca7c93bbd81e8e262813f48cd891774731c12b7cd4b2c2d8c309dab61f651cd525d66'
-
'9be8ef6498d1e5d074d9be045453a9de5b0b0ffa7e164d56f5e3f14522870e3392a4d6e6b222a99bcdb4b61f9e2a6c0af3f046d61ce1cf79b6ea196420838d22'
-
'ea2850dd92fbbcffa8410b9ba1e0d3178f29277cd5b83f27ccc798405e6d4fbabae80b7cc4f9e7be7e6eff7b591ed57a439900187b9a19b3df530e522b22bec7'
-
'9cc109cf5918eb08299910e719672399242a264573c77f033ae96e75a250a76a1177f92c112e35d486d972bd12d88c24ac748a701f8cdeb1566a6c56956ffcac'
-
'61556aab7dd55165f45bea86aa391c75883633fde8fcb75026c407df6e2377d6cc4bcfb76b8dda009f2b4ad8fb7e7b0531a03ba689a59957f167fbeb2e68e915'
-
'dd69fd6cf79db29caea4ce006c22f90c840293e99cd4739b5b861124dbd0cdb0db08d100cff267ebe0184ea04fe9a7e28343ccb078afaa13d5eace6248706d1f'
-
'9ba0e2999f3f3531f9fec5a3df9a5b46f80ead8d6c42214014c4d3f53a7f8c731ad6417d8a101be7d189455be9a768a2025bec17163567797d9c522415dac820'
-
'f6d8f89664e2b20d3d780ab9acf240dee2e99119d70a5c39157165ffa87c15ca900336aef45b8c36f2947644d608fcefe49064fd69d35a5fd35034b32dbdb987'
-
'81f13d83857a60d69ac65d9b67ee64362b4b1b4e90d5c7985d84e6c3b32d051c269a88715aaeca70b7bb05cefed6357906ab4982a55dd64c572b8f71b1f4b7bd'
-
'879b8d1bacf92f36dadc0146119b70b5e19e18df7d77890587d74eeb94f504c7087ba08fccbb86edb1c56401f19d77cef4f48030257107ab21085eaa8de0a4fe'
-
'b693e46b5f8615262b37581da0553c99e2feb0735e2c297dd68e23b9af17082f8e693c644962eeb7bb6ae45fc1a7291f5fc36c2fce2d351789c1e5ffe1e30e35'
-
'd1cc38e2d5093b19307d7f4eb1e00e24c1e05086866ae7a7a26728b656f93d6a34f9310d6f2ce4b3874c34c564944ce65c29998e2e86d34c7e9b4a60fc5300cd'
-
'60737856b8662ff4085ff805f1983e373636b4720ebaddbbebe3fc5ef47a8b9af809fc708498fd45b1ae5d875578ce6ffb74f7bdd5f385706c0bafe0e4dfdfcf'
-
'3cf08c728daff537e59ca170383d58449be15c08eac93c2044fd93a81205bc585a6bec58ac1d6153b0f832d98d621576264e718fe647accb1bef5f3f00a3e45d'
-
'ee7e8b82e6086d924b145dd66e97e4f8f145bb736f1cefe46bb2866e267675532e990b1b932045e75e89d5fdd1cf1addbde8c08c67dd6b9a3637753699adf952'
-
'a75d78324a3fef06aeddeaaf32eef62070dc36afdd132addffe27c71640d8facaf233085eb54cf8fc897841fa6e5926d5f818e4d2a9c5b0ef9d0a417df3ef51f'
-
'9da291196bb4d3939f4723483e05fa4e369c0c21ef0f70d889e90ecf02bbdc75cabbe8bccce69192ba5478c4883ae6b42fcf508435ad6bb4e984cd76e5ca5170'
-
'47a0270696742ef95b6d78723847fda32c47e1f23f5eb7bdf70fd00c9a1e13ca084e7f0c75fabfbfb25728d357649656cd36d7a3009e6f108c89f60c7cffc7ed'
-
'a9d7a73bfdd912787481116aa92946beea3ac44af071dd9009f6e2d6ee0a2418e1057516cc3b028afac23e04fad22ae7bc1344bc057b47d81eac3f8024736834'
-
'70f3b5b8f8196e8d49f16e15b3d15f20b984030808e96037386bed506c6326b4578f999d19d4c4d11e2be43d50c298c90a8e035c39fecef9cdf6b7f2702d24c4'
-
'a29b8b37cc62b596e187abdedfd9728e97dd9a62f5d2bb17b219e926be8dc558e2b59418d1957ed9784cd4fc6d9640d3a64af378da3d62c420892e1e88c1d943'
-
'9ab7f871310bb91a7167295b00814a4ece101ea5d546c8f1ccaa5685a811db5b1f93a6826a7595ee67fd5ea4d5da0a5dd300fc3aaac993a0688e2955deb7b63a'
-
'1496a1c93518ce187be4396b63c88be94faa03cfa13fcd9c0d14da0fadba269b2a1eb649c61a18796ef30a03d6335b79da60aeb4dcf88a714415423e551751ef'
-
'cf1f8261b13f67af87e4415a004f817c52950878407af7bfe87ae6e3da718a3ec9c16ead80243a0a8493671c4ac1b0113e6b9a66efb3ba49da575652fc585395'
-
'3e7b8b5275e5f522f3aa2c0359f8f2c27d07586900ec2fe417f8c2768c348f878b873f5c3f9a99801449e633ea7423711f8e50c86d3897e824f3c421c4fb23a6'
-

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

2022-08-23 Thread Caleb Maclennan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:24:57
  Author: alerque
Revision: 1275909

archrelease: copy trunk to community-x86_64

Added:
  github-cli/repos/community-x86_64/PKGBUILD
(from rev 1275908, github-cli/trunk/PKGBUILD)
Deleted:
  github-cli/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 19:24:49 UTC (rev 1275908)
+++ PKGBUILD2022-08-23 19:24:57 UTC (rev 1275909)
@@ -1,53 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Caleb Maclennan 
-# Contributor: Eli Schwartz 
-# Contributor: Richard Bradfield 
-
-pkgname=github-cli
-pkgver=2.14.4
-pkgrel=1
-pkgdesc="The GitHub CLI"
-arch=("x86_64")
-url="https://github.com/cli/cli;
-license=("MIT")
-depends=("glibc" "mailcap")
-makedepends=("go" "git")
-checkdepends=("openssh")
-optdepends=("git: To interact with repositories")
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('be93380e5a7f2822a1bfeff80f23231ee72ca297b9bc05bba0a1c688f9f53ccf')
-
-prepare() {
-cd "cli-${pkgver}"
-# TODO: These tests invoke the TTY and our container *really* does not 
like that
-rm pkg/cmd/auth/login/login_test.go
-}
-
-build() {
-cd "cli-$pkgver"
-
-export CGO_CPPFLAGS="${CPPFLAGS}"
-export CGO_CFLAGS="${CFLAGS}"
-export CGO_CXXFLAGS="${CXXFLAGS}"
-export CGO_LDFLAGS="${LDFLAGS}"
-export CGO_ENABLED=0
-export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
-
-make GH_VERSION="v$pkgver" bin/gh manpages
-bin/gh completion -s bash | install -Dm644 /dev/stdin 
share/bash-completion/completions/gh
-bin/gh completion -s zsh | install -Dm644 /dev/stdin 
share/zsh/site-functions/_gh
-bin/gh completion -s fish | install -Dm644 /dev/stdin 
share/fish/vendor_completions.d/gh.fish
-}
-
-check(){
-cd "cli-$pkgver"
-make test
-}
-
-package() {
-cd "cli-$pkgver"
-make DESTDIR="${pkgdir}" prefix="/usr" install
-cp -r share/ "$pkgdir"/usr
-install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-install -Dm644 "README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
-}

Copied: github-cli/repos/community-x86_64/PKGBUILD (from rev 1275908, 
github-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 19:24:57 UTC (rev 1275909)
@@ -0,0 +1,53 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Caleb Maclennan 
+# Contributor: Eli Schwartz 
+# Contributor: Richard Bradfield 
+
+pkgname=github-cli
+pkgver=2.14.5
+pkgrel=1
+pkgdesc="The GitHub CLI"
+arch=("x86_64")
+url="https://github.com/cli/cli;
+license=("MIT")
+depends=("glibc" "mailcap")
+makedepends=("go" "git")
+checkdepends=("openssh")
+optdepends=("git: To interact with repositories")
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha256sums=('f72e990bfef8781f33e040b18dcbeadad0310092f2c81586d9c4166c4c52b1ea')
+
+prepare() {
+cd "cli-${pkgver}"
+# TODO: These tests invoke the TTY and our container *really* does not 
like that
+rm pkg/cmd/auth/login/login_test.go
+}
+
+build() {
+cd "cli-$pkgver"
+
+export CGO_CPPFLAGS="${CPPFLAGS}"
+export CGO_CFLAGS="${CFLAGS}"
+export CGO_CXXFLAGS="${CXXFLAGS}"
+export CGO_LDFLAGS="${LDFLAGS}"
+export CGO_ENABLED=0
+export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw 
-ldflags=-linkmode=external"
+
+make GH_VERSION="v$pkgver" bin/gh manpages
+bin/gh completion -s bash | install -Dm644 /dev/stdin 
share/bash-completion/completions/gh
+bin/gh completion -s zsh | install -Dm644 /dev/stdin 
share/zsh/site-functions/_gh
+bin/gh completion -s fish | install -Dm644 /dev/stdin 
share/fish/vendor_completions.d/gh.fish
+}
+
+check(){
+cd "cli-$pkgver"
+make test
+}
+
+package() {
+cd "cli-$pkgver"
+make DESTDIR="${pkgdir}" prefix="/usr" install
+cp -r share/ "$pkgdir"/usr
+install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+install -Dm644 "README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
+}



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

2022-08-23 Thread Caleb Maclennan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:24:49
  Author: alerque
Revision: 1275908

upgpkg: github-cli 2.14.5-1

Modified:
  github-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:23:16 UTC (rev 1275907)
+++ PKGBUILD2022-08-23 19:24:49 UTC (rev 1275908)
@@ -4,7 +4,7 @@
 # Contributor: Richard Bradfield 
 
 pkgname=github-cli
-pkgver=2.14.4
+pkgver=2.14.5
 pkgrel=1
 pkgdesc="The GitHub CLI"
 arch=("x86_64")
@@ -15,7 +15,7 @@
 checkdepends=("openssh")
 optdepends=("git: To interact with repositories")
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha256sums=('be93380e5a7f2822a1bfeff80f23231ee72ca297b9bc05bba0a1c688f9f53ccf')
+sha256sums=('f72e990bfef8781f33e040b18dcbeadad0310092f2c81586d9c4166c4c52b1ea')
 
 prepare() {
 cd "cli-${pkgver}"



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

2022-08-23 Thread Caleb Maclennan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:23:16
  Author: alerque
Revision: 1275907

archrelease: copy trunk to community-any

Added:
  lua-say/repos/community-any/PKGBUILD
(from rev 1275906, lua-say/trunk/PKGBUILD)
Deleted:
  lua-say/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 19:23:08 UTC (rev 1275906)
+++ PKGBUILD2022-08-23 19:23:16 UTC (rev 1275907)
@@ -1,59 +0,0 @@
-# Maintainer: Daurnimator 
-
-pkgname=('lua-say' 'lua51-say' 'lua52-say' 'lua53-say')
-pkgver=1.3
-pkgrel=7
-pkgdesc='Lua string hashing library, useful for internationalization'
-arch=('any')
-url='https://github.com/Olivine-Labs/say'
-license=('MIT')
-makedepends=('luarocks'
- # https://github.com/luarocks/luarocks/issues/1275
- 'lua51'
- 'lua52'
- 'lua53'
- 'lua')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Olivine-Labs/say/archive/v$pkgver-1.tar.gz;)
-sha256sums=('23e8cd378bb4ab1693279100a785acb2246418e3570b7de7d995b5847b3507ca')
-
-build() {
-cd "say-$pkgver-1"
-
-for v in 5.1 5.2 5.3 5.4; do
-mkdir -p "$v/"
-luarocks make --pack-binary-rock --lua-version="$v" --deps-mode=none 
say-"$pkgver"-1.rockspec
-mv say-"$pkgver"-1.*.rock "$v/"
-done
-}
-
-package_lua51-say() {
-pkgdesc="$pkgdesc for Lua 5.1"
-
-cd "say-$pkgver-1"
-luarocks install --lua-version=5.1 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.1/*.rock
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua52-say() {
-pkgdesc="$pkgdesc for Lua 5.2"
-
-cd "say-$pkgver-1"
-luarocks install --lua-version=5.2 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.2/*.rock
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua53-say() {
-pkgdesc="$pkgdesc for Lua 5.3"
-
-cd "say-$pkgver-1"
-luarocks install --lua-version=5.3 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.3/*.rock
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-package_lua-say() {
-pkgdesc="$pkgdesc for Lua 5.4"
-
-cd "say-$pkgver-1"
-luarocks install --lua-version=5.4 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.4/*.rock
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: lua-say/repos/community-any/PKGBUILD (from rev 1275906, 
lua-say/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 19:23:16 UTC (rev 1275907)
@@ -0,0 +1,51 @@
+# Maintainer: Daurnimator 
+
+pkgname=('lua-say' 'lua51-say' 'lua52-say' 'lua53-say')
+pkgver=1.4.0
+pkgrel=1
+_rockrel=1
+pkgdesc='Lua string hashing library, useful for internationalization'
+arch=('any')
+url='https://github.com/lunarmodules/say'
+license=('MIT')
+makedepends=('luarocks'
+ # https://github.com/luarocks/luarocks/issues/1275
+ 'lua51'
+ 'lua52'
+ 'lua53'
+ 'lua')
+_archive="say-$pkgver"
+source=("$url/archive/v$pkgver/$_archive.tar.gz")
+sha256sums=('b81e7519ebdff47e1aee69b2a53eda201824cdd7a15e743ff322b8e4fde350cb')
+
+build() {
+cd "$_archive"
+for v in 5.1 5.2 5.3 5.4; do
+mkdir -p "$v/"
+luarocks make --pack-binary-rock --lua-version="$v" --deps-mode=none 
rockspecs/$_archive-$_rockrel.rockspec
+mv "$_archive-$_rockrel".*.rock "$v/"
+done
+}
+
+_package() {
+pkgdesc+=" for Lua $1"
+cd "$_archive"
+luarocks install --lua-version="$1" --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest "$1"/*.rock
+install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}
+
+package_lua51-say() {
+_package 5.1
+}
+
+package_lua52-say() {
+_package 5.2
+}
+
+package_lua53-say() {
+_package 5.3
+}
+
+package_lua-say() {
+_package 5.4
+}



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

2022-08-23 Thread Caleb Maclennan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:23:08
  Author: alerque
Revision: 1275906

upgpkg: lua-say 1.4.0-1

Modified:
  lua-say/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:11:22 UTC (rev 1275905)
+++ PKGBUILD2022-08-23 19:23:08 UTC (rev 1275906)
@@ -1,11 +1,12 @@
 # Maintainer: Daurnimator 
 
 pkgname=('lua-say' 'lua51-say' 'lua52-say' 'lua53-say')
-pkgver=1.3
-pkgrel=7
+pkgver=1.4.0
+pkgrel=1
+_rockrel=1
 pkgdesc='Lua string hashing library, useful for internationalization'
 arch=('any')
-url='https://github.com/Olivine-Labs/say'
+url='https://github.com/lunarmodules/say'
 license=('MIT')
 makedepends=('luarocks'
  # https://github.com/luarocks/luarocks/issues/1275
@@ -13,47 +14,38 @@
  'lua52'
  'lua53'
  'lua')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/Olivine-Labs/say/archive/v$pkgver-1.tar.gz;)
-sha256sums=('23e8cd378bb4ab1693279100a785acb2246418e3570b7de7d995b5847b3507ca')
+_archive="say-$pkgver"
+source=("$url/archive/v$pkgver/$_archive.tar.gz")
+sha256sums=('b81e7519ebdff47e1aee69b2a53eda201824cdd7a15e743ff322b8e4fde350cb')
 
 build() {
-cd "say-$pkgver-1"
-
+cd "$_archive"
 for v in 5.1 5.2 5.3 5.4; do
 mkdir -p "$v/"
-luarocks make --pack-binary-rock --lua-version="$v" --deps-mode=none 
say-"$pkgver"-1.rockspec
-mv say-"$pkgver"-1.*.rock "$v/"
+luarocks make --pack-binary-rock --lua-version="$v" --deps-mode=none 
rockspecs/$_archive-$_rockrel.rockspec
+mv "$_archive-$_rockrel".*.rock "$v/"
 done
 }
 
+_package() {
+pkgdesc+=" for Lua $1"
+cd "$_archive"
+luarocks install --lua-version="$1" --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest "$1"/*.rock
+install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}
+
 package_lua51-say() {
-pkgdesc="$pkgdesc for Lua 5.1"
-
-cd "say-$pkgver-1"
-luarocks install --lua-version=5.1 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.1/*.rock
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+_package 5.1
 }
 
 package_lua52-say() {
-pkgdesc="$pkgdesc for Lua 5.2"
-
-cd "say-$pkgver-1"
-luarocks install --lua-version=5.2 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.2/*.rock
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+_package 5.2
 }
 
 package_lua53-say() {
-pkgdesc="$pkgdesc for Lua 5.3"
-
-cd "say-$pkgver-1"
-luarocks install --lua-version=5.3 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.3/*.rock
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+_package 5.3
 }
 
 package_lua-say() {
-pkgdesc="$pkgdesc for Lua 5.4"
-
-cd "say-$pkgver-1"
-luarocks install --lua-version=5.4 --tree="$pkgdir/usr/" --deps-mode=none 
--no-manifest 5.4/*.rock
-install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+_package 5.4
 }



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:13:52
  Author: felixonmars
Revision: 454451

archrelease: copy trunk to testing-x86_64

Added:
  zbar/repos/testing-x86_64/
  zbar/repos/testing-x86_64/PKGBUILD
(from rev 454450, zbar/trunk/PKGBUILD)

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

Copied: zbar/repos/testing-x86_64/PKGBUILD (from rev 454450, 
zbar/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-08-23 19:13:52 UTC (rev 454451)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+# Contributor: Marti Raudsepp 
+# Contributor: Radu Andries 
+# Contributor: Andy Weidenbaum 
+
+pkgname=zbar
+pkgver=0.23.90
+pkgrel=1
+pkgdesc="Application and library for reading bar codes from various sources"
+arch=('x86_64')
+url="https://github.com/mchehab/zbar;
+license=('LGPL')
+depends=('dbus' 'imagemagick' 'libsm' 'libxv' 'v4l-utils')
+makedepends=('gtk3' 'qt5-x11extras' 'python' 'xmlto' 'docbook-xsl' 
'gobject-introspection')
+optdepends=('gtk3: for zbar-gtk'
+'qt5-x11extras: for zbar-qt'
+'python: for zbar python bindings')
+conflicts=('zbar-gtk' 'zbar-qt' 'python-zbar')
+provides=('zbar-gtk' 'zbar-qt' 'python-zbar')
+replaces=('zbar-gtk' 'zbar-qt' 'python-zbar')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mchehab/zbar/archive/$pkgver.tar.gz;)
+sha512sums=('d73d71873bec68ee021997512a9edbd223f5f5fe43c66c4dd3502224ba6009be2e5e1714766cb8e1056244673e87e0939ed0319116f61d7371b5ab79fb5e04eb')
+
+prepare() {
+  cd zbar-$pkgver
+  autoreconf -vfi
+}
+
+build() {
+  cd zbar-$pkgver
+  ./configure --prefix=/usr --with-qt --with-gtk=gtk3 
--with-dbusconfdir=/usr/share CFLAGS="$CFLAGS -DNDEBUG"
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd zbar-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:13:38
  Author: felixonmars
Revision: 454450

upgpkg: zbar 0.23.90-1

Modified:
  zbar/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 18:57:32 UTC (rev 454449)
+++ PKGBUILD2022-08-23 19:13:38 UTC (rev 454450)
@@ -4,8 +4,8 @@
 # Contributor: Andy Weidenbaum 
 
 pkgname=zbar
-pkgver=0.23.1
-pkgrel=9
+pkgver=0.23.90
+pkgrel=1
 pkgdesc="Application and library for reading bar codes from various sources"
 arch=('x86_64')
 url="https://github.com/mchehab/zbar;
@@ -18,18 +18,12 @@
 conflicts=('zbar-gtk' 'zbar-qt' 'python-zbar')
 provides=('zbar-gtk' 'zbar-qt' 'python-zbar')
 replaces=('zbar-gtk' 'zbar-qt' 'python-zbar')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/mchehab/zbar/archive/$pkgver.tar.gz;
- 
zbar-autoconf-2.70.patch::"https://github.com/mchehab/zbar/commit/89e7900d.patch;)
-sha512sums=('ae7741cf750a10cf53dc11abcd482c3885507153ee37f6e3364ed5ed72184ebb009560b8c40d8090603a551fb681700a962838a59ce77d005d080ee49fbfa54b'
-
'db0006724bb1a51e432c6daa02bef1093886a382db055f00b4d641d28a1ff130425a7e4ff419a97a141b0d012306b12a3aff4f72df1b52a00549d91f9b457094')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mchehab/zbar/archive/$pkgver.tar.gz;)
+sha512sums=('d73d71873bec68ee021997512a9edbd223f5f5fe43c66c4dd3502224ba6009be2e5e1714766cb8e1056244673e87e0939ed0319116f61d7371b5ab79fb5e04eb')
 
 prepare() {
   cd zbar-$pkgver
-  patch -p1 -i ../zbar-autoconf-2.70.patch # Fix build with autoconf 2.70
   autoreconf -vfi
-
-  # Removed in Python 3.9. Ignored in Python 3.0+ anyway.
-  sed -i '/tp_print/d' python/enum.c
 }
 
 build() {



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:11:22
  Author: felixonmars
Revision: 1275905

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 1275904, 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 1275904, haskell-hls-plugin-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:11:22 UTC (rev 1275905)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-plugin-api
+pkgname=haskell-hls-plugin-api
+pkgver=1.2.0.1
+pkgrel=20
+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=('e6c231bfe29b9fd299708a19f2388c74fb4aa5ac28a8a5150dc011290c0a87cbb38dbda615d6a52ffc70cb1d9078334ee2e2b31e251a5ec375230b11d6852a96')
+
+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-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:11:07
  Author: felixonmars
Revision: 1275904

upgpkg: haskell-hls-plugin-api 1.2.0.1-20: rebuild with opentelemetry 0.8.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:10:02 UTC (rev 1275903)
+++ PKGBUILD2022-08-23 19:11:07 UTC (rev 1275904)
@@ -3,7 +3,7 @@
 _hkgname=hls-plugin-api
 pkgname=haskell-hls-plugin-api
 pkgver=1.2.0.1
-pkgrel=19
+pkgrel=20
 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-opentelemetry/repos (2 files)

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:10:02
  Author: felixonmars
Revision: 1275903

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-opentelemetry/repos/community-staging-x86_64/PKGBUILD (from rev 
1275902, haskell-opentelemetry/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:10:02 UTC (rev 1275903)
@@ -0,0 +1,49 @@
+# Maintainer: Felix Yan 
+
+_hkgname=opentelemetry
+pkgname=haskell-opentelemetry
+pkgver=0.8.0
+pkgrel=1
+pkgdesc="The OpenTelemetry Haskell Client"
+url="https://github.com/ethercrow/opentelemetry-haskell;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc-trace-events' 'haskell-hashable')
+makedepends=('ghc' 'uusi')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('c81c41e65ec0d9c0d2cb232012516aea944d40bb5dd160d21c932975618822e98c1efcd210eeb377874a06a970ba46ed13ba5b60772cdefee61bfb63b0226037')
+
+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"
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:09:48
  Author: felixonmars
Revision: 1275902

upgpkg: haskell-opentelemetry 0.8.0-1: rebuild with opentelemetry 0.8.0

Modified:
  haskell-opentelemetry/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:06:10 UTC (rev 1275901)
+++ PKGBUILD2022-08-23 19:09:48 UTC (rev 1275902)
@@ -2,8 +2,8 @@
 
 _hkgname=opentelemetry
 pkgname=haskell-opentelemetry
-pkgver=0.7.0
-pkgrel=69
+pkgver=0.8.0
+pkgrel=1
 pkgdesc="The OpenTelemetry Haskell Client"
 url="https://github.com/ethercrow/opentelemetry-haskell;
 license=("Apache")
@@ -11,7 +11,7 @@
 depends=('ghc-libs' 'haskell-ghc-trace-events' 'haskell-hashable')
 makedepends=('ghc' 'uusi')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha512sums=('a85fdff1cd1da3b06e6e825504342a4ef2111de5c56429e80db9bf16a26420b32f6646913bfff38848c5b6d641dc8148a70110f3751fb063a80309ff5fd2f3e5')
+sha512sums=('c81c41e65ec0d9c0d2cb232012516aea944d40bb5dd160d21c932975618822e98c1efcd210eeb377874a06a970ba46ed13ba5b60772cdefee61bfb63b0226037')
 
 prepare() {
   cd $_hkgname-$pkgver
@@ -34,6 +34,11 @@
   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
 



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:06:08
  Author: felixonmars
Revision: 1275897

archrelease: copy trunk to community-any

Added:
  unicode-cldr/repos/community-any/PKGBUILD
(from rev 1275891, unicode-cldr/trunk/PKGBUILD)
Deleted:
  unicode-cldr/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2022-08-23 19:06:07 UTC (rev 1275896)
+++ PKGBUILD2022-08-23 19:06:08 UTC (rev 1275897)
@@ -1,33 +0,0 @@
-# Maintainer: Felix Yan 
-
-shopt -s extglob
-
-pkgbase=unicode-cldr
-pkgname=(unicode-cldr unicode-cldr-annotations)
-pkgver=38.0
-pkgrel=2
-pkgdesc="Unicode Common Locale Data Repository"
-arch=('any')
-url="http://cldr.unicode.org/;
-license=('custom')
-source=("https://unicode.org/Public/cldr/${pkgver%.*}/cldr-common-$pkgver.zip;)
-sha512sums=('76a2cdfbe74bd25825dd0a91f81d3651d6baab374b7cffd2346d9194b30d2bf16940e448ede5b1c5f470ad2ff7df082a957ec6eade336b9baaafd40870648b1e')
-
-package_unicode-cldr-annotations() {
-  pkgdesc="Unicode Common Locale Data Repository (annotations only)"
-
-  cd common
-  install -dm755 "$pkgdir"/usr/share/unicode/cldr/common
-  cp -r annotations "$pkgdir"/usr/share/unicode/cldr/common/
-  install -Dm644 ../unicode-license.txt -t 
"$pkgdir"/usr/share/licenses/$pkgname/
-}
-
-package_unicode-cldr() {
-  depends=('unicode-cldr-annotations')
-
-  cd common
-  install -dm755 "$pkgdir"/usr/share/unicode/cldr/common
-  cp -r !(annotations) "$pkgdir"/usr/share/unicode/cldr/common/
-
-  install -Dm644 ../unicode-license.txt -t 
"$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: unicode-cldr/repos/community-any/PKGBUILD (from rev 1275891, 
unicode-cldr/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2022-08-23 19:06:08 UTC (rev 1275897)
@@ -0,0 +1,33 @@
+# Maintainer: Felix Yan 
+
+shopt -s extglob
+
+pkgbase=unicode-cldr
+pkgname=(unicode-cldr unicode-cldr-annotations)
+pkgver=39.0
+pkgrel=1
+pkgdesc="Unicode Common Locale Data Repository"
+arch=('any')
+url="http://cldr.unicode.org/;
+license=('custom')
+source=("https://unicode.org/Public/cldr/${pkgver%.*}/cldr-common-$pkgver.zip;)
+sha512sums=('efb591d3cd3628cab69e3d3cf3ab66c11672b882b3c719bb184c44293ff7375f9f7b71d7ef7c2ee818d2adccc7f9c086333a465ae6c4e948b259b9f13b25ea80')
+
+package_unicode-cldr-annotations() {
+  pkgdesc="Unicode Common Locale Data Repository (annotations only)"
+
+  cd common
+  install -dm755 "$pkgdir"/usr/share/unicode/cldr/common
+  cp -r annotations "$pkgdir"/usr/share/unicode/cldr/common/
+  install -Dm644 ../LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
+}
+
+package_unicode-cldr() {
+  depends=('unicode-cldr-annotations')
+
+  cd common
+  install -dm755 "$pkgdir"/usr/share/unicode/cldr/common
+  cp -r !(annotations) "$pkgdir"/usr/share/unicode/cldr/common/
+
+  install -Dm644 ../LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:05:48
  Author: felixonmars
Revision: 1275880

upgpkg: unicode-cldr 39.0-1

Modified:
  unicode-cldr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:04:01 UTC (rev 1275879)
+++ PKGBUILD2022-08-23 19:05:48 UTC (rev 1275880)
@@ -4,14 +4,14 @@
 
 pkgbase=unicode-cldr
 pkgname=(unicode-cldr unicode-cldr-annotations)
-pkgver=38.0
-pkgrel=2
+pkgver=39.0
+pkgrel=1
 pkgdesc="Unicode Common Locale Data Repository"
 arch=('any')
 url="http://cldr.unicode.org/;
 license=('custom')
 source=("https://unicode.org/Public/cldr/${pkgver%.*}/cldr-common-$pkgver.zip;)
-sha512sums=('76a2cdfbe74bd25825dd0a91f81d3651d6baab374b7cffd2346d9194b30d2bf16940e448ede5b1c5f470ad2ff7df082a957ec6eade336b9baaafd40870648b1e')
+sha512sums=('efb591d3cd3628cab69e3d3cf3ab66c11672b882b3c719bb184c44293ff7375f9f7b71d7ef7c2ee818d2adccc7f9c086333a465ae6c4e948b259b9f13b25ea80')
 
 package_unicode-cldr-annotations() {
   pkgdesc="Unicode Common Locale Data Repository (annotations only)"
@@ -19,7 +19,7 @@
   cd common
   install -dm755 "$pkgdir"/usr/share/unicode/cldr/common
   cp -r annotations "$pkgdir"/usr/share/unicode/cldr/common/
-  install -Dm644 ../unicode-license.txt -t 
"$pkgdir"/usr/share/licenses/$pkgname/
+  install -Dm644 ../LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
 }
 
 package_unicode-cldr() {
@@ -29,5 +29,5 @@
   install -dm755 "$pkgdir"/usr/share/unicode/cldr/common
   cp -r !(annotations) "$pkgdir"/usr/share/unicode/cldr/common/
 
-  install -Dm644 ../unicode-license.txt -t 
"$pkgdir"/usr/share/licenses/$pkgname/
+  install -Dm644 ../LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/
 }



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:04:01
  Author: felixonmars
Revision: 1275879

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 1275878, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 1275878, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:04:01 UTC (rev 1275879)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=10.20220724
+pkgrel=19
+pkgdesc="Manage files with git, without checking their contents into git"
+url="https://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'lsof' 'rsync' 'ghc-libs' 'haskell-aeson' 
'haskell-ansi-terminal' 'haskell-async'
+ 'haskell-aws' 'haskell-blaze-builder' 'haskell-bloomfilter' 
'haskell-byteable'
+ 'haskell-case-insensitive' 'haskell-clientsession' 
'haskell-concurrent-output'
+ 'haskell-connection' 'haskell-conduit' 'haskell-criterion' 
'haskell-crypto-api'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-dav' 
'haskell-dbus'
+ 'haskell-disk-free-space' 'haskell-dlist' 'haskell-edit-distance' 
'haskell-fdo-notify'
+ 'haskell-feed' 'haskell-filepath-bytestring' 'haskell-git-lfs' 
'haskell-hinotify'
+ 'haskell-http-client' 'haskell-http-client-restricted' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-ifelse' 
'haskell-magic'
+ 'haskell-memory' 'haskell-microlens' 'haskell-monad-control' 
'haskell-monad-logger'
+ 'haskell-mountpoints' 'haskell-network' 'haskell-network-info' 
'haskell-network-multicast'
+ 'haskell-network-uri' 'haskell-old-locale' 
'haskell-optparse-applicative'
+ 'haskell-path-pieces' 'haskell-persistent' 
'haskell-persistent-sqlite' 'haskell-quickcheck'
+ 'haskell-random' 'haskell-regex-tdfa' 'haskell-resourcet' 
'haskell-safesemaphore'
+ 'haskell-sandi' 'haskell-securemem' 'haskell-shakespeare' 
'haskell-socks' 'haskell-split'
+ 'haskell-stm-chans' 'haskell-tagsoup' 'haskell-tasty' 
'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck' 'haskell-tasty-rerun' 'haskell-torrent' 
'haskell-unix-compat'
+ 'haskell-unliftio-core' 'haskell-unordered-containers' 
'haskell-utf8-string' 'haskell-uuid'
+ 'haskell-vector' 'haskell-wai' 'haskell-wai-extra' 'haskell-warp' 
'haskell-warp-tls'
+ 'haskell-yesod' 'haskell-yesod-core' 'haskell-yesod-form' 
'haskell-yesod-static')
+makedepends=('chrpath' 'ghc' 'uusi')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cd git-annex
+  # persistent-template was merged into persistent
+  uusi -d persistent-template git-annex.cabal
+  sed -i 's/MIN_VERSION_persistent_template/MIN_VERSION_persistent/' 
Database/ContentIdentifier.hs Database/Export.hs Database/Fsck.hs 
Database/Keys/SQL.hs
+}
+
+build() {
+  cd git-annex
+  sed -e 's|--ghc-options|-O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla --docdir=/usr/share/doc/'$pkgname' --ghc-options|' \
+  -i Makefile
+  make GHC="ghc -dynamic" BUILDER=./Setup BUILDEROPTIONS=$MAKEFLAGS
+}
+
+package() {
+  cd git-annex
+  make GHC="ghc -dynamic" BUILDER=./Setup DESTDIR="$pkgdir" install
+
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:03:47
  Author: felixonmars
Revision: 1275878

upgpkg: git-annex 10.20220724-19: rebuild with persistent 2.13.3.3

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:03:18 UTC (rev 1275877)
+++ PKGBUILD2022-08-23 19:03:47 UTC (rev 1275878)
@@ -3,7 +3,7 @@
 
 pkgname=git-annex
 pkgver=10.20220724
-pkgrel=18
+pkgrel=19
 pkgdesc="Manage files with git, without checking their contents into git"
 url="https://git-annex.branchable.com/;
 license=("AGPL3")



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:03:18
  Author: felixonmars
Revision: 1275877

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-web/repos/community-staging-x86_64/
  hledger-web/repos/community-staging-x86_64/PKGBUILD
(from rev 1275876, hledger-web/trunk/PKGBUILD)

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 1275876, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2022-08-23 19:03:18 UTC (rev 1275877)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.26.1
+pkgrel=6
+pkgdesc="Web-based user interface for the hledger accounting system"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-base64'
+ 'haskell-blaze-html' 'haskell-blaze-markup' 'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-cmdargs' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-data-default' 'haskell-decimal' 'haskell-extra' 
'haskell-hjsmin'
+ 'haskell-hspec' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-http-types'
+ 'haskell-megaparsec' 'haskell-network' 'haskell-shakespeare' 
'haskell-unix-compat'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 'haskell-wai' 
'haskell-wai-cors'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-yesod-test')
+makedepends=('ghc' 'uusi')
+replaces=('hledger-api')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('d0b41e4b5ba4db047a4bc8ef23b59a737e5beee34e3c523e755dc5dcbe9183586cc1539ea101d51de82dbaea1f99967cf84fcf2037d72eddf6f2d2e25c9e96d8')
+
+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-dev -f-library-only -fthreaded
+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
+runhaskell Setup test --show-details=direct
+}
+
+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"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+
+install -Dm644 hledger-web.1 -t "$pkgdir"/usr/share/man/man1/
+}



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

2022-08-23 Thread Felix Yan via arch-commits
Date: Tuesday, August 23, 2022 @ 19:03:03
  Author: felixonmars
Revision: 1275876

upgpkg: hledger-web 1.26.1-6: rebuild with persistent 2.13.3.3

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2022-08-23 19:02:54 UTC (rev 1275875)
+++ PKGBUILD2022-08-23 19:03:03 UTC (rev 1275876)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-web
 pkgver=1.26.1
-pkgrel=5
+pkgrel=6
 pkgdesc="Web-based user interface for the hledger accounting system"
 url="http://hledger.org;
 license=("GPL")



  1   2   3   4   5   6   7   8   9   >