[arch-commits] Commit in llvm/repos (6 files)

2021-07-08 Thread Evangelos Foutras via arch-commits
Date: Friday, July 9, 2021 @ 05:59:47
  Author: foutrelis
Revision: 419322

archrelease: copy trunk to staging-x86_64

Added:
  llvm/repos/staging-x86_64/
  llvm/repos/staging-x86_64/PKGBUILD
(from rev 419321, llvm/trunk/PKGBUILD)
  llvm/repos/staging-x86_64/add-fno-semantic-interposition.patch
(from rev 419321, llvm/trunk/add-fno-semantic-interposition.patch)
  llvm/repos/staging-x86_64/llvm-config.h
(from rev 419321, llvm/trunk/llvm-config.h)
  llvm/repos/staging-x86_64/llvm-link-with-Bsymbolic-functions.patch
(from rev 419321, llvm/trunk/llvm-link-with-Bsymbolic-functions.patch)
  llvm/repos/staging-x86_64/no-strict-aliasing-DwarfCompileUnit.patch
(from rev 419321, llvm/trunk/no-strict-aliasing-DwarfCompileUnit.patch)

---+
 PKGBUILD  |  137 
 add-fno-semantic-interposition.patch  |   22 
 llvm-config.h |9 +
 llvm-link-with-Bsymbolic-functions.patch  |   66 +
 no-strict-aliasing-DwarfCompileUnit.patch |   13 ++
 5 files changed, 247 insertions(+)

Copied: llvm/repos/staging-x86_64/PKGBUILD (from rev 419321, 
llvm/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-07-09 05:59:47 UTC (rev 419322)
@@ -0,0 +1,137 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Jan "heftig" Steffens 
+
+pkgname=('llvm' 'llvm-libs' 'llvm-ocaml')
+pkgver=12.0.1
+pkgrel=1
+_ocaml_ver=4.11.1
+arch=('x86_64')
+url="https://llvm.org/;
+license=('custom:Apache 2.0 with LLVM Exception')
+makedepends=('cmake' 'ninja' 'libffi' 'libedit' 'ncurses' 'libxml2'
+ "ocaml>=$_ocaml_ver" 'ocaml-ctypes' 'ocaml-findlib'
+ 'python-setuptools' 'python-psutil' 'python-sphinx'
+ 'python-recommonmark')
+options=('staticlibs')
+_source_base=https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver
+source=($_source_base/$pkgname-$pkgver.src.tar.xz{,.sig}
+llvm-link-with-Bsymbolic-functions.patch
+add-fno-semantic-interposition.patch
+no-strict-aliasing-DwarfCompileUnit.patch
+llvm-config.h)
+sha256sums=('7d9a8405f557cefc5a21bf5672af73903b64749d9bc3a50322239f56f34ffddf'
+'SKIP'
+'560ce1e206c19f4b86f4c583b743db0ad47a610418999350710aafd60ae50fcd'
+'fc8c64267a5d179e9fc24fb2bc6150edef2598c83f5b2d138d14e05ce9f4e345'
+'d1eff24508e35aae6c26a943dbaa3ef5acb60a145b008fd1ef9ac6f6c4faa662'
+'597dc5968c695bbdbb0eac9e8eb5117fcd2773bc91edf5ec103ecab8bc48')
+validpgpkeys+=('B6C8F98282B944E3B0D5C2530FC3042E345AD05D') # Hans Wennborg 

+validpgpkeys+=('474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

+
+prepare() {
+  cd "$srcdir/llvm-$pkgver.src"
+  mkdir build
+
+  # https://bugs.archlinux.org/task/70697
+  patch -Np2 -i ../llvm-link-with-Bsymbolic-functions.patch
+  # https://reviews.llvm.org/D102453
+  patch -Np2 -i ../add-fno-semantic-interposition.patch
+
+  # Work around intermittent 'clang -O -g' crashes
+  # https://bugs.llvm.org/show_bug.cgi?id=50611#c3
+  patch -Np2 -i ../no-strict-aliasing-DwarfCompileUnit.patch
+}
+
+build() {
+  cd "$srcdir/llvm-$pkgver.src/build"
+
+  cmake .. -G Ninja \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLLVM_HOST_TRIPLE=$CHOST \
+-DLLVM_BUILD_LLVM_DYLIB=ON \
+-DLLVM_LINK_LLVM_DYLIB=ON \
+-DLLVM_INSTALL_UTILS=ON \
+-DLLVM_ENABLE_RTTI=ON \
+-DLLVM_ENABLE_FFI=ON \
+-DLLVM_BUILD_TESTS=ON \
+-DLLVM_BUILD_DOCS=ON \
+-DLLVM_ENABLE_SPHINX=ON \
+-DLLVM_ENABLE_DOXYGEN=OFF \
+-DSPHINX_WARNINGS_AS_ERRORS=OFF \
+-DLLVM_BINUTILS_INCDIR=/usr/include
+  ninja all ocaml_doc
+}
+
+check() {
+  cd "$srcdir/llvm-$pkgver.src/build"
+  ninja check
+}
+
+package_llvm() {
+  pkgdesc="Collection of modular and reusable compiler and toolchain 
technologies"
+  depends=('llvm-libs' 'perl')
+
+  cd "$srcdir/llvm-$pkgver.src/build"
+
+  DESTDIR="$pkgdir" ninja install
+
+  # Include lit for running lit-based tests in other projects
+  pushd ../utils/lit
+  python3 setup.py install --root="$pkgdir" -O1
+  popd
+
+  # Remove documentation sources
+  rm -r "$pkgdir"/usr/share/doc/$pkgname/html/{_sources,.buildinfo}
+
+  # The runtime libraries go into llvm-libs
+  mv -f "$pkgdir"/usr/lib/lib{LLVM,LTO,Remarks}*.so* "$srcdir"
+  mv -f "$pkgdir"/usr/lib/LLVMgold.so "$srcdir"
+
+  # OCaml bindings go to a separate package
+  rm -rf "$srcdir"/ocaml.{lib,doc}
+  mv "$pkgdir/usr/lib/ocaml" "$srcdir/ocaml.lib"
+  mv "$pkgdir/usr/share/doc/$pkgname/ocaml-html" "$srcdir/ocaml.doc"
+
+  if [[ $CARCH == x86_64 ]]; then
+# Needed for multilib (https://bugs.archlinux.org/task/29951)
+# Header stub is taken from Fedora
+mv "$pkgdir/usr/include/llvm/Config/llvm-config"{,-64}.h
+cp "$srcdir/llvm-config.h" 

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

2021-07-08 Thread Evangelos Foutras via arch-commits
Date: Friday, July 9, 2021 @ 05:59:39
  Author: foutrelis
Revision: 419321

upgpkg: llvm 12.0.1-1: new upstream release

Modified:
  llvm/trunk/PKGBUILD
Deleted:
  llvm/trunk/force-visibility-of-llvm-Any-to-external.patch

+
 PKGBUILD   |   11 +-
 force-visibility-of-llvm-Any-to-external.patch |   42 ---
 2 files changed, 3 insertions(+), 50 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:22:06 UTC (rev 419320)
+++ PKGBUILD2021-07-09 05:59:39 UTC (rev 419321)
@@ -2,8 +2,8 @@
 # Contributor: Jan "heftig" Steffens 
 
 pkgname=('llvm' 'llvm-libs' 'llvm-ocaml')
-pkgver=12.0.0
-pkgrel=2
+pkgver=12.0.1
+pkgrel=1
 _ocaml_ver=4.11.1
 arch=('x86_64')
 url="https://llvm.org/;
@@ -15,14 +15,12 @@
 options=('staticlibs')
 
_source_base=https://github.com/llvm/llvm-project/releases/download/llvmorg-$pkgver
 source=($_source_base/$pkgname-$pkgver.src.tar.xz{,.sig}
-force-visibility-of-llvm-Any-to-external.patch
 llvm-link-with-Bsymbolic-functions.patch
 add-fno-semantic-interposition.patch
 no-strict-aliasing-DwarfCompileUnit.patch
 llvm-config.h)
-sha256sums=('49dc47c8697a1a0abd4ee51629a696d7bfe803662f2a7252a3b16fc75f3a8b50'
+sha256sums=('7d9a8405f557cefc5a21bf5672af73903b64749d9bc3a50322239f56f34ffddf'
 'SKIP'
-'98721af5a36af2a8e88c14a81b16d3929b12515d7d2d1ba385eb243dca3c32cb'
 '560ce1e206c19f4b86f4c583b743db0ad47a610418999350710aafd60ae50fcd'
 'fc8c64267a5d179e9fc24fb2bc6150edef2598c83f5b2d138d14e05ce9f4e345'
 'd1eff24508e35aae6c26a943dbaa3ef5acb60a145b008fd1ef9ac6f6c4faa662'
@@ -34,9 +32,6 @@
   cd "$srcdir/llvm-$pkgver.src"
   mkdir build
 
-  # https://bugs.llvm.org/show_bug.cgi?id=48992
-  patch -Np2 -i ../force-visibility-of-llvm-Any-to-external.patch
-
   # https://bugs.archlinux.org/task/70697
   patch -Np2 -i ../llvm-link-with-Bsymbolic-functions.patch
   # https://reviews.llvm.org/D102453

Deleted: force-visibility-of-llvm-Any-to-external.patch
===
--- force-visibility-of-llvm-Any-to-external.patch  2021-07-09 05:22:06 UTC 
(rev 419320)
+++ force-visibility-of-llvm-Any-to-external.patch  2021-07-09 05:59:39 UTC 
(rev 419321)
@@ -1,42 +0,0 @@
-From 3d3abc22b3ef189813a3b9061c2a90ba86a32f44 Mon Sep 17 00:00:00 2001
-From: serge-sans-paille 
-Date: Tue, 11 May 2021 20:46:58 +0200
-Subject: [PATCH] Force visibility of llvm::Any to external
-
-llvm::Any::TypeId::Id relies on the uniqueness of the address of a static
-variable defined in a template function. hidden visibility implies vague 
linkage
-for that variable, which does not guarantee the uniqueness of the address 
across
-a binary and a shared library. This totally breaks the implementation of
-llvm::Any.
-
-Ideally, setting visibility to llvm::Any::TypeId::Id should be enough,
-unfortunately this doesn't work as expected and we lack time (before 12.0.1
-release) to understand why setting the visibility to llvm::Any does work.
-
-See https://gcc.gnu.org/wiki/Visibility and
-https://gcc.gnu.org/onlinedocs/gcc/Vague-Linkage.html
-for more information on that topic.
-
-Differential Revision: https://reviews.llvm.org/D101972

- llvm/include/llvm/ADT/Any.h | 7 ++-
- 1 file changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/llvm/include/llvm/ADT/Any.h b/llvm/include/llvm/ADT/Any.h
-index 15b114f7932d..e513586845a1 100644
 a/llvm/include/llvm/ADT/Any.h
-+++ b/llvm/include/llvm/ADT/Any.h
-@@ -23,7 +23,12 @@
- 
- namespace llvm {
- 
--class Any {
-+class LLVM_EXTERNAL_VISIBILITY Any {
-+
-+  // The `Typeid::Id` static data member below is a globally unique
-+  // identifier for the type `T`. It is explicitly marked with default
-+  // visibility so that when `-fvisibility=hidden` is used, the loader still
-+  // merges duplicate definitions across DSO boundaries.
-   template  struct TypeId { static const char Id; };
- 
-   struct StorageBase {



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:50:01
  Author: felixonmars
Revision: 975936

archrelease: copy trunk to community-x86_64

Added:
  python-cx-freeze/repos/community-x86_64/PKGBUILD
(from rev 975935, python-cx-freeze/trunk/PKGBUILD)
Deleted:
  python-cx-freeze/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-09 05:49:47 UTC (rev 975935)
+++ PKGBUILD2021-07-09 05:50:01 UTC (rev 975936)
@@ -1,44 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: Alexander Rødseth 
-# Contributor: Ray Rashif 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Eric Belanger 
-# Contributor: Roberto Alsina 
-# Contributor: Julien Duponchelle 
-
-pkgname=python-cx-freeze
-pkgver=6.6
-pkgrel=1
-pkgdesc='Create standalone executables from Python scripts'
-arch=('x86_64')
-url='https://marcelotduarte.github.io/cx_Freeze'
-license=('PSF')
-depends=('python-importlib-metadata')
-makedepends=('python-setuptools')
-checkdepends=('python-nose' 'python-openpyxl')
-replaces=('python-cx_freeze')
-provides=('python-cx_freeze')
-conflicts=('python-cx_freeze')
-source=("https://github.com/marcelotduarte/cx_Freeze/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('121b028a86b0e9ac17d45727ee80c556cdae3226fd30daf269b0685c11b1284e5c00566050ab046b1f1351769acc7bbd2d2dee9846610665bfdc33ed9ae46576')
-
-prepare() {
-  cd cx_Freeze-$pkgver
-  # https://github.com/marcelotduarte/cx_Freeze/pull/833
-  sed -i 's/excludes$/excludes or []/' cx_Freeze/finder.py
-}
-
-build() {
-  cd cx_Freeze-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd cx_Freeze-$pkgver
-  python setup.py nosetests || echo "Tests failed"
-}
-
-package() {
-  cd cx_Freeze-$pkgver
-  python setup.py install --root "$pkgdir" --optimize 1 --skip-build
-}

Copied: python-cx-freeze/repos/community-x86_64/PKGBUILD (from rev 975935, 
python-cx-freeze/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-09 05:50:01 UTC (rev 975936)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan 
+# Contributor: Alexander Rødseth 
+# Contributor: Ray Rashif 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: Eric Belanger 
+# Contributor: Roberto Alsina 
+# Contributor: Julien Duponchelle 
+
+pkgname=python-cx-freeze
+pkgver=6.7
+pkgrel=1
+pkgdesc='Create standalone executables from Python scripts'
+arch=('x86_64')
+url='https://marcelotduarte.github.io/cx_Freeze'
+license=('PSF')
+depends=('python-importlib-metadata')
+makedepends=('python-setuptools')
+checkdepends=('python-nose' 'python-openpyxl')
+replaces=('python-cx_freeze')
+provides=('python-cx_freeze')
+conflicts=('python-cx_freeze')
+source=("https://github.com/marcelotduarte/cx_Freeze/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('e4b7a1ff58fc5024ae57b6ba05ca01ebbd98eb1b3a234ea1167ce0dacfa79ff748a0425483f4f639dee417371edf59277740a8c55208187b2dfe36eb72ab2742')
+
+prepare() {
+  cd cx_Freeze-$pkgver
+  # https://github.com/marcelotduarte/cx_Freeze/pull/833
+  sed -i 's/excludes$/excludes or []/' cx_Freeze/finder.py
+}
+
+build() {
+  cd cx_Freeze-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd cx_Freeze-$pkgver
+  python setup.py nosetests || echo "Tests failed"
+}
+
+package() {
+  cd cx_Freeze-$pkgver
+  python setup.py install --root "$pkgdir" --optimize 1 --skip-build
+}



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:49:47
  Author: felixonmars
Revision: 975935

upgpkg: python-cx-freeze 6.7-1

Modified:
  python-cx-freeze/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:34:39 UTC (rev 975934)
+++ PKGBUILD2021-07-09 05:49:47 UTC (rev 975935)
@@ -7,7 +7,7 @@
 # Contributor: Julien Duponchelle 
 
 pkgname=python-cx-freeze
-pkgver=6.6
+pkgver=6.7
 pkgrel=1
 pkgdesc='Create standalone executables from Python scripts'
 arch=('x86_64')
@@ -20,7 +20,7 @@
 provides=('python-cx_freeze')
 conflicts=('python-cx_freeze')
 
source=("https://github.com/marcelotduarte/cx_Freeze/archive/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('121b028a86b0e9ac17d45727ee80c556cdae3226fd30daf269b0685c11b1284e5c00566050ab046b1f1351769acc7bbd2d2dee9846610665bfdc33ed9ae46576')
+sha512sums=('e4b7a1ff58fc5024ae57b6ba05ca01ebbd98eb1b3a234ea1167ce0dacfa79ff748a0425483f4f639dee417371edf59277740a8c55208187b2dfe36eb72ab2742')
 
 prepare() {
   cd cx_Freeze-$pkgver



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:30:40
  Author: felixonmars
Revision: 975920

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

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

Copied: haskell-language-server/repos/community-staging-x86_64/PKGBUILD (from 
rev 975919, haskell-language-server/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-09 05:30:40 UTC (rev 975920)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+
+pkgname=haskell-language-server
+pkgver=1.2.0.0
+pkgrel=20
+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-brittany-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-eval-plugin'
+# 'haskell-hls-refine-imports-plugin' 'haskell-hls-splice-plugin' 
'haskell-hls-tactics-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=('c8ca57796be15796e7334e20ef3a983b4a77335d41084add87d102746e893fc80c43ee6c761d04d52afad846d4744007a0aec8d70a7e12e4576f847a684726ab')
+
+prepare() {
+  cd $pkgname-$pkgver
+  find test/testdata -name \*.cabal -exec uusi --add-options-all=-dynamic {} \;
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' -f-brittany -f-class -f-eval -f-refineImports 
-f-splice -f-tactic
+
+  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)

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:30:27
  Author: felixonmars
Revision: 975919

upgpkg: haskell-language-server 1.2.0.0-20: rebuild with ghcide 1.4.0.3, hiedb 
0.4.0.0

Modified:
  haskell-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:27:49 UTC (rev 975918)
+++ PKGBUILD2021-07-09 05:30:27 UTC (rev 975919)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-language-server
 pkgver=1.2.0.0
-pkgrel=19
+pkgrel=20
 pkgdesc="LSP server for GHC"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:27:49
  Author: felixonmars
Revision: 975918

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 975917, haskell-hls-explicit-imports-plugin/trunk/PKGBUILD)

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

Copied: 
haskell-hls-explicit-imports-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 975917, haskell-hls-explicit-imports-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-09 05:27:49 UTC (rev 975918)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-explicit-imports-plugin
+pkgname=haskell-hls-explicit-imports-plugin
+pkgver=1.0.0.3
+pkgrel=16
+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=('9ee3ef0e88179ec03f64e2f23ba21c00ed02dd2b64c097de926c9502d2b4b77fb3c5e17c1ebe7f3e7e4a8db2a38a888de6ddb523b247f2883c9750452c603358')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:27:36
  Author: felixonmars
Revision: 975917

upgpkg: haskell-hls-explicit-imports-plugin 1.0.0.3-16: rebuild with ghcide 
1.4.0.3, hiedb 0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:26:53 UTC (rev 975916)
+++ PKGBUILD2021-07-09 05:27:36 UTC (rev 975917)
@@ -3,7 +3,7 @@
 _hkgname=hls-explicit-imports-plugin
 pkgname=haskell-hls-explicit-imports-plugin
 pkgver=1.0.0.3
-pkgrel=15
+pkgrel=16
 pkgdesc="Explicit imports plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-explicit-imports-plugin;
 license=("Apache")



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:26:53
  Author: felixonmars
Revision: 975916

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 975915, haskell-hls-retrie-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-retrie-plugin/repos/community-staging-x86_64/PKGBUILD (from 
rev 975915, haskell-hls-retrie-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-09 05:26:53 UTC (rev 975916)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-retrie-plugin
+pkgname=haskell-hls-retrie-plugin
+pkgver=1.0.1.0
+pkgrel=16
+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=('42b17ab6aaca200f5eba741d276d68810a7568e6f41b85735ec9739dbd580de15da8737be9d416c7b5cb845fc12e18cc9d2b2ccfd841cece38907b6be07bd7ea')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:25:54
  Author: felixonmars
Revision: 975915

upgpkg: haskell-hls-retrie-plugin 1.0.1.0-16: rebuild with ghcide 1.4.0.3, 
hiedb 0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:25:03 UTC (rev 975914)
+++ PKGBUILD2021-07-09 05:25:54 UTC (rev 975915)
@@ -3,7 +3,7 @@
 _hkgname=hls-retrie-plugin
 pkgname=haskell-hls-retrie-plugin
 pkgver=1.0.1.0
-pkgrel=15
+pkgrel=16
 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-haddock-comments-plugin/repos (2 files)

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:25:03
  Author: felixonmars
Revision: 975914

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 975913, 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 975913, haskell-hls-haddock-comments-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-09 05:25:03 UTC (rev 975914)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-haddock-comments-plugin
+pkgname=haskell-hls-haddock-comments-plugin
+pkgver=1.0.0.2
+pkgrel=16
+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=('f50c9fc595e8cebcff38d4fb7c3f6f8df59d0df5e8924718812c3ee38da38db5d25ab082e1347d8fdd6a01a779e2c03e029fb6b74bcfd6ebeb55ac1a21642fb6')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:24:50
  Author: felixonmars
Revision: 975913

upgpkg: haskell-hls-haddock-comments-plugin 1.0.0.2-16: rebuild with ghcide 
1.4.0.3, hiedb 0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:24:04 UTC (rev 975912)
+++ PKGBUILD2021-07-09 05:24:50 UTC (rev 975913)
@@ -3,7 +3,7 @@
 _hkgname=hls-haddock-comments-plugin
 pkgname=haskell-hls-haddock-comments-plugin
 pkgver=1.0.0.2
-pkgrel=15
+pkgrel=16
 pkgdesc="Haddock comments plugin for Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server;
 license=("Apache")



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:24:04
  Author: felixonmars
Revision: 975912

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 975911, haskell-hls-floskell-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-floskell-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 975911, haskell-hls-floskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-09 05:24:04 UTC (rev 975912)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-floskell-plugin
+pkgname=haskell-hls-floskell-plugin
+pkgver=1.0.0.0
+pkgrel=16
+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;)
+sha256sums=('c873a0d71001cba5391435a7fdc8ce69dbf27070cfc887b1f51b76a20622c471')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u ghcide $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:23:51
  Author: felixonmars
Revision: 975911

upgpkg: haskell-hls-floskell-plugin 1.0.0.0-16: rebuild with ghcide 1.4.0.3, 
hiedb 0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:22:58 UTC (rev 975910)
+++ PKGBUILD2021-07-09 05:23:51 UTC (rev 975911)
@@ -3,7 +3,7 @@
 _hkgname=hls-floskell-plugin
 pkgname=haskell-hls-floskell-plugin
 pkgver=1.0.0.0
-pkgrel=15
+pkgrel=16
 pkgdesc="Integration with the Floskell code formatter"
 url="https://hackage.haskell.org/package/hls-floskell-plugin;
 license=("Apache")



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:22:58
  Author: felixonmars
Revision: 975910

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 975909, haskell-hls-pragmas-plugin/trunk/PKGBUILD)

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

Copied: haskell-hls-pragmas-plugin/repos/community-staging-x86_64/PKGBUILD 
(from rev 975909, haskell-hls-pragmas-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-09 05:22:58 UTC (rev 975910)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-pragmas-plugin
+pkgname=haskell-hls-pragmas-plugin
+pkgver=1.0.0.0
+pkgrel=16
+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-test' 
'haskell-lsp-types')
+checkdepends=('git')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('faffabfb7da5b88dc777185cfe879779e5391b14d4e4f7196cda303a5b4978fe')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u ghcide $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:22:45
  Author: felixonmars
Revision: 975909

upgpkg: haskell-hls-pragmas-plugin 1.0.0.0-16: rebuild with ghcide 1.4.0.3, 
hiedb 0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:21:41 UTC (rev 975908)
+++ PKGBUILD2021-07-09 05:22:45 UTC (rev 975909)
@@ -3,7 +3,7 @@
 _hkgname=hls-pragmas-plugin
 pkgname=haskell-hls-pragmas-plugin
 pkgver=1.0.0.0
-pkgrel=15
+pkgrel=16
 pkgdesc="Pragmas plugin for Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-pragmas-plugin;
 license=("Apache")



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:21:41
  Author: felixonmars
Revision: 975908

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 975907, 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 975907, haskell-hls-stylish-haskell-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-09 05:21:41 UTC (rev 975908)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-stylish-haskell-plugin
+pkgname=haskell-hls-stylish-haskell-plugin
+pkgver=1.0.0.1
+pkgrel=5
+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;)
+sha256sums=('8e6220b0c06a3dca0cd55a342684a970a4318b49eb396f37d0c0d56402dc6fb6')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:21:28
  Author: felixonmars
Revision: 975907

upgpkg: haskell-hls-stylish-haskell-plugin 1.0.0.1-5: rebuild with ghcide 
1.4.0.3, hiedb 0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:20:25 UTC (rev 975906)
+++ PKGBUILD2021-07-09 05:21:28 UTC (rev 975907)
@@ -3,7 +3,7 @@
 _hkgname=hls-stylish-haskell-plugin
 pkgname=haskell-hls-stylish-haskell-plugin
 pkgver=1.0.0.1
-pkgrel=4
+pkgrel=5
 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-module-name-plugin/repos (2 files)

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:20:25
  Author: felixonmars
Revision: 975906

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 975905, 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 975905, haskell-hls-module-name-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-09 05:20:25 UTC (rev 975906)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-module-name-plugin
+pkgname=haskell-hls-module-name-plugin
+pkgver=1.0.0.0
+pkgrel=16
+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;)
+sha256sums=('abcf1d52aa552b97e459c0e8c70af03f8428e292c253dcd14eea753283fd81a8')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:20:13
  Author: felixonmars
Revision: 975905

upgpkg: haskell-hls-module-name-plugin 1.0.0.0-16: rebuild with ghcide 1.4.0.3, 
hiedb 0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:19:27 UTC (rev 975904)
+++ PKGBUILD2021-07-09 05:20:13 UTC (rev 975905)
@@ -3,7 +3,7 @@
 _hkgname=hls-module-name-plugin
 pkgname=haskell-hls-module-name-plugin
 pkgver=1.0.0.0
-pkgrel=15
+pkgrel=16
 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-ormolu-plugin/repos (2 files)

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:19:27
  Author: felixonmars
Revision: 975904

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



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:19:14
  Author: felixonmars
Revision: 975903

upgpkg: haskell-hls-ormolu-plugin 1.0.0.0-5: rebuild with ghcide 1.4.0.3, hiedb 
0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:18:12 UTC (rev 975902)
+++ PKGBUILD2021-07-09 05:19:14 UTC (rev 975903)
@@ -3,7 +3,7 @@
 _hkgname=hls-ormolu-plugin
 pkgname=haskell-hls-ormolu-plugin
 pkgver=1.0.0.0
-pkgrel=4
+pkgrel=5
 pkgdesc="Integration with the Ormolu code formatter"
 url="https://hackage.haskell.org/package/hls-ormolu-plugin;
 license=("Apache")



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:18:12
  Author: felixonmars
Revision: 975902

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 975901, 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 975901, haskell-hls-fourmolu-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-09 05:18:12 UTC (rev 975902)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-fourmolu-plugin
+pkgname=haskell-hls-fourmolu-plugin
+pkgver=1.0.0.1
+pkgrel=5
+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;)
+sha256sums=('c78f938155ba487d550e4afb11363c5aded34d5592a74680eb73a022ffda3b0d')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $_hkgname-$pkgver
+  runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:17:59
  Author: felixonmars
Revision: 975901

upgpkg: haskell-hls-fourmolu-plugin 1.0.0.1-5: rebuild with ghcide 1.4.0.3, 
hiedb 0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:17:01 UTC (rev 975900)
+++ PKGBUILD2021-07-09 05:17:59 UTC (rev 975901)
@@ -3,7 +3,7 @@
 _hkgname=hls-fourmolu-plugin
 pkgname=haskell-hls-fourmolu-plugin
 pkgver=1.0.0.1
-pkgrel=4
+pkgrel=5
 pkgdesc="Integration with the Fourmolu code formatter"
 url="https://hackage.haskell.org/package/hls-fourmolu-plugin;
 license=("Apache")



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:17:01
  Author: felixonmars
Revision: 975900

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 975899, 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 975899, haskell-hls-test-utils/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-09 05:17:01 UTC (rev 975900)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-test-utils
+pkgname=haskell-hls-test-utils
+pkgver=1.0.1.0
+pkgrel=16
+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=('ba5c13ce3fe5dc502d25221456e832d3ee521c112a9f1a3e066d10205e4b553b2de21c476ad0f4f051041ed421d03499abde14a7ff1bed29cf94bc3b29a40c19')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -u hspec $_hkgname.cabal
+  # https://github.com/haskell/haskell-language-server/issues/1835
+  sed -i '/configOutputFile/d' src/Test/Hls/Util.hs
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:16:48
  Author: felixonmars
Revision: 975899

upgpkg: haskell-hls-test-utils 1.0.1.0-16: rebuild with ghcide 1.4.0.3, hiedb 
0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:16:03 UTC (rev 975898)
+++ PKGBUILD2021-07-09 05:16:48 UTC (rev 975899)
@@ -3,7 +3,7 @@
 _hkgname=hls-test-utils
 pkgname=haskell-hls-test-utils
 pkgver=1.0.1.0
-pkgrel=15
+pkgrel=16
 pkgdesc="Utilities used in the tests of Haskell Language Server"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:16:03
  Author: felixonmars
Revision: 975898

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 975897, 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 975897, haskell-hls-hlint-plugin/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-09 05:16:03 UTC (rev 975898)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-hlint-plugin
+pkgname=haskell-hls-hlint-plugin
+pkgver=1.0.1.0
+pkgrel=16
+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=('a76d166f8215fcaaf6b8d597f21ceafa64b34435b3aff6717db939f905c864efc3c441a9bc3f590677d76009d46e7783b72150c220c8f47ec2f56f57e23d6776')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie' -fhlint33
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+  cd $_hkgname-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:15:47
  Author: felixonmars
Revision: 975897

upgpkg: haskell-hls-hlint-plugin 1.0.1.0-16: rebuild with ghcide 1.4.0.3, hiedb 
0.4.0.0

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 05:14:28 UTC (rev 975896)
+++ PKGBUILD2021-07-09 05:15:47 UTC (rev 975897)
@@ -3,7 +3,7 @@
 _hkgname=hls-hlint-plugin
 pkgname=haskell-hls-hlint-plugin
 pkgver=1.0.1.0
-pkgrel=15
+pkgrel=16
 pkgdesc="Hlint integration plugin with Haskell Language Server"
 url="https://hackage.haskell.org/package/hls-hlint-plugin;
 license=("Apache")



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:14:28
  Author: felixonmars
Revision: 975896

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

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

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



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 05:14:15
  Author: felixonmars
Revision: 975895

upgpkg: haskell-ghcide 1.4.0.3-1: rebuild with ghcide 1.4.0.3, hiedb 0.4.0.0

Modified:
  haskell-ghcide/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 04:57:04 UTC (rev 975894)
+++ PKGBUILD2021-07-09 05:14:15 UTC (rev 975895)
@@ -2,8 +2,8 @@
 
 _hkgname=ghcide
 pkgname=haskell-ghcide
-pkgver=1.4.0.2
-pkgrel=11
+pkgver=1.4.0.3
+pkgrel=1
 pkgdesc="The core of an IDE"
 
url="https://github.com/haskell/haskell-language-server/tree/master/ghcide#readme;
 license=("Apache")
@@ -30,7 +30,7 @@
  'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun')
 checkdepends=('cabal-install')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-sha512sums=('bbd298ca51edee9795934155daa8b2b74efc4b51c25181a5957ad35dd18e086dd13e05e376460e4002ffddaec3ab0ac8392afc710a0f992e78d1a77f46089329')
+sha512sums=('9e8be452538a978f67bf0c799b8fcb7036c9fe3f351ee1484fe9f8ab661e88e158a459ff981b4811d70796436195b4f47e7cb22933984cd8c9848740c08f4949')
 
 prepare() {
   cd $_hkgname-$pkgver



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

2021-07-08 Thread Evangelos Foutras via arch-commits
Date: Friday, July 9, 2021 @ 05:10:23
  Author: foutrelis
Revision: 419319

archrelease: copy trunk to extra-x86_64

Added:
  pidgin/repos/extra-x86_64/PKGBUILD
(from rev 419318, pidgin/trunk/PKGBUILD)
Deleted:
  pidgin/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-09 05:10:18 UTC (rev 419318)
+++ PKGBUILD2021-07-09 05:10:23 UTC (rev 419319)
@@ -1,106 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Ionut Biru 
-# Contributor: Andrea Scarpino 
-# Contributor: Alexander Fehr 
-# Contributor: Lucien Immink 
-
-pkgname=('pidgin' 'libpurple' 'finch')
-pkgver=2.14.5
-pkgrel=1
-arch=('x86_64')
-url="https://pidgin.im/;
-license=('GPL')
-makedepends=('startup-notification' 'gtkspell' 'libxss' 'nss' 'libsasl' 'libsm'
- 'libidn' 'libgadu' 'python' 'hicolor-icon-theme' 'farstream' 'tk'
- 'libnsl' 'avahi' 'ca-certificates' 'intltool' 'libnm' 'dbus-glib'
- 'libgnt' 'libxcrypt')
-options=('!emptydirs')
-source=(https://downloads.sourceforge.net/project/pidgin/Pidgin/$pkgver/$pkgname-$pkgver.tar.bz2{,.asc})
-sha256sums=('26db80d2a3c1e740952757bd53c15b8fc8dd780dc8819a74b53b2ef3bfaf041f'
-'SKIP')
-validpgpkeys=('40DE1DC7288FE3F50AB938C548F66AFFD9BDB729') # Gary Kramlich 

-
-prepare() {
-  cd $pkgbase-$pkgver
-}
-
-build() {
-  cd $pkgbase-$pkgver
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---disable-schemas-install \
---disable-gevolution \
---disable-meanwhile \
---disable-gnutls \
---enable-cyrus-sasl \
---disable-doxygen \
---enable-nm \
---with-system-ssl-certs=/etc/ssl/certs
-make
-}
-
-package_pidgin(){
-  pkgdesc="Multi-protocol instant messaging client"
-  depends=('libpurple' 'startup-notification' 'gtkspell' 'libxss' 'libsm'
-   'gst-plugins-base' 'gst-plugins-good' 'hicolor-icon-theme')
-  optdepends=('aspell: for spelling correction')
-
-  cd $pkgbase-$pkgver
-
-  # For linking
-  make -C libpurple DESTDIR="$pkgdir" install-libLTLIBRARIES
-
-  make -C pidgin DESTDIR="$pkgdir" install
-  make -C doc DESTDIR="$pkgdir" install
-
-  # Remove files that are packaged in libpurle
-  make -C libpurple DESTDIR="$pkgdir" uninstall-libLTLIBRARIES
-
-  rm "$pkgdir/usr/share/man/man1/finch.1"
-
-  # https://bugs.archlinux.org/task/53770
-  # https://bugs.archlinux.org/task/69026
-  find "$pkgdir/usr/lib/perl5" -name perllocal.pod -delete
-}
-
-package_libpurple(){
-  pkgdesc="IM library extracted from Pidgin"
-  depends=('farstream' 'libsasl' 'libidn' 'libnsl' 'libgadu' 'dbus-glib' 'nss'
-   'libnm' 'libxcrypt')
-  optdepends=('avahi: Bonjour protocol support'
-  'ca-certificates: SSL CA certificates'
-  'python-dbus: for purple-remote and purple-url-handler'
-  'tk: Tcl/Tk scripting support')
-
-  cd $pkgbase-$pkgver
-
-  for _dir in libpurple share/sounds share/ca-certs m4macros po; do
-make -C "$_dir" DESTDIR="$pkgdir" install
-  done
-
-  # https://bugs.archlinux.org/task/53770
-  # https://bugs.archlinux.org/task/69026
-  find "$pkgdir/usr/lib/perl5" -name perllocal.pod -delete
-}
-
-package_finch(){
-  pkgdesc="A ncurses-based messaging client"
-  depends=('libpurple' 'libgnt' 'libx11')
-
-  cd $pkgbase-$pkgver
-
-  # For linking
-  make -C libpurple DESTDIR="$pkgdir" install-libLTLIBRARIES
-
-  make -C finch DESTDIR="$pkgdir" install
-  make -C doc DESTDIR="$pkgdir" install
-
-  # Remove files that are packaged in libpurle
-  make -C libpurple DESTDIR="$pkgdir" uninstall-libLTLIBRARIES
-
-  rm "$pkgdir"/usr/share/man/man1/pidgin.1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: pidgin/repos/extra-x86_64/PKGBUILD (from rev 419318, 
pidgin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-09 05:10:23 UTC (rev 419319)
@@ -0,0 +1,106 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Ionut Biru 
+# Contributor: Andrea Scarpino 
+# Contributor: Alexander Fehr 
+# Contributor: Lucien Immink 
+
+pkgname=('pidgin' 'libpurple' 'finch')
+pkgver=2.14.6
+pkgrel=1
+arch=('x86_64')
+url="https://pidgin.im/;
+license=('GPL')
+makedepends=('startup-notification' 'gtkspell' 'libxss' 'nss' 'libsasl' 'libsm'
+ 'libidn' 'libgadu' 'python' 'hicolor-icon-theme' 'farstream' 'tk'
+ 'libnsl' 'avahi' 'ca-certificates' 'intltool' 'libnm' 'dbus-glib'
+ 'libgnt' 'libxcrypt')
+options=('!emptydirs')
+source=(https://downloads.sourceforge.net/project/pidgin/Pidgin/$pkgver/$pkgname-$pkgver.tar.bz2{,.asc})
+sha256sums=('bb45f7c032f9efd6922a5dbf2840995775e5584771b23992d04f6eff7dff5336'
+'SKIP')
+validpgpkeys=('40DE1DC7288FE3F50AB938C548F66AFFD9BDB729') # Gary Kramlich 

+
+prepare() {
+  cd 

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

2021-07-08 Thread Evangelos Foutras via arch-commits
Date: Friday, July 9, 2021 @ 05:10:18
  Author: foutrelis
Revision: 419318

upgpkg: pidgin 2.14.6-1: new upstream release

Modified:
  pidgin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 02:18:36 UTC (rev 419317)
+++ PKGBUILD2021-07-09 05:10:18 UTC (rev 419318)
@@ -5,7 +5,7 @@
 # Contributor: Lucien Immink 
 
 pkgname=('pidgin' 'libpurple' 'finch')
-pkgver=2.14.5
+pkgver=2.14.6
 pkgrel=1
 arch=('x86_64')
 url="https://pidgin.im/;
@@ -16,7 +16,7 @@
  'libgnt' 'libxcrypt')
 options=('!emptydirs')
 
source=(https://downloads.sourceforge.net/project/pidgin/Pidgin/$pkgver/$pkgname-$pkgver.tar.bz2{,.asc})
-sha256sums=('26db80d2a3c1e740952757bd53c15b8fc8dd780dc8819a74b53b2ef3bfaf041f'
+sha256sums=('bb45f7c032f9efd6922a5dbf2840995775e5584771b23992d04f6eff7dff5336'
 'SKIP')
 validpgpkeys=('40DE1DC7288FE3F50AB938C548F66AFFD9BDB729') # Gary Kramlich 

 



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 04:57:04
  Author: felixonmars
Revision: 975894

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hiedb/repos/community-staging-x86_64/PKGBUILD (from rev 975893, 
haskell-hiedb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-09 04:57:04 UTC (rev 975894)
@@ -0,0 +1,52 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hiedb
+pkgname=haskell-hiedb
+pkgver=0.4.0.0
+pkgrel=1
+pkgdesc="Generates a references DB from .hie files"
+url="https://github.com/wz1000/HieDb;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-algebraic-graphs' 'haskell-ansi-terminal' 
'haskell-extra' 'haskell-ghc'
+ 'haskell-ghc-api-compat' 'haskell-ghc-paths' 'haskell-hie-compat' 
'haskell-lucid'
+ 'haskell-optparse-applicative' 'haskell-sqlite-simple' 
'haskell-terminal-size')
+makedepends=('ghc' 'haskell-hspec' 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('b45bb1e08544379c61a9bd3f38613be844320cd5bed65d181cc01c7f77724daf63e4cf6930db7f14873de8f2122efe7e10b933bd5d53d3a4df4c55f8343c0d7b')
+
+prepare() {
+  cd hiedb-$pkgver
+  sed -i 's/callProcess hc args/callProcess hc (["-dynamic"] ++ args)/' 
test/Main.hs
+}
+
+build() {
+  cd hiedb-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+--ghc-option='-pie'
+
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd hiedb-$pkgver
+  PATH="$PWD/dist/build/hiedb:$PATH" LD_LIBRARY_PATH="$PWD/dist/build" 
runhaskell Setup test --show-details=direct
+}
+
+package() {
+  cd hiedb-$pkgver
+
+  install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
+  install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+  runhaskell Setup copy --destdir="$pkgdir"
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}



[arch-commits] Commit in haskell-hiedb/trunk (PKGBUILD ghc9.patch)

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 04:56:50
  Author: felixonmars
Revision: 975893

upgpkg: haskell-hiedb 0.4.0.0-1: rebuild with ghcide 1.4.0.3, hiedb 0.4.0.0

Modified:
  haskell-hiedb/trunk/PKGBUILD
Deleted:
  haskell-hiedb/trunk/ghc9.patch

+
 PKGBUILD   |   31 -
 ghc9.patch | 1061 ---
 2 files changed, 12 insertions(+), 1080 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 04:38:13 UTC (rev 975892)
+++ PKGBUILD2021-07-09 04:56:50 UTC (rev 975893)
@@ -2,8 +2,8 @@
 
 _hkgname=hiedb
 pkgname=haskell-hiedb
-pkgver=0.3.0.1
-pkgrel=48
+pkgver=0.4.0.0
+pkgrel=1
 pkgdesc="Generates a references DB from .hie files"
 url="https://github.com/wz1000/HieDb;
 license=("BSD")
@@ -10,24 +10,18 @@
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-algebraic-graphs' 'haskell-ansi-terminal' 
'haskell-extra' 'haskell-ghc'
  'haskell-ghc-api-compat' 'haskell-ghc-paths' 'haskell-hie-compat' 
'haskell-lucid'
- 'haskell-optparse-applicative' 'haskell-sqlite-simple')
-makedepends=('ghc' 'uusi' 'haskell-hspec' 'haskell-temporary')
-# https://github.com/wz1000/HieDb/pull/27
-#source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
-source=("https://github.com/wz1000/HieDb/archive/$pkgver/$pkgname-$pkgver.tar.gz;
-ghc9.patch)
-sha256sums=('7c0d3c56f7c0ea9b5af84f9c9f8547dc2a12abf0ab3e599c9ebdff3d2bf7b980'
-'2c86858d805a69603ffa4680b2a989b5732f43ec47ab42e5de1d37794b097372')
+ 'haskell-optparse-applicative' 'haskell-sqlite-simple' 
'haskell-terminal-size')
+makedepends=('ghc' 'haskell-hspec' 'haskell-temporary')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('b45bb1e08544379c61a9bd3f38613be844320cd5bed65d181cc01c7f77724daf63e4cf6930db7f14873de8f2122efe7e10b933bd5d53d3a4df4c55f8343c0d7b')
 
 prepare() {
-  cd HieDb-$pkgver
-  patch -p1 -i ../ghc9.patch
-  sed -i 's/callProcess "ghc" \$/callProcess "ghc" $ "-dynamic" :/' 
test/Main.hs
-  uusi -u base $_hkgname.cabal
+  cd hiedb-$pkgver
+  sed -i 's/callProcess hc args/callProcess hc (["-dynamic"] ++ args)/' 
test/Main.hs
 }
 
 build() {
-  cd HieDb-$pkgver
+  cd hiedb-$pkgver
 
   runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
 --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
@@ -43,13 +37,12 @@
 }
 
 check() {
-  cd HieDb-$pkgver
-  # https://github.com/wz1000/HieDb/issues/28
-  PATH="$PWD/dist/build/hiedb:$PATH" LD_LIBRARY_PATH="$PWD/dist/build" 
runhaskell Setup test || echo "Tests failed"
+  cd hiedb-$pkgver
+  PATH="$PWD/dist/build/hiedb:$PATH" LD_LIBRARY_PATH="$PWD/dist/build" 
runhaskell Setup test --show-details=direct
 }
 
 package() {
-  cd HieDb-$pkgver
+  cd hiedb-$pkgver
 
   install -D -m744 register.sh "$pkgdir"/usr/share/haskell/register/$pkgname.sh
   install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh

Deleted: ghc9.patch
===
--- ghc9.patch  2021-07-09 04:38:13 UTC (rev 975892)
+++ ghc9.patch  2021-07-09 04:56:50 UTC (rev 975893)
@@ -1,1061 +0,0 @@
-From ddd3c1ee822c2759f9b67a6e199770e6097b5ef0 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Andreas=20K=C3=A4llberg?= 
-Date: Tue, 30 Mar 2021 00:52:11 +0800
-Subject: [PATCH 1/7] Add non-backwards compatible support for ghc-9.0.1
-

- hiedb.cabal  |  4 +++-
- src/HieDb/Create.hs  | 15 +--
- src/HieDb/Query.hs   | 28 ++--
- src/HieDb/Run.hs | 41 +
- src/HieDb/Types.hs   | 25 -
- src/HieDb/Utils.hs   | 34 ++
- test/Main.hs | 26 ++
- test/Test/Orphans.hs |  4 ++--
- 8 files changed, 105 insertions(+), 72 deletions(-)
-
-diff --git a/hiedb.cabal b/hiedb.cabal
-index 82fc7b6..f198504 100644
 a/hiedb.cabal
-+++ b/hiedb.cabal
-@@ -25,7 +25,7 @@ source-repository head
- 
- common common-options
-   default-language:Haskell2010
--  build-depends:   base >= 4.12 && < 4.15
-+  build-depends:   base >= 4.12 && < 4.16
-   ghc-options: -Wall
--Wincomplete-uni-patterns
--Wincomplete-record-updates
-@@ -69,6 +69,7 @@ library
-  , optparse-applicative
-  , extra
-  , ansi-terminal
-+ , ghc-api-compat
- 
- test-suite hiedb-tests
-   import: common-options
-@@ -85,3 +86,4 @@ test-suite hiedb-tests
- , hspec
- , process
- , temporary
-+, ghc-api-compat
-diff --git a/src/HieDb/Create.hs b/src/HieDb/Create.hs
-index 3572843..57c3fac 100644
 a/src/HieDb/Create.hs

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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 04:38:13
  Author: felixonmars
Revision: 975892

archrelease: copy trunk to community-testing-x86_64

Added:
  haskell-language-server/repos/community-testing-x86_64/PKGBUILD
(from rev 975891, haskell-language-server/trunk/PKGBUILD)
Deleted:
  haskell-language-server/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-09 04:37:59 UTC (rev 975891)
+++ PKGBUILD2021-07-09 04:38:13 UTC (rev 975892)
@@ -1,67 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=haskell-language-server
-pkgver=1.2.0.0
-pkgrel=18
-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-brittany-plugin'
- 'haskell-hls-explicit-imports-plugin'
- 'haskell-hls-floskell-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-eval-plugin'
-# 'haskell-hls-fourmolu-plugin' 'haskell-hls-ormolu-plugin' 
'haskell-hls-refine-imports-plugin'
-# 'haskell-hls-splice-plugin' 'haskell-hls-tactics-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=('c8ca57796be15796e7334e20ef3a983b4a77335d41084add87d102746e893fc80c43ee6c761d04d52afad846d4744007a0aec8d70a7e12e4576f847a684726ab')
-
-prepare() {
-  cd $pkgname-$pkgver
-  find test/testdata -name \*.cabal -exec uusi --add-options-all=-dynamic {} \;
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
---ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
---ghc-option='-pie' -f-brittany -f-class -f-eval -f-fourmolu -f-ormolu 
-f-refineImports -f-splice -f-tactic
-
-  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
-}

Copied: haskell-language-server/repos/community-testing-x86_64/PKGBUILD (from 
rev 975891, haskell-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-09 04:38:13 UTC (rev 975892)
@@ -0,0 +1,67 @@
+# Maintainer: Felix Yan 
+
+pkgname=haskell-language-server
+pkgver=1.2.0.0
+pkgrel=19
+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-brittany-plugin'
+ 

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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 04:37:59
  Author: felixonmars
Revision: 975891

upgpkg: haskell-language-server 1.2.0.0-19: re-enable ormolu and fourmolu 
plugins

Modified:
  haskell-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 04:29:23 UTC (rev 975890)
+++ PKGBUILD2021-07-09 04:37:59 UTC (rev 975891)
@@ -2,7 +2,7 @@
 
 pkgname=haskell-language-server
 pkgver=1.2.0.0
-pkgrel=18
+pkgrel=19
 pkgdesc="LSP server for GHC"
 url="https://github.com/haskell/haskell-language-server#readme;
 license=("Apache")
@@ -12,7 +12,8 @@
  'haskell-extra' 'haskell-ghc' 'haskell-ghc-api-compat' 
'haskell-ghc-paths' 'haskell-gitrev'
  'haskell-hashable' 'haskell-hie-bios' 'haskell-hiedb' 
'haskell-hls-brittany-plugin'
  'haskell-hls-explicit-imports-plugin'
- 'haskell-hls-floskell-plugin' 'haskell-hls-graph'
+ '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'
@@ -22,8 +23,7 @@
  'haskell-unordered-containers')
 # Disabled due to not compatible with GHC 9:
 # 'haskell-hls-brittany-plugin' 'haskell-hls-class-plugin' 
'haskell-hls-eval-plugin'
-# 'haskell-hls-fourmolu-plugin' 'haskell-hls-ormolu-plugin' 
'haskell-hls-refine-imports-plugin'
-# 'haskell-hls-splice-plugin' 'haskell-hls-tactics-plugin'
+# 'haskell-hls-refine-imports-plugin' 'haskell-hls-splice-plugin' 
'haskell-hls-tactics-plugin'
 makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 
'haskell-hspec-expectations' 'haskell-lsp-test'
  'haskell-lsp-types')
 checkdepends=('cabal-install')
@@ -42,7 +42,7 @@
 --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
 --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
 --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
---ghc-option='-pie' -f-brittany -f-class -f-eval -f-fourmolu -f-ormolu 
-f-refineImports -f-splice -f-tactic
+--ghc-option='-pie' -f-brittany -f-class -f-eval -f-refineImports 
-f-splice -f-tactic
 
   runhaskell Setup build $MAKEFLAGS
   runhaskell Setup register --gen-script



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 04:29:10
  Author: felixonmars
Revision: 975889

upgpkg: haskell-hls-fourmolu-plugin 1.0.0.1-4: rebuild with ghc 9.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 04:23:52 UTC (rev 975888)
+++ PKGBUILD2021-07-09 04:29:10 UTC (rev 975889)
@@ -3,13 +3,13 @@
 _hkgname=hls-fourmolu-plugin
 pkgname=haskell-hls-fourmolu-plugin
 pkgver=1.0.0.1
-pkgrel=3
+pkgrel=4
 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-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;)
@@ -18,6 +18,7 @@
 prepare() {
   cd $_hkgname-$pkgver
   gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_hkgname.cabal
 }
 
 build() {



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 04:29:23
  Author: felixonmars
Revision: 975890

archrelease: copy trunk to community-testing-x86_64

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

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

Copied: haskell-hls-fourmolu-plugin/repos/community-testing-x86_64/PKGBUILD 
(from rev 975889, haskell-hls-fourmolu-plugin/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-09 04:29:23 UTC (rev 975890)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan 
+
+_hkgname=hls-fourmolu-plugin
+pkgname=haskell-hls-fourmolu-plugin
+pkgver=1.0.0.1
+pkgrel=4
+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;)
+sha256sums=('c78f938155ba487d550e4afb11363c5aded34d5592a74680eb73a022ffda3b0d')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_hkgname.cabal
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-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-fourmolu/repos (2 files)

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 04:23:52
  Author: felixonmars
Revision: 975888

archrelease: copy trunk to community-testing-x86_64

Added:
  haskell-fourmolu/repos/community-testing-x86_64/
  haskell-fourmolu/repos/community-testing-x86_64/PKGBUILD
(from rev 975887, haskell-fourmolu/trunk/PKGBUILD)

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

Copied: haskell-fourmolu/repos/community-testing-x86_64/PKGBUILD (from rev 
975887, haskell-fourmolu/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-09 04:23:52 UTC (rev 975888)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+
+_hkgname=fourmolu
+pkgname=haskell-fourmolu
+pkgver=0.3.0.0
+pkgrel=82
+pkgdesc="A formatter for Haskell source code"
+url="https://github.com/parsonsmatt/fourmolu;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hsyaml' 'haskell-hsyaml-aeson' 'haskell-aeson' 
'haskell-dlist'
+ 'haskell-ghc-lib-parser' 'haskell-gitrev' 
'haskell-optparse-applicative' 'haskell-syb')
+makedepends=('ghc' 'uusi' 'haskell-hspec' 'haskell-hspec-discover' 
'haskell-path' 'haskell-path-io')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha256sums=('ba7201c78ee61665eaf1fce10cd297dd5383d36053cd3984e41a5094d96e096d')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  uusi -u path $_hkgname.cabal
+  # uusi -rghc-lib-parser:ghc,ghc-boot,ghc-boot-th $_hkgname.cabal
+  # sed -i 's/using ghc-lib-parser/using 
ghc/;s/VERSION_ghc_lib_parser/VERSION_ghc/' app/Main.hs
+
+  sed -i 's/matchIgnoringSrcSpans = genericQuery/matchIgnoringSrcSpans x = 
genericQuery x/;1i{-# LANGUAGE ImpredicativeTypes #-}' src/Ormolu/Diff.hs
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-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.md -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE.md
+}



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 04:23:40
  Author: felixonmars
Revision: 975887

upgpkg: haskell-fourmolu 0.3.0.0-82: rebuild with ghc 9.0.1

Modified:
  haskell-fourmolu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 04:17:16 UTC (rev 975886)
+++ PKGBUILD2021-07-09 04:23:40 UTC (rev 975887)
@@ -3,13 +3,13 @@
 _hkgname=fourmolu
 pkgname=haskell-fourmolu
 pkgver=0.3.0.0
-pkgrel=81
+pkgrel=82
 pkgdesc="A formatter for Haskell source code"
 url="https://github.com/parsonsmatt/fourmolu;
 license=("BSD")
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-hsyaml' 'haskell-hsyaml-aeson' 'haskell-aeson' 
'haskell-dlist'
- 'haskell-ghc' 'haskell-gitrev' 'haskell-optparse-applicative' 
'haskell-syb')
+ 'haskell-ghc-lib-parser' 'haskell-gitrev' 
'haskell-optparse-applicative' 'haskell-syb')
 makedepends=('ghc' 'uusi' 'haskell-hspec' 'haskell-hspec-discover' 
'haskell-path' 'haskell-path-io')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
 sha256sums=('ba7201c78ee61665eaf1fce10cd297dd5383d36053cd3984e41a5094d96e096d')
@@ -16,8 +16,11 @@
 
 prepare() {
   cd $_hkgname-$pkgver
-  uusi --all -rghc-lib-parser:ghc,ghc-boot,ghc-boot-th $_hkgname.cabal
-  sed -i 's/using ghc-lib-parser/using 
ghc/;s/VERSION_ghc_lib_parser/VERSION_ghc/' app/Main.hs
+  uusi -u path $_hkgname.cabal
+  # uusi -rghc-lib-parser:ghc,ghc-boot,ghc-boot-th $_hkgname.cabal
+  # sed -i 's/using ghc-lib-parser/using 
ghc/;s/VERSION_ghc_lib_parser/VERSION_ghc/' app/Main.hs
+
+  sed -i 's/matchIgnoringSrcSpans = genericQuery/matchIgnoringSrcSpans x = 
genericQuery x/;1i{-# LANGUAGE ImpredicativeTypes #-}' src/Ormolu/Diff.hs
 }
 
 build() {



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 04:17:16
  Author: felixonmars
Revision: 975886

archrelease: copy trunk to community-testing-x86_64

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

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

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



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 04:17:03
  Author: felixonmars
Revision: 975885

upgpkg: haskell-hls-ormolu-plugin 1.0.0.0-4: rebuild with ghc 9.0.1

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

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 04:16:47 UTC (rev 975884)
+++ PKGBUILD2021-07-09 04:17:03 UTC (rev 975885)
@@ -3,13 +3,13 @@
 _hkgname=hls-ormolu-plugin
 pkgname=haskell-hls-ormolu-plugin
 pkgver=1.0.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Integration with the Ormolu code formatter"
 url="https://hackage.haskell.org/package/hls-ormolu-plugin;
 license=("Apache")
 arch=('x86_64')
 depends=('ghc-libs' 'haskell-ghc' 'haskell-ghcide' 'haskell-hls-plugin-api' 
'haskell-lens'
- 'haskell-lsp' 'haskell-ormolu')
+ 'haskell-lsp' 'haskell-ormolu' 'haskell-ghc-api-compat')
 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;)
@@ -18,6 +18,7 @@
 prepare() {
   cd $_hkgname-$pkgver
   gen-setup
+  uusi -r ghc:ghc,ghc-api-compat $_hkgname.cabal
 }
 
 build() {



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 04:16:47
  Author: felixonmars
Revision: 975884

archrelease: copy trunk to community-testing-x86_64

Added:
  haskell-ormolu/repos/community-testing-x86_64/
  haskell-ormolu/repos/community-testing-x86_64/PKGBUILD
(from rev 975883, haskell-ormolu/trunk/PKGBUILD)

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

Copied: haskell-ormolu/repos/community-testing-x86_64/PKGBUILD (from rev 
975883, haskell-ormolu/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-09 04:16:47 UTC (rev 975884)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+
+_hkgname=ormolu
+pkgname=haskell-ormolu
+pkgver=0.1.4.1
+pkgrel=82
+pkgdesc="A formatter for Haskell source code"
+url="https://github.com/tweag/ormolu;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-diff' 'haskell-dlist' 
'haskell-ghc-lib-parser'
+ 'haskell-gitrev' 'haskell-optparse-applicative' 'haskell-syb')
+makedepends=('ghc' 'uusi' 'haskell-hspec' 'haskell-path' 'haskell-path-io')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
+sha512sums=('b63b7c185bb80365dbc5359f3c8aed3015abcf50b4937dfe941dc65572b57c9403269e82cf4067cd8eca67130b98aea8f85d889a3270e066de4eb507260f0d6b')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  uusi -u path $_hkgname.cabal
+  # uusi -rghc-lib-parser:ghc,ghc-boot,ghc-boot-th $_hkgname.cabal
+  # sed -i 's/using ghc-lib-parser/using 
ghc/;s/VERSION_ghc_lib_parser/VERSION_ghc/' app/Main.hs
+
+  sed -i 's/matchIgnoringSrcSpans = genericQuery/matchIgnoringSrcSpans x = 
genericQuery x/;1i{-# LANGUAGE ImpredicativeTypes #-}' 
src/Ormolu/Diff/ParseResult.hs
+}
+
+build() {
+  cd $_hkgname-$pkgver
+
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+--ghc-option=-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.md -t "$pkgdir"/usr/share/licenses/$pkgname/
+  rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE.md
+}



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

2021-07-08 Thread Felix Yan via arch-commits
Date: Friday, July 9, 2021 @ 04:16:34
  Author: felixonmars
Revision: 975883

upgpkg: haskell-ormolu 0.1.4.1-82: rebuild with ghc 9.0.1

Modified:
  haskell-ormolu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 03:14:31 UTC (rev 975882)
+++ PKGBUILD2021-07-09 04:16:34 UTC (rev 975883)
@@ -3,14 +3,13 @@
 _hkgname=ormolu
 pkgname=haskell-ormolu
 pkgver=0.1.4.1
-pkgrel=81
+pkgrel=82
 pkgdesc="A formatter for Haskell source code"
 url="https://github.com/tweag/ormolu;
 license=("BSD")
 arch=('x86_64')
-depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-diff' 'haskell-dlist' 
'haskell-ghc'
- 'haskell-ghc-boot' 'haskell-ghc-boot-th' 'haskell-gitrev' 
'haskell-optparse-applicative'
- 'haskell-syb')
+depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-diff' 'haskell-dlist' 
'haskell-ghc-lib-parser'
+ 'haskell-gitrev' 'haskell-optparse-applicative' 'haskell-syb')
 makedepends=('ghc' 'uusi' 'haskell-hspec' 'haskell-path' 'haskell-path-io')
 
source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz;)
 
sha512sums=('b63b7c185bb80365dbc5359f3c8aed3015abcf50b4937dfe941dc65572b57c9403269e82cf4067cd8eca67130b98aea8f85d889a3270e066de4eb507260f0d6b')
@@ -17,8 +16,11 @@
 
 prepare() {
   cd $_hkgname-$pkgver
-  uusi -rghc-lib-parser:ghc,ghc-boot,ghc-boot-th $_hkgname.cabal
-  sed -i 's/using ghc-lib-parser/using 
ghc/;s/VERSION_ghc_lib_parser/VERSION_ghc/' app/Main.hs
+  uusi -u path $_hkgname.cabal
+  # uusi -rghc-lib-parser:ghc,ghc-boot,ghc-boot-th $_hkgname.cabal
+  # sed -i 's/using ghc-lib-parser/using 
ghc/;s/VERSION_ghc_lib_parser/VERSION_ghc/' app/Main.hs
+
+  sed -i 's/matchIgnoringSrcSpans = genericQuery/matchIgnoringSrcSpans x = 
genericQuery x/;1i{-# LANGUAGE ImpredicativeTypes #-}' 
src/Ormolu/Diff/ParseResult.hs
 }
 
 build() {



[arch-commits] Commit in firefox-tree-style-tab/repos/community-any (2 files)

2021-07-08 Thread Daniel M. Capella via arch-commits
Date: Friday, July 9, 2021 @ 03:14:31
  Author: polyzen
Revision: 975882

archrelease: copy trunk to community-any

Added:
  firefox-tree-style-tab/repos/community-any/PKGBUILD
(from rev 975881, firefox-tree-style-tab/trunk/PKGBUILD)
Deleted:
  firefox-tree-style-tab/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-09 03:14:13 UTC (rev 975881)
+++ PKGBUILD2021-07-09 03:14:31 UTC (rev 975882)
@@ -1,59 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Jérémie Detrey 
-
-_name=treestyletab
-pkgname=firefox-tree-style-tab
-pkgver=3.8.6
-pkgrel=1
-pkgdesc='Firefox extension to show tabs like a tree'
-arch=('any')
-url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
-license=('MPL' 'MPL2')
-groups=('firefox-addons')
-makedepends=('git' 'npm' 'strip-nondeterminism' 'zip')
-source=("git+https://github.com/piroor/treestyletab.git#tag=$pkgver;
-'git+https://github.com/piroor/webextensions-lib-configs.git'
-'git+https://github.com/piroor/webextensions-lib-dom-updater.git'
-
'git+https://github.com/piroor/webextensions-lib-event-listener-manager.git'
-'git+https://github.com/piroor/webextensions-lib-l10n.git'
-'git+https://github.com/piroor/webextensions-lib-menu-ui.git'
-'git+https://github.com/piroor/webextensions-lib-options.git'
-'git+https://github.com/piroor/webextensions-lib-rich-confirm.git'
-
'git+https://github.com/piroor/webextensions-lib-shortcut-customize-ui.git'
-
'git+https://github.com/piroor/webextensions-lib-tab-favicon-helper.git')
-b2sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-prepare() {
-  cd $_name
-  git submodule init
-  for i in ../webextensions*; do
-git config submodule.submodules/${i##../}.url $i
-  done
-  git submodule update
-  sed -i 's/^\(install_extlib\|xpi\): .*/\1:/' webextensions/Makefile
-}
-
-build() {
-  cd $_name/webextensions
-  npm ci
-  make install_extlib
-  make xpi
-  strip-nondeterminism -t zip $_name-we.xpi
-}
-
-package() {
-  cd $_name/webextensions
-  install -Dm644 $_name-we.xpi \
-"$pkgdir"/usr/lib/firefox/browser/extensions/$_n...@piro.sakura.ne.jp.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-tree-style-tab/repos/community-any/PKGBUILD (from rev 975881, 
firefox-tree-style-tab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-09 03:14:31 UTC (rev 975882)
@@ -0,0 +1,59 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Jérémie Detrey 
+
+_name=treestyletab
+pkgname=firefox-tree-style-tab
+pkgver=3.8.7
+pkgrel=1
+pkgdesc='Firefox extension to show tabs like a tree'
+arch=('any')
+url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
+license=('MPL' 'MPL2')
+groups=('firefox-addons')
+makedepends=('git' 'npm' 'strip-nondeterminism' 'zip')
+source=("git+https://github.com/piroor/treestyletab.git#tag=$pkgver;
+'git+https://github.com/piroor/webextensions-lib-configs.git'
+'git+https://github.com/piroor/webextensions-lib-dom-updater.git'
+
'git+https://github.com/piroor/webextensions-lib-event-listener-manager.git'
+'git+https://github.com/piroor/webextensions-lib-l10n.git'
+'git+https://github.com/piroor/webextensions-lib-menu-ui.git'
+'git+https://github.com/piroor/webextensions-lib-options.git'
+'git+https://github.com/piroor/webextensions-lib-rich-confirm.git'
+
'git+https://github.com/piroor/webextensions-lib-shortcut-customize-ui.git'
+
'git+https://github.com/piroor/webextensions-lib-tab-favicon-helper.git')
+b2sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+prepare() {
+  cd $_name
+  git submodule init
+  for i in ../webextensions*; do
+git config submodule.submodules/${i##../}.url $i
+  done
+  git submodule update
+  sed -i 's/^\(install_extlib\|xpi\): .*/\1:/' webextensions/Makefile
+}
+
+build() {
+  cd $_name/webextensions
+  npm ci
+  make install_extlib
+  make xpi
+  strip-nondeterminism -t zip $_name-we.xpi
+}
+
+package() {
+  cd $_name/webextensions
+  install -Dm644 $_name-we.xpi \
+"$pkgdir"/usr/lib/firefox/browser/extensions/$_n...@piro.sakura.ne.jp.xpi
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-07-08 Thread Daniel M. Capella via arch-commits
Date: Friday, July 9, 2021 @ 03:14:13
  Author: polyzen
Revision: 975881

upgpkg: firefox-tree-style-tab 3.8.7-1

Modified:
  firefox-tree-style-tab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-09 02:18:42 UTC (rev 975880)
+++ PKGBUILD2021-07-09 03:14:13 UTC (rev 975881)
@@ -3,7 +3,7 @@
 
 _name=treestyletab
 pkgname=firefox-tree-style-tab
-pkgver=3.8.6
+pkgver=3.8.7
 pkgrel=1
 pkgdesc='Firefox extension to show tabs like a tree'
 arch=('any')



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

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 22:38:21
  Author: arojas
Revision: 419314

archrelease: copy trunk to extra-x86_64

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

-+
 PKGBUILD|  224 +-
 qt5-base-cflags.patch   |   92 -
 qt5-base-mariadb-10.6.patch |   23 
 qt5-base-nostrip.patch  |   26 ++--
 4 files changed, 196 insertions(+), 169 deletions(-)

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

Copied: qt5-base/repos/extra-x86_64/PKGBUILD (from rev 419313, 
qt5-base/trunk/PKGBUILD)

[arch-commits] Commit in qt5-base/trunk (PKGBUILD qt5-base-mariadb-10.6.patch)

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 22:38:05
  Author: arojas
Revision: 419313

Fix mysql version detection with mariadb 10.6 (FS#71471)

Added:
  qt5-base/trunk/qt5-base-mariadb-10.6.patch
Modified:
  qt5-base/trunk/PKGBUILD

-+
 PKGBUILD|   10 +++---
 qt5-base-mariadb-10.6.patch |   23 +++
 2 files changed, 30 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 20:03:15 UTC (rev 419312)
+++ PKGBUILD2021-07-08 22:38:05 UTC (rev 419313)
@@ -4,7 +4,7 @@
 pkgbase=qt5-base
 pkgname=(qt5-base qt5-xcb-private-headers)
 pkgver=5.15.2+kde+r207
-pkgrel=1
+pkgrel=2
 _commit=6ee419d6597fb297c2f35d5be63c4eb16ae9b12c
 arch=('x86_64')
 url='https://www.qt.io'
@@ -30,10 +30,12 @@
 _pkgfqn=qtbase
 source=(git+https://invent.kde.org/qt/qt/$_pkgfqn#commit=$_commit
 qt5-base-cflags.patch
-qt5-base-nostrip.patch)
+qt5-base-nostrip.patch
+qt5-base-mariadb-10.6.patch)
 sha256sums=('SKIP'
 'cf707cd970650f8b60f8897692b36708ded9ba116723ec8fcd885576783fe85c'
-'4b93f6a79039e676a56f9d6990a324a64a36f143916065973ded89adc621e094')
+'4b93f6a79039e676a56f9d6990a324a64a36f143916065973ded89adc621e094'
+'dde1c2c7300a6e05b12145f0c0b180991aa5929a4bf13c026eef6511593f357b')
 
 pkgver() {
   cd $_pkgfqn
@@ -44,6 +46,8 @@
   cd ${_pkgfqn}
 
   git revert -n 6344955d17e17e2398720fe60c34cfc2a4a95208 # Revert version bump
+  patch -p1 < ../qt5-base-mariadb-10.6.patch # Fix broken mysql version 
detection with mariadb 10.6
+
   patch -p1 < ../qt5-base-cflags.patch # Use system CFLAGS in qmake
   patch -p1 < ../qt5-base-nostrip.patch # Don't strip binaries with qmake
 }

Added: qt5-base-mariadb-10.6.patch
===
--- qt5-base-mariadb-10.6.patch (rev 0)
+++ qt5-base-mariadb-10.6.patch 2021-07-08 22:38:05 UTC (rev 419313)
@@ -0,0 +1,23 @@
+diff --git a/src/plugins/sqldrivers/mysql/qsql_mysql.cpp 
b/src/plugins/sqldrivers/mysql/qsql_mysql.cpp
+index a641935dc5..19e6a8286d 100644
+--- a/src/plugins/sqldrivers/mysql/qsql_mysql.cpp
 b/src/plugins/sqldrivers/mysql/qsql_mysql.cpp
+@@ -1355,7 +1355,7 @@ bool QMYSQLDriver::open(const QString& db,
+ }
+ 
+ #if MYSQL_VERSION_ID >= 50007
+-if (mysql_get_client_version() >= 50503 && 
mysql_get_server_version(d->mysql) >= 50503) {
++if (true) {
+ // force the communication to be utf8mb4 (only utf8mb4 supports 
4-byte characters)
+ mysql_set_character_set(d->mysql, "utf8mb4");
+ #if QT_CONFIG(textcodec)
+@@ -1371,8 +1371,7 @@ bool QMYSQLDriver::open(const QString& db,
+ }
+ #endif  // MYSQL_VERSION_ID >= 50007
+ 
+-d->preparedQuerysEnabled = mysql_get_client_version() >= 40108
+-&& mysql_get_server_version(d->mysql) >= 40100;
++d->preparedQuerysEnabled = true;
+ 
+ #if QT_CONFIG(thread)
+ mysql_thread_init();



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

2021-07-08 Thread Christian Rebischke via arch-commits
Date: Thursday, July 8, 2021 @ 22:33:26
  Author: shibumi
Revision: 975871

archrelease: copy trunk to community-any

Added:
  kubectx/repos/community-any/PKGBUILD
(from rev 975870, kubectx/trunk/PKGBUILD)
Deleted:
  kubectx/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 22:31:37 UTC (rev 975870)
+++ PKGBUILD2021-07-08 22:33:26 UTC (rev 975871)
@@ -1,32 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Levente Polyak 
-# Contributor: Ian Beringer 
-
-pkgname=kubectx
-pkgver=0.9.3
-pkgrel=1
-pkgdesc='Utility to manage and switch between kubectl contexts and Kubernetes 
namespaces'
-url='https://github.com/ahmetb/kubectx'
-arch=('any')
-license=('Apache')
-depends=('bash' 'kubectl')
-provides=('kubectx' 'kubens')
-source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha512sums=('820b86241fa37586222dadebe72ec156069f9d0464d1ff78aef600730ebaf4201079682e661a1208e2ab5042fcff12334b94fb1d42f81b4a136f7c23ab2b6c80')
-b2sums=('99a8d42704abae31da4339ae010b93d9e0a03c31c2022390972fbea8ba4b7ae13d9efeb0ddfd181201734205f5c44f9bc37e285f424a4e3bf638d6a2e0833446')
-
-package() {
-  cd "${pkgname}-${pkgver}"
-
-  install -Dm 755 -p kubectx kubens -t "${pkgdir}/usr/bin"
-
-  # completion
-  install -Dm 644 -p completion/kubectx.bash 
"${pkgdir}/usr/share/bash-completion/completions/kubectx"
-  install -Dm 644 -p completion/kubens.bash 
"${pkgdir}/usr/share/bash-completion/completions/kubens"
-  install -Dm 644 -p completion/kubectx.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_kubectx"
-  install -Dm 644 -p completion/kubens.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_kubens"
-  install -Dm 644 -p completion/kubectx.fish 
"${pkgdir}/usr/share/fish/vendor_completions.d/kubectx.fish"
-  install -Dm 644 -p completion/kubens.fish 
"${pkgdir}/usr/share/fish/vendor_completions.d/kubens.fish"
-}
-
-# vim: ts=2 sw=2 et:

Copied: kubectx/repos/community-any/PKGBUILD (from rev 975870, 
kubectx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 22:33:26 UTC (rev 975871)
@@ -0,0 +1,32 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Levente Polyak 
+# Contributor: Ian Beringer 
+
+pkgname=kubectx
+pkgver=0.9.4
+pkgrel=1
+pkgdesc='Utility to manage and switch between kubectl contexts and Kubernetes 
namespaces'
+url='https://github.com/ahmetb/kubectx'
+arch=('any')
+license=('Apache')
+depends=('bash' 'kubectl')
+provides=('kubectx' 'kubens')
+source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha512sums=('edb5a05d5b32e486a227e8a4c98864a8dd1e0f3c325fd63a9c3f10ba3ca7a57420d3b1dda9d7674cdbf18fea9cfafbfabdc19c4e15ab1a2a18af967d8fd50997')
+b2sums=('127eb69c46f2d331c4854b7d935d0fb10c9bc08219d021f5a4b6710b0408eee586d584da47acb8eb415a3472655bc8c8e2e0748eba2a449d8c8dc458c98d32bf')
+
+package() {
+  cd "${pkgname}-${pkgver}"
+
+  install -Dm 755 -p kubectx kubens -t "${pkgdir}/usr/bin"
+
+  # completion
+  install -Dm 644 -p completion/kubectx.bash 
"${pkgdir}/usr/share/bash-completion/completions/kubectx"
+  install -Dm 644 -p completion/kubens.bash 
"${pkgdir}/usr/share/bash-completion/completions/kubens"
+  install -Dm 644 -p completion/kubectx.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_kubectx"
+  install -Dm 644 -p completion/kubens.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_kubens"
+  install -Dm 644 -p completion/kubectx.fish 
"${pkgdir}/usr/share/fish/vendor_completions.d/kubectx.fish"
+  install -Dm 644 -p completion/kubens.fish 
"${pkgdir}/usr/share/fish/vendor_completions.d/kubens.fish"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-07-08 Thread Christian Rebischke via arch-commits
Date: Thursday, July 8, 2021 @ 22:31:37
  Author: shibumi
Revision: 975870

upgpkg: kubectx 0.9.4-1

Modified:
  kubectx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 22:03:13 UTC (rev 975869)
+++ PKGBUILD2021-07-08 22:31:37 UTC (rev 975870)
@@ -3,7 +3,7 @@
 # Contributor: Ian Beringer 
 
 pkgname=kubectx
-pkgver=0.9.3
+pkgver=0.9.4
 pkgrel=1
 pkgdesc='Utility to manage and switch between kubectl contexts and Kubernetes 
namespaces'
 url='https://github.com/ahmetb/kubectx'
@@ -12,8 +12,8 @@
 depends=('bash' 'kubectl')
 provides=('kubectx' 'kubens')
 source=("${url}/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha512sums=('820b86241fa37586222dadebe72ec156069f9d0464d1ff78aef600730ebaf4201079682e661a1208e2ab5042fcff12334b94fb1d42f81b4a136f7c23ab2b6c80')
-b2sums=('99a8d42704abae31da4339ae010b93d9e0a03c31c2022390972fbea8ba4b7ae13d9efeb0ddfd181201734205f5c44f9bc37e285f424a4e3bf638d6a2e0833446')
+sha512sums=('edb5a05d5b32e486a227e8a4c98864a8dd1e0f3c325fd63a9c3f10ba3ca7a57420d3b1dda9d7674cdbf18fea9cfafbfabdc19c4e15ab1a2a18af967d8fd50997')
+b2sums=('127eb69c46f2d331c4854b7d935d0fb10c9bc08219d021f5a4b6710b0408eee586d584da47acb8eb415a3472655bc8c8e2e0748eba2a449d8c8dc458c98d32bf')
 
 package() {
   cd "${pkgname}-${pkgver}"



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

2021-07-08 Thread Christian Rebischke via arch-commits
Date: Thursday, July 8, 2021 @ 22:03:13
  Author: shibumi
Revision: 975869

archrelease: copy trunk to community-x86_64

Added:
  tanka/repos/community-x86_64/PKGBUILD
(from rev 975868, tanka/trunk/PKGBUILD)
Deleted:
  tanka/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 22:03:07 UTC (rev 975868)
+++ PKGBUILD2021-07-08 22:03:13 UTC (rev 975869)
@@ -1,41 +0,0 @@
-# Maintainer: Christian Rebischke 
-
-pkgname=tanka
-pkgver=0.17.0
-pkgrel=1
-pkgdesc="Flexible, reusable and concise configuration for Kubernetes"
-arch=('x86_64')
-url="https://github.com/grafana/tanka;
-license=('Apache')
-makedepends=('go')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/grafana/tanka/archive/v${pkgver}.tar.gz;)
-sha512sums=('933a0ae2b55fb52ddb9d6d5f966a656dc82f3d63f9ca764d460d526701c7d95b56dcfe0f68ca764bf368a154deef1afe13abbc08d3db4c677c9b54f035e3152b')
-
-prepare() {
-  export GOPATH="${srcdir}"
-  mkdir -p src/github.com/grafana "${GOPATH}/bin"
-  mv "${pkgname}-${pkgver}" "src/github.com/grafana/${pkgname}"
-  export PACKAGE_ROOT="${GOPATH}/src/github.com/grafana/${pkgname}"
-}
-
-build() {
-  cd "${PACKAGE_ROOT}/cmd/tk/"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
-  go build -ldflags "-s -w -linkmode=external -X 
github.com/grafana/tanka/pkg/tanka.CURRENT_VERSION=${pkgver}" -v .
-  chmod +x ./tk
-}
-
-check() {
-  cd "${PACKAGE_ROOT}"
-  go test -v ./...
-}
-
-package() {
-  cd "${PACKAGE_ROOT}/cmd/tk/"
-  install -Dsm755 ./tk "${pkgdir}/usr/bin/tk"
-}

Copied: tanka/repos/community-x86_64/PKGBUILD (from rev 975868, 
tanka/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 22:03:13 UTC (rev 975869)
@@ -0,0 +1,41 @@
+# Maintainer: Christian Rebischke 
+
+pkgname=tanka
+pkgver=0.17.1
+pkgrel=1
+pkgdesc="Flexible, reusable and concise configuration for Kubernetes"
+arch=('x86_64')
+url="https://github.com/grafana/tanka;
+license=('Apache')
+makedepends=('go')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/grafana/tanka/archive/v${pkgver}.tar.gz;)
+sha512sums=('b00c36e1d695c413e81976a5a2e95d1af5a2350b4110819a32c1efffe9cd3b973ed233562ed34a80dfb4f1c3034a1835774b62819b39fa469eeb9b01d808e56e')
+
+prepare() {
+  export GOPATH="${srcdir}"
+  mkdir -p src/github.com/grafana "${GOPATH}/bin"
+  mv "${pkgname}-${pkgver}" "src/github.com/grafana/${pkgname}"
+  export PACKAGE_ROOT="${GOPATH}/src/github.com/grafana/${pkgname}"
+}
+
+build() {
+  cd "${PACKAGE_ROOT}/cmd/tk/"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw"
+  go build -ldflags "-s -w -linkmode=external -X 
github.com/grafana/tanka/pkg/tanka.CURRENT_VERSION=${pkgver}" -v .
+  chmod +x ./tk
+}
+
+check() {
+  cd "${PACKAGE_ROOT}"
+  go test -v ./...
+}
+
+package() {
+  cd "${PACKAGE_ROOT}/cmd/tk/"
+  install -Dsm755 ./tk "${pkgdir}/usr/bin/tk"
+}



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

2021-07-08 Thread Christian Rebischke via arch-commits
Date: Thursday, July 8, 2021 @ 22:03:07
  Author: shibumi
Revision: 975868

upgpkg: tanka 0.17.1-1

Modified:
  tanka/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 21:49:22 UTC (rev 975867)
+++ PKGBUILD2021-07-08 22:03:07 UTC (rev 975868)
@@ -1,7 +1,7 @@
 # Maintainer: Christian Rebischke 
 
 pkgname=tanka
-pkgver=0.17.0
+pkgver=0.17.1
 pkgrel=1
 pkgdesc="Flexible, reusable and concise configuration for Kubernetes"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 makedepends=('go')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/grafana/tanka/archive/v${pkgver}.tar.gz;)
-sha512sums=('933a0ae2b55fb52ddb9d6d5f966a656dc82f3d63f9ca764d460d526701c7d95b56dcfe0f68ca764bf368a154deef1afe13abbc08d3db4c677c9b54f035e3152b')
+sha512sums=('b00c36e1d695c413e81976a5a2e95d1af5a2350b4110819a32c1efffe9cd3b973ed233562ed34a80dfb4f1c3034a1835774b62819b39fa469eeb9b01d808e56e')
 
 prepare() {
   export GOPATH="${srcdir}"



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

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 21:49:20
  Author: arojas
Revision: 975866

archrelease: copy trunk to community-x86_64

Added:
  icewm/repos/community-x86_64/PKGBUILD
(from rev 975865, icewm/trunk/PKGBUILD)
Deleted:
  icewm/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 21:49:09 UTC (rev 975865)
+++ PKGBUILD2021-07-08 21:49:20 UTC (rev 975866)
@@ -1,26 +0,0 @@
-# Maintainer:
-# Contributor: Alexander F. Rødseth 
-# Contributor: Eric Bélanger 
-
-pkgname=icewm
-pkgver=2.5.0
-pkgrel=2
-pkgdesc='Window Manager designed for speed, usability, and consistency'
-arch=(x86_64)
-url='https://ice-wm.org/'
-license=(LGPL)
-depends=(alsa-lib imlib2 librsvg libsndfile libxcomposite libxdamage 
libxinerama libxpm libxrandr)
-makedepends=(asciidoctor xorg-mkfontdir)
-optdepends=('perl: for icewm-menu-xrandr')
-source=("https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.lz;)
-sha256sums=('66e64c80d05cca084d7a3eb50c7d980b2f404eae42dd42efa2614a97a99ee056')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
-}

Copied: icewm/repos/community-x86_64/PKGBUILD (from rev 975865, 
icewm/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 21:49:20 UTC (rev 975866)
@@ -0,0 +1,26 @@
+# Maintainer:
+# Contributor: Alexander F. Rødseth 
+# Contributor: Eric Bélanger 
+
+pkgname=icewm
+pkgver=2.6.0
+pkgrel=1
+pkgdesc='Window Manager designed for speed, usability, and consistency'
+arch=(x86_64)
+url='https://ice-wm.org/'
+license=(LGPL)
+depends=(alsa-lib imlib2 librsvg libsndfile libxcomposite libxdamage 
libxinerama libxpm libxrandr)
+makedepends=(asciidoctor xorg-mkfontdir)
+optdepends=('perl: for icewm-menu-xrandr')
+source=("https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.lz;)
+sha256sums=('33cc69ba1fb762d85cc2755a930d6cf1a7c23e33f736ef2ec01c59d612f9b2eb')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+}



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

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 21:49:09
  Author: arojas
Revision: 975865

Update to 2.6.0

Modified:
  icewm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 21:47:17 UTC (rev 975864)
+++ PKGBUILD2021-07-08 21:49:09 UTC (rev 975865)
@@ -3,8 +3,8 @@
 # Contributor: Eric Bélanger 
 
 pkgname=icewm
-pkgver=2.5.0
-pkgrel=2
+pkgver=2.6.0
+pkgrel=1
 pkgdesc='Window Manager designed for speed, usability, and consistency'
 arch=(x86_64)
 url='https://ice-wm.org/'
@@ -13,7 +13,7 @@
 makedepends=(asciidoctor xorg-mkfontdir)
 optdepends=('perl: for icewm-menu-xrandr')
 
source=("https://github.com/ice-wm/icewm/releases/download/$pkgver/$pkgname-$pkgver.tar.lz;)
-sha256sums=('66e64c80d05cca084d7a3eb50c7d980b2f404eae42dd42efa2614a97a99ee056')
+sha256sums=('33cc69ba1fb762d85cc2755a930d6cf1a7c23e33f736ef2ec01c59d612f9b2eb')
 
 build() {
   cd $pkgname-$pkgver



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

2021-07-08 Thread George Rawlinson via arch-commits
Date: Thursday, July 8, 2021 @ 21:47:17
  Author: grawlinson
Revision: 975864

archrelease: copy trunk to community-x86_64

Added:
  mdk4/repos/community-x86_64/
  mdk4/repos/community-x86_64/PKGBUILD
(from rev 975863, mdk4/trunk/PKGBUILD)

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

Copied: mdk4/repos/community-x86_64/PKGBUILD (from rev 975863, 
mdk4/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-07-08 21:47:17 UTC (rev 975864)
@@ -0,0 +1,31 @@
+# Maintainer: George Rawlinson 
+# Contributor: Luis Aranguren 
+
+pkgname=mdk4
+pkgver=4.2
+pkgrel=1
+pkgdesc="A tool to exploit common IEEE 802.11 protocol weaknesses"
+url="https://github.com/aircrack-ng/mdk4;
+arch=('x86_64')
+license=('GPL')
+depends=('libpcap')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+b2sums=('a31bd39a7e92cb64872d474a17cd32ab7e90109bef119f7343feb91b5e49cbc42b2f80766b539f6e60adb158c3028f2d85738e7f4583edbe8f05ff723414d910')
+
+build() {
+  cd "$pkgname-$pkgver"
+  make
+}
+package() {
+  cd "$pkgname-$pkgver"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" src/mdk4
+
+  # man page
+  install -vDm644 man/mdk4.2 "$pkgdir/usr/share/man/man8/mdk4.8"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+  cp -vr useful_files "$pkgdir/usr/share/doc/$pkgname"
+}



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

2021-07-08 Thread George Rawlinson via arch-commits
Date: Thursday, July 8, 2021 @ 21:46:26
  Author: grawlinson
Revision: 975863

updpkg: mdk4 4.2-1

Replace mdk3 with mdk4.

Added:
  mdk4/
  mdk4/repos/
  mdk4/trunk/
  mdk4/trunk/PKGBUILD

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

Added: mdk4/trunk/PKGBUILD
===
--- mdk4/trunk/PKGBUILD (rev 0)
+++ mdk4/trunk/PKGBUILD 2021-07-08 21:46:26 UTC (rev 975863)
@@ -0,0 +1,31 @@
+# Maintainer: George Rawlinson 
+# Contributor: Luis Aranguren 
+
+pkgname=mdk4
+pkgver=4.2
+pkgrel=1
+pkgdesc="A tool to exploit common IEEE 802.11 protocol weaknesses"
+url="https://github.com/aircrack-ng/mdk4;
+arch=('x86_64')
+license=('GPL')
+depends=('libpcap')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+b2sums=('a31bd39a7e92cb64872d474a17cd32ab7e90109bef119f7343feb91b5e49cbc42b2f80766b539f6e60adb158c3028f2d85738e7f4583edbe8f05ff723414d910')
+
+build() {
+  cd "$pkgname-$pkgver"
+  make
+}
+package() {
+  cd "$pkgname-$pkgver"
+
+  # binary
+  install -vDm755 -t "$pkgdir/usr/bin" src/mdk4
+
+  # man page
+  install -vDm644 man/mdk4.2 "$pkgdir/usr/share/man/man8/mdk4.8"
+
+  # documentation
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
+  cp -vr useful_files "$pkgdir/usr/share/doc/$pkgname"
+}



[arch-commits] Commit in zsnes/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2021-07-08 Thread Alexander Rødseth via arch-commits
Date: Thursday, July 8, 2021 @ 21:36:56
  Author: arodseth
Revision: 975862

archrelease: copy trunk to multilib-x86_64

Added:
  zsnes/repos/multilib-x86_64/PKGBUILD
(from rev 975861, zsnes/trunk/PKGBUILD)
Deleted:
  zsnes/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 21:36:51 UTC (rev 975861)
+++ PKGBUILD2021-07-08 21:36:56 UTC (rev 975862)
@@ -1,34 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Levente Polyak 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Frank Tetzel 
-# Contributor: Hugo Doria 
-# Contributor: Aurelien Foret 
-
-pkgname=zsnes
-pkgver=2.0.1
-pkgrel=1
-pkgdesc='Super Nintendo emulator'
-url='https://github.com/xyproto/zsnes'
-arch=(x86_64)
-license=(GPL)
-makedepends=(gendesk git mesa nasm)
-depends=(lib32-libpng lib32-opengl-driver lib32-sdl)
-optdepends=('lib32-alsa-lib: sound support for ALSA'
-'lib32-libpulse: sound support for Pulse Audio')
-source=("git+$url#commit=96af5fa7e2b4b60a7e861936ca340a724790bf6f") # tag: 
2.0.1
-b2sums=(SKIP)
-
-prepare() {
-  gendesk -f --pkgname $pkgname --pkgdesc "$pkgdesc"
-}
-
-build() {
-  make -C $pkgname
-}
-
-package() {
-  install -Dm644 zsnes.desktop "$pkgdir/usr/share/applications/zsnes.desktop"
-  install -Dm644 zsnes.png "$pkgdir/usr/share/pixmaps/zsnes.png"
-  DESTDIR="$pkgdir" make -C $pkgname install
-}

Copied: zsnes/repos/multilib-x86_64/PKGBUILD (from rev 975861, 
zsnes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 21:36:56 UTC (rev 975862)
@@ -0,0 +1,34 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Levente Polyak 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Frank Tetzel 
+# Contributor: Hugo Doria 
+# Contributor: Aurelien Foret 
+
+pkgname=zsnes
+pkgver=2.0.2
+pkgrel=1
+pkgdesc='Super Nintendo emulator'
+url='https://github.com/xyproto/zsnes'
+arch=(x86_64)
+license=(GPL2)
+makedepends=(gendesk git mesa nasm)
+depends=(lib32-libpng lib32-opengl-driver lib32-sdl)
+optdepends=('lib32-alsa-lib: sound support for ALSA'
+'lib32-libpulse: sound support for Pulse Audio')
+source=("git+$url#commit=944edea30050116115716035ca6f7df6b0efc16d") # tag: 
2.0.2
+b2sums=(SKIP)
+
+prepare() {
+  gendesk -f --pkgname $pkgname --pkgdesc "$pkgdesc"
+}
+
+build() {
+  make -C $pkgname
+}
+
+package() {
+  install -Dm644 zsnes.desktop "$pkgdir/usr/share/applications/zsnes.desktop"
+  install -Dm644 zsnes.png "$pkgdir/usr/share/pixmaps/zsnes.png"
+  DESTDIR="$pkgdir" make -C $pkgname install
+}



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

2021-07-08 Thread Alexander Rødseth via arch-commits
Date: Thursday, July 8, 2021 @ 21:36:51
  Author: arodseth
Revision: 975861

upgpkg: zsnes 2.0.2-1

Modified:
  zsnes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 21:24:44 UTC (rev 975860)
+++ PKGBUILD2021-07-08 21:36:51 UTC (rev 975861)
@@ -6,17 +6,17 @@
 # Contributor: Aurelien Foret 
 
 pkgname=zsnes
-pkgver=2.0.1
+pkgver=2.0.2
 pkgrel=1
 pkgdesc='Super Nintendo emulator'
 url='https://github.com/xyproto/zsnes'
 arch=(x86_64)
-license=(GPL)
+license=(GPL2)
 makedepends=(gendesk git mesa nasm)
 depends=(lib32-libpng lib32-opengl-driver lib32-sdl)
 optdepends=('lib32-alsa-lib: sound support for ALSA'
 'lib32-libpulse: sound support for Pulse Audio')
-source=("git+$url#commit=96af5fa7e2b4b60a7e861936ca340a724790bf6f") # tag: 
2.0.1
+source=("git+$url#commit=944edea30050116115716035ca6f7df6b0efc16d") # tag: 
2.0.2
 b2sums=(SKIP)
 
 prepare() {



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

2021-07-08 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, July 8, 2021 @ 21:24:44
  Author: orhun
Revision: 975860

archrelease: copy trunk to community-x86_64

Added:
  lfs/repos/community-x86_64/PKGBUILD
(from rev 975859, lfs/trunk/PKGBUILD)
Deleted:
  lfs/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 21:24:33 UTC (rev 975859)
+++ PKGBUILD2021-07-08 21:24:44 UTC (rev 975860)
@@ -1,27 +0,0 @@
-# Maintainer: Orhun Parmaksız 
-
-pkgname=lfs
-pkgver=0.7.5
-pkgrel=1
-pkgdesc="Get information on your mounted disks"
-arch=('x86_64')
-url="https://github.com/Canop/lfs;
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('rust')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('26d40030ebf9b01d746ab1c667e4d180ea033f66a174e6be06e56ba1b186fc5f7a066fe027498318164711013870042c8da412cce6af2099872652bba9e55ddf')
-
-build() {
-  cd "$pkgname-$pkgver"
-  cargo build --release --locked
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
-  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
-  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
-}
-
-# vim: ts=2 sw=2 et:

Copied: lfs/repos/community-x86_64/PKGBUILD (from rev 975859, 
lfs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 21:24:44 UTC (rev 975860)
@@ -0,0 +1,27 @@
+# Maintainer: Orhun Parmaksız 
+
+pkgname=lfs
+pkgver=0.7.6
+pkgrel=1
+pkgdesc="Get information on your mounted disks"
+arch=('x86_64')
+url="https://github.com/Canop/lfs;
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('rust')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
+sha512sums=('eb489e7b6040ea6b49a311c97b6bfa401be9551648a0a936036534fb1e46fa3a8ca36c98669fe8dc78dc29d7d5a0c89fc210f6b64b850cf40fce132993215b9b')
+
+build() {
+  cd "$pkgname-$pkgver"
+  cargo build --release --locked
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
+  install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -Dm 644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-07-08 Thread Orhun Parmaksiz via arch-commits
Date: Thursday, July 8, 2021 @ 21:24:33
  Author: orhun
Revision: 975859

upgpkg: lfs 0.7.6-1: upstream release

Modified:
  lfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 20:37:34 UTC (rev 975858)
+++ PKGBUILD2021-07-08 21:24:33 UTC (rev 975859)
@@ -1,7 +1,7 @@
 # Maintainer: Orhun Parmaksız 
 
 pkgname=lfs
-pkgver=0.7.5
+pkgver=0.7.6
 pkgrel=1
 pkgdesc="Get information on your mounted disks"
 arch=('x86_64')
@@ -10,7 +10,7 @@
 depends=('gcc-libs')
 makedepends=('rust')
 source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-sha512sums=('26d40030ebf9b01d746ab1c667e4d180ea033f66a174e6be06e56ba1b186fc5f7a066fe027498318164711013870042c8da412cce6af2099872652bba9e55ddf')
+sha512sums=('eb489e7b6040ea6b49a311c97b6bfa401be9551648a0a936036534fb1e46fa3a8ca36c98669fe8dc78dc29d7d5a0c89fc210f6b64b850cf40fce132993215b9b')
 
 build() {
   cd "$pkgname-$pkgver"



[arch-commits] Commit in zsnes/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2021-07-08 Thread Alexander Rødseth via arch-commits
Date: Thursday, July 8, 2021 @ 20:37:34
  Author: arodseth
Revision: 975858

archrelease: copy trunk to multilib-x86_64

Added:
  zsnes/repos/multilib-x86_64/PKGBUILD
(from rev 975857, zsnes/trunk/PKGBUILD)
Deleted:
  zsnes/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 20:37:29 UTC (rev 975857)
+++ PKGBUILD2021-07-08 20:37:34 UTC (rev 975858)
@@ -1,35 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Levente Polyak 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Frank Tetzel 
-# Contributor: Hugo Doria 
-# Contributor: Aurelien Foret 
-
-pkgname=zsnes
-pkgver=2.0.0
-pkgrel=2
-pkgdesc='Super Nintendo emulator'
-url='https://github.com/xyproto/zsnes'
-arch=(x86_64)
-license=(GPL)
-makedepends=(gendesk git mesa nasm)
-depends=(lib32-libpng lib32-opengl-driver lib32-sdl)
-optdepends=('lib32-alsa-lib: sound support for ALSA'
-'lib32-libpulse: sound support for Pulse Audio')
-source=("git+$url#commit=af4fcf97ca0892bb6b47d6e03a17ada3539ea55a") # tag: 
2.0.0
-b2sums=(SKIP)
-
-prepare() {
-  gendesk -f --pkgname $pkgname --pkgdesc "$pkgdesc"
-}
-
-build() {
-  make -C $pkgname
-}
-
-package() {
-  install -Dm644 zsnes.desktop "$pkgdir/usr/share/applications/zsnes.desktop"
-  install -Dm644 zsnes.png "$pkgdir/usr/share/pixmaps/zsnes.png"
-  install -Dm755 zsnes/zsnes "$pkgdir/usr/bin/zsnes"
-  install -Dm644 zsnes/linux/zsnes.1 "$pkgdir/usr/share/man/man1/zsnes.1"
-}

Copied: zsnes/repos/multilib-x86_64/PKGBUILD (from rev 975857, 
zsnes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 20:37:34 UTC (rev 975858)
@@ -0,0 +1,34 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Levente Polyak 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Frank Tetzel 
+# Contributor: Hugo Doria 
+# Contributor: Aurelien Foret 
+
+pkgname=zsnes
+pkgver=2.0.1
+pkgrel=1
+pkgdesc='Super Nintendo emulator'
+url='https://github.com/xyproto/zsnes'
+arch=(x86_64)
+license=(GPL)
+makedepends=(gendesk git mesa nasm)
+depends=(lib32-libpng lib32-opengl-driver lib32-sdl)
+optdepends=('lib32-alsa-lib: sound support for ALSA'
+'lib32-libpulse: sound support for Pulse Audio')
+source=("git+$url#commit=96af5fa7e2b4b60a7e861936ca340a724790bf6f") # tag: 
2.0.1
+b2sums=(SKIP)
+
+prepare() {
+  gendesk -f --pkgname $pkgname --pkgdesc "$pkgdesc"
+}
+
+build() {
+  make -C $pkgname
+}
+
+package() {
+  install -Dm644 zsnes.desktop "$pkgdir/usr/share/applications/zsnes.desktop"
+  install -Dm644 zsnes.png "$pkgdir/usr/share/pixmaps/zsnes.png"
+  DESTDIR="$pkgdir" make -C $pkgname install
+}



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

2021-07-08 Thread Alexander Rødseth via arch-commits
Date: Thursday, July 8, 2021 @ 20:37:29
  Author: arodseth
Revision: 975857

Disable old X11-related screensaver-disabling code that sometimes segfaulted

Modified:
  zsnes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 20:00:05 UTC (rev 975856)
+++ PKGBUILD2021-07-08 20:37:29 UTC (rev 975857)
@@ -6,8 +6,8 @@
 # Contributor: Aurelien Foret 
 
 pkgname=zsnes
-pkgver=2.0.0
-pkgrel=2
+pkgver=2.0.1
+pkgrel=1
 pkgdesc='Super Nintendo emulator'
 url='https://github.com/xyproto/zsnes'
 arch=(x86_64)
@@ -16,7 +16,7 @@
 depends=(lib32-libpng lib32-opengl-driver lib32-sdl)
 optdepends=('lib32-alsa-lib: sound support for ALSA'
 'lib32-libpulse: sound support for Pulse Audio')
-source=("git+$url#commit=af4fcf97ca0892bb6b47d6e03a17ada3539ea55a") # tag: 
2.0.0
+source=("git+$url#commit=96af5fa7e2b4b60a7e861936ca340a724790bf6f") # tag: 
2.0.1
 b2sums=(SKIP)
 
 prepare() {
@@ -30,6 +30,5 @@
 package() {
   install -Dm644 zsnes.desktop "$pkgdir/usr/share/applications/zsnes.desktop"
   install -Dm644 zsnes.png "$pkgdir/usr/share/pixmaps/zsnes.png"
-  install -Dm755 zsnes/zsnes "$pkgdir/usr/bin/zsnes"
-  install -Dm644 zsnes/linux/zsnes.1 "$pkgdir/usr/share/man/man1/zsnes.1"
+  DESTDIR="$pkgdir" make -C $pkgname install
 }



[arch-commits] Commit in xorg-server/repos (8 files)

2021-07-08 Thread Andreas Radke via arch-commits
Date: Thursday, July 8, 2021 @ 20:03:15
  Author: andyrtr
Revision: 419312

archrelease: copy trunk to testing-x86_64

Added:
  xorg-server/repos/testing-x86_64/
  xorg-server/repos/testing-x86_64/0001-v2-FS-58644.patch
(from rev 419311, xorg-server/trunk/0001-v2-FS-58644.patch)
  xorg-server/repos/testing-x86_64/0002-fix-libshadow-2.patch
(from rev 419311, xorg-server/trunk/0002-fix-libshadow-2.patch)
  xorg-server/repos/testing-x86_64/PKGBUILD
(from rev 419311, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/testing-x86_64/xorg-server.install
(from rev 419311, xorg-server/trunk/xorg-server.install)
  xorg-server/repos/testing-x86_64/xserver-autobind-hotplug.patch
(from rev 419311, xorg-server/trunk/xserver-autobind-hotplug.patch)
  xorg-server/repos/testing-x86_64/xvfb-run
(from rev 419311, xorg-server/trunk/xvfb-run)
  xorg-server/repos/testing-x86_64/xvfb-run.1
(from rev 419311, xorg-server/trunk/xvfb-run.1)

+
 0001-v2-FS-58644.patch |   57 +++
 0002-fix-libshadow-2.patch |   30 +++
 PKGBUILD   |  191 +
 xorg-server.install|   18 ++
 xserver-autobind-hotplug.patch |  293 +++
 xvfb-run   |  200 ++
 xvfb-run.1 |  282 +
 7 files changed, 1071 insertions(+)

Copied: xorg-server/repos/testing-x86_64/0001-v2-FS-58644.patch (from rev 
419311, xorg-server/trunk/0001-v2-FS-58644.patch)
===
--- testing-x86_64/0001-v2-FS-58644.patch   (rev 0)
+++ testing-x86_64/0001-v2-FS-58644.patch   2021-07-08 20:03:15 UTC (rev 
419312)
@@ -0,0 +1,57 @@
+From 17584285d296acaa80f131ca0e8b75eff675962b Mon Sep 17 00:00:00 2001
+From: fafryd 
+Date: Sun, 20 May 2018 14:30:43 +0200
+Subject: [PATCH] v2 FS#58644
+
+---
+ hw/xfree86/common/meson.build | 13 +
+ hw/xfree86/meson.build| 12 +++-
+ 2 files changed, 20 insertions(+), 5 deletions(-)
+
+diff --git a/hw/xfree86/common/meson.build b/hw/xfree86/common/meson.build
+index 514999ff6..0eff6e488 100644
+--- a/hw/xfree86/common/meson.build
 b/hw/xfree86/common/meson.build
+@@ -1,3 +1,16 @@
++if get_option('suid_wrapper')
++x_sh = configure_file(
++input: '../Xorg.sh.in',
++output: 'Xorg',
++configuration: conf_data,
++)
++install_data(
++   x_sh,
++   install_mode: 'rwxr-xr-x',
++   install_dir: join_paths(get_option('prefix'), get_option('bindir')),
++)
++endif
++
+ srcs_xorg_common = [
+ 'xf86fbBus.c',
+ 'xf86noBus.c',
+diff --git a/hw/xfree86/meson.build b/hw/xfree86/meson.build
+index cacf56d4c..d1295d404 100644
+--- a/hw/xfree86/meson.build
 b/hw/xfree86/meson.build
+@@ -145,11 +145,13 @@ if get_option('suid_wrapper')
+ install_dir: get_option('libexecdir'),
+ # install_mode: ['r-sr-xr-x', 0, 0],
+ )
+-configure_file(
+-input: 'Xorg.sh.in',
+-output: 'Xorg',
+-configuration: conf_data,
+-install_dir: join_paths(get_option('prefix'), get_option('bindir')),
++ meson.add_install_script(
++'sh', '-c',
++'chmod u+s @0@@1@/@2@'.format(
++'${DESTDIR}',
++join_paths(get_option('prefix'), get_option('libexecdir')),
++'Xorg.wrap'
++)
+ )
+ endif
+ 
+-- 
+2.17.0
+

Copied: xorg-server/repos/testing-x86_64/0002-fix-libshadow-2.patch (from rev 
419311, xorg-server/trunk/0002-fix-libshadow-2.patch)
===
--- testing-x86_64/0002-fix-libshadow-2.patch   (rev 0)
+++ testing-x86_64/0002-fix-libshadow-2.patch   2021-07-08 20:03:15 UTC (rev 
419312)
@@ -0,0 +1,30 @@
+From a530b6e8923f2b9153a773c8618a1e2f41619288 Mon Sep 17 00:00:00 2001
+From: Adam Jackson 
+Date: Tue, 30 Apr 2019 18:01:27 -0400
+Subject: [PATCH] meson: Fix libshadow.so linkage
+
+Don't link against fb, it's the driver's responsibility to load that
+first. Underlinking like this is unpleasant but this matches what
+autotools does.
+
+Fixes: xorg/xserver#540
+---
+ hw/xfree86/dixmods/meson.build | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/hw/xfree86/dixmods/meson.build b/hw/xfree86/dixmods/meson.build
+index 835d23215..0562b630f 100644
+--- a/hw/xfree86/dixmods/meson.build
 b/hw/xfree86/dixmods/meson.build
+@@ -34,7 +34,7 @@ shared_module(
+ c_args: xorg_c_args,
+ dependencies: common_dep,
+ link_whole: libxserver_miext_shadow,
+-link_with: [fb, e],
++link_with: e,
+ 
+ install: true,
+ install_dir: module_dir,
+-- 
+2.22.0
+

Copied: xorg-server/repos/testing-x86_64/PKGBUILD (from rev 419311, 
xorg-server/trunk/PKGBUILD)
===
--- 

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

2021-07-08 Thread Andreas Radke via arch-commits
Date: Thursday, July 8, 2021 @ 20:02:59
  Author: andyrtr
Revision: 419311

upgpkg: xorg-server 1.20.12-1: upstream update 1.20.12

Modified:
  xorg-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 19:58:41 UTC (rev 419310)
+++ PKGBUILD2021-07-08 20:02:59 UTC (rev 419311)
@@ -4,7 +4,7 @@
 pkgbase=xorg-server
 pkgname=('xorg-server' 'xorg-server-xephyr' 'xorg-server-xvfb' 
'xorg-server-xnest'
  'xorg-server-common' 'xorg-server-devel')
-pkgver=1.20.11
+pkgver=1.20.12
 pkgrel=1
 arch=('x86_64')
 license=('custom')
@@ -17,7 +17,7 @@
  'xcb-util' 'xcb-util-image' 'xcb-util-renderutil' 'xcb-util-wm' 
'xcb-util-keysyms'
  'libxshmfence' 'libunwind' 'systemd' 'meson' 'git'
  'wayland-protocols' 'egl-wayland')
-source=(https://xorg.freedesktop.org/releases/individual/xserver/${pkgbase}-${pkgver}.tar.bz2{,.sig}
+source=(https://xorg.freedesktop.org/releases/individual/xserver/${pkgbase}-${pkgver}.tar.xz{,.sig}
 xserver-autobind-hotplug.patch
 0001-v2-FS-58644.patch
 0002-fix-libshadow-2.patch
@@ -27,13 +27,13 @@
   'C383B778255613DFDB409D91DB221A690011'
   'DD38563A8A8224537D1F90E45B8A2D50A0ECD0D3'
   '3BB639E56F861FA2E86505690FDD682D974CA72A')
-sha256sums=('914c796e3ffabe1af48071d40ccc85e92117c97a9082ed1df29e4d64e3c34c49'
+sha512sums=('98350c42fb1f10c965663c1c8d4b225689a6a63163d788d454aa71b28b9cc8fcf9709a932f882358a13ca0c277c0c15812d05919092b4c32828d4ed61cca0406'
 'SKIP'
-'cae1b7f296c18177de38f9b1215a4f916da2288b85f1fcb9e80373a42e2892b8'
-'6253fb5cf06cf650539be585d6ca13cfa00217b51ca9825476c8fd55c09341a4'
-'d07b2fe55828dad61517a80c77f6f183113916f5e1fce30ff43041550d58bd6e'
-'d709078f5658576931655c7a46ff90b3586a2643a9124075d00ff3a567937845'
-'2460adccd3362fefd4cdc5f1c70f332d7b578091fb9167bf88b5f91265bbd776')
+
'd84f4d63a502b7af76ea49944d1b21e2030dfd250ac1e82878935cf631973310ac9ba1f0dfedf10980ec6c7431d61b7daa4b7bbaae9ee477b2c19812c1661a22'
+
'74e1aa0c101e42f0f25349d305641873b3a79ab3b9bb2d4ed68ba8e392b4db2701fcbc35826531ee2667d3ee55673e4b4fecc2a9f088141af29ceb400f72f363'
+
'3d3be34ad9fa976daec53573d3a30a9f1953341ba5ee27099af0141f0ef7994fa5cf84dc08aae848380e6abfc10879f9a67f07601c7a437abf8aef13a3ec9fe1'
+
'4154dd55702b98083b26077bf70c60aa957b4795dbf831bcc4c78b3cb44efe214f0cf8e3c140729c829b5f24e7466a24615ab8dbcce0ac6ebee3229531091514'
+
'de5e2cb3c6825e6cf1f07ca0d52423e17f34d70ec7935e9dd24be5fb9883bf1e03b50ff584931bd3b41095c510ab2aa44d2573fd5feaebdcb59363b65607ff22')
 
 prepare() {
   cd "${pkgbase}-${pkgver}"



[arch-commits] Commit in gitlab/repos/community-x86_64 (26 files)

2021-07-08 Thread Anatol Pomozov via arch-commits
Date: Thursday, July 8, 2021 @ 20:00:05
  Author: anatolik
Revision: 975856

archrelease: copy trunk to community-x86_64

Added:
  gitlab/repos/community-x86_64/PKGBUILD
(from rev 975855, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-x86_64/configs.patch
(from rev 975855, gitlab/trunk/configs.patch)
  gitlab/repos/community-x86_64/environment
(from rev 975855, gitlab/trunk/environment)
  gitlab/repos/community-x86_64/fixes.patch
(from rev 975855, gitlab/trunk/fixes.patch)
  gitlab/repos/community-x86_64/gitlab-backup.service
(from rev 975855, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-x86_64/gitlab-backup.timer
(from rev 975855, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-x86_64/gitlab-mailroom.service
(from rev 975855, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-x86_64/gitlab-puma.service
(from rev 975855, gitlab/trunk/gitlab-puma.service)
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
(from rev 975855, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-x86_64/gitlab.install
(from rev 975855, gitlab/trunk/gitlab.install)
  gitlab/repos/community-x86_64/gitlab.logrotate
(from rev 975855, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-x86_64/gitlab.target
(from rev 975855, gitlab/trunk/gitlab.target)
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d
(from rev 975855, gitlab/trunk/gitlab.tmpfiles.d)
Deleted:
  gitlab/repos/community-x86_64/PKGBUILD
  gitlab/repos/community-x86_64/configs.patch
  gitlab/repos/community-x86_64/environment
  gitlab/repos/community-x86_64/fixes.patch
  gitlab/repos/community-x86_64/gitlab-backup.service
  gitlab/repos/community-x86_64/gitlab-backup.timer
  gitlab/repos/community-x86_64/gitlab-mailroom.service
  gitlab/repos/community-x86_64/gitlab-puma.service
  gitlab/repos/community-x86_64/gitlab-sidekiq.service
  gitlab/repos/community-x86_64/gitlab.install
  gitlab/repos/community-x86_64/gitlab.logrotate
  gitlab/repos/community-x86_64/gitlab.target
  gitlab/repos/community-x86_64/gitlab.tmpfiles.d

-+
 PKGBUILD|  370 ++---
 configs.patch   |  582 +++---
 environment |6 
 fixes.patch |   40 +--
 gitlab-backup.service   |   38 +--
 gitlab-backup.timer |   20 -
 gitlab-mailroom.service |   42 +--
 gitlab-puma.service |   68 ++---
 gitlab-sidekiq.service  |   60 ++--
 gitlab.install  |   68 ++---
 gitlab.logrotate|   12 
 gitlab.target   |   14 -
 gitlab.tmpfiles.d   |2 
 13 files changed, 661 insertions(+), 661 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 19:58:59 UTC (rev 975855)
+++ PKGBUILD2021-07-08 20:00:05 UTC (rev 975856)
@@ -1,185 +0,0 @@
-# Maintainer: Anatol Pomozov 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Pavol (Lopo) Hluchy 
-# Contributor: Jonas Heinrich 
-# Contributor: Massimiliano Torromeo 
-# Contributor: Tobias Hunger 
-# Contributor: Stefan Tatschner 
-# Contributor: Caleb Maclennan 
-
-pkgname=gitlab
-pkgver=14.0.3
-pkgrel=1
-pkgdesc="Project management and code hosting application"
-arch=('x86_64')
-url="https://gitlab.com/gitlab-org/gitlab-foss;
-license=('MIT')
-options=(!buildflags)
-depends=('ruby2.7' 'git' 'gitlab-workhorse' 'gitlab-gitaly' 'openssh' 'redis' 
'libxslt' 'icu' 're2' 'http-parser' 'nodejs' 'openssl')
-makedepends=('cmake' 'postgresql' 'yarn' 'go' 'nodejs')
-optdepends=('postgresql: database backend'
-'python-docutils: reStructuredText markup language support'
-'smtp-server: mail server in order to receive mail notifications')
-backup=("etc/webapps/gitlab/database.yml"
-"etc/webapps/gitlab/gitlab.yml"
-"etc/webapps/gitlab/resque.yml"
-"etc/webapps/gitlab/puma.rb"
-"etc/webapps/gitlab/smtp_settings.rb"
-"etc/logrotate.d/gitlab")
-source=(git+https://gitlab.com/gitlab-org/gitlab-foss.git#tag=v$pkgver
-configs.patch
-fixes.patch
-environment
-gitlab-puma.service
-gitlab-sidekiq.service
-gitlab-backup.service
-gitlab-mailroom.service
-gitlab-backup.timer
-gitlab.target
-gitlab.tmpfiles.d
-gitlab.logrotate)
-install='gitlab.install'
-sha512sums=('SKIP'
-
'5a9d150f1cdefbf27ce8242c620a0f17a6b1b09d8777da96e06139be425bf7150e4d24e899356b61f7c3b22f76f1ae911fc3a99eb65cc5f3c76c1cc88cfb2eb3'
-
'46c89b3345425c508610d93534b18047daf320eeaa025c32d7158025fb081f3a0e5a63461058fc835e7bcd593a95d34b25f98d272d98929e3bb85634e23adf48'
-
'5b1ca2958f03a5baf1c5576a1568072e8ed749e2d15745ecbcc4860d2dbd543f2f3ed077e8d87afac2670c9436b19fe498217b49916d56a4e31fb9811aeb9067'
-

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

2021-07-08 Thread Anatol Pomozov via arch-commits
Date: Thursday, July 8, 2021 @ 19:58:59
  Author: anatolik
Revision: 975855

upgpkg: gitlab 14.0.5-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 19:33:49 UTC (rev 975854)
+++ PKGBUILD2021-07-08 19:58:59 UTC (rev 975855)
@@ -8,7 +8,7 @@
 # Contributor: Caleb Maclennan 
 
 pkgname=gitlab
-pkgver=14.0.3
+pkgver=14.0.5
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')



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

2021-07-08 Thread Levente Polyak via arch-commits
Date: Thursday, July 8, 2021 @ 19:58:41
  Author: anthraxx
Revision: 419310

archrelease: copy trunk to extra-x86_64

Added:
  linux-hardened/repos/extra-x86_64/PKGBUILD
(from rev 419309, linux-hardened/trunk/PKGBUILD)
  linux-hardened/repos/extra-x86_64/config
(from rev 419309, linux-hardened/trunk/config)
Deleted:
  linux-hardened/repos/extra-x86_64/PKGBUILD
  linux-hardened/repos/extra-x86_64/config

--+
 PKGBUILD |  412 -
 config   |20530 ++---
 2 files changed, 10471 insertions(+), 10471 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 419309:419310 to see the changes.


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

2021-07-08 Thread Levente Polyak via arch-commits
Date: Thursday, July 8, 2021 @ 19:58:37
  Author: anthraxx
Revision: 419309

upgpkg: linux-hardened 5.12.15.hardened1-1

Modified:
  linux-hardened/trunk/PKGBUILD
  linux-hardened/trunk/config

--+
 PKGBUILD |8 
 config   |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 19:16:39 UTC (rev 419308)
+++ PKGBUILD2021-07-08 19:58:37 UTC (rev 419309)
@@ -4,7 +4,7 @@
 # Contributor: Thomas Baechler 
 
 pkgbase=linux-hardened
-pkgver=5.12.14.hardened1
+pkgver=5.12.15.hardened1
 pkgrel=1
 pkgdesc='Security-Hardened Linux'
 url='https://github.com/anthraxx/linux-hardened'
@@ -27,11 +27,11 @@
   '647F28654894E3BD457199BE38DBBDC86092693E'  # Greg Kroah-Hartman
   'E240B57E2C4630BA768E2F26FC1B547C8D8172C8'  # Levente Polyak
 )
-sha256sums=('90ca3b98088f5d9af097067e04b195ecf0d4fe167bcfaca8a97b142bccb27dac'
+sha256sums=('47fcea996c0c01e58ac5f852fc296d77a3496c550f3034152fee77e83ae38fda'
 'SKIP'
-'5b88d78aca0f73936bf9a4cfbf8406db923c8bc3a1296ec0c950ae220788bf30'
+'1de12e52ce751bbcee3deed3fc08b444332a850712b2591f8ba998e48ff901b5'
 'SKIP'
-'58fae5a3742c0dcf7ec2bee39873e8cc8abd0c246fab4cae3f7aa553074efe18')
+'1d480c6cb8c1c56df048d18e49a1c2a1568abf7189e03e3f301e54d85ab9ce6f')
 
 export KBUILD_BUILD_HOST=archlinux
 export KBUILD_BUILD_USER=$pkgbase

Modified: config
===
--- config  2021-07-08 19:16:39 UTC (rev 419308)
+++ config  2021-07-08 19:58:37 UTC (rev 419309)
@@ -1,6 +1,6 @@
 #
 # Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.12.14-hardened1 Kernel Configuration
+# Linux/x86 5.12.15-hardened1 Kernel Configuration
 #
 CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.1.0"
 CONFIG_CC_IS_GCC=y



[arch-commits] Commit in zsnes/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2021-07-08 Thread Alexander Rødseth via arch-commits
Date: Thursday, July 8, 2021 @ 19:33:49
  Author: arodseth
Revision: 975854

archrelease: copy trunk to multilib-x86_64

Added:
  zsnes/repos/multilib-x86_64/PKGBUILD
(from rev 975853, zsnes/trunk/PKGBUILD)
Deleted:
  zsnes/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 19:33:45 UTC (rev 975853)
+++ PKGBUILD2021-07-08 19:33:49 UTC (rev 975854)
@@ -1,35 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Levente Polyak 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Frank Tetzel 
-# Contributor: Hugo Doria 
-# Contributor: Aurelien Foret 
-
-pkgname=zsnes
-pkgver=2.0.0
-pkgrel=1
-pkgdesc='Super Nintendo emulator'
-url='https://github.com/xyproto/zsnes'
-arch=(x86_64)
-license=(GPL)
-makedepends=(gendesk git mesa nasm)
-depends=(lib32-libpng lib32-opengl-driver lib32-sdl)
-optdepends=('lib32-alsa-lib: sound support for ALSA'
-'lib32-libpulse: sound support for Pulse Audio')
-source=("git+$url#commit=af4fcf97ca0892bb6b47d6e03a17ada3539ea55a") # tag: 
2.0.0
-b2sums=(SKIP)
-
-prepare() {
-  gendesk -f --pkgname $pkgname --pkgdesc "$pkgdesc"
-}
-
-build() {
-  make -C $pkgname
-}
-
-package() {
-  install -Dm644 zsnes.desktop "$pkgdir/usr/share/applications/zsnes.desktop"
-  install -Dm644 zsnes.png "$pkgdir/usr/share/pixmaps/zsnes.png"
-  install -Dm755 zsnes/zsnes "$pkgdir/usr/bin/zsnes"
-  install -Dm644 zsnes/linux/zsnes.1 "$pkgdir/usr/share/man/man1/zsnes.1"
-}

Copied: zsnes/repos/multilib-x86_64/PKGBUILD (from rev 975853, 
zsnes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 19:33:49 UTC (rev 975854)
@@ -0,0 +1,35 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Levente Polyak 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Frank Tetzel 
+# Contributor: Hugo Doria 
+# Contributor: Aurelien Foret 
+
+pkgname=zsnes
+pkgver=2.0.0
+pkgrel=2
+pkgdesc='Super Nintendo emulator'
+url='https://github.com/xyproto/zsnes'
+arch=(x86_64)
+license=(GPL)
+makedepends=(gendesk git mesa nasm)
+depends=(lib32-libpng lib32-opengl-driver lib32-sdl)
+optdepends=('lib32-alsa-lib: sound support for ALSA'
+'lib32-libpulse: sound support for Pulse Audio')
+source=("git+$url#commit=af4fcf97ca0892bb6b47d6e03a17ada3539ea55a") # tag: 
2.0.0
+b2sums=(SKIP)
+
+prepare() {
+  gendesk -f --pkgname $pkgname --pkgdesc "$pkgdesc"
+}
+
+build() {
+  make -C $pkgname
+}
+
+package() {
+  install -Dm644 zsnes.desktop "$pkgdir/usr/share/applications/zsnes.desktop"
+  install -Dm644 zsnes.png "$pkgdir/usr/share/pixmaps/zsnes.png"
+  install -Dm755 zsnes/zsnes "$pkgdir/usr/bin/zsnes"
+  install -Dm644 zsnes/linux/zsnes.1 "$pkgdir/usr/share/man/man1/zsnes.1"
+}



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

2021-07-08 Thread Alexander Rødseth via arch-commits
Date: Thursday, July 8, 2021 @ 19:33:45
  Author: arodseth
Revision: 975853

upgpkg: zsnes 2.0.0-2

Modified:
  zsnes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 19:32:43 UTC (rev 975852)
+++ PKGBUILD2021-07-08 19:33:45 UTC (rev 975853)
@@ -7,7 +7,7 @@
 
 pkgname=zsnes
 pkgver=2.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Super Nintendo emulator'
 url='https://github.com/xyproto/zsnes'
 arch=(x86_64)



[arch-commits] Commit in zsnes/repos/multilib-x86_64 (6 files)

2021-07-08 Thread Alexander Rødseth via arch-commits
Date: Thursday, July 8, 2021 @ 19:32:43
  Author: arodseth
Revision: 975852

archrelease: copy trunk to multilib-x86_64

Added:
  zsnes/repos/multilib-x86_64/PKGBUILD
(from rev 975851, zsnes/trunk/PKGBUILD)
Deleted:
  zsnes/repos/multilib-x86_64/PKGBUILD
  zsnes/repos/multilib-x86_64/zsnes-1.51-gamepad.patch
  zsnes/repos/multilib-x86_64/zsnes-1.51-libpng15.patch
  zsnes/repos/multilib-x86_64/zsnes.patch
  zsnes/repos/multilib-x86_64/zsnes.png

---+
 PKGBUILD  |   93 
 zsnes-1.51-gamepad.patch  |   38 -
 zsnes-1.51-libpng15.patch |   12 -
 zsnes.patch   |   80 -
 4 files changed, 35 insertions(+), 188 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 19:31:49 UTC (rev 975851)
+++ PKGBUILD2021-07-08 19:32:43 UTC (rev 975852)
@@ -1,58 +0,0 @@
-# Maintainer: Levente Polyak 
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Sven-Hendrik Haase 
-# Contributor: Frank Tetzel 
-# Contributor: Hugo Doria 
-# Contributor: Aurelien Foret 
-
-pkgname=zsnes
-pkgver=1.51
-pkgrel=22
-pkgdesc='Super Nintendo emulator'
-url='https://www.zsnes.com/'
-arch=(x86_64)
-license=(GPL)
-options=(!buildflags)
-makedepends=(gendesk mesa nasm)
-depends=(lib32-gcc-libs lib32-libgl lib32-libpng lib32-ncurses lib32-sdl)
-optdepends=('lib32-alsa-lib: sound support for ALSA'
-'lib32-libpulse: sound support for Pulse Audio')
-source=("https://downloads.sourceforge.net/project/zsnes/zsnes/ZSNES%20v$pkgver/zsnes${pkgver/.}src.tar.bz2;
-zsnes.patch
-zsnes-1.51-libpng15.patch
-zsnes-1.51-gamepad.patch
-zsnes.png)
-sha512sums=('b10373cf81b201a33dc60c728431d4f69d36de31fcf6f137b623ea206a2998f722dcd6132daec1d0bf14a05ae52f3ee9ecee4334517039be554db85c9f7b8274'
-
'a89bd37a800627f80e5385be83dde0db7da2570d1479a4d265c2493033bc57e46d220ee496eff9353e7c61b4b5e321b7db8199334227bfb9b7f65b25fec52012'
-
'4191987cad2f8dd7d7fd1d4f8f0c60de07059f18a60cb9bb94f1e5c35c06122032de9887762ebcf2d255f24c3e90aa5b4f6a7540a8e4dbdc4ce5f7d3b3e3b532'
-
'1eb97498441a112b8abb5db52e8608a81556eca9443e3bfe86a3ba9b479bf4bfcba30e7d43becda9c9888f8af8667530d56c7d38446430d9b2dd12675c7a5854'
-
'50a3392de384f3279ec2c8aa0d7e4cedca4b0ff0b8dc6b1b265a84d8e5d91589b23fa52ae0f083c93e638ee9a785b2f18636de6146145dc09d13174bef2511f6')
-_dir=${pkgname}_${pkgver/./_}
-
-prepare() {
-  cd $_dir
-  patch -p1 -i ../zsnes.patch
-  patch -p0 -i ../zsnes-1.51-libpng15.patch
-  patch -p1 -i ../zsnes-1.51-gamepad.patch
-}
-
-build() {
-  cd $_dir/src
-  export CC="gcc $CFLAGS -m32 -fcommon"
-  export CXX="g++ $CXXFLAGS -m32"
-  ./configure \
---enable-release \
---prefix=/usr \
-force_arch=i686 \
-x_libraries=/usr/lib
-  make
-}
-
-package() {
-  gendesk "$startdir/PKGBUILD"
-  install -Dm644 zsnes.desktop "$pkgdir/usr/share/applications/zsnes.desktop"
-  install -Dm644 zsnes.png "$pkgdir/usr/share/pixmaps/zsnes.png"
-  make -C $_dir/src DESTDIR="$pkgdir" install
-  install -dm755 "$pkgdir/usr/share"
-  mv "$pkgdir/usr/man" "$pkgdir/usr/share"
-}

Copied: zsnes/repos/multilib-x86_64/PKGBUILD (from rev 975851, 
zsnes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 19:32:43 UTC (rev 975852)
@@ -0,0 +1,35 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Levente Polyak 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Frank Tetzel 
+# Contributor: Hugo Doria 
+# Contributor: Aurelien Foret 
+
+pkgname=zsnes
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='Super Nintendo emulator'
+url='https://github.com/xyproto/zsnes'
+arch=(x86_64)
+license=(GPL)
+makedepends=(gendesk git mesa nasm)
+depends=(lib32-libpng lib32-opengl-driver lib32-sdl)
+optdepends=('lib32-alsa-lib: sound support for ALSA'
+'lib32-libpulse: sound support for Pulse Audio')
+source=("git+$url#commit=af4fcf97ca0892bb6b47d6e03a17ada3539ea55a") # tag: 
2.0.0
+b2sums=(SKIP)
+
+prepare() {
+  gendesk -f --pkgname $pkgname --pkgdesc "$pkgdesc"
+}
+
+build() {
+  make -C $pkgname
+}
+
+package() {
+  install -Dm644 zsnes.desktop "$pkgdir/usr/share/applications/zsnes.desktop"
+  install -Dm644 zsnes.png "$pkgdir/usr/share/pixmaps/zsnes.png"
+  install -Dm755 zsnes/zsnes "$pkgdir/usr/bin/zsnes"
+  install -Dm644 zsnes/linux/zsnes.1 "$pkgdir/usr/share/man/man1/zsnes.1"
+}

Deleted: zsnes-1.51-gamepad.patch
===
--- zsnes-1.51-gamepad.patch2021-07-08 19:31:49 UTC (rev 975851)
+++ zsnes-1.51-gamepad.patch2021-07-08 19:32:43 UTC (rev 975852)
@@ -1,38 +0,0 @@
 zsnes_1_51/src/linux/sdllink.c.orig   2008-07-27 22:13:02.0 +0200
-+++ zsnes_1_51/src/linux/sdllink.c   2009-02-10 00:50:17.0 +0100
-@@ -307,6 +307,8 @@
- 

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

2021-07-08 Thread Alexander Rødseth via arch-commits
Date: Thursday, July 8, 2021 @ 19:27:41
  Author: arodseth
Revision: 975850

archrelease: copy trunk to community-x86_64

Added:
  zsnes/repos/community-x86_64/
  zsnes/repos/community-x86_64/PKGBUILD
(from rev 975849, zsnes/trunk/PKGBUILD)

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

Copied: zsnes/repos/community-x86_64/PKGBUILD (from rev 975849, 
zsnes/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2021-07-08 19:27:41 UTC (rev 975850)
@@ -0,0 +1,35 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Levente Polyak 
+# Contributor: Sven-Hendrik Haase 
+# Contributor: Frank Tetzel 
+# Contributor: Hugo Doria 
+# Contributor: Aurelien Foret 
+
+pkgname=zsnes
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='Super Nintendo emulator'
+url='https://github.com/xyproto/zsnes'
+arch=(x86_64)
+license=(GPL)
+makedepends=(gendesk git mesa nasm)
+depends=(lib32-libpng lib32-opengl-driver lib32-sdl)
+optdepends=('lib32-alsa-lib: sound support for ALSA'
+'lib32-libpulse: sound support for Pulse Audio')
+source=("git+$url#commit=af4fcf97ca0892bb6b47d6e03a17ada3539ea55a") # tag: 
2.0.0
+b2sums=(SKIP)
+
+prepare() {
+  gendesk -f --pkgname $pkgname --pkgdesc "$pkgdesc"
+}
+
+build() {
+  make -C $pkgname
+}
+
+package() {
+  install -Dm644 zsnes.desktop "$pkgdir/usr/share/applications/zsnes.desktop"
+  install -Dm644 zsnes.png "$pkgdir/usr/share/pixmaps/zsnes.png"
+  install -Dm755 zsnes/zsnes "$pkgdir/usr/bin/zsnes"
+  install -Dm644 zsnes/linux/zsnes.1 "$pkgdir/usr/share/man/man1/zsnes.1"
+}



[arch-commits] Commit in zsnes/trunk (5 files)

2021-07-08 Thread Alexander Rødseth via arch-commits
Date: Thursday, July 8, 2021 @ 19:27:34
  Author: arodseth
Revision: 975849

Switch to a fork that builds and runs. The last zsnes release was >14 years ago.

Modified:
  zsnes/trunk/PKGBUILD
Deleted:
  zsnes/trunk/zsnes-1.51-gamepad.patch
  zsnes/trunk/zsnes-1.51-libpng15.patch
  zsnes/trunk/zsnes.patch
  zsnes/trunk/zsnes.png

---+
 PKGBUILD  |   45 ++--
 zsnes-1.51-gamepad.patch  |   38 
 zsnes-1.51-libpng15.patch |   12 --
 zsnes.patch   |   80 
 4 files changed, 11 insertions(+), 164 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 19:18:44 UTC (rev 975848)
+++ PKGBUILD2021-07-08 19:27:34 UTC (rev 975849)
@@ -1,5 +1,5 @@
-# Maintainer: Levente Polyak 
 # Maintainer: Alexander F. Rødseth 
+# Contributor: Levente Polyak 
 # Contributor: Sven-Hendrik Haase 
 # Contributor: Frank Tetzel 
 # Contributor: Hugo Doria 
@@ -6,53 +6,30 @@
 # Contributor: Aurelien Foret 
 
 pkgname=zsnes
-pkgver=1.51
-pkgrel=23
+pkgver=2.0.0
+pkgrel=1
 pkgdesc='Super Nintendo emulator'
-url='https://www.zsnes.com/'
+url='https://github.com/xyproto/zsnes'
 arch=(x86_64)
 license=(GPL)
-options=(!buildflags)
-makedepends=(gendesk mesa nasm)
+makedepends=(gendesk git mesa nasm)
 depends=(lib32-libpng lib32-opengl-driver lib32-sdl)
 optdepends=('lib32-alsa-lib: sound support for ALSA'
 'lib32-libpulse: sound support for Pulse Audio')
-source=("https://downloads.sourceforge.net/project/zsnes/zsnes/ZSNES%20v$pkgver/zsnes${pkgver/.}src.tar.bz2;
-zsnes.patch
-zsnes-1.51-libpng15.patch
-zsnes-1.51-gamepad.patch
-zsnes.png)
-sha512sums=('b10373cf81b201a33dc60c728431d4f69d36de31fcf6f137b623ea206a2998f722dcd6132daec1d0bf14a05ae52f3ee9ecee4334517039be554db85c9f7b8274'
-
'a89bd37a800627f80e5385be83dde0db7da2570d1479a4d265c2493033bc57e46d220ee496eff9353e7c61b4b5e321b7db8199334227bfb9b7f65b25fec52012'
-
'4191987cad2f8dd7d7fd1d4f8f0c60de07059f18a60cb9bb94f1e5c35c06122032de9887762ebcf2d255f24c3e90aa5b4f6a7540a8e4dbdc4ce5f7d3b3e3b532'
-
'1eb97498441a112b8abb5db52e8608a81556eca9443e3bfe86a3ba9b479bf4bfcba30e7d43becda9c9888f8af8667530d56c7d38446430d9b2dd12675c7a5854'
-
'50a3392de384f3279ec2c8aa0d7e4cedca4b0ff0b8dc6b1b265a84d8e5d91589b23fa52ae0f083c93e638ee9a785b2f18636de6146145dc09d13174bef2511f6')
-_dir=${pkgname}_${pkgver/./_}
+source=("git+$url#commit=af4fcf97ca0892bb6b47d6e03a17ada3539ea55a") # tag: 
2.0.0
+b2sums=(SKIP)
 
 prepare() {
-  cd $_dir
-  patch -p1 -i ../zsnes.patch
-  patch -p0 -i ../zsnes-1.51-libpng15.patch
-  patch -p1 -i ../zsnes-1.51-gamepad.patch
+  gendesk -f --pkgname $pkgname --pkgdesc "$pkgdesc"
 }
 
 build() {
-  cd $_dir/src
-  export CC="gcc $CFLAGS -m32 -fcommon -w"
-  export CXX="g++ $CXXFLAGS -m32 -std=c++14 -w"
-  ./configure \
---enable-release \
---prefix=/usr \
-force_arch=$CARCH \
-x_libraries=/usr/lib
-  make
+  make -C $pkgname
 }
 
 package() {
-  gendesk "$startdir/PKGBUILD"
   install -Dm644 zsnes.desktop "$pkgdir/usr/share/applications/zsnes.desktop"
   install -Dm644 zsnes.png "$pkgdir/usr/share/pixmaps/zsnes.png"
-  make -C $_dir/src DESTDIR="$pkgdir" install
-  install -dm755 "$pkgdir/usr/share"
-  mv "$pkgdir/usr/man" "$pkgdir/usr/share"
+  install -Dm755 zsnes/zsnes "$pkgdir/usr/bin/zsnes"
+  install -Dm644 zsnes/linux/zsnes.1 "$pkgdir/usr/share/man/man1/zsnes.1"
 }

Deleted: zsnes-1.51-gamepad.patch
===
--- zsnes-1.51-gamepad.patch2021-07-08 19:18:44 UTC (rev 975848)
+++ zsnes-1.51-gamepad.patch2021-07-08 19:27:34 UTC (rev 975849)
@@ -1,38 +0,0 @@
 zsnes_1_51/src/linux/sdllink.c.orig   2008-07-27 22:13:02.0 +0200
-+++ zsnes_1_51/src/linux/sdllink.c   2009-02-10 00:50:17.0 +0100
-@@ -307,6 +307,8 @@
-   case SDL_HAT_UP:
- pressed[offset + 3] = 1;
- pressed[offset + 2] = 0;
-+pressed[offset + 1] = 0;
-+pressed[offset + 0] = 0;
- break;
-   case SDL_HAT_RIGHTUP:
- pressed[offset] = 1;
-@@ -317,6 +317,8 @@
-   case SDL_HAT_RIGHT:
- pressed[offset] = 1;
- pressed[offset + 1] = 0;
-+pressed[offset + 2] = 0;
-+pressed[offset + 3] = 0;
- break;
-   case SDL_HAT_RIGHTDOWN:
- pressed[offset] = 1;
-@@ -326,6 +326,8 @@
- break;
-   case SDL_HAT_DOWN:
- pressed[offset + 2] = 1;
-+pressed[offset + 0] = 0;
-+pressed[offset + 1] = 0;
- pressed[offset + 3] = 0;
- break;
-   case SDL_HAT_LEFTDOWN:
-@@ -337,6 +337,8 @@
-   case SDL_HAT_LEFT:
- pressed[offset + 1] = 1;
- pressed[offset] = 0;
-+

[arch-commits] Commit in ruby2.7/repos (2 files)

2021-07-08 Thread Anatol Pomozov via arch-commits
Date: Thursday, July 8, 2021 @ 19:18:44
  Author: anatolik
Revision: 975848

archrelease: copy trunk to community-testing-x86_64

Added:
  ruby2.7/repos/community-testing-x86_64/
  ruby2.7/repos/community-testing-x86_64/PKGBUILD
(from rev 975847, ruby2.7/trunk/PKGBUILD)

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

Copied: ruby2.7/repos/community-testing-x86_64/PKGBUILD (from rev 975847, 
ruby2.7/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2021-07-08 19:18:44 UTC (rev 975848)
@@ -0,0 +1,51 @@
+# Contributor: Thomas Dziedzic 
+# Contributor: Allan McRae 
+# Contributor: John Proctor 
+# Contributor: Jeramy Rutley 
+
+pkgname=ruby2.7
+pkgver=2.7.4
+pkgrel=1
+arch=(x86_64)
+pkgdesc='An object-oriented language for quick and easy programming, version 
2.7'
+url='https://www.ruby-lang.org/en/'
+license=(BSD custom)
+depends=(libxcrypt gdbm openssl libffi libyaml gmp zlib)
+optdepends=(
+'tk: for Ruby/TK'
+)
+makedepends=(tk)
+options=(!emptydirs)
+source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz)
+sha512sums=('2cbb70ecfdd69120e789023ddb2b25cab0d03bc33fdc367a8f74ca8a3ee785c18c8ded9de3ecee627c7e275ffb85147e6abf921b6a61e31851b37c7fedf45bf9')
+
+build() {
+  cd ruby-${pkgver}
+
+  ./configure \
+--prefix=/usr \
+--program-suffix=-2.7 \
+--with-soname=ruby-2.7 \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sharedstatedir=/var/lib \
+--libexecdir=/usr/lib/ruby \
+--enable-shared \
+--disable-rpath \
+--with-dbm-type=gdbm_compat \
+--disable-install-doc
+
+  make
+}
+
+package() {
+  cd ruby-${pkgver}
+
+  make DESTDIR="${pkgdir}" install-nodoc
+
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby2.7/LICENSE"
+  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby2.7/BSDL"
+
+  # remove files conflicting with 'ruby' package
+  rm -r "$pkgdir"/usr/share/man/
+}



[arch-commits] Commit in ruby2.7/trunk (PKGBUILD)

2021-07-08 Thread Anatol Pomozov via arch-commits
Date: Thursday, July 8, 2021 @ 19:18:27
  Author: anatolik
Revision: 975847

upgpkg: ruby2.7 2.7.4-1

Modified:
  ruby2.7/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 19:00:24 UTC (rev 975846)
+++ PKGBUILD2021-07-08 19:18:27 UTC (rev 975847)
@@ -4,7 +4,7 @@
 # Contributor: Jeramy Rutley 
 
 pkgname=ruby2.7
-pkgver=2.7.3
+pkgver=2.7.4
 pkgrel=1
 arch=(x86_64)
 pkgdesc='An object-oriented language for quick and easy programming, version 
2.7'
@@ -17,7 +17,7 @@
 makedepends=(tk)
 options=(!emptydirs)
 
source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz)
-sha512sums=('b755d418b3bab2f9f6a8893afd13869269f17065643dde78b9e85ae3538a6d0617893db6e9c3908e00a40c7577a5c912a7c822d8f245cdcfb857be76dfb66c1e')
+sha512sums=('2cbb70ecfdd69120e789023ddb2b25cab0d03bc33fdc367a8f74ca8a3ee785c18c8ded9de3ecee627c7e275ffb85147e6abf921b6a61e31851b37c7fedf45bf9')
 
 build() {
   cd ruby-${pkgver}



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

2021-07-08 Thread Anatol Pomozov via arch-commits
Date: Thursday, July 8, 2021 @ 19:16:39
  Author: anatolik
Revision: 419308

archrelease: copy trunk to testing-x86_64

Added:
  ruby/repos/testing-x86_64/
  ruby/repos/testing-x86_64/PKGBUILD
(from rev 419307, ruby/trunk/PKGBUILD)

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

Copied: ruby/repos/testing-x86_64/PKGBUILD (from rev 419307, 
ruby/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-07-08 19:16:39 UTC (rev 419308)
@@ -0,0 +1,97 @@
+# Contributor: Thomas Dziedzic 
+# Contributor: Allan McRae 
+# Contributor: John Proctor 
+# Contributor: Jeramy Rutley 
+
+pkgname=(ruby ruby-docs)
+pkgver=3.0.2
+pkgrel=1
+arch=(x86_64)
+url='https://www.ruby-lang.org/en/'
+license=(BSD custom)
+depends=(libxcrypt)
+makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
+options=(!emptydirs)
+source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz)
+sha512sums=('0f702e2d8ca1342a9d4284dbdd234a3588e057b92566353aa7c21835cf09a3932864b2acf459a976960a1704e9befa562155d36b98b7cda8bd99526e10a374c4')
+
+build() {
+  cd ruby-${pkgver}
+
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sharedstatedir=/var/lib \
+--libexecdir=/usr/lib/ruby \
+--enable-shared \
+--disable-rpath \
+--with-dbm-type=gdbm_compat
+
+  make
+}
+
+check() {
+  cd ruby-${pkgver}
+
+  make test
+}
+
+package_ruby() {
+  pkgdesc='An object-oriented language for quick and easy programming'
+  depends=(gdbm openssl libffi libyaml gmp zlib rubygems ruby-irb)
+  optdepends=(
+  'ruby-docs: Ruby documentation'
+  'tk: for Ruby/TK'
+  )
+
+  cd ruby-${pkgver}
+
+  make DESTDIR="${pkgdir}" install-nodoc
+
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby/LICENSE"
+  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby/BSDL"
+
+  rubyver=${pkgver:0:3}.0
+
+  # remove rubygems as it shipped as a separate package
+  rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{rubygems,rubygems.rb}
+  rm "${pkgdir}"/usr/bin/gem
+
+  # remove bundler as it shipped as a separate package
+  rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{bundler,bundler.rb}
+  rm "${pkgdir}"/usr/bin/{bundle,bundler}
+  rm 
"${pkgdir}"/usr/lib/ruby/gems/${rubyver}/specifications/default/bundler-*.gemspec
+
+  # remove bundled rdoc gem
+  rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{rdoc,rdoc.rb}
+  rm "${pkgdir}"/usr/bin/{rdoc,ri}
+  rm 
"${pkgdir}"/usr/lib/ruby/gems/${rubyver}/specifications/default/rdoc-*.gemspec
+  rm "${pkgdir}"/usr/share/man/man1/ri.1
+
+  # remove irb as it is a separate package now
+  rm -r "${pkgdir}"/usr/lib/ruby/${rubyver}/{irb,irb.rb}
+  rm "${pkgdir}"/usr/bin/irb
+  rm 
"${pkgdir}"/usr/lib/ruby/gems/${rubyver}/specifications/default/irb-*.gemspec
+  rm "${pkgdir}"/usr/share/man/man1/irb.1
+
+  # remove other binaries that are shipped as separate packages
+  rm "${pkgdir}"/usr/bin/{rake,rbs,typeprof,erb,racc}
+  rm "${pkgdir}"/usr/share/man/man1/erb.1
+
+  # remove all bundled gems to avoid conflicts with ruby-* Arch packages
+  rm -r "${pkgdir}"/usr/lib/ruby/gems/${rubyver}/gems/*
+  rm "${pkgdir}"/usr/lib/ruby/gems/${rubyver}/specifications/*.gemspec
+  rm "${pkgdir}"/usr/lib/ruby/gems/${rubyver}/cache/*.gem
+}
+
+package_ruby-docs() {
+  pkgdesc='Documentation files for ruby'
+
+  cd ruby-${pkgver}
+
+  make DESTDIR="${pkgdir}" install-doc install-capi
+
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/ruby-docs/LICENSE"
+  install -D -m644 BSDL "${pkgdir}/usr/share/licenses/ruby-docs/BSDL"
+}



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

2021-07-08 Thread Anatol Pomozov via arch-commits
Date: Thursday, July 8, 2021 @ 19:16:22
  Author: anatolik
Revision: 419307

upgpkg: ruby 3.0.2-1

Modified:
  ruby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 17:17:56 UTC (rev 419306)
+++ PKGBUILD2021-07-08 19:16:22 UTC (rev 419307)
@@ -4,7 +4,7 @@
 # Contributor: Jeramy Rutley 
 
 pkgname=(ruby ruby-docs)
-pkgver=3.0.1
+pkgver=3.0.2
 pkgrel=1
 arch=(x86_64)
 url='https://www.ruby-lang.org/en/'
@@ -13,7 +13,7 @@
 makedepends=(gdbm openssl libffi doxygen graphviz libyaml ttf-dejavu tk)
 options=(!emptydirs)
 
source=(https://cache.ruby-lang.org/pub/ruby/${pkgver:0:3}/ruby-${pkgver}.tar.xz)
-sha512sums=('97d2e883656060846b304368d9d836e2f3ef39859c36171c9398a0573818e4ed75bfd7460f901a9553f7f53518c505327a66e74f83704a881469f5ac61fe13d7')
+sha512sums=('0f702e2d8ca1342a9d4284dbdd234a3588e057b92566353aa7c21835cf09a3932864b2acf459a976960a1704e9befa562155d36b98b7cda8bd99526e10a374c4')
 
 build() {
   cd ruby-${pkgver}



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

2021-07-08 Thread Jonathan Steel via arch-commits
Date: Thursday, July 8, 2021 @ 19:00:24
  Author: jsteel
Revision: 975846

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 19:00:17 UTC (rev 975845)
+++ PKGBUILD2021-07-08 19:00:24 UTC (rev 975846)
@@ -1,31 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Felix Yan 
-
-pkgbase=python-boto3
-pkgname=python-boto3
-pkgver=1.17.93
-pkgrel=1
-pkgdesc='The AWS SDK for Python'
-arch=('any')
-license=('Apache')
-url='https://github.com/boto/boto3'
-depends=('python-botocore' 'python-jmespath' 'python-s3transfer')
-makedepends=('python-setuptools')
-# checkdepends=('python-coverage' 'python-nose' 'python-mock')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
-sha512sums=('bb1f3264cfa4717f32343553f5af1d35dc7bab813d968775456239a758111cbc7eb6514df42cc3675f1d693f5bae33c048fcdae98c348d3aa54cbb6e98d88f70')
-
-build() {
-  cd boto3-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd boto3-$pkgver
-  # scripts/ci/run-tests
-}
-
-package() {
-  cd boto3-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-}

Copied: python-boto3/repos/community-any/PKGBUILD (from rev 975845, 
python-boto3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 19:00:24 UTC (rev 975846)
@@ -0,0 +1,31 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Felix Yan 
+
+pkgbase=python-boto3
+pkgname=python-boto3
+pkgver=1.17.107
+pkgrel=1
+pkgdesc='The AWS SDK for Python'
+arch=('any')
+license=('Apache')
+url='https://github.com/boto/boto3'
+depends=('python-botocore' 'python-jmespath' 'python-s3transfer')
+makedepends=('python-setuptools')
+# checkdepends=('python-coverage' 'python-nose' 'python-mock')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
+sha512sums=('450222507aa3bae8062b788ac7f637dbe8a5e7a5baa0f45001a74a810c2579927a7400cef180b57a7d7e57c391d665930b577b39272681ca380b5e553385b1f8')
+
+build() {
+  cd boto3-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd boto3-$pkgver
+  # scripts/ci/run-tests
+}
+
+package() {
+  cd boto3-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}



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

2021-07-08 Thread Jonathan Steel via arch-commits
Date: Thursday, July 8, 2021 @ 19:00:17
  Author: jsteel
Revision: 975845

upgpkg: python-boto3 1.17.107-1

Modified:
  python-boto3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 18:59:20 UTC (rev 975844)
+++ PKGBUILD2021-07-08 19:00:17 UTC (rev 975845)
@@ -3,7 +3,7 @@
 
 pkgbase=python-boto3
 pkgname=python-boto3
-pkgver=1.17.93
+pkgver=1.17.107
 pkgrel=1
 pkgdesc='The AWS SDK for Python'
 arch=('any')
@@ -13,7 +13,7 @@
 makedepends=('python-setuptools')
 # checkdepends=('python-coverage' 'python-nose' 'python-mock')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/boto/boto3/archive/$pkgver.tar.gz;)
-sha512sums=('bb1f3264cfa4717f32343553f5af1d35dc7bab813d968775456239a758111cbc7eb6514df42cc3675f1d693f5bae33c048fcdae98c348d3aa54cbb6e98d88f70')
+sha512sums=('450222507aa3bae8062b788ac7f637dbe8a5e7a5baa0f45001a74a810c2579927a7400cef180b57a7d7e57c391d665930b577b39272681ca380b5e553385b1f8')
 
 build() {
   cd boto3-$pkgver



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

2021-07-08 Thread Jonathan Steel via arch-commits
Date: Thursday, July 8, 2021 @ 18:59:20
  Author: jsteel
Revision: 975844

archrelease: copy trunk to community-any

Added:
  aws-cli/repos/community-any/PKGBUILD
(from rev 975843, aws-cli/trunk/PKGBUILD)
Deleted:
  aws-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 18:59:12 UTC (rev 975843)
+++ PKGBUILD2021-07-08 18:59:20 UTC (rev 975844)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.19.93
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli;
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer' 'python-yaml')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('6bdcf68df2f603a194083c897a928791')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-
-  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 975843, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 18:59:20 UTC (rev 975844)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.19.107
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli;
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer' 'python-yaml')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('0d16d80af726e7a723f1868d67788ad3')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+
+  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
+}



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

2021-07-08 Thread Jonathan Steel via arch-commits
Date: Thursday, July 8, 2021 @ 18:59:12
  Author: jsteel
Revision: 975843

upgpkg: aws-cli 1.19.107-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 18:58:53 UTC (rev 975842)
+++ PKGBUILD2021-07-08 18:59:12 UTC (rev 975843)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.19.93
+pkgver=1.19.107
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer' 'python-yaml')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('6bdcf68df2f603a194083c897a928791')
+md5sums=('0d16d80af726e7a723f1868d67788ad3')
 
 build() {
   cd $pkgname-$pkgver



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

2021-07-08 Thread Jonathan Steel via arch-commits
Date: Thursday, July 8, 2021 @ 18:58:53
  Author: jsteel
Revision: 975842

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 18:58:43 UTC (rev 975841)
+++ PKGBUILD2021-07-08 18:58:53 UTC (rev 975842)
@@ -1,27 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.20.93
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore;
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('aedd7ea7423b2303bb8d2428a8a7c2ce')
-
-build() {
-  cd botocore-$pkgver
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 975841, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 18:58:53 UTC (rev 975842)
@@ -0,0 +1,27 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.20.107
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore;
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('6a3cd708eeaf0c5273d52e4af5b46d80')
+
+build() {
+  cd botocore-$pkgver
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



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

2021-07-08 Thread Jonathan Steel via arch-commits
Date: Thursday, July 8, 2021 @ 18:58:43
  Author: jsteel
Revision: 975841

upgpkg: python-botocore 1.20.107-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 18:55:46 UTC (rev 975840)
+++ PKGBUILD2021-07-08 18:58:43 UTC (rev 975841)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.20.93
+pkgver=1.20.107
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils' 
'python-urllib3')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('aedd7ea7423b2303bb8d2428a8a7c2ce')
+md5sums=('6a3cd708eeaf0c5273d52e4af5b46d80')
 
 build() {
   cd botocore-$pkgver



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

2021-07-08 Thread Kpcyrd via arch-commits
Date: Thursday, July 8, 2021 @ 18:55:46
  Author: kpcyrd
Revision: 975840

archrelease: copy trunk to community-any

Added:
  serverless/repos/community-any/PKGBUILD
(from rev 975839, serverless/trunk/PKGBUILD)
Deleted:
  serverless/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 18:55:31 UTC (rev 975839)
+++ PKGBUILD2021-07-08 18:55:46 UTC (rev 975840)
@@ -1,25 +0,0 @@
-# Maintainer: kpcyrd 
-
-pkgname=serverless
-pkgver=2.51.0
-pkgrel=1
-pkgdesc='Serverless Framework - Build web, mobile and IoT applications with 
serverless architectures'
-url='https://github.com/serverless/serverless'
-arch=('any')
-license=('MIT')
-depends=('nodejs')
-makedepends=('npm')
-source=(https://registry.npmjs.org/${pkgname}/-/${pkgname}-${pkgver}.tgz)
-noextract=(${pkgname}-${pkgver}.tgz)
-sha512sums=('3e2d86c19a3584b5d49952206054e39dcdb7d59e246e4db8d191cdd9b670eadc27897f908ae248be60cd89555413165ed0bccbf6269e7ee19de80b2aca013d63')
-b2sums=('8b6c7e64c2e958c75569aae03c9fe4c4e9d7948d5b6b2665e32deb619c641f3c860189665e91079b275e206c6ec32d6b4f336f2081f11af9454b84a78a5ff0f8')
-
-package() {
-  npm install -g --prefix "${pkgdir}/usr" "${srcdir}/${pkgname}-${pkgver}.tgz"
-
-  # npm installs package.json owned by build user
-  # https://bugs.archlinux.org/task/63396
-  chown -R root:root "${pkgdir}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: serverless/repos/community-any/PKGBUILD (from rev 975839, 
serverless/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 18:55:46 UTC (rev 975840)
@@ -0,0 +1,25 @@
+# Maintainer: kpcyrd 
+
+pkgname=serverless
+pkgver=2.51.1
+pkgrel=1
+pkgdesc='Serverless Framework - Build web, mobile and IoT applications with 
serverless architectures'
+url='https://github.com/serverless/serverless'
+arch=('any')
+license=('MIT')
+depends=('nodejs')
+makedepends=('npm')
+source=(https://registry.npmjs.org/${pkgname}/-/${pkgname}-${pkgver}.tgz)
+noextract=(${pkgname}-${pkgver}.tgz)
+sha512sums=('a856a744c351bd10bbd157ac109a996fb30cd4fb4bb31b471acd1e821c5973f7b124916bb49952a02d74c7d08fe0d589478c73ef8076991ea14be8e898059002')
+b2sums=('be46fde3aa49e31357c53cbbf8ee9aded98cc51701d7051945e03a845fbb366f81c4b3f2813cdf5ebbe84089919cb5e74e9c3e2712e75a8c7082708dc766')
+
+package() {
+  npm install -g --prefix "${pkgdir}/usr" "${srcdir}/${pkgname}-${pkgver}.tgz"
+
+  # npm installs package.json owned by build user
+  # https://bugs.archlinux.org/task/63396
+  chown -R root:root "${pkgdir}"
+}
+
+# vim: ts=2 sw=2 et:



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

2021-07-08 Thread Kpcyrd via arch-commits
Date: Thursday, July 8, 2021 @ 18:55:31
  Author: kpcyrd
Revision: 975839

upgpkg: serverless 2.51.1-1

Modified:
  serverless/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 18:20:27 UTC (rev 975838)
+++ PKGBUILD2021-07-08 18:55:31 UTC (rev 975839)
@@ -1,7 +1,7 @@
 # Maintainer: kpcyrd 
 
 pkgname=serverless
-pkgver=2.51.0
+pkgver=2.51.1
 pkgrel=1
 pkgdesc='Serverless Framework - Build web, mobile and IoT applications with 
serverless architectures'
 url='https://github.com/serverless/serverless'
@@ -11,8 +11,8 @@
 makedepends=('npm')
 source=(https://registry.npmjs.org/${pkgname}/-/${pkgname}-${pkgver}.tgz)
 noextract=(${pkgname}-${pkgver}.tgz)
-sha512sums=('3e2d86c19a3584b5d49952206054e39dcdb7d59e246e4db8d191cdd9b670eadc27897f908ae248be60cd89555413165ed0bccbf6269e7ee19de80b2aca013d63')
-b2sums=('8b6c7e64c2e958c75569aae03c9fe4c4e9d7948d5b6b2665e32deb619c641f3c860189665e91079b275e206c6ec32d6b4f336f2081f11af9454b84a78a5ff0f8')
+sha512sums=('a856a744c351bd10bbd157ac109a996fb30cd4fb4bb31b471acd1e821c5973f7b124916bb49952a02d74c7d08fe0d589478c73ef8076991ea14be8e898059002')
+b2sums=('be46fde3aa49e31357c53cbbf8ee9aded98cc51701d7051945e03a845fbb366f81c4b3f2813cdf5ebbe84089919cb5e74e9c3e2712e75a8c7082708dc766')
 
 package() {
   npm install -g --prefix "${pkgdir}/usr" "${srcdir}/${pkgname}-${pkgver}.tgz"



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

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 18:20:27
  Author: arojas
Revision: 975838

archrelease: copy trunk to community-x86_64

Added:
  mediastreamer/repos/community-x86_64/PKGBUILD
(from rev 975837, mediastreamer/trunk/PKGBUILD)
  mediastreamer/repos/community-x86_64/fix-build.patch
(from rev 975837, mediastreamer/trunk/fix-build.patch)
Deleted:
  mediastreamer/repos/community-x86_64/PKGBUILD
  mediastreamer/repos/community-x86_64/fix-build.patch

-+
 PKGBUILD|   73 +++---
 fix-build.patch |   26 +--
 2 files changed, 50 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 18:20:07 UTC (rev 975837)
+++ PKGBUILD2021-07-08 18:20:27 UTC (rev 975838)
@@ -1,36 +0,0 @@
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Sergej Pupykin 
-# Contributor: Adrià Arrufat 
-# Contributor: Mark Lee 
-
-pkgname=mediastreamer
-pkgver=5.0.0
-pkgrel=1
-pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
-arch=(x86_64)
-url='https://github.com/BelledonneCommunications/mediastreamer2'
-license=(GPL)
-depends=(ortp ffmpeg bzrtp glew libsrtp)
-makedepends=(cmake python bcunit doxygen)
-source=(https://github.com/BelledonneCommunications/mediastreamer2/archive/$pkgver/$pkgname-$pkgver.tar.gz
-fix-build.patch)
-sha256sums=('ae46eb5d52590b25c8ac660b0208e7efcfbbc9968a0967e63c8684e153ff0f55'
-'6e421e02a302c408975e8e01580ae72f35f9e9d7dc043542eade38961cb8e4f9')
-validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
-
-prepare() {
-  patch -d ${pkgname}2-$pkgver -p1 < fix-build.patch
-}
-
-build() {
-  cmake -B build -S ${pkgname}2-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_STATIC=OFF \
--DENABLE_STRICT=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: mediastreamer/repos/community-x86_64/PKGBUILD (from rev 975837, 
mediastreamer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 18:20:27 UTC (rev 975838)
@@ -0,0 +1,37 @@
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Sergej Pupykin 
+# Contributor: Adrià Arrufat 
+# Contributor: Mark Lee 
+
+pkgname=mediastreamer
+pkgver=5.0.0
+pkgrel=1
+pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
+arch=(x86_64)
+url='https://github.com/BelledonneCommunications/mediastreamer2'
+license=(GPL)
+depends=(ortp ffmpeg bzrtp glew libsrtp)
+makedepends=(cmake python bcunit doxygen)
+source=(https://github.com/BelledonneCommunications/mediastreamer2/archive/$pkgver/$pkgname-$pkgver.tar.gz
+fix-build.patch)
+sha256sums=('ae46eb5d52590b25c8ac660b0208e7efcfbbc9968a0967e63c8684e153ff0f55'
+'6e421e02a302c408975e8e01580ae72f35f9e9d7dc043542eade38961cb8e4f9')
+validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
+
+prepare() {
+  patch -d ${pkgname}2-$pkgver -p1 < fix-build.patch
+}
+
+build() {
+  cmake -B build -S ${pkgname}2-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_STATIC=OFF \
+-DENABLE_STRICT=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+  rm -r "$pkgdir"/usr/include/OpenGL
+}

Deleted: fix-build.patch
===
--- fix-build.patch 2021-07-08 18:20:07 UTC (rev 975837)
+++ fix-build.patch 2021-07-08 18:20:27 UTC (rev 975838)
@@ -1,13 +0,0 @@
-diff --git a/src/crypto/ms_srtp.c b/src/crypto/ms_srtp.c
-index ef15d545..a33477d5 100644
 a/src/crypto/ms_srtp.c
-+++ b/src/crypto/ms_srtp.c
-@@ -371,7 +371,7 @@ static int ms_add_srtp_stream(srtp_t srtp, MSCryptoSuite 
suite, uint32_t ssrc, c
-   policy.key = (uint8_t *)key;
-   policy.next = NULL;
- 
--  err = srtp_add_or_update_stream(srtp, );
-+  err = srtp_add_stream(srtp, );
-   if (err != err_status_ok) {
-   ms_error("Failed to add stream to srtp session (%d)", err);
-   return -1;

Copied: mediastreamer/repos/community-x86_64/fix-build.patch (from rev 975837, 
mediastreamer/trunk/fix-build.patch)
===
--- fix-build.patch (rev 0)
+++ fix-build.patch 2021-07-08 18:20:27 UTC (rev 975838)
@@ -0,0 +1,13 @@
+diff --git a/src/crypto/ms_srtp.c b/src/crypto/ms_srtp.c
+index ef15d545..a33477d5 100644
+--- a/src/crypto/ms_srtp.c
 b/src/crypto/ms_srtp.c
+@@ -371,7 +371,7 @@ static int ms_add_srtp_stream(srtp_t srtp, MSCryptoSuite 
suite, uint32_t ssrc, c
+   policy.key = (uint8_t *)key;
+   policy.next = NULL;
+ 
+-  err = srtp_add_or_update_stream(srtp, );
++  err = srtp_add_stream(srtp, );
+   if (err != err_status_ok) {
+   ms_error("Failed to 

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

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 18:20:07
  Author: arojas
Revision: 975837

Remove spurious include files

Modified:
  mediastreamer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 18:18:23 UTC (rev 975836)
+++ PKGBUILD2021-07-08 18:20:07 UTC (rev 975837)
@@ -33,4 +33,5 @@
 
 package() {
   DESTDIR="$pkgdir" cmake --install build
+  rm -r "$pkgdir"/usr/include/OpenGL
 }



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

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 18:18:23
  Author: arojas
Revision: 975836

archrelease: copy trunk to community-x86_64

Added:
  mediastreamer/repos/community-x86_64/PKGBUILD
(from rev 975835, mediastreamer/trunk/PKGBUILD)
  mediastreamer/repos/community-x86_64/fix-build.patch
(from rev 975835, mediastreamer/trunk/fix-build.patch)
Deleted:
  mediastreamer/repos/community-x86_64/PKGBUILD

-+
 PKGBUILD|   66 +-
 fix-build.patch |   13 ++
 2 files changed, 49 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 18:18:02 UTC (rev 975835)
+++ PKGBUILD2021-07-08 18:18:23 UTC (rev 975836)
@@ -1,30 +0,0 @@
-# Maintainer:
-# Contributor: Andrea Scarpino 
-# Contributor: Sergej Pupykin 
-# Contributor: Adrià Arrufat 
-# Contributor: Mark Lee 
-
-pkgname=mediastreamer
-pkgver=4.5.22
-pkgrel=1
-pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
-arch=(x86_64)
-url='https://github.com/BelledonneCommunications/mediastreamer2'
-license=(GPL)
-depends=(ortp ffmpeg bzrtp glew libsrtp)
-makedepends=(cmake python bcunit doxygen)
-source=(https://github.com/BelledonneCommunications/mediastreamer2/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('8043e42bf0a017d97500f8817e89d7ba4c1e5222365b502bbbfeb9e30fa7b1a9')
-validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
-
-build() {
-  cmake -B build -S ${pkgname}2-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_STATIC=OFF \
--DENABLE_STRICT=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: mediastreamer/repos/community-x86_64/PKGBUILD (from rev 975835, 
mediastreamer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 18:18:23 UTC (rev 975836)
@@ -0,0 +1,36 @@
+# Maintainer:
+# Contributor: Andrea Scarpino 
+# Contributor: Sergej Pupykin 
+# Contributor: Adrià Arrufat 
+# Contributor: Mark Lee 
+
+pkgname=mediastreamer
+pkgver=5.0.0
+pkgrel=1
+pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
+arch=(x86_64)
+url='https://github.com/BelledonneCommunications/mediastreamer2'
+license=(GPL)
+depends=(ortp ffmpeg bzrtp glew libsrtp)
+makedepends=(cmake python bcunit doxygen)
+source=(https://github.com/BelledonneCommunications/mediastreamer2/archive/$pkgver/$pkgname-$pkgver.tar.gz
+fix-build.patch)
+sha256sums=('ae46eb5d52590b25c8ac660b0208e7efcfbbc9968a0967e63c8684e153ff0f55'
+'6e421e02a302c408975e8e01580ae72f35f9e9d7dc043542eade38961cb8e4f9')
+validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
+
+prepare() {
+  patch -d ${pkgname}2-$pkgver -p1 < fix-build.patch
+}
+
+build() {
+  cmake -B build -S ${pkgname}2-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_STATIC=OFF \
+-DENABLE_STRICT=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}

Copied: mediastreamer/repos/community-x86_64/fix-build.patch (from rev 975835, 
mediastreamer/trunk/fix-build.patch)
===
--- fix-build.patch (rev 0)
+++ fix-build.patch 2021-07-08 18:18:23 UTC (rev 975836)
@@ -0,0 +1,13 @@
+diff --git a/src/crypto/ms_srtp.c b/src/crypto/ms_srtp.c
+index ef15d545..a33477d5 100644
+--- a/src/crypto/ms_srtp.c
 b/src/crypto/ms_srtp.c
+@@ -371,7 +371,7 @@ static int ms_add_srtp_stream(srtp_t srtp, MSCryptoSuite 
suite, uint32_t ssrc, c
+   policy.key = (uint8_t *)key;
+   policy.next = NULL;
+ 
+-  err = srtp_add_or_update_stream(srtp, );
++  err = srtp_add_stream(srtp, );
+   if (err != err_status_ok) {
+   ms_error("Failed to add stream to srtp session (%d)", err);
+   return -1;



[arch-commits] Commit in mediastreamer/trunk (PKGBUILD fix-build.patch)

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 18:18:02
  Author: arojas
Revision: 975835

Update to 5.0.0

Added:
  mediastreamer/trunk/fix-build.patch
Modified:
  mediastreamer/trunk/PKGBUILD

-+
 PKGBUILD|   12 +---
 fix-build.patch |   13 +
 2 files changed, 22 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 18:09:35 UTC (rev 975834)
+++ PKGBUILD2021-07-08 18:18:02 UTC (rev 975835)
@@ -5,7 +5,7 @@
 # Contributor: Mark Lee 
 
 pkgname=mediastreamer
-pkgver=4.5.22
+pkgver=5.0.0
 pkgrel=1
 pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
 arch=(x86_64)
@@ -13,10 +13,16 @@
 license=(GPL)
 depends=(ortp ffmpeg bzrtp glew libsrtp)
 makedepends=(cmake python bcunit doxygen)
-source=(https://github.com/BelledonneCommunications/mediastreamer2/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('8043e42bf0a017d97500f8817e89d7ba4c1e5222365b502bbbfeb9e30fa7b1a9')
+source=(https://github.com/BelledonneCommunications/mediastreamer2/archive/$pkgver/$pkgname-$pkgver.tar.gz
+fix-build.patch)
+sha256sums=('ae46eb5d52590b25c8ac660b0208e7efcfbbc9968a0967e63c8684e153ff0f55'
+'6e421e02a302c408975e8e01580ae72f35f9e9d7dc043542eade38961cb8e4f9')
 validpgpkeys=('9774BC1725758EB16D639F8B3ECD52DEE2F56985')
 
+prepare() {
+  patch -d ${pkgname}2-$pkgver -p1 < fix-build.patch
+}
+
 build() {
   cmake -B build -S ${pkgname}2-$pkgver \
 -DCMAKE_INSTALL_PREFIX=/usr \

Added: fix-build.patch
===
--- fix-build.patch (rev 0)
+++ fix-build.patch 2021-07-08 18:18:02 UTC (rev 975835)
@@ -0,0 +1,13 @@
+diff --git a/src/crypto/ms_srtp.c b/src/crypto/ms_srtp.c
+index ef15d545..a33477d5 100644
+--- a/src/crypto/ms_srtp.c
 b/src/crypto/ms_srtp.c
+@@ -371,7 +371,7 @@ static int ms_add_srtp_stream(srtp_t srtp, MSCryptoSuite 
suite, uint32_t ssrc, c
+   policy.key = (uint8_t *)key;
+   policy.next = NULL;
+ 
+-  err = srtp_add_or_update_stream(srtp, );
++  err = srtp_add_stream(srtp, );
+   if (err != err_status_ok) {
+   ms_error("Failed to add stream to srtp session (%d)", err);
+   return -1;



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

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 18:09:35
  Author: arojas
Revision: 975834

archrelease: copy trunk to community-x86_64

Added:
  ortp/repos/community-x86_64/PKGBUILD
(from rev 975833, ortp/trunk/PKGBUILD)
Deleted:
  ortp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 18:09:21 UTC (rev 975833)
+++ PKGBUILD2021-07-08 18:09:35 UTC (rev 975834)
@@ -1,27 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: William Rea 
-
-pkgname=ortp
-pkgver=4.5.22
-pkgrel=1
-pkgdesc='A Real-time Transport Protocol (RTP) library'
-arch=(x86_64)
-url='https://github.com/BelledonneCommunications/ortp'
-license=(GPL3)
-depends=(bctoolbox)
-makedepends=(cmake doxygen)
-source=(https://github.com/BelledonneCommunications/ortp/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('d47795431e7faa4002e6dcdaa128e2c7b5a270f7a8e059daf749ca30a0f709bd')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_STATIC=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: ortp/repos/community-x86_64/PKGBUILD (from rev 975833, 
ortp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 18:09:35 UTC (rev 975834)
@@ -0,0 +1,27 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Jaroslaw Swierczynski 
+# Contributor: William Rea 
+
+pkgname=ortp
+pkgver=5.0.0
+pkgrel=1
+pkgdesc='A Real-time Transport Protocol (RTP) library'
+arch=(x86_64)
+url='https://github.com/BelledonneCommunications/ortp'
+license=(GPL3)
+depends=(bctoolbox)
+makedepends=(cmake doxygen)
+source=(https://github.com/BelledonneCommunications/ortp/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('e5762f1a22f6bdbb1fb36e18e27e6108489e9d0724d898c20e16cb9898309ebc')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_STATIC=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 18:09:21
  Author: arojas
Revision: 975833

Update to 5.0.0

Modified:
  ortp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 18:06:49 UTC (rev 975832)
+++ PKGBUILD2021-07-08 18:09:21 UTC (rev 975833)
@@ -4,7 +4,7 @@
 # Contributor: William Rea 
 
 pkgname=ortp
-pkgver=4.5.22
+pkgver=5.0.0
 pkgrel=1
 pkgdesc='A Real-time Transport Protocol (RTP) library'
 arch=(x86_64)
@@ -13,7 +13,7 @@
 depends=(bctoolbox)
 makedepends=(cmake doxygen)
 
source=(https://github.com/BelledonneCommunications/ortp/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('d47795431e7faa4002e6dcdaa128e2c7b5a270f7a8e059daf749ca30a0f709bd')
+sha256sums=('e5762f1a22f6bdbb1fb36e18e27e6108489e9d0724d898c20e16cb9898309ebc')
 
 build() {
   cmake -B build -S $pkgname-$pkgver \



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

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 18:06:49
  Author: arojas
Revision: 975832

archrelease: copy trunk to community-x86_64

Added:
  bzrtp/repos/community-x86_64/PKGBUILD
(from rev 975831, bzrtp/trunk/PKGBUILD)
Deleted:
  bzrtp/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 18:06:38 UTC (rev 975831)
+++ PKGBUILD2021-07-08 18:06:49 UTC (rev 975832)
@@ -1,24 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=bzrtp
-pkgver=4.5.22
-pkgrel=1
-pkgdesc='Open source implementation of ZRTP keys exchange protocol'
-arch=(x86_64)
-url='https://github.com/BelledonneCommunications/bzrtp'
-license=(GPL2)
-depends=(libxml2 bctoolbox sqlite)
-makedepends=(bcunit cmake)
-source=(https://github.com/BelledonneCommunications/bzrtp/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('6d21305d542d58fd12aa6d555277f966b2c9a70e2ab869ce9a094224b219557f')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_STATIC=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: bzrtp/repos/community-x86_64/PKGBUILD (from rev 975831, 
bzrtp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 18:06:49 UTC (rev 975832)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=bzrtp
+pkgver=5.0.0
+pkgrel=1
+pkgdesc='Open source implementation of ZRTP keys exchange protocol'
+arch=(x86_64)
+url='https://github.com/BelledonneCommunications/bzrtp'
+license=(GPL2)
+depends=(libxml2 bctoolbox sqlite)
+makedepends=(bcunit cmake)
+source=(https://github.com/BelledonneCommunications/bzrtp/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('9fe37f3d927216ae6a84339f73a7c2428c54087924172c65931c0808834a4741')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_STATIC=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 18:06:38
  Author: arojas
Revision: 975831

Update to 5.0.0

Modified:
  bzrtp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 18:03:39 UTC (rev 975830)
+++ PKGBUILD2021-07-08 18:06:38 UTC (rev 975831)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=bzrtp
-pkgver=4.5.22
+pkgver=5.0.0
 pkgrel=1
 pkgdesc='Open source implementation of ZRTP keys exchange protocol'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(libxml2 bctoolbox sqlite)
 makedepends=(bcunit cmake)
 
source=(https://github.com/BelledonneCommunications/bzrtp/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('6d21305d542d58fd12aa6d555277f966b2c9a70e2ab869ce9a094224b219557f')
+sha256sums=('9fe37f3d927216ae6a84339f73a7c2428c54087924172c65931c0808834a4741')
 
 build() {
   cmake -B build -S $pkgname-$pkgver \



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

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 18:03:39
  Author: arojas
Revision: 975830

archrelease: copy trunk to community-x86_64

Added:
  bctoolbox/repos/community-x86_64/PKGBUILD
(from rev 975829, bctoolbox/trunk/PKGBUILD)
Deleted:
  bctoolbox/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 18:03:00 UTC (rev 975829)
+++ PKGBUILD2021-07-08 18:03:39 UTC (rev 975830)
@@ -1,25 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Sergej Pupykin 
-
-pkgname=bctoolbox
-pkgver=4.5.22
-pkgrel=1
-pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
-arch=(x86_64)
-url='https://github.com/BelledonneCommunications/bctoolbox'
-license=(GPL)
-depends=(mbedtls bcunit)
-makedepends=(cmake)
-source=(https://github.com/BelledonneCommunications/bctoolbox/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('dca15197f37a538e33a2a08c837e6ec42b8511996452c28cec017ec638336bdf')
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DENABLE_STATIC=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: bctoolbox/repos/community-x86_64/PKGBUILD (from rev 975829, 
bctoolbox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 18:03:39 UTC (rev 975830)
@@ -0,0 +1,25 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+
+pkgname=bctoolbox
+pkgver=5.0.0
+pkgrel=1
+pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
+arch=(x86_64)
+url='https://github.com/BelledonneCommunications/bctoolbox'
+license=(GPL)
+depends=(mbedtls bcunit)
+makedepends=(cmake)
+source=(https://github.com/BelledonneCommunications/bctoolbox/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('b36ac46c14380be7b25b188f3dd2e493224d3bf5bee30b172b4a78f61775c8ee')
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DENABLE_STATIC=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}



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

2021-07-08 Thread Antonio Rojas via arch-commits
Date: Thursday, July 8, 2021 @ 18:03:00
  Author: arojas
Revision: 975829

Update to 5.0.0

Modified:
  bctoolbox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 17:36:17 UTC (rev 975828)
+++ PKGBUILD2021-07-08 18:03:00 UTC (rev 975829)
@@ -2,7 +2,7 @@
 # Contributor: Sergej Pupykin 
 
 pkgname=bctoolbox
-pkgver=4.5.22
+pkgver=5.0.0
 pkgrel=1
 pkgdesc='A library written in C that allows you to create and run audio and 
video streams'
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(mbedtls bcunit)
 makedepends=(cmake)
 
source=(https://github.com/BelledonneCommunications/bctoolbox/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('dca15197f37a538e33a2a08c837e6ec42b8511996452c28cec017ec638336bdf')
+sha256sums=('b36ac46c14380be7b25b188f3dd2e493224d3bf5bee30b172b4a78f61775c8ee')
 
 build() {
   cmake -B build -S $pkgname-$pkgver \



[arch-commits] Commit in jedi-language-server/repos/community-any (PKGBUILD PKGBUILD)

2021-07-08 Thread Daniel M. Capella via arch-commits
Date: Thursday, July 8, 2021 @ 17:36:17
  Author: polyzen
Revision: 975828

archrelease: copy trunk to community-any

Added:
  jedi-language-server/repos/community-any/PKGBUILD
(from rev 975827, jedi-language-server/trunk/PKGBUILD)
Deleted:
  jedi-language-server/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 17:35:59 UTC (rev 975827)
+++ PKGBUILD2021-07-08 17:36:17 UTC (rev 975828)
@@ -1,50 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=jedi-language-server
-pkgver=0.33.1
-pkgrel=1
-pkgdesc='Language server for Jedi'
-arch=('any')
-url=https://github.com/pappasam/jedi-language-server
-license=('MIT')
-depends=('python-docstring-to-markdown' 'python-jedi' 'python-pygls')
-makedepends=('python-build' 'python-install' 'python-poetry')
-checkdepends=('python-jsonrpc-server' 'python-pyhamcrest' 'python-pytest')
-source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-b2sums=('38f394299879117ca093e5b5a2a8984459092be4063ff678d2d91664b41ccfafe16f43684bb7e5b316918af9670d77c62dfcfe051e5442f27897240d8ef41268')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # Remove include list https://github.com/pypa/wheel/issues/92
-  sed -i '/include = \["README.md"\]/d' pyproject.toml
-}
-
-build() {
-  cd $pkgname-$pkgver
-  python -m build --wheel --skip-dependency-check --no-isolation
-}
-
-check() {
-  cd $pkgname-$pkgver
-  mkdir -p temp
-  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  python -m install --optimize=1 --destdir=temp dist/*.whl
-  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$site_packages" pytest 
tests
-}
-
-package() {
-  cd $pkgname-$pkgver
-  export PYTHONHASHSEED=0
-  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
-
-  # https://github.com/FFY00/python-install/pull/6
-  chmod +x "$pkgdir"/usr/bin/*
-
-  # Symlink license file
-  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
-  install -d "$pkgdir"/usr/share/licenses/$pkgname
-  ln -s $site_packages/${pkgname//-/_}-$pkgver.dist-info/LICENSE \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: jedi-language-server/repos/community-any/PKGBUILD (from rev 975827, 
jedi-language-server/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 17:36:17 UTC (rev 975828)
@@ -0,0 +1,50 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=jedi-language-server
+pkgver=0.34.0
+pkgrel=1
+pkgdesc='Language server for Jedi'
+arch=('any')
+url=https://github.com/pappasam/jedi-language-server
+license=('MIT')
+depends=('python-docstring-to-markdown' 'python-jedi' 'python-pygls')
+makedepends=('python-build' 'python-install' 'python-poetry')
+checkdepends=('python-jsonrpc-server' 'python-pyhamcrest' 'python-pytest')
+source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
+b2sums=('feba92484c9b2c15c65bae97c69c35754a71349c47521941099aad6c69c148132a22a7aa639ee49a17ed9e2903f3b5347fb17b1c2ba6c2f1e8ffd2a51f0bfe23')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # Remove include list https://github.com/pypa/wheel/issues/92
+  sed -i '/include = \["README.md"\]/d' pyproject.toml
+}
+
+build() {
+  cd $pkgname-$pkgver
+  python -m build --wheel --skip-dependency-check --no-isolation
+}
+
+check() {
+  cd $pkgname-$pkgver
+  mkdir -p temp
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  python -m install --optimize=1 --destdir=temp dist/*.whl
+  PATH="$PWD/temp/usr/bin:$PATH" PYTHONPATH="$PWD/temp/$site_packages" pytest 
tests
+}
+
+package() {
+  cd $pkgname-$pkgver
+  export PYTHONHASHSEED=0
+  python -m install --optimize=1 --destdir="$pkgdir" dist/*.whl
+
+  # https://github.com/FFY00/python-install/pull/6
+  chmod +x "$pkgdir"/usr/bin/*
+
+  # Symlink license file
+  local site_packages=$(python -c "import site; 
print(site.getsitepackages()[0])")
+  install -d "$pkgdir"/usr/share/licenses/$pkgname
+  ln -s $site_packages/${pkgname//-/_}-$pkgver.dist-info/LICENSE \
+"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



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

2021-07-08 Thread Daniel M. Capella via arch-commits
Date: Thursday, July 8, 2021 @ 17:35:59
  Author: polyzen
Revision: 975827

upgpkg: jedi-language-server 0.34.0-1

Modified:
  jedi-language-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 17:35:21 UTC (rev 975826)
+++ PKGBUILD2021-07-08 17:35:59 UTC (rev 975827)
@@ -1,7 +1,7 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=jedi-language-server
-pkgver=0.33.1
+pkgver=0.34.0
 pkgrel=1
 pkgdesc='Language server for Jedi'
 arch=('any')
@@ -11,7 +11,7 @@
 makedepends=('python-build' 'python-install' 'python-poetry')
 checkdepends=('python-jsonrpc-server' 'python-pyhamcrest' 'python-pytest')
 source=("$url/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
-b2sums=('38f394299879117ca093e5b5a2a8984459092be4063ff678d2d91664b41ccfafe16f43684bb7e5b316918af9670d77c62dfcfe051e5442f27897240d8ef41268')
+b2sums=('feba92484c9b2c15c65bae97c69c35754a71349c47521941099aad6c69c148132a22a7aa639ee49a17ed9e2903f3b5347fb17b1c2ba6c2f1e8ffd2a51f0bfe23')
 
 prepare() {
   cd $pkgname-$pkgver



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

2021-07-08 Thread David Runge via arch-commits
Date: Thursday, July 8, 2021 @ 17:35:21
  Author: dvzrv
Revision: 975826

archrelease: copy trunk to community-staging-x86_64

Added:
  adlplug/repos/community-staging-x86_64/
  adlplug/repos/community-staging-x86_64/PKGBUILD
(from rev 975825, adlplug/trunk/PKGBUILD)

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

Copied: adlplug/repos/community-staging-x86_64/PKGBUILD (from rev 975825, 
adlplug/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2021-07-08 17:35:21 UTC (rev 975826)
@@ -0,0 +1,78 @@
+# Maintainer: David Runge 
+
+_name=ADLplug
+pkgbase=adlplug
+pkgname=('adlplug' 'opnplug')
+pkgver=1.0.2
+pkgrel=3
+pkgdesc="FM synthesizer plugins, based on OPL3 and OPN2 sound chip emulations"
+arch=('x86_64')
+url="https://github.com/jpcima/ADLplug;
+license=('Boost' 'GPL2' 'GPL3' 'LGPL2.1')
+groups=('pro-audio' 'lv2-plugins' 'vst-plugins')
+# TODO: devendor simpleini, if feasible
+depends=('gcc-libs' 'glibc' 'hicolor-icon-theme' 'libx11' 'libxext')
+makedepends=('alsa-lib' 'cmake' 'fmt' 'freetype2' 'jack' 'liblo' 'libxrandr'
+'libxinerama' 'libxcursor')
+source=("https://github.com/jpcima/${pkgbase}/releases/download/v${pkgver}/${_name}-${pkgver}.tar.xz;
+
"${pkgbase}-1.0.1-gcc9.patch::https://github.com/WeAreROLI/JUCE/commit/4e0adb2af8b424c43d22bd431011c9a6c57d36b6.patch;)
+sha512sums=('53192a622de528d4dd06dbd8411b5d1ba8346e9f181fd160fa14c2cf402a819ff354212ced59e13b11738ef6bf696cb0927a67c2e97ef94ade70acb29807f5cc'
+
'263fe21e7362f4b8c4009d33e8a086ddf57ddd44267343b924f1304a58580a38e6bd2d36c9548ec706be733476d27e5c89f8095f401b9b841ade63d9cb812a77')
+b2sums=('ea049a6373fdd05f6401766f077819de704748055569a67aabb27e6064d922a28f635d8322914a5c418875b09a0152efa3ac4a3ae32400b12e31ae10166ceffb'
+
'356fe202072436cab89fdde3a06a5140d286d7636b663f32432f36b98170bef1aa7a931aeb6bedb2ff4d6b8f4b4c730f1760211b2fa9b709fe30bfedbe8df62f')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgbase-$pkgver"
+  cd "$pkgbase-$pkgver"
+  # fix build with gcc9: https://github.com/jpcima/ADLplug/issues/54
+  (
+cd thirdparty/JUCE
+patch -Np1 -i "${srcdir}/${pkgbase}-1.0.1-gcc9.patch"
+  )
+}
+
+build() {
+  cd "$pkgbase-$pkgver"
+  # build opl3
+  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_BUILD_TYPE='None' \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DADLplug_CHIP=OPL3 \
+-DADLplug_USE_SYSTEM_FMT=ON \
+-W no-dev \
+-B "build-${pkgname[0]}" \
+-S .
+  make VERBOSE=1 -C "build-${pkgname[0]}"
+  # build opn2
+  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_BUILD_TYPE='None' \
+-DCMAKE_INSTALL_LIBDIR=/usr/lib \
+-DADLplug_CHIP=OPN2 \
+-DADLplug_USE_SYSTEM_FMT=ON \
+-W no-dev \
+-B "build-${pkgname[1]}" \
+-S .
+  make VERBOSE=1 -C "build-${pkgname[1]}"
+}
+
+package_adlplug() {
+  pkgdesc="FM synthesizer for ADLMIDI with OPL3 chip emulation"
+  depends+=('libasound.so' 'libfmt.so' 'libfreetype.so')
+  optdepends=('jack: for the standalone application'
+  'liblo: for new-session-manager support'
+  'new-session-manager: for session management')
+  cd "$pkgbase-$pkgver"
+  make VERBOSE=1 DESTDIR="$pkgdir/" install -C "build-${pkgname}"
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+package_opnplug() {
+  pkgdesc="FM synthesizer for OPNMIDI with OPN2 chip emulation"
+  depends+=('libasound.so' 'libfmt.so' 'libfreetype.so')
+  optdepends=('jack: for the standalone application'
+  'liblo: for new-session-manager support'
+  'new-session-manager: for session management')
+  cd "$pkgbase-$pkgver"
+  make VERBOSE=1 DESTDIR="$pkgdir/" install -C "build-${pkgname}"
+  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
+}



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

2021-07-08 Thread David Runge via arch-commits
Date: Thursday, July 8, 2021 @ 17:35:11
  Author: dvzrv
Revision: 975825

upgpkg: adlplug 1.0.2-3: Rebuild against fmt 8.0.0.

Modified:
  adlplug/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2021-07-08 17:33:42 UTC (rev 975824)
+++ PKGBUILD2021-07-08 17:35:11 UTC (rev 975825)
@@ -4,7 +4,7 @@
 pkgbase=adlplug
 pkgname=('adlplug' 'opnplug')
 pkgver=1.0.2
-pkgrel=2
+pkgrel=3
 pkgdesc="FM synthesizer plugins, based on OPL3 and OPN2 sound chip emulations"
 arch=('x86_64')
 url="https://github.com/jpcima/ADLplug;



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

2021-07-08 Thread Daniel M. Capella via arch-commits
Date: Thursday, July 8, 2021 @ 17:33:42
  Author: polyzen
Revision: 975824

archrelease: copy trunk to community-x86_64

Added:
  efm-langserver/repos/community-x86_64/PKGBUILD
(from rev 975823, efm-langserver/trunk/PKGBUILD)
Deleted:
  efm-langserver/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2021-07-08 17:33:24 UTC (rev 975823)
+++ PKGBUILD2021-07-08 17:33:42 UTC (rev 975824)
@@ -1,37 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: dianlujitao 
-
-pkgname=efm-langserver
-pkgver=0.0.31
-pkgrel=1
-pkgdesc='General purpose Language Server'
-arch=('x86_64')
-url=https://github.com/mattn/efm-langserver
-license=('MIT')
-depends=('glibc')
-makedepends=('go')
-optdepends=('ctags: for "go to definition" requests')
-source=("$url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
-b2sums=('319976fc4a20ec2786ef682fe7399f43d846c66811e889ddb689278343a7d6226bd3ee459ab112c50aa226893fc6852dded039abb0df6646637631f7738fbe60')
-
-build() {
-  cd $pkgname-$pkgver
-  export CGO_CPPFLAGS="$CPPFLAGS"
-  export CGO_CFLAGS="$CFLAGS"
-  export CGO_CXXFLAGS="$CXXFLAGS"
-  export CGO_LDFLAGS="$LDFLAGS"
-  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
-  go build .
-}
-
-check() {
-  cd $pkgname-$pkgver
-  go test -v ./...
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dt "$pkgdir"/usr/bin efm-langserver
-}
-
-# vim:set sw=2 et:

Copied: efm-langserver/repos/community-x86_64/PKGBUILD (from rev 975823, 
efm-langserver/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2021-07-08 17:33:42 UTC (rev 975824)
@@ -0,0 +1,37 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: dianlujitao 
+
+pkgname=efm-langserver
+pkgver=0.0.33
+pkgrel=1
+pkgdesc='General purpose Language Server'
+arch=('x86_64')
+url=https://github.com/mattn/efm-langserver
+license=('MIT')
+depends=('glibc')
+makedepends=('go')
+optdepends=('ctags: for "go to definition" requests')
+source=("$url/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
+b2sums=('c39406b44803f610e101698a090dac67f9c258b580dae532e4059ba6a31795e825f3ae96eb8b1ee1979e73382f9c5721ecbebc278694adba62f526f27a86e66b')
+
+build() {
+  cd $pkgname-$pkgver
+  export CGO_CPPFLAGS="$CPPFLAGS"
+  export CGO_CFLAGS="$CFLAGS"
+  export CGO_CXXFLAGS="$CXXFLAGS"
+  export CGO_LDFLAGS="$LDFLAGS"
+  export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external 
-mod=readonly -modcacherw"
+  go build .
+}
+
+check() {
+  cd $pkgname-$pkgver
+  go test -v ./...
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -Dt "$pkgdir"/usr/bin efm-langserver
+}
+
+# vim:set sw=2 et:



  1   2   3   4   5   >