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

2020-03-06 Thread Jan Steffens via arch-commits
Date: Saturday, March 7, 2020 @ 02:16:02
  Author: heftig
Revision: 376874

archrelease: copy trunk to testing-x86_64

Added:
  nss/repos/testing-x86_64/
  nss/repos/testing-x86_64/PKGBUILD
(from rev 376873, nss/trunk/PKGBUILD)
  nss/repos/testing-x86_64/bundle.sh
(from rev 376873, nss/trunk/bundle.sh)
  nss/repos/testing-x86_64/certdata2pem.py
(from rev 376873, nss/trunk/certdata2pem.py)

-+
 PKGBUILD|   90 +++
 bundle.sh   |   22 ++
 certdata2pem.py |  413 ++
 3 files changed, 525 insertions(+)

Copied: nss/repos/testing-x86_64/PKGBUILD (from rev 376873, nss/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-03-07 02:16:02 UTC (rev 376874)
@@ -0,0 +1,90 @@
+# Maintainer: Jan de Groot 
+
+pkgbase=nss
+pkgname=(nss ca-certificates-mozilla)
+pkgver=3.51
+pkgrel=1
+pkgdesc="Network Security Services"
+url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS";
+arch=(x86_64)
+license=(MPL GPL)
+_nsprver=4.25
+depends=("nspr>=${_nsprver}" sqlite zlib sh 'p11-kit>=0.23.19')
+makedepends=(perl python gyp)
+source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz";
+certdata2pem.py bundle.sh)
+sha256sums=('75348b3b3229362486c57a880db917da1f96ef4eb639dc9cc2ff17d72268459c'
+'d2a1579dae05fd16175fac27ef08b54731ecefdf414085c610179afcf62b096c'
+'3bfadf722da6773bdabdd25bdf78158648043d1b7e57615574f189a88ca865dd')
+
+prepare() {
+  mkdir certs
+
+  cd nss-$pkgver
+  ln -sr nss/lib/ckfw/builtins/certdata.txt ../certs/
+  ln -sr nss/lib/ckfw/builtins/nssckbi.h ../certs/
+}
+
+build() {
+  cd certs
+  ../certdata2pem.py
+
+  cd ..
+  ./bundle.sh
+
+  cd nss-$pkgver/nss
+  ./build.sh -v --opt --system-sqlite --system-nspr --enable-libpkix 
--disable-tests
+}
+
+package_nss() {
+  local vmajor vminor vpatch
+  cd nss-$pkgver
+
+  { read vmajor; read vminor; read vpatch; } \
+< <(awk '/#define.*NSS_V(MAJOR|MINOR|PATCH)/ {print $3}' nss/lib/nss/nss.h)
+
+  sed nss/pkg/pkg-config/nss.pc.in \
+-e "s,%libdir%,/usr/lib,g" \
+-e "s,%prefix%,/usr,g" \
+-e "s,%exec_prefix%,/usr/bin,g" \
+-e "s,%includedir%,/usr/include/nss,g" \
+-e "s,%NSPR_VERSION%,$_nsprver,g" \
+-e "s,%NSS_VERSION%,$pkgver,g" |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib/pkgconfig/nss.pc"
+
+  ln -s nss.pc "$pkgdir/usr/lib/pkgconfig/mozilla-nss.pc"
+
+  sed nss/pkg/pkg-config/nss-config.in \
+-e "s,@libdir@,/usr/lib,g" \
+-e "s,@prefix@,/usr/bin,g" \
+-e "s,@exec_prefix@,/usr/bin,g" \
+-e "s,@includedir@,/usr/include/nss,g" \
+-e "s,@MOD_MAJOR_VERSION@,$vmajor,g" \
+-e "s,@MOD_MINOR_VERSION@,$vminor,g" \
+-e "s,@MOD_PATCH_VERSION@,$vpatch,g" |
+install -D /dev/stdin "$pkgdir/usr/bin/nss-config"
+
+  cd nss/doc/nroff
+  install -Dt "$pkgdir/usr/share/man/man1" -m644 *util.1 signtool.1 signver.1 
ssltap.1
+
+  cd ../../../dist
+  install -Dt "$pkgdir/usr/include/nss" -m644 public/nss/*.h
+
+  cd Release/bin
+  install -Dt "$pkgdir/usr/bin" *util shlibsign signtool signver ssltap
+
+  cd ../lib
+  install -Dt "$pkgdir/usr/lib" *.so
+  install -Dt "$pkgdir/usr/lib" -m644 *.chk
+
+  # Replace built-in trust with p11-kit connection
+  ln -sf pkcs11/p11-kit-trust.so "$pkgdir/usr/lib/libnssckbi.so"
+}
+
+package_ca-certificates-mozilla() {
+  pkgdesc="Mozilla's set of trusted CA certificates"
+  depends=('ca-certificates-utils>=20181109-3')
+
+  install -Dm644 ca-bundle.trust.p11-kit \
+"$pkgdir/usr/share/ca-certificates/trust-source/mozilla.trust.p11-kit"
+}

Copied: nss/repos/testing-x86_64/bundle.sh (from rev 376873, 
nss/trunk/bundle.sh)
===
--- testing-x86_64/bundle.sh(rev 0)
+++ testing-x86_64/bundle.sh2020-03-07 02:16:02 UTC (rev 376874)
@@ -0,0 +1,22 @@
+#!/bin/sh
+# From Fedora's ca-certificates.spec
+
+(
+  cat < ca-bundle.trust.p11-kit
+
+for p in certs/*.tmp-p11-kit; do 
+  cat "$p" >> ca-bundle.trust.p11-kit
+done

Copied: nss/repos/testing-x86_64/certdata2pem.py (from rev 376873, 
nss/trunk/certdata2pem.py)
===
--- testing-x86_64/certdata2pem.py  (rev 0)
+++ testing-x86_64/certdata2pem.py  2020-03-07 02:16:02 UTC (rev 376874)
@@ -0,0 +1,413 @@
+#!/usr/bin/python
+# vim:set et sw=4:
+#
+# certdata2pem.py - splits certdata.txt into multiple files
+#
+# Copyright (C) 2009 Philipp Kern 
+# Copyright (C) 2013 Kai Engert 
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This prog

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

2020-03-06 Thread Jan Steffens via arch-commits
Date: Saturday, March 7, 2020 @ 02:15:55
  Author: heftig
Revision: 591062

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-nss/repos/multilib-testing-x86_64/
  lib32-nss/repos/multilib-testing-x86_64/PKGBUILD
(from rev 591061, lib32-nss/trunk/PKGBUILD)
  lib32-nss/repos/multilib-testing-x86_64/no-plt.diff
(from rev 591061, lib32-nss/trunk/no-plt.diff)

-+
 PKGBUILD|   59 ++
 no-plt.diff |   48 +++
 2 files changed, 107 insertions(+)

Copied: lib32-nss/repos/multilib-testing-x86_64/PKGBUILD (from rev 591061, 
lib32-nss/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2020-03-07 02:15:55 UTC (rev 591062)
@@ -0,0 +1,59 @@
+# Maintainer: Daniel Wallace 
+# Contributor: kfgz 
+# Contributor: Ionut Biru 
+
+pkgname=lib32-nss
+pkgver=3.51
+pkgrel=1
+pkgdesc="Network Security Services (32-bit)"
+url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS";
+arch=(x86_64)
+license=(MPL GPL)
+_nsprver=4.25
+depends=("lib32-nspr>=${_nsprver}" lib32-sqlite lib32-zlib 
'lib32-p11-kit>=0.23.19' nss)
+makedepends=(perl python2 gyp)
+source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz";
+no-plt.diff)
+sha256sums=('75348b3b3229362486c57a880db917da1f96ef4eb639dc9cc2ff17d72268459c'
+'ea8e1b871c0f1dd29cdea1b1a2e7f47bf4713e2ae7b947ec832dba7dfcc67daa')
+
+prepare() {
+  mkdir path
+
+  ln -s /usr/bin/python2 path/python
+
+  cd nss-$pkgver
+
+  # https://bugzilla.mozilla.org/show_bug.cgi?id=1382942
+  patch -Np2 -i ../no-plt.diff
+}
+
+build() {
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd nss-$pkgver/nss
+  PATH="$srcdir/path:$PATH" bash -x ./build.sh -v \
+--m32 --opt --system-sqlite --system-nspr --enable-libpkix --disable-tests
+}
+
+package() {
+  cd nss-$pkgver
+
+  sed nss/pkg/pkg-config/nss.pc.in \
+-e "s,%libdir%,/usr/lib32,g" \
+-e "s,%prefix%,/usr,g" \
+-e "s,%exec_prefix%,/usr/bin,g" \
+-e "s,%includedir%,/usr/include/nss,g" \
+-e "s,%NSPR_VERSION%,$_nsprver,g" \
+-e "s,%NSS_VERSION%,$pkgver,g" |
+install -Dm644 /dev/stdin "$pkgdir/usr/lib32/pkgconfig/nss.pc"
+
+  ln -s nss.pc "$pkgdir/usr/lib32/pkgconfig/mozilla-nss.pc"
+
+  cd dist/Release/lib
+  install -Dt "$pkgdir/usr/lib32" *.so
+  install -Dt "$pkgdir/usr/lib32" -m644 *.chk
+
+  # Replace built-in trust with p11-kit connection
+  ln -sf pkcs11/p11-kit-trust.so "$pkgdir/usr/lib32/libnssckbi.so"
+}

Copied: lib32-nss/repos/multilib-testing-x86_64/no-plt.diff (from rev 591061, 
lib32-nss/trunk/no-plt.diff)
===
--- multilib-testing-x86_64/no-plt.diff (rev 0)
+++ multilib-testing-x86_64/no-plt.diff 2020-03-07 02:15:55 UTC (rev 591062)
@@ -0,0 +1,48 @@
+diff --git i/security/nss/lib/freebl/mpi/mpi_x86.s 
w/security/nss/lib/freebl/mpi/mpi_x86.s
+index 8f7e2130c3264754..b3ca1ce5b41b3771 100644
+--- i/security/nss/lib/freebl/mpi/mpi_x86.s
 w/security/nss/lib/freebl/mpi/mpi_x86.s
+@@ -22,22 +22,41 @@ is_sse: .long  -1
+ #
+ .ifndef NO_PIC
+ .macro GET   var,reg
+-movl   \var@GOTOFF(%ebx),\reg
++call   thunk.ax
++addl   $_GLOBAL_OFFSET_TABLE_, %eax
++movl   \var@GOTOFF(%eax),\reg
+ .endm
+ .macro PUT   reg,var
+-movl   \reg,\var@GOTOFF(%ebx)
++call   thunk.dx
++addl   $_GLOBAL_OFFSET_TABLE_, %edx
++movl   \reg,\var@GOTOFF(%edx)
+ .endm
+ .else
+ .macro GET   var,reg
+ movl   \var,\reg
+ .endm
+ .macro PUT   reg,var
+ movl   \reg,\var
+ .endm
+ .endif
+ 
+ .text
+ 
++.ifndef NO_PIC
++.globlthunk.ax
++.hidden   thunk.ax
++.type thunk.ax, @function
++thunk.ax:
++   movl   (%esp),%eax
++   ret
++
++.globlthunk.dx
++.hidden   thunk.dx
++.type thunk.dx, @function
++thunk.dx:
++   movl   (%esp),%edx
++   ret
++.endif
+ 
+  #  ebp - 36: caller's esi
+  #  ebp - 32: caller's edi


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

2020-03-06 Thread Jan Steffens via arch-commits
Date: Saturday, March 7, 2020 @ 02:15:27
  Author: heftig
Revision: 591061

3.51-1

Modified:
  lib32-nss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 22:42:20 UTC (rev 591060)
+++ PKGBUILD2020-03-07 02:15:27 UTC (rev 591061)
@@ -3,7 +3,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=lib32-nss
-pkgver=3.50
+pkgver=3.51
 pkgrel=1
 pkgdesc="Network Security Services (32-bit)"
 url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS";
@@ -14,7 +14,7 @@
 makedepends=(perl python2 gyp)
 
source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz";
 no-plt.diff)
-sha256sums=('185df319775243f5f5daa9d49b7f9cc5f2b389435be3247c3376579bee063ba7'
+sha256sums=('75348b3b3229362486c57a880db917da1f96ef4eb639dc9cc2ff17d72268459c'
 'ea8e1b871c0f1dd29cdea1b1a2e7f47bf4713e2ae7b947ec832dba7dfcc67daa')
 
 prepare() {


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

2020-03-06 Thread Jan Steffens via arch-commits
Date: Saturday, March 7, 2020 @ 02:15:25
  Author: heftig
Revision: 376873

3.51-1

Modified:
  nss/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 21:27:58 UTC (rev 376872)
+++ PKGBUILD2020-03-07 02:15:25 UTC (rev 376873)
@@ -2,7 +2,7 @@
 
 pkgbase=nss
 pkgname=(nss ca-certificates-mozilla)
-pkgver=3.50
+pkgver=3.51
 pkgrel=1
 pkgdesc="Network Security Services"
 url="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS";
@@ -13,7 +13,7 @@
 makedepends=(perl python gyp)
 
source=("https://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/nss-${pkgver}.tar.gz";
 certdata2pem.py bundle.sh)
-sha256sums=('185df319775243f5f5daa9d49b7f9cc5f2b389435be3247c3376579bee063ba7'
+sha256sums=('75348b3b3229362486c57a880db917da1f96ef4eb639dc9cc2ff17d72268459c'
 'd2a1579dae05fd16175fac27ef08b54731ecefdf414085c610179afcf62b096c'
 '3bfadf722da6773bdabdd25bdf78158648043d1b7e57615574f189a88ca865dd')
 


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

2020-03-06 Thread Antonio Rojas via arch-commits
Date: Friday, March 6, 2020 @ 22:42:20
  Author: arojas
Revision: 591060

archrelease: copy trunk to community-x86_64

Added:
  sirocco/repos/community-x86_64/PKGBUILD
(from rev 591059, sirocco/trunk/PKGBUILD)
Deleted:
  sirocco/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 22:41:57 UTC (rev 591059)
+++ PKGBUILD2020-03-06 22:42:20 UTC (rev 591060)
@@ -1,24 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=sirocco
-pkgver=2.0
-pkgrel=2
-pkgdesc="C++ library that allows to compute piecewise linear approximations of 
the path followed by the root of a complex polynomial"
-arch=(x86_64)
-url="https://iuma.unizar.es/es/investigacion/software/sirocco";
-license=(GPL3)
-depends=(mpfr)
-source=("https://iuma.unizar.es/sites/default/files/software/libsirocco-$pkgver.tar_.gz";)
-sha256sums=('9f4faf8dd1a7645e049e2dae20f4fe3f2c929f998aadd1a4c07c75678982645d')
-
-build() {
-  cd libsirocco-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd libsirocco-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-

Copied: sirocco/repos/community-x86_64/PKGBUILD (from rev 591059, 
sirocco/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 22:42:20 UTC (rev 591060)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=sirocco
+pkgver=2.0.2
+pkgrel=1
+pkgdesc="C++ library that allows to compute piecewise linear approximations of 
the path followed by the root of a complex polynomial"
+arch=(x86_64)
+url="https://iuma.unizar.es/es/investigacion/software/sirocco";
+license=(GPL3)
+depends=(mpfr)
+source=("https://github.com/miguelmarco/SIROCCO2/releases/download/$pkgver/libsirocco-$pkgver.tar.gz";)
+sha256sums=('ada9f833d1bc719a0429209130c0b265f3f755819e555d0e16bc4e234ab421af')
+
+build() {
+  cd libsirocco-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd libsirocco-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+


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

2020-03-06 Thread Antonio Rojas via arch-commits
Date: Friday, March 6, 2020 @ 22:41:57
  Author: arojas
Revision: 591059

Update to 2.0.2

Modified:
  sirocco/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 22:32:14 UTC (rev 591058)
+++ PKGBUILD2020-03-06 22:41:57 UTC (rev 591059)
@@ -1,15 +1,15 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=sirocco
-pkgver=2.0
-pkgrel=2
+pkgver=2.0.2
+pkgrel=1
 pkgdesc="C++ library that allows to compute piecewise linear approximations of 
the path followed by the root of a complex polynomial"
 arch=(x86_64)
 url="https://iuma.unizar.es/es/investigacion/software/sirocco";
 license=(GPL3)
 depends=(mpfr)
-source=("https://iuma.unizar.es/sites/default/files/software/libsirocco-$pkgver.tar_.gz";)
-sha256sums=('9f4faf8dd1a7645e049e2dae20f4fe3f2c929f998aadd1a4c07c75678982645d')
+source=("https://github.com/miguelmarco/SIROCCO2/releases/download/$pkgver/libsirocco-$pkgver.tar.gz";)
+sha256sums=('ada9f833d1bc719a0429209130c0b265f3f755819e555d0e16bc4e234ab421af')
 
 build() {
   cd libsirocco-$pkgver


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

2020-03-06 Thread Daniel M. Capella via arch-commits
Date: Friday, March 6, 2020 @ 22:32:14
  Author: polyzen
Revision: 591058

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 22:31:54 UTC (rev 591057)
+++ PKGBUILD2020-03-06 22:32:14 UTC (rev 591058)
@@ -1,20 +0,0 @@
-# Maintainer: Daniel M. Capella 
-# Contributor: Jérémie Detrey 
-
-pkgname=firefox-tree-style-tab
-pkgver=3.3.6
-pkgrel=1
-pkgdesc='Firefox extension to show tabs like a tree'
-arch=('any')
-license=('MPL' 'MPL2')
-groups=('firefox-addons')
-url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
-source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab_-$pkgver-fx.xpi";)
-noextract=("${source##*/}")
-sha256sums=('f9c7c9328235574bde578d006114192457f6322d80d4f322495c0406b34b0425')
-
-package() {
-  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
-}
-
-# vim:set ts=2 sw=2 et:

Copied: firefox-tree-style-tab/repos/community-any/PKGBUILD (from rev 591057, 
firefox-tree-style-tab/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 22:32:14 UTC (rev 591058)
@@ -0,0 +1,20 @@
+# Maintainer: Daniel M. Capella 
+# Contributor: Jérémie Detrey 
+
+pkgname=firefox-tree-style-tab
+pkgver=3.4.1
+pkgrel=1
+pkgdesc='Firefox extension to show tabs like a tree'
+arch=('any')
+license=('MPL' 'MPL2')
+groups=('firefox-addons')
+url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
+source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab_-$pkgver-fx.xpi";)
+noextract=("${source##*/}")
+sha256sums=('e92df4615c9f6be7d31c45dc92220ac0a3dc5caa5fb25119e0cda6e18f2cb70f')
+
+package() {
+  install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-03-06 Thread Daniel M. Capella via arch-commits
Date: Friday, March 6, 2020 @ 22:31:54
  Author: polyzen
Revision: 591057

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

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

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 21:47:34 UTC (rev 591056)
+++ PKGBUILD2020-03-06 22:31:54 UTC (rev 591057)
@@ -2,7 +2,7 @@
 # Contributor: Jérémie Detrey 
 
 pkgname=firefox-tree-style-tab
-pkgver=3.3.6
+pkgver=3.4.1
 pkgrel=1
 pkgdesc='Firefox extension to show tabs like a tree'
 arch=('any')
@@ -11,7 +11,7 @@
 url=https://piro.sakura.ne.jp/xul/_treestyletab.html.en
 
source=("https://addons.cdn.mozilla.net/user-media/addons/5890/tree_style_tab_-$pkgver-fx.xpi";)
 noextract=("${source##*/}")
-sha256sums=('f9c7c9328235574bde578d006114192457f6322d80d4f322495c0406b34b0425')
+sha256sums=('e92df4615c9f6be7d31c45dc92220ac0a3dc5caa5fb25119e0cda6e18f2cb70f')
 
 package() {
   install -Dm644 "${source##*/}" 
"$pkgdir"/usr/lib/firefox/browser/extensions/treestyle...@piro.sakura.ne.jp.xpi


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

2020-03-06 Thread Santiago Torres-Arias via arch-commits
Date: Friday, March 6, 2020 @ 21:47:34
  Author: sangy
Revision: 591056

archrelease: copy trunk to community-x86_64

Added:
  signal-desktop/repos/community-x86_64/PKGBUILD
(from rev 591055, signal-desktop/trunk/PKGBUILD)
  signal-desktop/repos/community-x86_64/TRADEMARK_CONSENT.txt
(from rev 591055, signal-desktop/trunk/TRADEMARK_CONSENT.txt)
  signal-desktop/repos/community-x86_64/expire-from-source-date-epoch.patch
(from rev 591055, signal-desktop/trunk/expire-from-source-date-epoch.patch)
  signal-desktop/repos/community-x86_64/openssl-linking.patch
(from rev 591055, signal-desktop/trunk/openssl-linking.patch)
  signal-desktop/repos/community-x86_64/signal-desktop.desktop
(from rev 591055, signal-desktop/trunk/signal-desktop.desktop)
Deleted:
  signal-desktop/repos/community-x86_64/PKGBUILD
  signal-desktop/repos/community-x86_64/TRADEMARK_CONSENT.txt
  signal-desktop/repos/community-x86_64/expire-from-source-date-epoch.patch
  signal-desktop/repos/community-x86_64/openssl-linking.patch
  signal-desktop/repos/community-x86_64/signal-desktop.desktop

-+
 PKGBUILD|  186 +-
 expire-from-source-date-epoch.patch |   26 ++--
 openssl-linking.patch   |   38 +++---
 signal-desktop.desktop  |   18 +--
 4 files changed, 134 insertions(+), 134 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 21:46:23 UTC (rev 591055)
+++ PKGBUILD2020-03-06 21:47:34 UTC (rev 591056)
@@ -1,93 +0,0 @@
-# Maintainer: kpcyrd 
-# Contributor: Jean Lucas 
-
-pkgname=signal-desktop
-_pkgname=Signal-Desktop
-pkgver=1.32.0
-pkgrel=1
-pkgdesc="Electron application that links with Signal on mobile"
-license=('GPL3')
-replaces=('signal-desktop-bin')
-arch=('x86_64')
-url="https://signal.org";
-depends=('electron' 'libvips')
-makedepends=('yarn' 'git' 'nodejs' 'npm' 'python')
-source=(
-  
"${pkgname}-${pkgver}.tar.gz::https://github.com/signalapp/${_pkgname}/archive/v${pkgver}.tar.gz";
-  "${pkgname}.desktop"
-  "openssl-linking.patch"
-  "expire-from-source-date-epoch.patch"
-  # Cherry-pick a specific commit for the node-spellchecker dependency
-  # See https://github.com/atom/node-spellchecker/issues/127
-  
"https://github.com/atom/node-spellchecker/archive/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz";
-)
-sha512sums=('b872eb3480b2faf6a2fbb6bd91154405ed9daa52ccf3a48a030cdf35ffaa1948b74c35e59249352776a4fd553e95e63d20088055fbd4f133bfb7b4ab161b1491'
-
'c5ec0bf524e527ecf94207ef6aa1f2671346e115ec15de6d063cde0960151813752a1814e003705fc1a99d4e2eae1b3ca4d03432a50790957186e240527cc361'
-
'6b846fdf70dae6c4657de523ec133d2f08325740863660b86e75d032bb07a4b97834ba0eeea4c77000c2c20b11739b8e8deaf06584f9279638e640c4b7633dd5'
-
'6673066172d6c367961f3e2d762dd483e51a9f733d52e27d0569b333ad397375fd41d61b8a414b8c9e8dbba560a6c710678b3d105f8d285cb94d70561368d5a2'
-
'42f57802fa91dafb6dbfb5a3f613c4c07df65e97f8da84c9a54292c97a4d170f8455461aac8f6f7819d1ffbea4bf6c28488f8950056ba988776d060be3f107dd')
-b2sums=('cbfe95fe6317a012bcb3600f67ac9b92f5fdf1906b5e426b0ac89e808f1a2328ea8d7679bf9c5732ecc19b3e30429308e0acb1f9fd9b2018279126838d87684b'
-
'c0ceb5b903965727714b1848c818877f4b740c4734deafcfaf777046002a445d79cd4d86bbbf3d763dbda8e8d542b60605ae2ca43196ea76b089f2e808926dbc'
-
'91fe76cd2ef32bd523aa857a219209f93ca5a6a3f5caa35f67c489a8eb79c8e1e404f453bed9e866e543ed48b9df8e17b45ad2ea8891b48d1502a97589a144af'
-
'b8171e6d881a6ffd5588d1cae00ed81412eff1602670003fc1f48b7e6cb2d680340d464b7b38ee8886a8bd8193166ad71e3ad10b0de8b2a397b383b72434e289'
-
'53ad39f0bed69c5c5635d2e581f4ce56e3080fee16f184add08adee1164c2d68059d52071478a05cdacf04186f9964250f46f09e80553bf35e1f2f4cd1976d1b')
-
-prepare() {
-  cd "${_pkgname}-${pkgver}"
-
-  # Fix SpellChecker build with imminent Node 13
-  # See https://github.com/atom/node-spellchecker/issues/127
-  sed -r 's#("spellchecker": 
").*"#\1file:'"${srcdir}"'/613ff91dd2d9a5ee0e86be8a3682beecc4e94887.tar.gz"#' 
-i package.json
-
-  # Set system Electron version for ABI compatibility
-  sed -r 's#("electron": ").*"#\1'$(cat /usr/lib/electron/version)'"#' -i 
package.json
-
-  # Allow higher Node versions
-  sed 's#"node": "#&>=#' -i package.json
-
-  # Select node-gyp versions with python3 support
-  sed 's#"node-gyp": "5.0.3"#"node-gyp": "6.1.0"#' -i package.json
-  # https://github.com/sass/node-sass/pull/2841
-  # https://github.com/sass/node-sass/issues/2716
-  sed 's#"resolutions": {#"resolutions": {"node-sass/node-gyp": "^6.0.0",#' -i 
package.json
-
-  yarn install
-
-  # Have SQLCipher dynamically link from OpenSSL
-  # See https://github.com/signalapp/Signal-Desktop/issues/2634
-  patch --forward --strip=1 --input="${srcdir}/openssl-linking.patch"
-
-  # We can't read the release date from git so we use SOURCE_DATE_EPOCH instead
-  patch --forw

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

2020-03-06 Thread Santiago Torres-Arias via arch-commits
Date: Friday, March 6, 2020 @ 21:46:23
  Author: sangy
Revision: 591055

electron 8.1.0 rebuild

Modified:
  signal-desktop/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 21:14:30 UTC (rev 591054)
+++ PKGBUILD2020-03-06 21:46:23 UTC (rev 591055)
@@ -4,7 +4,7 @@
 pkgname=signal-desktop
 _pkgname=Signal-Desktop
 pkgver=1.32.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Electron application that links with Signal on mobile"
 license=('GPL3')
 replaces=('signal-desktop-bin')


[arch-commits] Commit in networkmanager-openvpn/repos/extra-x86_64 (3 files)

2020-03-06 Thread Jan Steffens via arch-commits
Date: Friday, March 6, 2020 @ 21:27:58
  Author: heftig
Revision: 376872

archrelease: copy trunk to extra-x86_64

Added:
  networkmanager-openvpn/repos/extra-x86_64/PKGBUILD
(from rev 376871, networkmanager-openvpn/trunk/PKGBUILD)
Deleted:
  
networkmanager-openvpn/repos/extra-x86_64/0001-build-disable-libnm-glib-support-by-default.patch
  networkmanager-openvpn/repos/extra-x86_64/PKGBUILD

+
 0001-build-disable-libnm-glib-support-by-default.patch |   51 
 PKGBUILD   |   94 +++
 2 files changed, 44 insertions(+), 101 deletions(-)

Deleted: 0001-build-disable-libnm-glib-support-by-default.patch
===
--- 0001-build-disable-libnm-glib-support-by-default.patch  2020-03-06 
21:27:45 UTC (rev 376871)
+++ 0001-build-disable-libnm-glib-support-by-default.patch  2020-03-06 
21:27:58 UTC (rev 376872)
@@ -1,51 +0,0 @@
-From 52aad4911ffad04cf8274b5574124a4d5470c7fa Mon Sep 17 00:00:00 2001
-Message-Id: 
<52aad4911ffad04cf8274b5574124a4d5470c7fa.1549642989.git.jan.steff...@gmail.com>
-From: Lubomir Rintel 
-Date: Wed, 17 Oct 2018 15:21:30 +0200
-Subject: [PATCH] build: disable libnm-glib support by default
-
-By now nobody should be using this. Keep the code around for a little
-longer just in case anybody still uses this.
-
-The libnm-glib support also serves as an example how do we build two
-different versions of the properties plugin. We'll soon be in a similar
-situation with Gtk 4.0. (sigh.) Just don't drop it yet.
-
-Conflicts:
-   NEWS

- configure.ac | 8 
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 11ff5d0..eaf015b 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -75,20 +75,20 @@ dnl
- dnl GNOME support
- dnl
- AC_ARG_WITH(gnome, AS_HELP_STRING([--without-gnome], [Build 
NetworkManager-openvpn without GNOME support, e.g. vpn service only]), [], 
[with_gnome_specified=no])
--AC_ARG_WITH(libnm-glib, AS_HELP_STRING([--without-libnm-glib], [Build 
NetworkManager-openvpn without libnm-glib comatibility]), [], 
[with_libnm_glib_specified=no])
-+AC_ARG_WITH(libnm-glib, AS_HELP_STRING([--with-libnm-glib], [Build 
NetworkManager-openvpn with libnm-glib comatibility (depreacted)]), [], 
[with_libnm_glib_specified=no])
- if test "$with_libnm_glib_specified" != no -a "$with_libnm_glib" != no; then
-   if test "$with_gnome_specified" != no -a "$with_gnome" == no; then
-   AC_MSG_ERROR(Building --with-libnm-glib conflicts with 
--without-gnome)
-   fi
- fi
- if test "$with_gnome" != no; then
-   with_gnome=yes
- fi
- if test "$with_libnm_glib_specified" == no; then
--  with_libnm_glib="$with_gnome"
-+  with_libnm_glib=no
- fi
--if test "$with_libnm_glib" != no; then
--  with_libnm_glib=yes
-+if test "$with_libnm_glib" != yes; then
-+  with_libnm_glib=no
- fi
- AM_CONDITIONAL(WITH_GNOME, test "$with_gnome" != no)
- AM_CONDITIONAL(WITH_LIBNM_GLIB, test "$with_libnm_glib" != no)
--- 
-2.20.1
-

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 21:27:45 UTC (rev 376871)
+++ PKGBUILD2020-03-06 21:27:58 UTC (rev 376872)
@@ -1,50 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-
-pkgname=networkmanager-openvpn
-pkgver=1.8.10
-pkgrel=1
-pkgdesc="NetworkManager VPN plugin for OpenVPN"
-url="https://wiki.gnome.org/Projects/NetworkManager";
-arch=(x86_64)
-license=(GPL)
-depends=(libnm libsecret openvpn)
-makedepends=(libnma intltool python git)
-optdepends=('libnma: GUI support')
-_commit=ac8a34354ecede5c68812a1c269d712da93afdb1  # tags/1.8.10^0
-source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-openvpn.git#commit=$_commit";
-0001-build-disable-libnm-glib-support-by-default.patch)
-sha256sums=('SKIP'
-'0c574c0432948d0b66a2cdf22dab9657618fe90a44e74e681e6fd8a57c127773')
-
-pkgver() {
-  cd NetworkManager-openvpn
-  git describe --tags | sed 's/-dev/dev/;s/-/+/g'
-}
-
-prepare() {
-  cd NetworkManager-openvpn
-
-  # Don't build against libnm-glib/gtk
-  patch -Np1 -i ../0001-build-disable-libnm-glib-support-by-default.patch
-
-  intltoolize --automake --copy
-  autoreconf -fvi
-}
-
-build() {
-  cd NetworkManager-openvpn
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd NetworkManager-openvpn
-  make DESTDIR="$pkgdir" install dbusservicedir=/usr/share/dbus-1/system.d
-  echo 'u nm-openvpn - "NetworkManager OpenVPN"' |
-install -Dm644 /dev/stdin "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
-}
-
-# vim:set sw=2 et:

Copied: networkmanager-openvpn/repos/extra-x86_64/PKGBUILD (from rev 376871, 
networkmanager-openvpn/trunk/PKGBUILD)
==

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

2020-03-06 Thread Jan Steffens via arch-commits
Date: Friday, March 6, 2020 @ 21:27:45
  Author: heftig
Revision: 376871

1.8.12-1

Modified:
  networkmanager-openvpn/trunk/PKGBUILD
Deleted:
  
networkmanager-openvpn/trunk/0001-build-disable-libnm-glib-support-by-default.patch

+
 0001-build-disable-libnm-glib-support-by-default.patch |   51 ---
 PKGBUILD   |   14 +---
 2 files changed, 4 insertions(+), 61 deletions(-)

Deleted: 0001-build-disable-libnm-glib-support-by-default.patch
===
--- 0001-build-disable-libnm-glib-support-by-default.patch  2020-03-06 
15:38:17 UTC (rev 376870)
+++ 0001-build-disable-libnm-glib-support-by-default.patch  2020-03-06 
21:27:45 UTC (rev 376871)
@@ -1,51 +0,0 @@
-From 52aad4911ffad04cf8274b5574124a4d5470c7fa Mon Sep 17 00:00:00 2001
-Message-Id: 
<52aad4911ffad04cf8274b5574124a4d5470c7fa.1549642989.git.jan.steff...@gmail.com>
-From: Lubomir Rintel 
-Date: Wed, 17 Oct 2018 15:21:30 +0200
-Subject: [PATCH] build: disable libnm-glib support by default
-
-By now nobody should be using this. Keep the code around for a little
-longer just in case anybody still uses this.
-
-The libnm-glib support also serves as an example how do we build two
-different versions of the properties plugin. We'll soon be in a similar
-situation with Gtk 4.0. (sigh.) Just don't drop it yet.
-
-Conflicts:
-   NEWS

- configure.ac | 8 
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 11ff5d0..eaf015b 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -75,20 +75,20 @@ dnl
- dnl GNOME support
- dnl
- AC_ARG_WITH(gnome, AS_HELP_STRING([--without-gnome], [Build 
NetworkManager-openvpn without GNOME support, e.g. vpn service only]), [], 
[with_gnome_specified=no])
--AC_ARG_WITH(libnm-glib, AS_HELP_STRING([--without-libnm-glib], [Build 
NetworkManager-openvpn without libnm-glib comatibility]), [], 
[with_libnm_glib_specified=no])
-+AC_ARG_WITH(libnm-glib, AS_HELP_STRING([--with-libnm-glib], [Build 
NetworkManager-openvpn with libnm-glib comatibility (depreacted)]), [], 
[with_libnm_glib_specified=no])
- if test "$with_libnm_glib_specified" != no -a "$with_libnm_glib" != no; then
-   if test "$with_gnome_specified" != no -a "$with_gnome" == no; then
-   AC_MSG_ERROR(Building --with-libnm-glib conflicts with 
--without-gnome)
-   fi
- fi
- if test "$with_gnome" != no; then
-   with_gnome=yes
- fi
- if test "$with_libnm_glib_specified" == no; then
--  with_libnm_glib="$with_gnome"
-+  with_libnm_glib=no
- fi
--if test "$with_libnm_glib" != no; then
--  with_libnm_glib=yes
-+if test "$with_libnm_glib" != yes; then
-+  with_libnm_glib=no
- fi
- AM_CONDITIONAL(WITH_GNOME, test "$with_gnome" != no)
- AM_CONDITIONAL(WITH_LIBNM_GLIB, test "$with_libnm_glib" != no)
--- 
-2.20.1
-

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 15:38:17 UTC (rev 376870)
+++ PKGBUILD2020-03-06 21:27:45 UTC (rev 376871)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=networkmanager-openvpn
-pkgver=1.8.10
+pkgver=1.8.12
 pkgrel=1
 pkgdesc="NetworkManager VPN plugin for OpenVPN"
 url="https://wiki.gnome.org/Projects/NetworkManager";
@@ -11,11 +11,9 @@
 depends=(libnm libsecret openvpn)
 makedepends=(libnma intltool python git)
 optdepends=('libnma: GUI support')
-_commit=ac8a34354ecede5c68812a1c269d712da93afdb1  # tags/1.8.10^0
-source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-openvpn.git#commit=$_commit";
-0001-build-disable-libnm-glib-support-by-default.patch)
-sha256sums=('SKIP'
-'0c574c0432948d0b66a2cdf22dab9657618fe90a44e74e681e6fd8a57c127773')
+_commit=606257bb8ac1f8207ceed93d99e3af651d8d4cc3  # tags/1.8.12^0
+source=("git+https://gitlab.gnome.org/GNOME/NetworkManager-openvpn.git#commit=$_commit";)
+sha256sums=('SKIP')
 
 pkgver() {
   cd NetworkManager-openvpn
@@ -24,10 +22,6 @@
 
 prepare() {
   cd NetworkManager-openvpn
-
-  # Don't build against libnm-glib/gtk
-  patch -Np1 -i ../0001-build-disable-libnm-glib-support-by-default.patch
-
   intltoolize --automake --copy
   autoreconf -fvi
 }


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

2020-03-06 Thread Antonio Rojas via arch-commits
Date: Friday, March 6, 2020 @ 21:14:30
  Author: arojas
Revision: 591054

archrelease: copy trunk to community-x86_64

Added:
  gammaray/repos/community-x86_64/PKGBUILD
(from rev 591053, gammaray/trunk/PKGBUILD)
Deleted:
  gammaray/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 21:14:10 UTC (rev 591053)
+++ PKGBUILD2020-03-06 21:14:30 UTC (rev 591054)
@@ -1,51 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=gammaray
-pkgver=2.11.0
-pkgrel=5
-pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
-arch=(x86_64)
-url="https://www.kdab.com/gammaray/";
-license=(GPL)
-depends=(syntax-highlighting qt5-tools qt5-svg qt5-3d)
-makedepends=(cmake kcoreaddons qt5-script qt5-wayland qt5-webengine qt5-scxml 
qt5-location qt5-connectivity doxygen glslang)
-optdepends=('qt5-wayland: Wayland compositor inspector plugin'
-'qt5-webengine: web inspector plugin'
-'qt5-scxml: state machine viewer plugin'
-'qt5-connectivity: bluetooth plugin'
-'qt5-script: script engine debugger plugin'
-'kcoreaddons: KJob tracker plugin')
-source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc}
-
gammaray-qt-5.14.patch::"https://github.com/KDAB/GammaRay/commit/3bde5464.patch";
-
gammaray-qt-5.14b.patch::"https://github.com/KDAB/GammaRay/commit/7cd6950e.patch";)
-sha256sums=('ab0488d2178c532816d491ab361ac3d362590f0e63912f7198f34c1b582209ca'
-'SKIP'
-'fcec0545414bc77dd3fc6a16be3e4a798d230a43a89fefeb138d32374600d2c2'
-'05c01038cfd6319b3b1b67a5189c0cd346255d5690d84dff18224ff544b1c7d8')
-validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

-
-prepare() {
-  mkdir -p build
-
-# Fix plugin install dir
-  sed -e 's|plugins/gammaray|lib/qt/plugins/gammaray|' -i 
$pkgname-$pkgver/CMakeLists.txt
-
-  patch -p1 -d $pkgname-$pkgver -i ../gammaray-qt-5.14.patch # Fix build with 
Qt 5.14
-  patch -p1 -d $pkgname-$pkgver -i ../gammaray-qt-5.14b.patch
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DGAMMARAY_INSTALL_QT_LAYOUT=ON \
--DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt/mkspecs/modules \
--DPLUGIN_INSTALL_DIR=/usr/lib/qt/plugins/gammaray
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: gammaray/repos/community-x86_64/PKGBUILD (from rev 591053, 
gammaray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 21:14:30 UTC (rev 591054)
@@ -0,0 +1,44 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=gammaray
+pkgver=2.11.1
+pkgrel=1
+pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
+arch=(x86_64)
+url="https://www.kdab.com/gammaray/";
+license=(GPL)
+depends=(syntax-highlighting qt5-tools qt5-svg qt5-3d)
+makedepends=(cmake kcoreaddons qt5-script qt5-wayland qt5-webengine qt5-scxml 
qt5-location qt5-connectivity doxygen glslang)
+optdepends=('qt5-wayland: Wayland compositor inspector plugin'
+'qt5-webengine: web inspector plugin'
+'qt5-scxml: state machine viewer plugin'
+'qt5-connectivity: bluetooth plugin'
+'qt5-script: script engine debugger plugin'
+'kcoreaddons: KJob tracker plugin')
+source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc})
+sha256sums=('87a1d72ad1ad6d1a0156c54a85b0976ab38c6a64136458ca7c4ee491566d25d0'
+'SKIP')
+validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

+
+prepare() {
+  mkdir -p build
+
+# Fix plugin install dir
+  sed -e 's|plugins/gammaray|lib/qt/plugins/gammaray|' -i 
$pkgname-$pkgver/CMakeLists.txt
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DGAMMARAY_INSTALL_QT_LAYOUT=ON \
+-DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt/mkspecs/modules \
+-DPLUGIN_INSTALL_DIR=/usr/lib/qt/plugins/gammaray
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2020-03-06 Thread Antonio Rojas via arch-commits
Date: Friday, March 6, 2020 @ 21:14:10
  Author: arojas
Revision: 591053

Update to 2.11.1

Modified:
  gammaray/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 19:34:18 UTC (rev 591052)
+++ PKGBUILD2020-03-06 21:14:10 UTC (rev 591053)
@@ -1,8 +1,8 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=gammaray
-pkgver=2.11.0
-pkgrel=5
+pkgver=2.11.1
+pkgrel=1
 pkgdesc="A tool for examining the internals of a Qt application and to some 
extent also manipulate it"
 arch=(x86_64)
 url="https://www.kdab.com/gammaray/";
@@ -15,13 +15,9 @@
 'qt5-connectivity: bluetooth plugin'
 'qt5-script: script engine debugger plugin'
 'kcoreaddons: KJob tracker plugin')
-source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc}
-
gammaray-qt-5.14.patch::"https://github.com/KDAB/GammaRay/commit/3bde5464.patch";
-
gammaray-qt-5.14b.patch::"https://github.com/KDAB/GammaRay/commit/7cd6950e.patch";)
-sha256sums=('ab0488d2178c532816d491ab361ac3d362590f0e63912f7198f34c1b582209ca'
-'SKIP'
-'fcec0545414bc77dd3fc6a16be3e4a798d230a43a89fefeb138d32374600d2c2'
-'05c01038cfd6319b3b1b67a5189c0cd346255d5690d84dff18224ff544b1c7d8')
+source=(https://github.com/KDAB/GammaRay/releases/download/v$pkgver/gammaray-$pkgver.tar.gz{,.asc})
+sha256sums=('87a1d72ad1ad6d1a0156c54a85b0976ab38c6a64136458ca7c4ee491566d25d0'
+'SKIP')
 validpgpkeys=(E86C000370B1B9E2A9191AD53DBFB6882C9358FB) # KDAB Products 

 
 prepare() {
@@ -29,9 +25,6 @@
 
 # Fix plugin install dir
   sed -e 's|plugins/gammaray|lib/qt/plugins/gammaray|' -i 
$pkgname-$pkgver/CMakeLists.txt
-
-  patch -p1 -d $pkgname-$pkgver -i ../gammaray-qt-5.14.patch # Fix build with 
Qt 5.14
-  patch -p1 -d $pkgname-$pkgver -i ../gammaray-qt-5.14b.patch
 }
 
 build() {


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

2020-03-06 Thread Anatol Pomozov via arch-commits
Date: Friday, March 6, 2020 @ 19:34:18
  Author: anatolik
Revision: 591052

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-gitaly/repos/community-testing-x86_64/
  gitlab-gitaly/repos/community-testing-x86_64/PKGBUILD
(from rev 591051, gitlab-gitaly/trunk/PKGBUILD)
  gitlab-gitaly/repos/community-testing-x86_64/gitlab-gitaly.service
(from rev 591051, gitlab-gitaly/trunk/gitlab-gitaly.service)

---+
 PKGBUILD  |   60 
 gitlab-gitaly.service |   25 
 2 files changed, 85 insertions(+)

Copied: gitlab-gitaly/repos/community-testing-x86_64/PKGBUILD (from rev 591051, 
gitlab-gitaly/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-03-06 19:34:18 UTC (rev 591052)
@@ -0,0 +1,60 @@
+# Maintainer: Sven-Hendrik Haase 
+
+# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
+# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
+# need this again at some point in the future.
+pkgname=gitlab-gitaly
+pkgver=12.8.5
+pkgrel=1
+pkgdesc="Speed up Git access using caching"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitaly";
+license=('MIT')
+depends=(glibc ruby libxml2 libxslt libssh2)
+options=(!buildflags)
+makedepends=(go ruby-bundler cmake)
+backup=("etc/gitlab-gitaly/config.toml")
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitaly/repository/archive?sha=v${pkgver}";
+"gitlab-gitaly.service")
+sha512sums=('4bbb23c75646ad8848e781909594ed7405ed5182f5a01b4af09d97762ac793bb4817fcfee37f6452e6a01e3711506afebc8ee33993e14e91defc4c75acb068b9'
+
'b330c0f42592322ad2131079ca554a13a364007182dded8c556198caff2c9ec642acf5bb7dfecb05de5a3d89bffec6588b6d05c8c7c5c771a46df3d296deed28')
+
+_homedir="/var/lib/gitlab"
+
+prepare() {
+  cd "gitaly-"*
+
+  sed -i "s|dir = \"/home/git/gitaly/ruby\"|dir = 
\"/usr/share/webapps/gitlab-gitaly/ruby\"|" config.toml.example
+  sed -i "s|dir = \"/home/git/gitlab-shell\"|dir = 
\"/usr/share/webapps/gitlab-shell\"|" config.toml.example
+  sed -i "s|bin_dir = \"/home/git/gitaly\"|bin_dir = \"/usr/bin\"|" 
config.toml.example
+
+  # https://github.com/bundler/bundler/issues/6882
+  sed -e '/BUNDLED WITH/,+1d' -i ruby/Gemfile.lock
+}
+
+build() {
+  cd "gitaly-"*
+
+  bundle config force_ruby_platform true # build from sources as some prebuilt 
gems are not available for newer ruby
+  make BUILD_TAGS="tracer_static tracer_static_jaeger"
+}
+
+package() {
+  cd "gitaly-"*
+
+  make PREFIX=/usr DESTDIR=${pkgdir} install
+  mkdir -p "${pkgdir}/etc/${pkgname}"
+  sed \
+-e "s|^socket_path =.*|socket_path = 
\"${_homedir}/sockets/gitlab-gitaly.socket\"|" \
+-e "s|^path =.*|path = \"${_homedir}/repositories\"|" \
+config.toml.example > "${pkgdir}/etc/${pkgname}/config.toml"
+
+  mkdir -p ${pkgdir}/usr/share/webapps/gitlab-gitaly
+  cp -r ruby ${pkgdir}/usr/share/webapps/gitlab-gitaly/ruby
+
+  install -Dm644 config.toml.example 
"${pkgdir}/usr/share/${pkgname}/config.toml.example"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-gitaly.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-gitaly.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gitlab-gitaly/repos/community-testing-x86_64/gitlab-gitaly.service 
(from rev 591051, gitlab-gitaly/trunk/gitlab-gitaly.service)
===
--- community-testing-x86_64/gitlab-gitaly.service  
(rev 0)
+++ community-testing-x86_64/gitlab-gitaly.service  2020-03-06 19:34:18 UTC 
(rev 591052)
@@ -0,0 +1,25 @@
+#
+#
+# GitLab version: 9.x
+# Contributors  : axil
+# Downloaded from   : 
https://gitlab.com/gitlab-org/gitlab-recipes/tree/master/init/systemd
+#
+
+
+[Unit]
+Description=Gitaly is a Git RPC service for handling all the git calls made by 
GitLab.
+Requires=gitlab-unicorn.service
+Wants=gitlab-unicorn.service
+After=gitlab-unicorn.service
+
+[Service]
+Type=simple
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-gitaly
+PIDFile=/run/gitlab/gitaly.pid
+ExecStart=/usr/bin/gitaly /etc/gitlab-gitaly/config.toml
+
+[Install]
+WantedBy=multi-user.target


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

2020-03-06 Thread Anatol Pomozov via arch-commits
Date: Friday, March 6, 2020 @ 19:33:57
  Author: anatolik
Revision: 591051

upgpkg: gitlab-gitaly 12.8.5-1

Modified:
  gitlab-gitaly/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 19:32:56 UTC (rev 591050)
+++ PKGBUILD2020-03-06 19:33:57 UTC (rev 591051)
@@ -4,7 +4,7 @@
 # commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
 # need this again at some point in the future.
 pkgname=gitlab-gitaly
-pkgver=1.83.0
+pkgver=12.8.5
 pkgrel=1
 pkgdesc="Speed up Git access using caching"
 arch=('x86_64')
@@ -16,7 +16,7 @@
 backup=("etc/gitlab-gitaly/config.toml")
 
source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitaly/repository/archive?sha=v${pkgver}";
 "gitlab-gitaly.service")
-sha512sums=('975b52a526ceea8023ca28e7864bb07c13d050a925715e5f31302854efd73e7e765f1d8e62f6e2549d0cd3bb1967da74737782f6e1878c0714b03db48baa857c'
+sha512sums=('4bbb23c75646ad8848e781909594ed7405ed5182f5a01b4af09d97762ac793bb4817fcfee37f6452e6a01e3711506afebc8ee33993e14e91defc4c75acb068b9'
 
'b330c0f42592322ad2131079ca554a13a364007182dded8c556198caff2c9ec642acf5bb7dfecb05de5a3d89bffec6588b6d05c8c7c5c771a46df3d296deed28')
 
 _homedir="/var/lib/gitlab"


[arch-commits] Commit in gitlab-shell/repos (5 files)

2020-03-06 Thread Anatol Pomozov via arch-commits
Date: Friday, March 6, 2020 @ 19:32:56
  Author: anatolik
Revision: 591050

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-shell/repos/community-testing-x86_64/
  gitlab-shell/repos/community-testing-x86_64/PKGBUILD
(from rev 591049, gitlab-shell/trunk/PKGBUILD)
  gitlab-shell/repos/community-testing-x86_64/gitlab-shell.gitconfig
(from rev 591049, gitlab-shell/trunk/gitlab-shell.gitconfig)
  gitlab-shell/repos/community-testing-x86_64/gitlab-shell.install
(from rev 591049, gitlab-shell/trunk/gitlab-shell.install)
  gitlab-shell/repos/community-testing-x86_64/gitlab-shell.sysusers
(from rev 591049, gitlab-shell/trunk/gitlab-shell.sysusers)

+
 PKGBUILD   |  100 +++
 gitlab-shell.gitconfig |5 ++
 gitlab-shell.install   |9 
 gitlab-shell.sysusers  |1 
 4 files changed, 115 insertions(+)

Copied: gitlab-shell/repos/community-testing-x86_64/PKGBUILD (from rev 591049, 
gitlab-shell/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-03-06 19:32:56 UTC (rev 591050)
@@ -0,0 +1,100 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Pavol (Lopo) Hluchy 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Jonas Heinrich 
+# Contributor: Lee Watson 
+# Contributor: Tobias Hunger 
+# Contributor: Stefan Tatschner 
+
+
+# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
+# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
+# need this again at some point in the future.
+pkgname=gitlab-shell
+pkgver=12.0.0
+pkgrel=1
+epoch=2
+pkgdesc="Git management software"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-shell/";
+license=('MIT')
+depends=('ruby' 'redis' 'git')
+makedepends=('go-pie')
+options=('!strip')
+install=gitlab-shell.install
+backup=("etc/webapps/${pkgname}/config.yml"
+"etc/webapps/${pkgname}/secret"
+"etc/webapps/${pkgname}/gitconfig"
+"etc/webapps/${pkgname}/authorized_keys"
+"etc/webapps/${pkgname}/")
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-shell/repository/archive?sha=v${pkgver}";
+"gitlab-shell.gitconfig"
+"gitlab-shell.sysusers")
+sha512sums=('f131e92e4fc18c2ef3f6d6d16a5fefbf5eec4aac1f32bb09640757589776bfac79f5cf3efdfa70073be0a366f9c141f3292131e37cc5bf6481abebd01d30e021'
+
'5caafe5300621ced58479e724b39656afc17f32a64ecde5dfa4919683ef37d9121552c78f066678472acb56e0a34b5c3cf34d9b44414d1ed5d91f725d180fa43'
+
'616188911fa7b7c569bc2d5e2024177e67366c48b4ffef1f7ad4dc8e4e9e2cdb421b687f45a1e9bdec8bf2736a157ca9f1e0ba24edae2f073b8c7b5ac42745e8')
+
+_datadir="/usr/share/webapps/${pkgname}"
+_etcdir="/etc/webapps/${pkgname}"
+_homedir="/var/lib/gitlab"
+_logdir="/var/log/gitlab"
+_srcdir="gitlab-shell-v${pkgver}"
+
+prepare() {
+  cd "${srcdir}/${_srcdir}"-*
+
+  sed -e "s|user: git|user: gitlab|" \
+  -e "s|/home/git|${_homedir}|" \
+  -e "s|# log_file: .*|log_file: \"${_logdir}/gitlab-shell.log\"|" \
+  -e "s|# host:|host:|" \
+  -e "s|# port:|port:|" \
+  -e "s|socket:|# socket:|" \
+  config.yml.example > config.yml
+}
+
+build() {
+  cd "${srcdir}/${_srcdir}"-*
+
+  make build
+}
+
+package() {
+  cd "${srcdir}/${_srcdir}"-*
+
+  install -dm755 -o root -g root "${pkgdir}${_datadir}"
+  install -dm750 -o 105 -g 105 "${pkgdir}${_homedir}"
+  install -dm750 -o 105 -g 105 "${pkgdir}${_homedir}/satellites"
+  install -dm700 -o 105 -g 105 "${pkgdir}${_homedir}/.ssh"
+  install -dm750 -o 105 -g 105 "${pkgdir}${_etcdir}"
+  install -dm770 -o 105 -g root "${pkgdir}${_logdir}"
+
+  # sysusers
+  install -Dm644 "${srcdir}/gitlab-shell.sysusers" 
"${pkgdir}/usr/lib/sysusers.d/gitlab-shell.conf"
+
+  # .gitconfig
+  install -Dm644 -o 105 -g 105 "${srcdir}/gitlab-shell.gitconfig" 
"${pkgdir}${_etcdir}/.gitconfig"
+  ln -fs "${_etcdir}/.gitconfig" "${pkgdir}${_homedir}/.gitconfig"
+
+  # .gitlab_shell_secret
+  touch "${pkgdir}${_etcdir}/secret"
+  chmod 640 "${pkgdir}${_etcdir}/secret"
+  chown root:105 "${pkgdir}${_etcdir}/secret"
+  ln -fs "${_etcdir}/secret" "${pkgdir}${_datadir}/.gitlab_shell_secret"
+
+  # config.yml
+  mv config.yml "${pkgdir}${_etcdir}"
+  ln -fs "${_etcdir}/config.yml" "${pkgdir}${_datadir}/config.yml"
+
+  cp -r VERSION bin hooks spec support "${pkgdir}${_datadir}"
+  ln -fs "${_datadir}" "${pkgdir}/${_homedir}/"
+
+  # Compatibility for FS#64251
+  ln -s gitlab-shell "$pkgdir"/${_datadir}/bin/gitlab-shell-ruby
+
+  install -dm2770 -o 105 -g 105 "${pkgdir}${_homedir}/repositories"
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: gitl

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

2020-03-06 Thread Anatol Pomozov via arch-commits
Date: Friday, March 6, 2020 @ 19:32:29
  Author: anatolik
Revision: 591049

upgpkg: gitlab-shell 2:12.0.0-1

Modified:
  gitlab-shell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 19:32:00 UTC (rev 591048)
+++ PKGBUILD2020-03-06 19:32:29 UTC (rev 591049)
@@ -11,7 +11,7 @@
 # commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
 # need this again at some point in the future.
 pkgname=gitlab-shell
-pkgver=11.0.0
+pkgver=12.0.0
 pkgrel=1
 epoch=2
 pkgdesc="Git management software"
@@ -30,7 +30,7 @@
 
source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-shell/repository/archive?sha=v${pkgver}";
 "gitlab-shell.gitconfig"
 "gitlab-shell.sysusers")
-sha512sums=('f5f0f8df4195f4d64938ff4b2e76efa55a701f623d88497eb12aaeea93b31c3712ef3613bbf58adb2f57653d9ea01742a8b99b70f615e08d6a61fa1e668868d4'
+sha512sums=('f131e92e4fc18c2ef3f6d6d16a5fefbf5eec4aac1f32bb09640757589776bfac79f5cf3efdfa70073be0a366f9c141f3292131e37cc5bf6481abebd01d30e021'
 
'5caafe5300621ced58479e724b39656afc17f32a64ecde5dfa4919683ef37d9121552c78f066678472acb56e0a34b5c3cf34d9b44414d1ed5d91f725d180fa43'
 
'616188911fa7b7c569bc2d5e2024177e67366c48b4ffef1f7ad4dc8e4e9e2cdb421b687f45a1e9bdec8bf2736a157ca9f1e0ba24edae2f073b8c7b5ac42745e8')
 


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

2020-03-06 Thread Anatol Pomozov via arch-commits
Date: Friday, March 6, 2020 @ 19:32:00
  Author: anatolik
Revision: 591048

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab-workhorse/repos/community-testing-x86_64/
  gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD
(from rev 591047, gitlab-workhorse/trunk/PKGBUILD)
  gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service
(from rev 591047, gitlab-workhorse/trunk/gitlab-workhorse.service)

--+
 PKGBUILD |   35 +++
 gitlab-workhorse.service |   22 ++
 2 files changed, 57 insertions(+)

Copied: gitlab-workhorse/repos/community-testing-x86_64/PKGBUILD (from rev 
591047, gitlab-workhorse/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-03-06 19:32:00 UTC (rev 591048)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Caleb Maclennan 
+# Contributor: Pavol (Lopo) Hluchy 
+
+pkgname=gitlab-workhorse
+pkgver=8.24.0
+pkgrel=1
+pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
+arch=('x86_64')
+url="https://gitlab.com/gitlab-org/gitlab-workhorse";
+license=('MIT')
+depends=('glibc' 'perl-image-exiftool')
+makedepends=('go-pie')
+source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver}";
+"gitlab-workhorse.service")
+sha512sums=('3054c85fade0203ef39144b9123739228ade7bcc659808a33b7bc10a7a75afec8b4f7615244d5c9b829a80abe435b221b9624f5e9d32f57ec611696b44080f2c'
+
'f45ea8f0dedaefc547fdf855d36cdc56e75e90c45ad6c7c848ff225995e57258cb727df0c3065300d1300f86d48f5d4912f854ddf4e38feda460c785634a61de')
+
+build() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  make
+}
+
+package() {
+  cd "${pkgname}-v${pkgver}-"*
+
+  install -Dm755 "gitlab-workhorse" "${pkgdir}/usr/bin/gitlab-workhorse"
+  install -Dm755 "gitlab-zip-cat" "${pkgdir}/usr/bin/gitlab-zip-cat"
+  install -Dm755 "gitlab-zip-metadata" "${pkgdir}/usr/bin/gitlab-zip-metadata"
+  install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm0644 "${srcdir}/gitlab-workhorse.service" 
"${pkgdir}/usr/lib/systemd/system/gitlab-workhorse.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gitlab-workhorse/repos/community-testing-x86_64/gitlab-workhorse.service (from 
rev 591047, gitlab-workhorse/trunk/gitlab-workhorse.service)
===
--- community-testing-x86_64/gitlab-workhorse.service   
(rev 0)
+++ community-testing-x86_64/gitlab-workhorse.service   2020-03-06 19:32:00 UTC 
(rev 591048)
@@ -0,0 +1,22 @@
+[Unit]
+Description=Gitlab Workhorse
+Requires=gitlab-unicorn.service
+After=gitlab-unicorn.service
+
+[Service]
+User=gitlab
+Group=gitlab
+WorkingDirectory=/usr/share/webapps/gitlab
+SyslogIdentifier=gitlab-workhorse
+CapabilityBoundingSet=
+ProtectSystem=full
+ProtectHome=true
+NoNewPrivileges=true
+ExecStart=/bin/bash -c "source /etc/profile.d/perlbin.sh; exec 
/usr/bin/gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr 
/run/gitlab/gitlab-workhorse.socket -authBackend http://localhost:8080 
-authSocket /var/lib/gitlab/sockets/gitlab.socket -documentRoot 
/usr/share/webapps/gitlab/public"
+ExecStop=/usr/bin/kill -QUIT $MAINPID
+ExecReload=/usr/bin/kill -USR2 $MAINPID
+Restart=on-failure
+RestartSec=1
+
+[Install]
+WantedBy=multi-user.target


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

2020-03-06 Thread Anatol Pomozov via arch-commits
Date: Friday, March 6, 2020 @ 19:31:39
  Author: anatolik
Revision: 591047

upgpkg: gitlab-workhorse 8.24.0-1

Modified:
  gitlab-workhorse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 19:18:49 UTC (rev 591046)
+++ PKGBUILD2020-03-06 19:31:39 UTC (rev 591047)
@@ -3,7 +3,7 @@
 # Contributor: Pavol (Lopo) Hluchy 
 
 pkgname=gitlab-workhorse
-pkgver=8.20.0
+pkgver=8.24.0
 pkgrel=1
 pkgdesc="HTTP server to unload Git HTTP traffic from GitLab Rails app 
(Unicorn)"
 arch=('x86_64')
@@ -13,7 +13,7 @@
 makedepends=('go-pie')
 
source=("${pkgname}-${pkgver}.tar.gz::https://gitlab.com/api/v4/projects/gitlab-org%2Fgitlab-workhorse/repository/archive?sha=v${pkgver}";
 "gitlab-workhorse.service")
-sha512sums=('149bd7b3bc7086929bfdf845336b55e4484675b5badbea98e71309955d5baa10e333c813915c5386b4483c463f7a9d3fabd53ccfe52f4a0582e9f4e53da6a166'
+sha512sums=('3054c85fade0203ef39144b9123739228ade7bcc659808a33b7bc10a7a75afec8b4f7615244d5c9b829a80abe435b221b9624f5e9d32f57ec611696b44080f2c'
 
'f45ea8f0dedaefc547fdf855d36cdc56e75e90c45ad6c7c848ff225995e57258cb727df0c3065300d1300f86d48f5d4912f854ddf4e38feda460c785634a61de')
 
 build() {


[arch-commits] Commit in gitlab/repos (13 files)

2020-03-06 Thread Anatol Pomozov via arch-commits
Date: Friday, March 6, 2020 @ 19:18:49
  Author: anatolik
Revision: 591046

archrelease: copy trunk to community-testing-x86_64

Added:
  gitlab/repos/community-testing-x86_64/
  gitlab/repos/community-testing-x86_64/PKGBUILD
(from rev 591045, gitlab/trunk/PKGBUILD)
  gitlab/repos/community-testing-x86_64/build_fix.patch
(from rev 591045, gitlab/trunk/build_fix.patch)
  gitlab/repos/community-testing-x86_64/gitlab-backup.service
(from rev 591045, gitlab/trunk/gitlab-backup.service)
  gitlab/repos/community-testing-x86_64/gitlab-backup.timer
(from rev 591045, gitlab/trunk/gitlab-backup.timer)
  gitlab/repos/community-testing-x86_64/gitlab-mailroom.service
(from rev 591045, gitlab/trunk/gitlab-mailroom.service)
  gitlab/repos/community-testing-x86_64/gitlab-sidekiq.service
(from rev 591045, gitlab/trunk/gitlab-sidekiq.service)
  gitlab/repos/community-testing-x86_64/gitlab-unicorn.service
(from rev 591045, gitlab/trunk/gitlab-unicorn.service)
  gitlab/repos/community-testing-x86_64/gitlab.install
(from rev 591045, gitlab/trunk/gitlab.install)
  gitlab/repos/community-testing-x86_64/gitlab.logrotate
(from rev 591045, gitlab/trunk/gitlab.logrotate)
  gitlab/repos/community-testing-x86_64/gitlab.target
(from rev 591045, gitlab/trunk/gitlab.target)
  gitlab/repos/community-testing-x86_64/gitlab.tmpfiles.d
(from rev 591045, gitlab/trunk/gitlab.tmpfiles.d)
  gitlab/repos/community-testing-x86_64/ruby27-pop-extra-arg.patch
(from rev 591045, gitlab/trunk/ruby27-pop-extra-arg.patch)

+
 PKGBUILD   |  224 +++
 build_fix.patch|   26 
 gitlab-backup.service  |   20 +++
 gitlab-backup.timer|   10 +
 gitlab-mailroom.service|   22 
 gitlab-sidekiq.service |   31 +
 gitlab-unicorn.service |   34 ++
 gitlab.install |   20 +++
 gitlab.logrotate   |6 +
 gitlab.target  |7 +
 gitlab.tmpfiles.d  |1 
 ruby27-pop-extra-arg.patch |   26 
 12 files changed, 427 insertions(+)

Copied: gitlab/repos/community-testing-x86_64/PKGBUILD (from rev 591045, 
gitlab/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-03-06 19:18:49 UTC (rev 591046)
@@ -0,0 +1,224 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Pavol (Lopo) Hluchy 
+# Contributor: Jonas Heinrich 
+# Contributor: Massimiliano Torromeo 
+# Contributor: Tobias Hunger 
+# Contributor: Stefan Tatschner 
+# Contributor: Caleb Maclennan 
+
+# NOTE: Gitlab isn't always compatible with modern Ruby versions. In that 
case, check the
+# commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
+# need this again at some point in the future.
+pkgname=gitlab
+pkgver=12.8.5
+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=('ruby' 'ruby-bundler' '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/${pkgname}/application.rb"
+"etc/webapps/${pkgname}/gitlab.yml"
+"etc/webapps/${pkgname}/resque.yml"
+"etc/webapps/${pkgname}/unicorn.rb"
+"etc/logrotate.d/${pkgname}")
+source=(git+https://gitlab.com/gitlab-org/gitlab-foss.git#tag=v$pkgver
+build_fix.patch
+gitlab-unicorn.service
+gitlab-sidekiq.service
+gitlab-backup.service
+gitlab-mailroom.service
+gitlab-backup.timer
+gitlab.target
+gitlab.tmpfiles.d
+gitlab.logrotate
+ruby27-pop-extra-arg.patch)
+install='gitlab.install'
+sha512sums=('SKIP'
+
'baeb28cc87be9f5e36f9bb3c98f8c81caf1f0eadab1726bcd80d89f94dfb9d00c2e086966f4ce80ac91b27dbd6b550868167e29f6b04bee6a22ead41e30c604b'
+
'1ad15b48890ad48e97a6fcea56132582f2b22aa27f4a1a1f4590f3ea72de4726e13ef6f3db2bc0984da1ef140bde092e74e0c9f8f1778f207f3fac4a31a77e4b'
+
'8ca36771f7568b190823ec47afeaf6ff75f61c5b6f31ce5d837a6dcd84a5b3da23fb07a1eceeda0752b2e61c4a8f4d17bf368fa2913e1487567944a8d29eeb58'
+
'0cbb9a1631b529a83d5c6db95fd3a684c8f06073890b31f6262c339360444e7452275d804fb6a119a3d61a0ef1b76d0e956f260a12f032d54c00308e8d9520b0'
+
'159530b50ac560c46703ef9ddd788cebc614bc53daa5b545ed8ac55f7ff4f9bb81a5149220a48770e8264e2cd5ca173f0f1f0ef4881f4e2350aaef007ea3e933'
+
'c11d2c59da8325551a465227096e8d39b0e4bcd5b1db21565cf3439e431838c04bc00aa6f07f4d

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

2020-03-06 Thread Anatol Pomozov via arch-commits
Date: Friday, March 6, 2020 @ 19:17:52
  Author: anatolik
Revision: 591045

upgpkg: gitlab 12.8.5-1

Modified:
  gitlab/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 18:48:40 UTC (rev 591044)
+++ PKGBUILD2020-03-06 19:17:52 UTC (rev 591045)
@@ -10,7 +10,7 @@
 # commit log for an old fix on how to tell it to use older versions of Ruby. 
I'm afraid we'll
 # need this again at some point in the future.
 pkgname=gitlab
-pkgver=12.8.2
+pkgver=12.8.5
 pkgrel=1
 pkgdesc="Project management and code hosting application"
 arch=('x86_64')


[arch-commits] Commit in sagemath/repos (12 files)

2020-03-06 Thread Antonio Rojas via arch-commits
Date: Friday, March 6, 2020 @ 17:53:13
  Author: arojas
Revision: 591039

archrelease: copy trunk to community-testing-x86_64

Added:
  sagemath/repos/community-testing-x86_64/
  sagemath/repos/community-testing-x86_64/PKGBUILD
(from rev 591038, sagemath/trunk/PKGBUILD)
  sagemath/repos/community-testing-x86_64/latte-count.patch
(from rev 591038, sagemath/trunk/latte-count.patch)
  sagemath/repos/community-testing-x86_64/package.patch
(from rev 591038, sagemath/trunk/package.patch)
  sagemath/repos/community-testing-x86_64/sagemath-cremona.patch
(from rev 591038, sagemath/trunk/sagemath-cremona.patch)
  sagemath/repos/community-testing-x86_64/sagemath-ecl-sigfpe.patch
(from rev 591038, sagemath/trunk/sagemath-ecl-sigfpe.patch)
  sagemath/repos/community-testing-x86_64/sagemath-gap-4.11.patch
(from rev 591038, sagemath/trunk/sagemath-gap-4.11.patch)
  sagemath/repos/community-testing-x86_64/sagemath-ipython7.patch
(from rev 591038, sagemath/trunk/sagemath-ipython7.patch)
  sagemath/repos/community-testing-x86_64/sagemath-python-3.8.patch
(from rev 591038, sagemath/trunk/sagemath-python-3.8.patch)
  sagemath/repos/community-testing-x86_64/sagemath-rpy-3.patch
(from rev 591038, sagemath/trunk/sagemath-rpy-3.patch)
  sagemath/repos/community-testing-x86_64/sagemath-singular-4.1.2.patch
(from rev 591038, sagemath/trunk/sagemath-singular-4.1.2.patch)
  sagemath/repos/community-testing-x86_64/test-optional.patch
(from rev 591038, sagemath/trunk/test-optional.patch)

---+
 PKGBUILD  |  152 +
 latte-count.patch |   89 
 package.patch |   54 
 sagemath-cremona.patch|   31 
 sagemath-ecl-sigfpe.patch |  147 +
 sagemath-gap-4.11.patch   |   13 
 sagemath-ipython7.patch   | 4668 
 sagemath-python-3.8.patch | 1674 ++
 sagemath-rpy-3.patch  |   79 
 sagemath-singular-4.1.2.patch |  512 
 test-optional.patch   |   20 
 11 files changed, 7439 insertions(+)

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


[arch-commits] Commit in sagemath/trunk (PKGBUILD sagemath-gap-4.11.patch)

2020-03-06 Thread Antonio Rojas via arch-commits
Date: Friday, March 6, 2020 @ 17:52:29
  Author: arojas
Revision: 591038

gap 4.11 rebuild

Added:
  sagemath/trunk/sagemath-gap-4.11.patch
Modified:
  sagemath/trunk/PKGBUILD

-+
 PKGBUILD|   10 +++---
 sagemath-gap-4.11.patch |   13 +
 2 files changed, 20 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 17:47:12 UTC (rev 591037)
+++ PKGBUILD2020-03-06 17:52:29 UTC (rev 591038)
@@ -8,7 +8,7 @@
 pkgbase=sagemath
 pkgname=(sagemath sagemath-jupyter)
 pkgver=9.0
-pkgrel=8
+pkgrel=9
 pkgdesc="Open Source Mathematics Software, free alternative to Magma, Maple, 
Mathematica, and Matlab"
 arch=(x86_64)
 url="http://www.sagemath.org";
@@ -42,7 +42,8 @@
 sagemath-ecl-sigfpe.patch
 sagemath-ipython7.patch
 sagemath-rpy-3.patch
-sagemath-python-3.8.patch)
+sagemath-python-3.8.patch
+sagemath-gap-4.11.patch)
 sha256sums=('6f5d42b306a2c03073dd95086f80602bd1a0b929b8ad19c6d219c8ca8e96da26'
 '496da0fa42cdfc92b43f5d85610bb462ca9bdc2f4d80fd316e8e9d068dba3b0b'
 '6a5470d7044a50a35a6478f57c19adf72fe54aefebeea8a095915b63f9e219ac'
@@ -52,7 +53,8 @@
 'e44bbde87f3312548faad75b7383ef21fade55be251ab5804de41cd3842ca8a0'
 '7821813d3f104566ca6487de9857acf2bc7fc236a48a77000f04f2dc17b75536'
 '9062b412595e81a5ca560a5ae789f8b7318981689cb8d076b30d8c54a4fc4495'
-'d430e76c5cdebed9bd1cde0f05e74fba620c736c68c018d70d84dc7b3e3c9049')
+'d430e76c5cdebed9bd1cde0f05e74fba620c736c68c018d70d84dc7b3e3c9049'
+'7123af05c79f76b94c89aa97da13dd1c1a796cdf10a9486e0974c88054eb3037')
 
 prepare(){
   cd sage-$pkgver
@@ -72,6 +74,8 @@
   patch -p1 -i ../sagemath-rpy-3.patch
 # Fix mathjax path
   sed -e 's|mathjax|mathjax2|g' -i src/sage/env.py
+# Fix gap.version() with GAP 4.11
+  patch -p1 -i ../sagemath-gap-4.11.patch
 
 # Upstream patches  
 # use Features to detect Cremona databases 
https://trac.sagemath.org/ticket/25825

Added: sagemath-gap-4.11.patch
===
--- sagemath-gap-4.11.patch (rev 0)
+++ sagemath-gap-4.11.patch 2020-03-06 17:52:29 UTC (rev 591038)
@@ -0,0 +1,13 @@
+diff --git a/src/sage/interfaces/gap.py b/src/sage/interfaces/gap.py
+index 2b1cb8aef4..0bbc018499 100644
+--- a/src/sage/interfaces/gap.py
 b/src/sage/interfaces/gap.py
+@@ -891,7 +891,7 @@ class Gap_generic(ExtraTabCompletion, Expect):
+ sage: print(gap.version())
+ 4...
+ """
+-return self.eval('VERSION')[1:-1]
++return self.eval('GAPInfo.Version')[1:-1]
+ 
+ def function_call(self, function, args=None, kwds=None):
+ """


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

2020-03-06 Thread Alexander Rødseth via arch-commits
Date: Friday, March 6, 2020 @ 17:47:06
  Author: arodseth
Revision: 591036

upgpkg: chicken 5.2.0-1

Modified:
  chicken/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 16:34:20 UTC (rev 591035)
+++ PKGBUILD2020-03-06 17:47:06 UTC (rev 591036)
@@ -3,8 +3,8 @@
 # Contributor: David 
 
 pkgname=chicken
-pkgver=5.1.0
-pkgrel=2
+pkgver=5.2.0
+pkgrel=1
 pkgdesc='Feature rich R5RS Scheme compiler and interpreter'
 arch=(x86_64)
 url='https://call-cc.org/'
@@ -13,7 +13,7 @@
 optdepends=('tk: for the tcl/tk egg')
 options=(staticlibs)
 source=("https://code.call-cc.org/releases/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('5c1101a8d8faabfd500ad69101e0c7c8bd826c68970f89c270640470e7b84b4b')
+sha256sums=('819149c8ce7303a9b381d3fdc1d5765c5f9ac4dee6f627d1652f47966a8780fa')
 
 build() {
   make -j1 -C $pkgname-$pkgver \


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

2020-03-06 Thread Alexander Rødseth via arch-commits
Date: Friday, March 6, 2020 @ 17:47:12
  Author: arodseth
Revision: 591037

archrelease: copy trunk to community-x86_64

Added:
  chicken/repos/community-x86_64/PKGBUILD
(from rev 591036, chicken/trunk/PKGBUILD)
Deleted:
  chicken/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 17:47:06 UTC (rev 591036)
+++ PKGBUILD2020-03-06 17:47:12 UTC (rev 591037)
@@ -1,44 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: David 
-
-pkgname=chicken
-pkgver=5.1.0
-pkgrel=2
-pkgdesc='Feature rich R5RS Scheme compiler and interpreter'
-arch=(x86_64)
-url='https://call-cc.org/'
-license=(BSD)
-makedepends=(chicken)
-optdepends=('tk: for the tcl/tk egg')
-options=(staticlibs)
-source=("https://code.call-cc.org/releases/$pkgver/$pkgname-$pkgver.tar.gz";)
-sha256sums=('5c1101a8d8faabfd500ad69101e0c7c8bd826c68970f89c270640470e7b84b4b')
-
-build() {
-  make -j1 -C $pkgname-$pkgver \
-PLATFORM=linux \
-CSC_PROGRAM=chicken-csc \
-CSI_PROGRAM=chicken-csi \
-PREFIX=/usr
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  # Chicken had csc and csi first, but then mono introduced a conflict and
-  # does not seem to want to change this. OpenBSD renamed csc and csi to
-  # chicken-csc and chicken-csi 2018-12-12. We also use these.
-  make -j1 \
-PLATFORM=linux \
-DESTDIR="$pkgdir" \
-PREFIX=/usr \
-CSC_PROGRAM=chicken-csc \
-CSI_PROGRAM=chicken-csi \
-install
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# getver: code.call-cc.org/releases/current/NEWS
-# vim: ts=2 sw=2 et:

Copied: chicken/repos/community-x86_64/PKGBUILD (from rev 591036, 
chicken/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 17:47:12 UTC (rev 591037)
@@ -0,0 +1,44 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: David 
+
+pkgname=chicken
+pkgver=5.2.0
+pkgrel=1
+pkgdesc='Feature rich R5RS Scheme compiler and interpreter'
+arch=(x86_64)
+url='https://call-cc.org/'
+license=(BSD)
+makedepends=(chicken)
+optdepends=('tk: for the tcl/tk egg')
+options=(staticlibs)
+source=("https://code.call-cc.org/releases/$pkgver/$pkgname-$pkgver.tar.gz";)
+sha256sums=('819149c8ce7303a9b381d3fdc1d5765c5f9ac4dee6f627d1652f47966a8780fa')
+
+build() {
+  make -j1 -C $pkgname-$pkgver \
+PLATFORM=linux \
+CSC_PROGRAM=chicken-csc \
+CSI_PROGRAM=chicken-csi \
+PREFIX=/usr
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  # Chicken had csc and csi first, but then mono introduced a conflict and
+  # does not seem to want to change this. OpenBSD renamed csc and csi to
+  # chicken-csc and chicken-csi 2018-12-12. We also use these.
+  make -j1 \
+PLATFORM=linux \
+DESTDIR="$pkgdir" \
+PREFIX=/usr \
+CSC_PROGRAM=chicken-csc \
+CSI_PROGRAM=chicken-csi \
+install
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: code.call-cc.org/releases/current/NEWS
+# vim: ts=2 sw=2 et:


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

2020-03-06 Thread Christian Rebischke via arch-commits
Date: Friday, March 6, 2020 @ 16:34:10
  Author: shibumi
Revision: 591034

upgpkg: hcloud 1.14.0-3 rebuild for go-1.14

Modified:
  hcloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 16:29:08 UTC (rev 591033)
+++ PKGBUILD2020-03-06 16:34:10 UTC (rev 591034)
@@ -4,7 +4,7 @@
 _pkgname=cli
 pkgname=hcloud
 pkgver=1.14.0
-pkgrel=2
+pkgrel=3
 pkgdesc="CLI for Hetzner Cloud"
 arch=('x86_64')
 url='https://github.com/hetznercloud/cli'


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

2020-03-06 Thread Christian Rebischke via arch-commits
Date: Friday, March 6, 2020 @ 16:34:20
  Author: shibumi
Revision: 591035

archrelease: copy trunk to community-x86_64

Added:
  hcloud/repos/community-x86_64/CHANGES.md
(from rev 591034, hcloud/trunk/CHANGES.md)
  hcloud/repos/community-x86_64/PKGBUILD
(from rev 591034, hcloud/trunk/PKGBUILD)
  hcloud/repos/community-x86_64/_hcloud.zsh
(from rev 591034, hcloud/trunk/_hcloud.zsh)
Deleted:
  hcloud/repos/community-x86_64/CHANGES.md
  hcloud/repos/community-x86_64/PKGBUILD
  hcloud/repos/community-x86_64/_hcloud.zsh

-+
 CHANGES.md  |  212 +-
 PKGBUILD|  100 +--
 _hcloud.zsh |4 -
 3 files changed, 158 insertions(+), 158 deletions(-)

Deleted: CHANGES.md
===
--- CHANGES.md  2020-03-06 16:34:10 UTC (rev 591034)
+++ CHANGES.md  2020-03-06 16:34:20 UTC (rev 591035)
@@ -1,106 +0,0 @@
-# Changes
-
-## v1.14.0
-
-* Expose server’s MAC address in networks on `hcloud server describe`
-* Add support for names to Floating IP commands
-* Make `--ip-range` on `hcloud network add-subnet` optional
-* Add debug mode (use `HCLOUD_DEBUG` and `HCLOUD_DEBUG_FILE`)
-* Add `hcloud server ip` command
-* Expose `Created` on `hcloud floating-ip|image|ssh-key|volume describe`
-* Refactor progressbar and add loading animation for running actions
-
-## v1.13.0
-
-* Show server name instead of ID on `hcloud floating-ip|volume|image list`
-* Add support for networks
-
-## v1.12.0
-
-* Add support for executing commands via `hcloud server ssh  `
-* Make overriding context via `HCLOUD_CONTEXT` work
-* Add support for JSON and Go template output
-* Add support for multiple user data files
-* Add length validation for API token on `hcloud context create`
-* Add `active` column to context list on `hcloud context list`
-
-## v1.11.0
-
-* Add support for automounting and formatting volumes
-
-## v1.10.0
-
-* Fix creating a volume when server is specified by its name
-* Deprecate and ignore the `--window` flag on `hcloud server enable-backup`
-* Add output columns `type|labels|volumes|protection` to `hcloud server list`
-* Add output columns `labels|protection` to `hcloud volume list`
-* Add output column `labels` to `hcloud image list`
-* Add output column `labels` to `hcloud floating-ip list`
-* Add output column `labels` to `hcloud ssh-key list`
-
-## v1.9.1
-
-* Fix formatting issue on `hcloud volume list` and `hcloud volume describe`
-
-## v1.9.0
-
-* Add support for volumes
-* Add `--start-after-create` flag to `hcloud server create` command
-
-## v1.8.0
-
-* Add `hcloud ssh-key update` command
-* Add `-u/--user` and `-p/--port` flags to `hcloud server ssh` command
-* Add `hcloud server set-rdns` command
-* Add `hcloud floating-ip set-rdns` command
-
-## v1.7.0
-
-* Add type filter flag `-t` / `--type` to `image list` command
-* Expose labels of servers, Floating IPs, images, and SSH Keys
-* Add `hcloud {server|ssh-key|image|floating-ip} {add-label|remove-label}` 
commands
-
-## v1.6.1
-
-* Fix invalid formatting of integers in `hcloud * list` commands
-
-## v1.6.0
-
-* Show IP address upon creating a server
-* Add `--poll-interval` flag for controlling the polling interval (for example 
for action progress updates)
-
-## v1.5.0
-
-* Add `hcloud server ssh` command to open an SSH connection to the server
-
-## v1.4.0
-
-* Document `-o` flag for controlling output formatting
-* Add commands `enable-protection` and `disable-protection` for
-  images, Floating IPs, and servers
-
-## v1.3.2
-
-* Show progress for every action
-* Show datacenter in `server list` and `server describe`
-
-## v1.3.1
-
-* Only poll action progress every 500ms (instead of every 100ms)
-* Document `HCLOUD_TOKEN` and make it work when there is no active context
-
-## v1.3.0
-
-* Print dates in local time
-* Do not echo token when creating a context
-* Add `--user-data-from-file` flag to `hcloud server create` command
-
-## v1.2.0
-
-* Update hcloud library to v1.2.0 fixing rate limit check
-
-## v1.1.0
-
-* Show image information in `hcloud server describe`
-* Auto-activate created context on `hcloud context create`
-* Fix `hcloud version` not showing correct version

Copied: hcloud/repos/community-x86_64/CHANGES.md (from rev 591034, 
hcloud/trunk/CHANGES.md)
===
--- CHANGES.md  (rev 0)
+++ CHANGES.md  2020-03-06 16:34:20 UTC (rev 591035)
@@ -0,0 +1,106 @@
+# Changes
+
+## v1.14.0
+
+* Expose server’s MAC address in networks on `hcloud server describe`
+* Add support for names to Floating IP commands
+* Make `--ip-range` on `hcloud network add-subnet` optional
+* Add debug mode (use `HCLOUD_DEBUG` and `HCLOUD_DEBUG_FILE`)
+* Add `hcloud server ip` command
+* Expose `Created` on `hcloud floating-ip|image|ssh-key|volume describe`
+* Refactor progressbar and add loading animation for running actions
+
+## v1

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

2020-03-06 Thread Christian Rebischke via arch-commits
Date: Friday, March 6, 2020 @ 16:29:00
  Author: shibumi
Revision: 591032

upgpkg: mkcert 1.4.1-3 Go-1.14 rebuild

Modified:
  mkcert/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 16:00:01 UTC (rev 591031)
+++ PKGBUILD2020-03-06 16:29:00 UTC (rev 591032)
@@ -4,7 +4,7 @@
 pkgname=mkcert
 _package="github.com/FiloSottile/${pkgname}"
 pkgver=1.4.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Simple tool for making locally-trusted development certificates"
 arch=('x86_64')
 url="https://github.com/FiloSottile/mkcert";
@@ -19,6 +19,11 @@
   go build -trimpath -ldflags "-extldflags ${LDFLAGS}"
 }
 
+check() {
+  cd "${pkgname}-${pkgver}"
+  go test ./...
+}
+
 package() {
   cd "${pkgname}-${pkgver}"
   install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"


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

2020-03-06 Thread Christian Rebischke via arch-commits
Date: Friday, March 6, 2020 @ 16:29:08
  Author: shibumi
Revision: 591033

archrelease: copy trunk to community-x86_64

Added:
  mkcert/repos/community-x86_64/PKGBUILD
(from rev 591032, mkcert/trunk/PKGBUILD)
Deleted:
  mkcert/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 16:29:00 UTC (rev 591032)
+++ PKGBUILD2020-03-06 16:29:08 UTC (rev 591033)
@@ -1,26 +0,0 @@
-# Maintainer : Christian Rebischke 
-# Contributor: Simon Legner 
-
-pkgname=mkcert
-_package="github.com/FiloSottile/${pkgname}"
-pkgver=1.4.1
-pkgrel=2
-pkgdesc="Simple tool for making locally-trusted development certificates"
-arch=('x86_64')
-url="https://github.com/FiloSottile/mkcert";
-license=('BSD')
-makedepends=('go-pie' 'git')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/FiloSottile/${pkgname}/archive/v${pkgver}.tar.gz";)
-sha512sums=('23b008a06ba594f7f5a82b12d00dc129d237421f776bcbf4be04e61a99fa92d49977a616846de45ef98292e31d28bbd543bec70566d14ecfceccee8bbe49038f')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  go build -trimpath -ldflags "-extldflags ${LDFLAGS}"
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: mkcert/repos/community-x86_64/PKGBUILD (from rev 591032, 
mkcert/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 16:29:08 UTC (rev 591033)
@@ -0,0 +1,31 @@
+# Maintainer : Christian Rebischke 
+# Contributor: Simon Legner 
+
+pkgname=mkcert
+_package="github.com/FiloSottile/${pkgname}"
+pkgver=1.4.1
+pkgrel=3
+pkgdesc="Simple tool for making locally-trusted development certificates"
+arch=('x86_64')
+url="https://github.com/FiloSottile/mkcert";
+license=('BSD')
+makedepends=('go-pie' 'git')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/FiloSottile/${pkgname}/archive/v${pkgver}.tar.gz";)
+sha512sums=('23b008a06ba594f7f5a82b12d00dc129d237421f776bcbf4be04e61a99fa92d49977a616846de45ef98292e31d28bbd543bec70566d14ecfceccee8bbe49038f')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  go build -trimpath -ldflags "-extldflags ${LDFLAGS}"
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  go test ./...
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


[arch-commits] Commit in intel-compute-runtime/repos/community-x86_64 (2 files)

2020-03-06 Thread Daniel Bermond via arch-commits
Date: Friday, March 6, 2020 @ 16:00:01
  Author: dbermond
Revision: 591031

archrelease: copy trunk to community-x86_64

Added:
  intel-compute-runtime/repos/community-x86_64/PKGBUILD
(from rev 591030, intel-compute-runtime/trunk/PKGBUILD)
Deleted:
  intel-compute-runtime/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 15:59:35 UTC (rev 591030)
+++ PKGBUILD2020-03-06 16:00:01 UTC (rev 591031)
@@ -1,31 +0,0 @@
-# Maintainer: Daniel Bermond 
-# Maintainer: Bruno Pagani 
-
-pkgname=intel-compute-runtime
-pkgver=20.08.15750
-pkgrel=1
-pkgdesc="Intel(R) Graphics Compute Runtime for OpenCL(TM). Replaces Beignet 
for Gen8 (Broadwell) and beyond."
-arch=(x86_64)
-url="https://01.org/compute-runtime";
-license=(MIT)
-depends=(gcc-libs intel-gmmlib intel-graphics-compiler)
-makedepends=(cmake libva)
-optdepends=('libva: for cl_intel_va_api_media_sharing'
-'libdrm: for cl_intel_va_api_media_sharing')
-provides=(opencl-driver)
-source=(https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('0e7846bcae93f65c766914fe96592e449a64574c3d5b9fd7c0b69ad01dae5fd4')
-
-build() {
-cmake -B build -S compute-runtime-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DNEO_DRIVER_VERSION=${pkgver}
-make -C build
-}
-
-package() {
-make -C build DESTDIR="${pkgdir}" install
-install -Dm644 compute-runtime-${pkgver}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: intel-compute-runtime/repos/community-x86_64/PKGBUILD (from rev 591030, 
intel-compute-runtime/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 16:00:01 UTC (rev 591031)
@@ -0,0 +1,31 @@
+# Maintainer: Daniel Bermond 
+# Maintainer: Bruno Pagani 
+
+pkgname=intel-compute-runtime
+pkgver=20.09.15980
+pkgrel=1
+pkgdesc="Intel(R) Graphics Compute Runtime for OpenCL(TM). Replaces Beignet 
for Gen8 (Broadwell) and beyond."
+arch=(x86_64)
+url="https://01.org/compute-runtime";
+license=(MIT)
+depends=(gcc-libs intel-gmmlib intel-graphics-compiler)
+makedepends=(cmake libva)
+optdepends=('libva: for cl_intel_va_api_media_sharing'
+'libdrm: for cl_intel_va_api_media_sharing')
+provides=(opencl-driver)
+source=(https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('26ac5e2f175e5aa53bed322d4f996b4218621e4cc4e3c00a6874224dc3b9c8f2')
+
+build() {
+cmake -B build -S compute-runtime-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DNEO_DRIVER_VERSION=${pkgver}
+make -C build
+}
+
+package() {
+make -C build DESTDIR="${pkgdir}" install
+install -Dm644 compute-runtime-${pkgver}/LICENSE -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in intel-compute-runtime/trunk (PKGBUILD)

2020-03-06 Thread Daniel Bermond via arch-commits
Date: Friday, March 6, 2020 @ 15:59:35
  Author: dbermond
Revision: 591030

upgpkg: intel-compute-runtime 20.09.15980-1

Modified:
  intel-compute-runtime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 15:58:57 UTC (rev 591029)
+++ PKGBUILD2020-03-06 15:59:35 UTC (rev 591030)
@@ -2,7 +2,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=intel-compute-runtime
-pkgver=20.08.15750
+pkgver=20.09.15980
 pkgrel=1
 pkgdesc="Intel(R) Graphics Compute Runtime for OpenCL(TM). Replaces Beignet 
for Gen8 (Broadwell) and beyond."
 arch=(x86_64)
@@ -14,7 +14,7 @@
 'libdrm: for cl_intel_va_api_media_sharing')
 provides=(opencl-driver)
 
source=(https://github.com/intel/compute-runtime/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('0e7846bcae93f65c766914fe96592e449a64574c3d5b9fd7c0b69ad01dae5fd4')
+sha256sums=('26ac5e2f175e5aa53bed322d4f996b4218621e4cc4e3c00a6874224dc3b9c8f2')
 
 build() {
 cmake -B build -S compute-runtime-${pkgver} \


[arch-commits] Commit in intel-graphics-compiler/repos/community-x86_64 (2 files)

2020-03-06 Thread Daniel Bermond via arch-commits
Date: Friday, March 6, 2020 @ 15:58:57
  Author: dbermond
Revision: 591029

archrelease: copy trunk to community-x86_64

Added:
  intel-graphics-compiler/repos/community-x86_64/PKGBUILD
(from rev 591028, intel-graphics-compiler/trunk/PKGBUILD)
Deleted:
  intel-graphics-compiler/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 15:58:32 UTC (rev 591028)
+++ PKGBUILD2020-03-06 15:58:57 UTC (rev 591029)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel Bermond 
-# Maintainer: Bruno Pagani 
-
-pkgname=intel-graphics-compiler
-epoch=1
-pkgver=1.0.3390
-pkgrel=1
-pkgdesc="Intel Graphics Compiler for OpenCL"
-arch=(x86_64)
-url="https://github.com/intel/intel-graphics-compiler";
-license=(MIT)
-depends=(llvm-libs intel-opencl-clang)
-makedepends=(cmake clang llvm zlib python)
-options=(!emptydirs)
-source=("${url}/archive/igc-${pkgver}.tar.gz")
-sha256sums=('73b4e100bd2a5250b339add8ef0b6d4ed6c6ab5a12d50a27882f5b98a0b06116')
-
-build() {
-cmake -B build -S ${pkgname}-igc-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DIGC_OPTION__ARCHITECTURE_TARGET='Linux64' \
--DIGC_PREFERRED_LLVM_VERSION='9.0.1' \
--DINSTALL_GENX_IR=ON \
--Wno-dev
-make -C build
-}
-
-package() {
-make -C build DESTDIR="${pkgdir}" install
-install -D -m644 ${pkgname}-igc-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: intel-graphics-compiler/repos/community-x86_64/PKGBUILD (from rev 
591028, intel-graphics-compiler/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 15:58:57 UTC (rev 591029)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel Bermond 
+# Maintainer: Bruno Pagani 
+
+pkgname=intel-graphics-compiler
+epoch=1
+pkgver=1.0.3445
+pkgrel=1
+pkgdesc="Intel Graphics Compiler for OpenCL"
+arch=(x86_64)
+url="https://github.com/intel/intel-graphics-compiler";
+license=(MIT)
+depends=(llvm-libs intel-opencl-clang)
+makedepends=(cmake clang llvm zlib python)
+options=(!emptydirs)
+source=("${url}/archive/igc-${pkgver}.tar.gz")
+sha256sums=('314547a39eb9f0f8100ffb6c6cc8307fffa20472b5fe4fe962d6366aed08cbee')
+
+build() {
+cmake -B build -S ${pkgname}-igc-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DIGC_OPTION__ARCHITECTURE_TARGET='Linux64' \
+-DIGC_PREFERRED_LLVM_VERSION='9.0.1' \
+-DINSTALL_GENX_IR=ON \
+-Wno-dev
+make -C build
+}
+
+package() {
+make -C build DESTDIR="${pkgdir}" install
+install -D -m644 ${pkgname}-igc-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}
+}


[arch-commits] Commit in intel-graphics-compiler/trunk (PKGBUILD)

2020-03-06 Thread Daniel Bermond via arch-commits
Date: Friday, March 6, 2020 @ 15:58:32
  Author: dbermond
Revision: 591028

upgpkg: intel-graphics-compiler 1:1.0.3445-1

Modified:
  intel-graphics-compiler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 15:42:37 UTC (rev 591027)
+++ PKGBUILD2020-03-06 15:58:32 UTC (rev 591028)
@@ -3,7 +3,7 @@
 
 pkgname=intel-graphics-compiler
 epoch=1
-pkgver=1.0.3390
+pkgver=1.0.3445
 pkgrel=1
 pkgdesc="Intel Graphics Compiler for OpenCL"
 arch=(x86_64)
@@ -13,7 +13,7 @@
 makedepends=(cmake clang llvm zlib python)
 options=(!emptydirs)
 source=("${url}/archive/igc-${pkgver}.tar.gz")
-sha256sums=('73b4e100bd2a5250b339add8ef0b6d4ed6c6ab5a12d50a27882f5b98a0b06116')
+sha256sums=('314547a39eb9f0f8100ffb6c6cc8307fffa20472b5fe4fe962d6366aed08cbee')
 
 build() {
 cmake -B build -S ${pkgname}-igc-${pkgver} \


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

2020-03-06 Thread Christian Hesse via arch-commits
Date: Friday, March 6, 2020 @ 15:42:37
  Author: eworm
Revision: 591027

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-systemd/repos/multilib-testing-x86_64/
  lib32-systemd/repos/multilib-testing-x86_64/PKGBUILD
(from rev 591026, lib32-systemd/trunk/PKGBUILD)

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

Copied: lib32-systemd/repos/multilib-testing-x86_64/PKGBUILD (from rev 591026, 
lib32-systemd/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2020-03-06 15:42:37 UTC (rev 591027)
@@ -0,0 +1,119 @@
+# Maintainer: Christian Hesse 
+# Maintainer: Dave Reisner 
+# Maintainer: Tom Gundersen 
+
+pkgname=lib32-systemd
+_pkgbasename=systemd
+_tag='68fef5d635424a60224cce610d30a9041124c204' # git rev-parse v${pkgver}
+pkgver=245
+pkgrel=1
+pkgdesc='system and service manager (32-bit)'
+arch=('x86_64')
+url='https://www.github.com/systemd/systemd'
+license=('GPL2' 'LGPL2.1')
+depends=('lib32-gcc-libs' 'lib32-libcap' 'lib32-libgcrypt' 'lib32-xz' 
'systemd')
+makedepends=('git' 'gperf' 'intltool' 'lib32-acl' 'lib32-bzip2'
+ 'lib32-curl' 'lib32-dbus' 'lib32-gcc-libs' 'lib32-glib2'
+ 'lib32-gnutls' 'lib32-libelf' 'lib32-libidn2' 'lib32-pcre2'
+ 'libxslt' 'meson')
+options=('strip')
+validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4'  # Lennart Poettering 

+  '5C251B5FC54EB2F80F407AAAC54CA336CFEB557E') # Zbigniew 
Jędrzejewski-Szmek 
+source=("git+https://github.com/systemd/systemd-stable#tag=${_tag}?signed";
+"git+https://github.com/systemd/systemd#tag=v${pkgver%.*}?signed";)
+sha512sums=('SKIP'
+'SKIP')
+
+_backports=(
+)
+
+_reverts=(
+)
+
+prepare() {
+  cd "$_pkgbasename-stable"
+
+  # add upstream repository for cherry-picking
+  git remote add -f upstream ../systemd
+
+  local _c
+  for _c in "${_backports[@]}"; do
+git cherry-pick -n "${_c}"
+  done
+  for _c in "${_reverts[@]}"; do
+git revert -n "${_c}"
+  done
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  local _timeservers=({0..3}.arch.pool.ntp.org)
+  local _nameservers=(
+# We use these public name services, ordered by their
+# privacy policy (hopefully):
+#  * Cloudflare (https://1.1.1.1/)
+#  * Quad9 without filtering (https://www.quad9.net/)
+#  * Google (https://developers.google.com/speed/public-dns/)
+1.1.1.1
+9.9.9.10
+8.8.8.8
+2606:4700:4700::
+2620:fe::10
+2001:4860:4860::
+  )
+ 
+  local _meson_options=(
+--libexecdir   /usr/lib32
+--libdir   /usr/lib32
+
+-Dversion-tag="${pkgver}-${pkgrel}-arch"
+
+-Daudit=false
+-Dblkid=false
+-Dgnu-efi=false
+-Dhtml=false
+-Dima=false
+-Dkmod=false
+-Dlibcryptsetup=false
+-Dlibidn2=true
+-Dlibiptc=false
+-Dlz4=false
+-Dman=false
+-Dmanpages=false
+-Dnetworkd=false
+-Dpam=false
+-Dpython=false
+-Drepart=false
+-Dseccomp=false
+
+-Ddbuspolicydir=/usr/share/dbus-1/system.d
+-Ddefault-hierarchy=hybrid
+-Ddefault-kill-user-processes=false
+-Ddefault-locale=C
+-Dfallback-hostname='archlinux'
+-Dnologin-path=/usr/bin/nologin
+-Dntp-servers="${_timeservers[*]}"
+-Ddns-servers="${_nameservers[*]}"
+-Drpmmacrosdir=no
+-Dsysvinit-path=
+-Dsysvrcnd-path=
+  )
+
+  arch-meson "$_pkgbasename-stable" build "${_meson_options[@]}"
+
+  ninja -C build
+}
+
+check() {
+  meson test -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+
+  rm -rf "${pkgdir}"/{etc,var}
+  rm -rf "${pkgdir}"/usr/{bin,include,lib,share}
+}


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

2020-03-06 Thread Christian Hesse via arch-commits
Date: Friday, March 6, 2020 @ 15:42:31
  Author: eworm
Revision: 591026

upgpkg: lib32-systemd 245-1

new upstream release

Modified:
  lib32-systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 15:38:16 UTC (rev 591025)
+++ PKGBUILD2020-03-06 15:42:31 UTC (rev 591026)
@@ -6,7 +6,7 @@
 _pkgbasename=systemd
 _tag='68fef5d635424a60224cce610d30a9041124c204' # git rev-parse v${pkgver}
 pkgver=245
-pkgrel=0
+pkgrel=1
 pkgdesc='system and service manager (32-bit)'
 arch=('x86_64')
 url='https://www.github.com/systemd/systemd'
@@ -72,21 +72,22 @@
 -Dversion-tag="${pkgver}-${pkgrel}-arch"
 
 -Daudit=false
+-Dblkid=false
 -Dgnu-efi=false
+-Dhtml=false
 -Dima=false
--Dlibidn2=true
--Dlz4=false
--Dblkid=false
 -Dkmod=false
 -Dlibcryptsetup=false
+-Dlibidn2=true
 -Dlibiptc=false
+-Dlz4=false
+-Dman=false
 -Dmanpages=false
 -Dnetworkd=false
 -Dpam=false
 -Dpython=false
+-Drepart=false
 -Dseccomp=false
--Dman=false
--Dhtml=false
 
 -Ddbuspolicydir=/usr/share/dbus-1/system.d
 -Ddefault-hierarchy=hybrid


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

2020-03-06 Thread Jan Steffens via arch-commits
Date: Friday, March 6, 2020 @ 15:38:04
  Author: heftig
Revision: 591024

2.33-1

Modified:
  lib32-libcap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 15:37:10 UTC (rev 591023)
+++ PKGBUILD2020-03-06 15:38:04 UTC (rev 591024)
@@ -2,7 +2,7 @@
 # Contributor: Hugo Doria 
 
 pkgname=lib32-libcap
-pkgver=2.32
+pkgver=2.33
 pkgrel=1
 pkgdesc="POSIX 1003.1e capabilities (32-bit)"
 arch=(x86_64)
@@ -12,7 +12,7 @@
 makedepends=('linux-api-headers')
 provides=('libcap.so')
 
source=(https://kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-$pkgver.tar.{xz,sign})
-sha256sums=('1005e3d227f2340ad1e3360ef8b69d15e3c72a29c09f4894d7aac038bd26e2be'
+sha256sums=('08edeaba2757021aeec45c4eeec52566675e0e0f5d4f057284d729e04f2643d6'
 'SKIP')
 validpgpkeys=('38A644698C69787344E954CE29EE848AE2CCF3F4') # Andrew G. Morgan 

 
@@ -24,13 +24,22 @@
   sed -i "s/LDFLAGS :=/LDFLAGS +=/" Make.Rules
 }
 
+_makeargs=(
+  CC="gcc -m32"
+  KERNEL_HEADERS=/usr/include
+  RAISE_SETFCAP=no
+  SBINDIR=/usr/bin
+  lib=lib32
+  prefix=/usr
+)
+
 build() {
-  make -C libcap-$pkgver/libcap KERNEL_HEADERS=/usr/include CC="gcc -m32"
+  make -C libcap-$pkgver/libcap "${_makeargs[@]}"
 }
 
 package() {
-  cd libcap-$pkgver
-  make -C libcap prefix=/usr lib=lib32 DESTDIR="$pkgdir" RAISE_SETFCAP=no 
install
+  cd libcap-$pkgver/libcap
+  make DESTDIR="$pkgdir" "${_makeargs[@]}" install
 
   rm -r "$pkgdir"/usr/include
 }


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

2020-03-06 Thread Jan Steffens via arch-commits
Date: Friday, March 6, 2020 @ 15:38:17
  Author: heftig
Revision: 376870

archrelease: copy trunk to testing-x86_64

Added:
  libcap/repos/testing-x86_64/
  libcap/repos/testing-x86_64/PKGBUILD
(from rev 376869, libcap/trunk/PKGBUILD)

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

Copied: libcap/repos/testing-x86_64/PKGBUILD (from rev 376869, 
libcap/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-03-06 15:38:17 UTC (rev 376870)
@@ -0,0 +1,47 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Hugo Doria 
+
+pkgname=libcap
+pkgver=2.33
+pkgrel=1
+pkgdesc='POSIX 1003.1e capabilities'
+arch=(x86_64)
+url='https://sites.google.com/site/fullycapable/'
+license=(GPL2)
+depends=(glibc attr)
+makedepends=(linux-api-headers)
+provides=(libcap.so)
+source=(https://kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-$pkgver.tar.{xz,sign})
+sha256sums=('08edeaba2757021aeec45c4eeec52566675e0e0f5d4f057284d729e04f2643d6'
+'SKIP')
+validpgpkeys=(38A644698C69787344E954CE29EE848AE2CCF3F4) # Andrew G. Morgan 

+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i "/SBINDIR/s#sbin#bin#" Make.Rules
+
+  # use our buildflags
+  sed -i "s/CFLAGS :=/CFLAGS += \$(CPPFLAGS) /" Make.Rules
+  sed -i "s/LDFLAGS :=/LDFLAGS +=/" Make.Rules
+}
+
+_makeargs=(
+  KERNEL_HEADERS=/usr/include
+  RAISE_SETFCAP=no
+  SBINDIR=/usr/bin
+  lib=lib
+  prefix=/usr
+)
+
+build() {
+  make -C $pkgname-$pkgver "${_makeargs[@]}"
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" "${_makeargs[@]}" install
+
+  install -Dm644 pam_cap/capability.conf \
+"$pkgdir"/usr/share/doc/$pkgname/capability.conf.example
+}


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

2020-03-06 Thread Jan Steffens via arch-commits
Date: Friday, March 6, 2020 @ 15:38:16
  Author: heftig
Revision: 591025

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-libcap/repos/multilib-testing-x86_64/
  lib32-libcap/repos/multilib-testing-x86_64/PKGBUILD
(from rev 591024, lib32-libcap/trunk/PKGBUILD)

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

Copied: lib32-libcap/repos/multilib-testing-x86_64/PKGBUILD (from rev 591024, 
lib32-libcap/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2020-03-06 15:38:16 UTC (rev 591025)
@@ -0,0 +1,45 @@
+# Maintainer: Florian Pritz 
+# Contributor: Hugo Doria 
+
+pkgname=lib32-libcap
+pkgver=2.33
+pkgrel=1
+pkgdesc="POSIX 1003.1e capabilities (32-bit)"
+arch=(x86_64)
+url="https://sites.google.com/site/fullycapable/";
+license=('GPL2')
+depends=('lib32-glibc' 'lib32-attr' 'libcap')
+makedepends=('linux-api-headers')
+provides=('libcap.so')
+source=(https://kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-$pkgver.tar.{xz,sign})
+sha256sums=('08edeaba2757021aeec45c4eeec52566675e0e0f5d4f057284d729e04f2643d6'
+'SKIP')
+validpgpkeys=('38A644698C69787344E954CE29EE848AE2CCF3F4') # Andrew G. Morgan 

+
+prepare() {
+  cd libcap-$pkgver
+
+  # use our buildflags
+  sed -i "s/CFLAGS :=/CFLAGS += \$(CPPFLAGS) /" Make.Rules
+  sed -i "s/LDFLAGS :=/LDFLAGS +=/" Make.Rules
+}
+
+_makeargs=(
+  CC="gcc -m32"
+  KERNEL_HEADERS=/usr/include
+  RAISE_SETFCAP=no
+  SBINDIR=/usr/bin
+  lib=lib32
+  prefix=/usr
+)
+
+build() {
+  make -C libcap-$pkgver/libcap "${_makeargs[@]}"
+}
+
+package() {
+  cd libcap-$pkgver/libcap
+  make DESTDIR="$pkgdir" "${_makeargs[@]}" install
+
+  rm -r "$pkgdir"/usr/include
+}


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

2020-03-06 Thread Jan Steffens via arch-commits
Date: Friday, March 6, 2020 @ 15:38:03
  Author: heftig
Revision: 376869

2.33-1

Modified:
  libcap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 15:21:27 UTC (rev 376868)
+++ PKGBUILD2020-03-06 15:38:03 UTC (rev 376869)
@@ -3,7 +3,7 @@
 # Contributor: Hugo Doria 
 
 pkgname=libcap
-pkgver=2.32
+pkgver=2.33
 pkgrel=1
 pkgdesc='POSIX 1003.1e capabilities'
 arch=(x86_64)
@@ -13,7 +13,7 @@
 makedepends=(linux-api-headers)
 provides=(libcap.so)
 
source=(https://kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-$pkgver.tar.{xz,sign})
-sha256sums=('1005e3d227f2340ad1e3360ef8b69d15e3c72a29c09f4894d7aac038bd26e2be'
+sha256sums=('08edeaba2757021aeec45c4eeec52566675e0e0f5d4f057284d729e04f2643d6'
 'SKIP')
 validpgpkeys=(38A644698C69787344E954CE29EE848AE2CCF3F4) # Andrew G. Morgan 

 
@@ -26,13 +26,21 @@
   sed -i "s/LDFLAGS :=/LDFLAGS +=/" Make.Rules
 }
 
+_makeargs=(
+  KERNEL_HEADERS=/usr/include
+  RAISE_SETFCAP=no
+  SBINDIR=/usr/bin
+  lib=lib
+  prefix=/usr
+)
+
 build() {
-  make -C $pkgname-$pkgver KERNEL_HEADERS=/usr/include
+  make -C $pkgname-$pkgver "${_makeargs[@]}"
 }
 
 package() {
   cd $pkgname-$pkgver
-  make prefix=/usr lib=/lib DESTDIR="$pkgdir" RAISE_SETFCAP=no install
+  make DESTDIR="$pkgdir" "${_makeargs[@]}" install
 
   install -Dm644 pam_cap/capability.conf \
 "$pkgdir"/usr/share/doc/$pkgname/capability.conf.example


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

2020-03-06 Thread Laurent Carlier via arch-commits
Date: Friday, March 6, 2020 @ 15:36:59
  Author: lcarlier
Revision: 591022

upgpkg: lib32-mesa 20.0.1-1: upstream update 20.0.1

Modified:
  lib32-mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 15:26:23 UTC (rev 591021)
+++ PKGBUILD2020-03-06 15:36:59 UTC (rev 591022)
@@ -4,7 +4,7 @@
 
 pkgbase=lib32-mesa
 pkgname=('lib32-opencl-mesa' 'lib32-vulkan-intel' 'lib32-vulkan-radeon' 
'lib32-libva-mesa-driver' 'lib32-mesa-vdpau' 'lib32-mesa')
-pkgver=20.0.0
+pkgver=20.0.1
 pkgrel=1
 arch=('x86_64')
 makedepends=('python-mako' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 
'xorgproto' 'lib32-libdrm'
@@ -16,7 +16,7 @@
 source=(https://mesa.freedesktop.org/archive/mesa-${pkgver}.tar.xz{,.sig}
 LICENSE
 crossfile.ini)
-sha512sums=('3968820029434682fb6644947c76e12b6bb991a3d05cb519a6ea971ecc4aa9b21d03f84b9a452cc21cc77a7981db9e40dd2dfd3ea3dee85b3dd88a59b4842bbb'
+sha512sums=('9e005ebbb699c1ad83b73c503c467907958a3d9cad644d8f7ac95804fd265debcf563784a1054c8e0bf40106e33b13185607e8270a197e9ddc34c50b1b2c4d82'
 'SKIP'
 
'f9f0d0ccf166fe6cb684478b6f1e1ab1f2850431c06aa041738563eb1808a004e52cdec823c103c9e180f03ffc083e95974d291353f0220fe52ae6d4897fecc7'
 
'c7dbb390ebde291c517a854fcbe5166c24e95206f768cc9458ca896b2253aabd6df12a7becf831998721b2d622d0c02afdd8d519e77dea8e1d6807b35f0166fe')


[arch-commits] Commit in lib32-mesa/repos/multilib-testing-x86_64 (6 files)

2020-03-06 Thread Laurent Carlier via arch-commits
Date: Friday, March 6, 2020 @ 15:37:10
  Author: lcarlier
Revision: 591023

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-mesa/repos/multilib-testing-x86_64/LICENSE
(from rev 591022, lib32-mesa/trunk/LICENSE)
  lib32-mesa/repos/multilib-testing-x86_64/PKGBUILD
(from rev 591022, lib32-mesa/trunk/PKGBUILD)
  lib32-mesa/repos/multilib-testing-x86_64/crossfile.ini
(from rev 591022, lib32-mesa/trunk/crossfile.ini)
Deleted:
  lib32-mesa/repos/multilib-testing-x86_64/LICENSE
  lib32-mesa/repos/multilib-testing-x86_64/PKGBUILD
  lib32-mesa/repos/multilib-testing-x86_64/crossfile.ini

---+
 LICENSE   |  166 +-
 PKGBUILD  |  352 
 crossfile.ini |4 
 3 files changed, 261 insertions(+), 261 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2020-03-06 15:36:59 UTC (rev 591022)
+++ LICENSE 2020-03-06 15:37:10 UTC (rev 591023)
@@ -1,83 +0,0 @@
-The Mesa 3D Graphics Library
-
-Disclaimer
-
-   Mesa is a 3-D graphics library with an API which is very similar to
-   that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
-   syntax or state machine, it is being used with authorization from
-   [2]Silicon Graphics, Inc.(SGI). However, the author does not possess an
-   OpenGL license from SGI, and makes no claim that Mesa is in any way a
-   compatible replacement for OpenGL or associated with SGI. Those who
-   want a licensed implementation of OpenGL should contact a licensed
-   vendor.
-
-   Please do not refer to the library as MesaGL (for legal reasons). It's
-   just Mesa or The Mesa 3-D graphics library.
-
-   * OpenGL is a trademark of [3]Silicon Graphics Incorporated.
-
-License / Copyright Information
-
-   The Mesa distribution consists of several components. Different
-   copyrights and licenses apply to different components. For example, the
-   GLX client code uses the SGI Free Software License B, and some of the
-   Mesa device drivers are copyrighted by their authors. See below for a
-   list of Mesa's main components and the license for each.
-
-   The core Mesa library is licensed according to the terms of the MIT
-   license. This allows integration with the XFree86, Xorg and DRI
-   projects.
-
-   The default Mesa license is as follows:
-
-Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the "Software"),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-Attention, Contributors
-
-   When contributing to the Mesa project you must agree to the licensing
-   terms of the component to which you're contributing. The following
-   section lists the primary components of the Mesa distribution and their
-   respective licenses.
-
-Mesa Component Licenses
-
-Component Location   License
---
-Main Mesa codesrc/mesa/  MIT
-
-Device driverssrc/mesa/drivers/* MIT, generally
-
-Gallium code  src/gallium/   MIT
-
-Ext headers   include/GL/glext.h Khronos
-  include/GL/glxext.h
-
-GLX client code   src/glx/   SGI Free Software License B
-
-C11 threadinclude/c11/threads*.h Boost (permissive) emulation
-
-   In general, consult the source files for license terms.
-
-References
-
-   1. https://www.opengl.org/
-   2. https://www.sgi.com/
-   3. https://www.sgi.com/

Copied: lib32-mesa/repos/multilib-testing-x86_64/LICENSE (from rev 591022, 
lib32-mesa/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2020-03-06 15:37:10 UTC (rev 591023)
@@ -0,0 +1,83 @@
+The Mesa 3D Graphics Library
+
+Disclaimer
+
+   Mesa is a 3-D graphics library with an API which is very similar to
+   that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
+   syntax or state machine, it

[arch-commits] Commit in libretro-beetle-psx/trunk (PKGBUILD)

2020-03-06 Thread Maxime Gauduin via arch-commits
Date: Friday, March 6, 2020 @ 15:26:17
  Author: alucryd
Revision: 591020

upgpkg: libretro-beetle-psx 2267-1

Modified:
  libretro-beetle-psx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 15:25:50 UTC (rev 591019)
+++ PKGBUILD2020-03-06 15:26:17 UTC (rev 591020)
@@ -5,7 +5,7 @@
   libretro-beetle-psx
   libretro-beetle-psx-hw
 )
-pkgver=2264
+pkgver=2267
 pkgrel=1
 pkgdesc='Sony PlayStation core'
 arch=(x86_64)


[arch-commits] Commit in libretro-beetle-psx/repos/community-x86_64 (2 files)

2020-03-06 Thread Maxime Gauduin via arch-commits
Date: Friday, March 6, 2020 @ 15:26:23
  Author: alucryd
Revision: 591021

archrelease: copy trunk to community-x86_64

Added:
  libretro-beetle-psx/repos/community-x86_64/PKGBUILD
(from rev 591020, libretro-beetle-psx/trunk/PKGBUILD)
Deleted:
  libretro-beetle-psx/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 15:26:17 UTC (rev 591020)
+++ PKGBUILD2020-03-06 15:26:23 UTC (rev 591021)
@@ -1,52 +0,0 @@
-# Maintainer: Maxime Gauduin 
-
-pkgbase=libretro-beetle-psx
-pkgname=(
-  libretro-beetle-psx
-  libretro-beetle-psx-hw
-)
-pkgver=2264
-pkgrel=1
-pkgdesc='Sony PlayStation core'
-arch=(x86_64)
-url=https://github.com/libretro/beetle-psx-libretro
-license=(GPL2)
-groups=(libretro)
-depends=(
-  libretro-core-info
-)
-makedepends=(
-  git
-  libglvnd
-  mesa
-  vulkan-icd-loader
-)
-source=(libretro-beetle-psx::git+https://github.com/libretro/beetle-psx-libretro.git#commit=)
-sha256sums=(SKIP)
-
-pkgver() {
-  cd libretro-beetle-psx
-
-  git rev-list --count HEAD
-}
-
-prepare() {
-  cp -r libretro-beetle-psx{,-hw}
-}
-
-build() {
-  make HAVE_LIGHTREC=1 -C libretro-beetle-psx
-  make HAVE_HW=1 HAVE_LIGHTREC=1 -C libretro-beetle-psx-hw
-}
-
-package_libretro-beetle-psx() {
-  install -Dm 644 libretro-beetle-psx/mednafen_psx_libretro.so -t 
"${pkgdir}"/usr/lib/libretro/
-}
-
-package_libretro-beetle-psx-hw() {
-  depends+=(libgl)
-
-  install -Dm 644 libretro-beetle-psx-hw/mednafen_psx_hw_libretro.so -t 
"${pkgdir}"/usr/lib/libretro/
-}
-
-# vim: ts=2 sw=2 et:

Copied: libretro-beetle-psx/repos/community-x86_64/PKGBUILD (from rev 591020, 
libretro-beetle-psx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 15:26:23 UTC (rev 591021)
@@ -0,0 +1,52 @@
+# Maintainer: Maxime Gauduin 
+
+pkgbase=libretro-beetle-psx
+pkgname=(
+  libretro-beetle-psx
+  libretro-beetle-psx-hw
+)
+pkgver=2267
+pkgrel=1
+pkgdesc='Sony PlayStation core'
+arch=(x86_64)
+url=https://github.com/libretro/beetle-psx-libretro
+license=(GPL2)
+groups=(libretro)
+depends=(
+  libretro-core-info
+)
+makedepends=(
+  git
+  libglvnd
+  mesa
+  vulkan-icd-loader
+)
+source=(libretro-beetle-psx::git+https://github.com/libretro/beetle-psx-libretro.git#commit=)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd libretro-beetle-psx
+
+  git rev-list --count HEAD
+}
+
+prepare() {
+  cp -r libretro-beetle-psx{,-hw}
+}
+
+build() {
+  make HAVE_LIGHTREC=1 -C libretro-beetle-psx
+  make HAVE_HW=1 HAVE_LIGHTREC=1 -C libretro-beetle-psx-hw
+}
+
+package_libretro-beetle-psx() {
+  install -Dm 644 libretro-beetle-psx/mednafen_psx_libretro.so -t 
"${pkgdir}"/usr/lib/libretro/
+}
+
+package_libretro-beetle-psx-hw() {
+  depends+=(libgl)
+
+  install -Dm 644 libretro-beetle-psx-hw/mednafen_psx_hw_libretro.so -t 
"${pkgdir}"/usr/lib/libretro/
+}
+
+# vim: ts=2 sw=2 et:


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

2020-03-06 Thread Maxime Gauduin via arch-commits
Date: Friday, March 6, 2020 @ 15:21:34
  Author: alucryd
Revision: 591017

archrelease: copy trunk to community-x86_64

Added:
  pantheon-files/repos/community-x86_64/PKGBUILD
(from rev 591016, pantheon-files/trunk/PKGBUILD)
Deleted:
  pantheon-files/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 15:21:27 UTC (rev 591016)
+++ PKGBUILD2020-03-06 15:21:34 UTC (rev 591017)
@@ -1,57 +0,0 @@
-# Maintainer: Maxime Gauduin 
-
-pkgname=pantheon-files
-pkgver=4.4.0
-pkgrel=1
-pkgdesc='The Pantheon File Browser'
-arch=(x86_64)
-url=https://github.com/elementary/files
-license=(GPL3)
-groups=(pantheon)
-depends=(
-  atk
-  cairo
-  gdk-pixbuf2
-  glib2
-  gtk3
-  libcanberra
-  libcloudproviders
-  libgee
-  libgit2-glib
-  libgranite.so
-  libnotify
-  pango
-  sqlite
-  zeitgeist
-)
-makedepends=(
-  git
-  gnome-common
-  meson
-  vala
-)
-optdepends=(
-  'contractor: Various context menu entries'
-  'gvfs: Cleaner devices section'
-  'tumbler: Thumbnails generation'
-)
-source=(pantheon-files::git+https://github.com/elementary/files.git#tag=4f8d8256a2174e5f24bb248102a70f0bb6cabd28)
-sha256sums=(SKIP)
-
-pkgver() {
-  cd pantheon-files
-
-  git describe --tags
-}
-
-build() {
-  arch-meson pantheon-files build \
--D with-unity=false
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" ninja -C build install
-}
-
-# vim: ts=2 sw=2 et:

Copied: pantheon-files/repos/community-x86_64/PKGBUILD (from rev 591016, 
pantheon-files/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 15:21:34 UTC (rev 591017)
@@ -0,0 +1,57 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=pantheon-files
+pkgver=4.4.1
+pkgrel=1
+pkgdesc='The Pantheon File Browser'
+arch=(x86_64)
+url=https://github.com/elementary/files
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  atk
+  cairo
+  gdk-pixbuf2
+  glib2
+  gtk3
+  libcanberra
+  libcloudproviders
+  libgee
+  libgit2-glib
+  libgranite.so
+  libnotify
+  pango
+  sqlite
+  zeitgeist
+)
+makedepends=(
+  git
+  gnome-common
+  meson
+  vala
+)
+optdepends=(
+  'contractor: Various context menu entries'
+  'gvfs: Cleaner devices section'
+  'tumbler: Thumbnails generation'
+)
+source=(pantheon-files::git+https://github.com/elementary/files.git#tag=2928bda14c0208fe55e9ed948bf3c3baf4f66647)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd pantheon-files
+
+  git describe --tags
+}
+
+build() {
+  arch-meson pantheon-files build \
+-D with-unity=false
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" ninja -C build install
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in mesa/repos/testing-x86_64 (6 files)

2020-03-06 Thread Laurent Carlier via arch-commits
Date: Friday, March 6, 2020 @ 15:21:27
  Author: lcarlier
Revision: 376868

archrelease: copy trunk to testing-x86_64

Added:
  
mesa/repos/testing-x86_64/0001-iris-handle-the-failure-of-converting-unsupported-yu.patch
(from rev 376867, 
mesa/trunk/0001-iris-handle-the-failure-of-converting-unsupported-yu.patch)
  mesa/repos/testing-x86_64/LICENSE
(from rev 376867, mesa/trunk/LICENSE)
  mesa/repos/testing-x86_64/PKGBUILD
(from rev 376867, mesa/trunk/PKGBUILD)
Deleted:
  
mesa/repos/testing-x86_64/0001-iris-handle-the-failure-of-converting-unsupported-yu.patch
  mesa/repos/testing-x86_64/LICENSE
  mesa/repos/testing-x86_64/PKGBUILD

-+
 0001-iris-handle-the-failure-of-converting-unsupported-yu.patch |  108 +-
 LICENSE |  166 ++--
 PKGBUILD|  384 
--
 3 files changed, 327 insertions(+), 331 deletions(-)

Deleted: 0001-iris-handle-the-failure-of-converting-unsupported-yu.patch
===
--- 0001-iris-handle-the-failure-of-converting-unsupported-yu.patch 
2020-03-06 15:21:17 UTC (rev 376867)
+++ 0001-iris-handle-the-failure-of-converting-unsupported-yu.patch 
2020-03-06 15:21:27 UTC (rev 376868)
@@ -1,54 +0,0 @@
-From 4d3f535ebb341ddce05e5b1750fcf17c6c4166c9 Mon Sep 17 00:00:00 2001
-From: James Xiong 
-Date: Wed, 20 Nov 2019 15:59:00 -0800
-Subject: [PATCH] iris: handle the failure of converting unsupported yuv
- formats to isl
-
-Signed-off-by: James Xiong 
-Reviewed-by: Kenneth Graunke 
-(cherry picked from commit d8569baaed1a38cf3da9e45375fa2267d9a1eeb0)
-
-Tested-by: Marge Bot 

-Part-of: 
-Signed-off-by: Laurent Carlier 

- src/gallium/drivers/iris/iris_formats.c  | 6 +-
- src/gallium/drivers/iris/iris_resource.c | 3 ++-
- 2 files changed, 7 insertions(+), 2 deletions(-)
-
-diff --git a/src/gallium/drivers/iris/iris_formats.c 
b/src/gallium/drivers/iris/iris_formats.c
-index f6344cc7543..a35b663a53c 100644
 a/src/gallium/drivers/iris/iris_formats.c
-+++ b/src/gallium/drivers/iris/iris_formats.c
-@@ -338,9 +338,13 @@ iris_format_for_usage(const struct gen_device_info 
*devinfo,
-   isl_surf_usage_flags_t usage)
- {
-enum isl_format format = iris_isl_format_for_pipe_format(pformat);
--   const struct isl_format_layout *fmtl = isl_format_get_layout(format);
-struct isl_swizzle swizzle = ISL_SWIZZLE_IDENTITY;
- 
-+   if (format == ISL_FORMAT_UNSUPPORTED)
-+  return (struct iris_format_info) { .fmt = format, .swizzle = swizzle };
-+
-+   const struct isl_format_layout *fmtl = isl_format_get_layout(format);
-+
-if (!util_format_is_srgb(pformat)) {
-   if (util_format_is_intensity(pformat)) {
-  swizzle = ISL_SWIZZLE(RED, RED, RED, RED);
-diff --git a/src/gallium/drivers/iris/iris_resource.c 
b/src/gallium/drivers/iris/iris_resource.c
-index bdd715df2c9..7ca6097840a 100644
 a/src/gallium/drivers/iris/iris_resource.c
-+++ b/src/gallium/drivers/iris/iris_resource.c
-@@ -85,7 +85,8 @@ modifier_is_supported(const struct gen_device_info *devinfo,
- 
-   enum isl_format linear_format = isl_format_srgb_to_linear(rt_format);
- 
--  if (!isl_format_supports_ccs_e(devinfo, linear_format))
-+  if (linear_format == ISL_FORMAT_UNSUPPORTED ||
-+  !isl_format_supports_ccs_e(devinfo, linear_format))
-  return false;
- 
-   return devinfo->gen >= 9 && devinfo->gen <= 11;
--- 
-2.25.1
-

Copied: 
mesa/repos/testing-x86_64/0001-iris-handle-the-failure-of-converting-unsupported-yu.patch
 (from rev 376867, 
mesa/trunk/0001-iris-handle-the-failure-of-converting-unsupported-yu.patch)
===
--- 0001-iris-handle-the-failure-of-converting-unsupported-yu.patch 
(rev 0)
+++ 0001-iris-handle-the-failure-of-converting-unsupported-yu.patch 
2020-03-06 15:21:27 UTC (rev 376868)
@@ -0,0 +1,54 @@
+From 4d3f535ebb341ddce05e5b1750fcf17c6c4166c9 Mon Sep 17 00:00:00 2001
+From: James Xiong 
+Date: Wed, 20 Nov 2019 15:59:00 -0800
+Subject: [PATCH] iris: handle the failure of converting unsupported yuv
+ formats to isl
+
+Signed-off-by: James Xiong 
+Reviewed-by: Kenneth Graunke 
+(cherry picked from commit d8569baaed1a38cf3da9e45375fa2267d9a1eeb0)
+
+Tested-by: Marge Bot 

+Part-of: 
+Signed-off-by: Laurent Carlier 
+---
+ src/gallium/drivers/iris/iris_formats.c  | 6 +-
+ src/gallium/drivers/iris/iris_resource.c | 3 ++-
+ 2 files changed, 7 insertions(+), 2 deletions(-)
+
+diff --git a/src/gallium/drivers/iris/iris_formats.c 
b/src/gallium/drivers/iris/ir

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

2020-03-06 Thread Maxime Gauduin via arch-commits
Date: Friday, March 6, 2020 @ 15:21:27
  Author: alucryd
Revision: 591016

upgpkg: pantheon-files 4.4.1-1

Modified:
  pantheon-files/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 15:21:07 UTC (rev 591015)
+++ PKGBUILD2020-03-06 15:21:27 UTC (rev 591016)
@@ -1,7 +1,7 @@
 # Maintainer: Maxime Gauduin 
 
 pkgname=pantheon-files
-pkgver=4.4.0
+pkgver=4.4.1
 pkgrel=1
 pkgdesc='The Pantheon File Browser'
 arch=(x86_64)
@@ -35,7 +35,7 @@
   'gvfs: Cleaner devices section'
   'tumbler: Thumbnails generation'
 )
-source=(pantheon-files::git+https://github.com/elementary/files.git#tag=4f8d8256a2174e5f24bb248102a70f0bb6cabd28)
+source=(pantheon-files::git+https://github.com/elementary/files.git#tag=2928bda14c0208fe55e9ed948bf3c3baf4f66647)
 sha256sums=(SKIP)
 
 pkgver() {


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

2020-03-06 Thread Laurent Carlier via arch-commits
Date: Friday, March 6, 2020 @ 15:21:17
  Author: lcarlier
Revision: 376867

upgpkg: mesa 20.0.1-1: upstream update 20.0.1

Modified:
  mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:26:37 UTC (rev 376866)
+++ PKGBUILD2020-03-06 15:21:17 UTC (rev 376867)
@@ -4,8 +4,8 @@
 pkgbase=mesa
 pkgname=('vulkan-mesa-layer' 'opencl-mesa' 'vulkan-intel' 'vulkan-radeon' 
'libva-mesa-driver' 'mesa-vdpau' 'mesa')
 pkgdesc="An open-source implementation of the OpenGL specification"
-pkgver=20.0.0
-pkgrel=2
+pkgver=20.0.1
+pkgrel=1
 arch=('x86_64')
 makedepends=('python-mako' 'libxml2' 'libx11' 'xorgproto' 'libdrm' 
'libxshmfence' 'libxxf86vm'
  'libxdamage' 'libvdpau' 'libva' 'wayland' 'wayland-protocols' 
'zstd'
@@ -14,12 +14,10 @@
 url="https://www.mesa3d.org/";
 license=('custom')
 source=(https://mesa.freedesktop.org/archive/mesa-${pkgver}.tar.xz{,.sig}
-LICENSE
-   0001-iris-handle-the-failure-of-converting-unsupported-yu.patch)
-sha512sums=('3968820029434682fb6644947c76e12b6bb991a3d05cb519a6ea971ecc4aa9b21d03f84b9a452cc21cc77a7981db9e40dd2dfd3ea3dee85b3dd88a59b4842bbb'
+LICENSE)
+sha512sums=('9e005ebbb699c1ad83b73c503c467907958a3d9cad644d8f7ac95804fd265debcf563784a1054c8e0bf40106e33b13185607e8270a197e9ddc34c50b1b2c4d82'
 'SKIP'
-
'f9f0d0ccf166fe6cb684478b6f1e1ab1f2850431c06aa041738563eb1808a004e52cdec823c103c9e180f03ffc083e95974d291353f0220fe52ae6d4897fecc7'
-
'dc14204b32dfc9c04506b9ee1b0ed070c516fb60771b4330ab9f83efb02be0e206a34a1b01acda624c7c3984275b9d7ba6ea5c1f9ec4447a7cc561cc5abdf759')
+
'f9f0d0ccf166fe6cb684478b6f1e1ab1f2850431c06aa041738563eb1808a004e52cdec823c103c9e180f03ffc083e95974d291353f0220fe52ae6d4897fecc7')
 validpgpkeys=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D'  # Emil Velikov 

   '946D09B5E4C9845E63075FF1D961C596A7203456'  # Andres Gomez 

   'E3E8F480C52ADD73B278EE78E1ECBE07D7D70895'  # Juan Antonio 
Suárez Romero (Igalia, S.L.) 
@@ -26,13 +24,11 @@
   'A5CC9FEC93F2F837CB044912336909B6B25FADFA'  # Juan A. Suarez 
Romero 
   '71C4B75620BC75708B4BDB254C95FAAB3EB073EC') # Dylan Baker 

 
-prepare() {
-  cd mesa-$pkgver
+#prepare() {
+#  cd mesa-$pkgver
+#
+#}
 
-  # FS#65580 - merged upstream
-  patch -Np1 -i 
../0001-iris-handle-the-failure-of-converting-unsupported-yu.patch
-}
-
 build() {
   arch-meson mesa-$pkgver build \
 -D b_lto=false \


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

2020-03-06 Thread Maxime Gauduin via arch-commits
Date: Friday, March 6, 2020 @ 15:21:02
  Author: alucryd
Revision: 591014

upgpkg: pantheon-music 5.0.5-1

Modified:
  pantheon-music/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 15:16:05 UTC (rev 591013)
+++ PKGBUILD2020-03-06 15:21:02 UTC (rev 591014)
@@ -1,7 +1,7 @@
 # Maintainer: Maxime Gauduin 
 
 pkgname=pantheon-music
-pkgver=5.0.4
+pkgver=5.0.5
 pkgrel=1
 pkgdesc='The Pantheon Music Player'
 arch=(x86_64)
@@ -42,9 +42,15 @@
   'gst-plugins-bad: "Bad" plugin libraries'
   'gst-plugins-ugly: "Ugly" plugin libraries'
 )
-source=(pantheon-music::git+https://github.com/elementary/music.git#tag=${pkgver})
+source=(pantheon-music::git+https://github.com/elementary/music.git#tag=ce88ec3e913b9a0d82c3bbdc2e7b1896b99f1753)
 sha256sums=(SKIP)
 
+pkgver() {
+  cd pantheon-music
+
+  git describe --tags
+}
+
 build() {
   arch-meson pantheon-music build
   ninja -C build


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

2020-03-06 Thread Maxime Gauduin via arch-commits
Date: Friday, March 6, 2020 @ 15:21:07
  Author: alucryd
Revision: 591015

archrelease: copy trunk to community-x86_64

Added:
  pantheon-music/repos/community-x86_64/PKGBUILD
(from rev 591014, pantheon-music/trunk/PKGBUILD)
Deleted:
  pantheon-music/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 15:21:02 UTC (rev 591014)
+++ PKGBUILD2020-03-06 15:21:07 UTC (rev 591015)
@@ -1,57 +0,0 @@
-# Maintainer: Maxime Gauduin 
-
-pkgname=pantheon-music
-pkgver=5.0.4
-pkgrel=1
-pkgdesc='The Pantheon Music Player'
-arch=(x86_64)
-url=https://github.com/elementary/music
-license=(GPL3)
-groups=(pantheon)
-depends=(
-  cairo
-  gdk-pixbuf2
-  glib2
-  gst-plugins-base-libs
-  gstreamer
-  gtk3
-  json-glib
-  libaccounts-glib
-  libgda
-  libgee
-  libgpod
-  libgranite.so
-  libgsignon-glib
-  libpeas
-  libsignon-glib
-  libsoup
-  pango
-  taglib
-  zeitgeist
-)
-makedepends=(
-  git
-  gobject-introspection
-  intltool
-  meson
-  vala
-)
-optdepends=(
-  'gst-plugins-base: "Base" plugin libraries'
-  'gst-plugins-good: "Good" plugin libraries'
-  'gst-plugins-bad: "Bad" plugin libraries'
-  'gst-plugins-ugly: "Ugly" plugin libraries'
-)
-source=(pantheon-music::git+https://github.com/elementary/music.git#tag=${pkgver})
-sha256sums=(SKIP)
-
-build() {
-  arch-meson pantheon-music build
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" meson install -C build
-}
-
-# vim: ts=2 sw=2 et:

Copied: pantheon-music/repos/community-x86_64/PKGBUILD (from rev 591014, 
pantheon-music/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 15:21:07 UTC (rev 591015)
@@ -0,0 +1,63 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=pantheon-music
+pkgver=5.0.5
+pkgrel=1
+pkgdesc='The Pantheon Music Player'
+arch=(x86_64)
+url=https://github.com/elementary/music
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  cairo
+  gdk-pixbuf2
+  glib2
+  gst-plugins-base-libs
+  gstreamer
+  gtk3
+  json-glib
+  libaccounts-glib
+  libgda
+  libgee
+  libgpod
+  libgranite.so
+  libgsignon-glib
+  libpeas
+  libsignon-glib
+  libsoup
+  pango
+  taglib
+  zeitgeist
+)
+makedepends=(
+  git
+  gobject-introspection
+  intltool
+  meson
+  vala
+)
+optdepends=(
+  'gst-plugins-base: "Base" plugin libraries'
+  'gst-plugins-good: "Good" plugin libraries'
+  'gst-plugins-bad: "Bad" plugin libraries'
+  'gst-plugins-ugly: "Ugly" plugin libraries'
+)
+source=(pantheon-music::git+https://github.com/elementary/music.git#tag=ce88ec3e913b9a0d82c3bbdc2e7b1896b99f1753)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd pantheon-music
+
+  git describe --tags
+}
+
+build() {
+  arch-meson pantheon-music build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" meson install -C build
+}
+
+# vim: ts=2 sw=2 et:


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

2020-03-06 Thread Maxime Gauduin via arch-commits
Date: Friday, March 6, 2020 @ 15:16:05
  Author: alucryd
Revision: 591013

archrelease: copy trunk to community-x86_64

Added:
  pantheon-music/repos/community-x86_64/PKGBUILD
(from rev 591012, pantheon-music/trunk/PKGBUILD)
Deleted:
  pantheon-music/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 15:15:18 UTC (rev 591012)
+++ PKGBUILD2020-03-06 15:16:05 UTC (rev 591013)
@@ -1,57 +0,0 @@
-# Maintainer: Maxime Gauduin 
-
-pkgname=pantheon-music
-pkgver=5.0.4
-pkgrel=1
-pkgdesc='The Pantheon Music Player'
-arch=(x86_64)
-url=https://github.com/elementary/music
-license=(GPL3)
-groups=(pantheon)
-depends=(
-  cairo
-  gdk-pixbuf2
-  glib2
-  gst-plugins-base-libs
-  gstreamer
-  gtk3
-  json-glib
-  libaccounts-glib
-  libgda
-  libgee
-  libgpod
-  libgranite.so
-  libgsignon-glib
-  libpeas
-  libsignon-glib
-  libsoup
-  pango
-  taglib
-  zeitgeist
-)
-makedepends=(
-  git
-  gobject-introspection
-  intltool
-  meson
-  vala
-)
-optdepends=(
-  'gst-plugins-base: "Base" plugin libraries'
-  'gst-plugins-good: "Good" plugin libraries'
-  'gst-plugins-bad: "Bad" plugin libraries'
-  'gst-plugins-ugly: "Ugly" plugin libraries'
-)
-source=(pantheon-music::git+https://github.com/elementary/music.git#tag=${pkgver})
-sha256sums=(SKIP)
-
-build() {
-  arch-meson pantheon-music build
-  ninja -C build
-}
-
-package() {
-  DESTDIR="${pkgdir}" meson install -C build
-}
-
-# vim: ts=2 sw=2 et:

Copied: pantheon-music/repos/community-x86_64/PKGBUILD (from rev 591012, 
pantheon-music/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 15:16:05 UTC (rev 591013)
@@ -0,0 +1,57 @@
+# Maintainer: Maxime Gauduin 
+
+pkgname=pantheon-music
+pkgver=5.0.4
+pkgrel=1
+pkgdesc='The Pantheon Music Player'
+arch=(x86_64)
+url=https://github.com/elementary/music
+license=(GPL3)
+groups=(pantheon)
+depends=(
+  cairo
+  gdk-pixbuf2
+  glib2
+  gst-plugins-base-libs
+  gstreamer
+  gtk3
+  json-glib
+  libaccounts-glib
+  libgda
+  libgee
+  libgpod
+  libgranite.so
+  libgsignon-glib
+  libpeas
+  libsignon-glib
+  libsoup
+  pango
+  taglib
+  zeitgeist
+)
+makedepends=(
+  git
+  gobject-introspection
+  intltool
+  meson
+  vala
+)
+optdepends=(
+  'gst-plugins-base: "Base" plugin libraries'
+  'gst-plugins-good: "Good" plugin libraries'
+  'gst-plugins-bad: "Bad" plugin libraries'
+  'gst-plugins-ugly: "Ugly" plugin libraries'
+)
+source=(pantheon-music::git+https://github.com/elementary/music.git#tag=${pkgver})
+sha256sums=(SKIP)
+
+build() {
+  arch-meson pantheon-music build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="${pkgdir}" meson install -C build
+}
+
+# vim: ts=2 sw=2 et:


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

2020-03-06 Thread Maxime Gauduin via arch-commits
Date: Friday, March 6, 2020 @ 15:15:18
  Author: alucryd
Revision: 591012

archrelease: copy trunk to community-x86_64

Added:
  xxhash/repos/community-x86_64/PKGBUILD
(from rev 591011, xxhash/trunk/PKGBUILD)
Deleted:
  xxhash/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 15:15:12 UTC (rev 591011)
+++ PKGBUILD2020-03-06 15:15:18 UTC (rev 591012)
@@ -1,35 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Fabien Dubosson 
-# Contributor: Konstantin Gizdov 
-
-pkgname=xxhash
-pkgver=0.7.2
-pkgrel=1
-pkgdesc='Extremely fast non-cryptographic hash algorithm'
-arch=(x86_64)
-url=https://cyan4973.github.io/xxHash/
-license=(
-  GPL2
-  BSD
-)
-makedepends=(git)
-provides=(libxxhash.so)
-source=(git+https://github.com/Cyan4973/xxHash.git#tag=e2f4695899e831171ecd2e780078474712ea61d3)
-sha256sums=(SKIP)
-
-pkgver() {
-  cd xxHash
-
-  git describe --tags | sed 's/^v//'
-}
-
-build() {
-  make PREFIX=/usr -C xxHash
-}
-
-package() {
-  make PREFIX=/usr DESTDIR="${pkgdir}" -C xxHash install
-  install -Dm 644 xxHash/LICENSE -t "${pkgdir}"/usr/share/licenses/xxhash
-}
-
-# vim: ts=2 sw=2 et:

Copied: xxhash/repos/community-x86_64/PKGBUILD (from rev 591011, 
xxhash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 15:15:18 UTC (rev 591012)
@@ -0,0 +1,35 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Fabien Dubosson 
+# Contributor: Konstantin Gizdov 
+
+pkgname=xxhash
+pkgver=0.7.3
+pkgrel=1
+pkgdesc='Extremely fast non-cryptographic hash algorithm'
+arch=(x86_64)
+url=https://cyan4973.github.io/xxHash/
+license=(
+  GPL2
+  BSD
+)
+makedepends=(git)
+provides=(libxxhash.so)
+source=(git+https://github.com/Cyan4973/xxHash.git#tag=d408e9b0606d07b1ddc5452ffc0ec8512211b174)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd xxHash
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  make PREFIX=/usr -C xxHash
+}
+
+package() {
+  make PREFIX=/usr DESTDIR="${pkgdir}" -C xxHash install
+  install -Dm 644 xxHash/LICENSE -t "${pkgdir}"/usr/share/licenses/xxhash
+}
+
+# vim: ts=2 sw=2 et:


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

2020-03-06 Thread Maxime Gauduin via arch-commits
Date: Friday, March 6, 2020 @ 15:15:12
  Author: alucryd
Revision: 591011

upgpkg: xxhash 0.7.3-1

Modified:
  xxhash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 15:13:58 UTC (rev 591010)
+++ PKGBUILD2020-03-06 15:15:12 UTC (rev 591011)
@@ -3,7 +3,7 @@
 # Contributor: Konstantin Gizdov 
 
 pkgname=xxhash
-pkgver=0.7.2
+pkgver=0.7.3
 pkgrel=1
 pkgdesc='Extremely fast non-cryptographic hash algorithm'
 arch=(x86_64)
@@ -14,7 +14,7 @@
 )
 makedepends=(git)
 provides=(libxxhash.so)
-source=(git+https://github.com/Cyan4973/xxHash.git#tag=e2f4695899e831171ecd2e780078474712ea61d3)
+source=(git+https://github.com/Cyan4973/xxHash.git#tag=d408e9b0606d07b1ddc5452ffc0ec8512211b174)
 sha256sums=(SKIP)
 
 pkgver() {


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

2020-03-06 Thread Maxime Gauduin via arch-commits
Date: Friday, March 6, 2020 @ 15:13:58
  Author: alucryd
Revision: 591010

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 15:13:53 UTC (rev 591009)
+++ PKGBUILD2020-03-06 15:13:58 UTC (rev 591010)
@@ -1,40 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Steven Allen 
-# Contributor: Limao Luo 
-# Contributor: Wieland Hoffmann 
-# Contributor: Amr Hassan 
-
-pkgname=python-pylast
-pkgver=3.2.0
-pkgrel=1
-pkgdesc='A Python interface to Last.fm and Libre.fm'
-arch=(any)
-url='https://github.com/pylast/pylast'
-license=(Apache)
-depends=(python-six)
-makedepends=(
-  git
-  python-setuptools
-)
-source=(git+https://github.com/pylast/pylast.git#tag=662e3bbdddf7416cf7814845095d22a6c9b13128)
-sha256sums=(SKIP)
-
-pkgver() {
-  cd pylast
-
-  git describe --tags
-}
-
-build() {
-  cd pylast
-
-  python setup.py build
-}
-
-package() {
-  cd pylast
-
-  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
-}
-
-# vim: ts=2 sw=2 et:

Copied: python-pylast/repos/community-any/PKGBUILD (from rev 591009, 
python-pylast/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 15:13:58 UTC (rev 591010)
@@ -0,0 +1,40 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Steven Allen 
+# Contributor: Limao Luo 
+# Contributor: Wieland Hoffmann 
+# Contributor: Amr Hassan 
+
+pkgname=python-pylast
+pkgver=3.2.1
+pkgrel=1
+pkgdesc='A Python interface to Last.fm and Libre.fm'
+arch=(any)
+url='https://github.com/pylast/pylast'
+license=(Apache)
+depends=(python-six)
+makedepends=(
+  git
+  python-setuptools
+)
+source=(git+https://github.com/pylast/pylast.git#tag=dfb694f2a6efe441146f8a852d44f4601ee614d0)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd pylast
+
+  git describe --tags
+}
+
+build() {
+  cd pylast
+
+  python setup.py build
+}
+
+package() {
+  cd pylast
+
+  python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+# vim: ts=2 sw=2 et:


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

2020-03-06 Thread Maxime Gauduin via arch-commits
Date: Friday, March 6, 2020 @ 15:13:53
  Author: alucryd
Revision: 591009

upgpkg: python-pylast 3.2.1-1

Modified:
  python-pylast/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 15:08:25 UTC (rev 591008)
+++ PKGBUILD2020-03-06 15:13:53 UTC (rev 591009)
@@ -5,7 +5,7 @@
 # Contributor: Amr Hassan 
 
 pkgname=python-pylast
-pkgver=3.2.0
+pkgver=3.2.1
 pkgrel=1
 pkgdesc='A Python interface to Last.fm and Libre.fm'
 arch=(any)
@@ -16,7 +16,7 @@
   git
   python-setuptools
 )
-source=(git+https://github.com/pylast/pylast.git#tag=662e3bbdddf7416cf7814845095d22a6c9b13128)
+source=(git+https://github.com/pylast/pylast.git#tag=dfb694f2a6efe441146f8a852d44f4601ee614d0)
 sha256sums=(SKIP)
 
 pkgver() {


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

2020-03-06 Thread Christian Hesse via arch-commits
Date: Friday, March 6, 2020 @ 15:02:50
  Author: eworm
Revision: 590997

prepare for v245

Modified:
  lib32-systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 14:54:05 UTC (rev 590996)
+++ PKGBUILD2020-03-06 15:02:50 UTC (rev 590997)
@@ -4,9 +4,9 @@
 
 pkgname=lib32-systemd
 _pkgbasename=systemd
-_tag='b7ed902b2394f94e7f1fbe6c3194b5cd9a9429e6' # git rev-parse v${pkgver}
-pkgver=244.3
-pkgrel=1
+_tag='68fef5d635424a60224cce610d30a9041124c204' # git rev-parse v${pkgver}
+pkgver=245
+pkgrel=0
 pkgdesc='system and service manager (32-bit)'
 arch=('x86_64')
 url='https://www.github.com/systemd/systemd'


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

2020-03-06 Thread Sergej Pupykin via arch-commits
Date: Friday, March 6, 2020 @ 14:53:50
  Author: spupykin
Revision: 590995

upgpkg: drupal 8.8.3-1

Modified:
  drupal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 14:37:37 UTC (rev 590994)
+++ PKGBUILD2020-03-06 14:53:50 UTC (rev 590995)
@@ -2,7 +2,7 @@
 # Contributor: Corrado Primier 
 
 pkgname=drupal
-pkgver=8.8.2
+pkgver=8.8.3
 pkgrel=1
 pkgdesc="A PHP-based content management platform"
 arch=('any')
@@ -13,7 +13,7 @@
 backup=('etc/webapps/drupal/.htaccess')
 options=(!strip)
 source=(https://ftp.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-sha256sums=('cebe0302447d9373be8abe0bf021eddc511ad05539d55b6c45d3d845e81bbae3')
+sha256sums=('511ba0a1d5fbca2b78ad73e5c9c5ac7b0dc515d7ca183b0a63f5f6dbee1da888')
 
 package() {
   depends=('php' 'php-gd')


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

2020-03-06 Thread Sergej Pupykin via arch-commits
Date: Friday, March 6, 2020 @ 14:54:05
  Author: spupykin
Revision: 590996

archrelease: copy trunk to community-any

Added:
  drupal/repos/community-any/PKGBUILD
(from rev 590995, drupal/trunk/PKGBUILD)
  drupal/repos/community-any/drupal.install
(from rev 590995, drupal/trunk/drupal.install)
Deleted:
  drupal/repos/community-any/PKGBUILD
  drupal/repos/community-any/drupal.install

+
 PKGBUILD   |   94 +++
 drupal.install |   14 
 2 files changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 14:53:50 UTC (rev 590995)
+++ PKGBUILD2020-03-06 14:54:05 UTC (rev 590996)
@@ -1,47 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Contributor: Corrado Primier 
-
-pkgname=drupal
-pkgver=8.8.2
-pkgrel=1
-pkgdesc="A PHP-based content management platform"
-arch=('any')
-url="https://www.drupal.org/";
-license=('GPL')
-depends=()
-install='drupal.install'
-backup=('etc/webapps/drupal/.htaccess')
-options=(!strip)
-source=(https://ftp.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
-sha256sums=('cebe0302447d9373be8abe0bf021eddc511ad05539d55b6c45d3d845e81bbae3')
-
-package() {
-  depends=('php' 'php-gd')
-
-  _instdir="$pkgdir"/usr/share/webapps/drupal
-  mkdir -p ${_instdir}
-  cd ${_instdir}
-  cp -r "$srcdir"/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
-
-  # move .htaccess
-  mkdir -p "$pkgdir"/etc/webapps/drupal
-  sed -i '1,1iRequire all denied' ${_instdir}/.htaccess
-  mv ${_instdir}/.htaccess "$pkgdir"/etc/webapps/drupal/.htaccess
-  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
-
-  # move sites/
-  mkdir -p "$pkgdir"/var/lib/drupal/
-  mv ${_instdir}/sites "$pkgdir"/var/lib/drupal/sites
-  ln -s /var/lib/drupal/sites ${_instdir}/sites
-
-  # apache config example
-  cat >"$pkgdir"/etc/webapps/drupal/apache.example.conf <
-   AllowOverride All
-   Options FollowSymlinks
-   Require all granted
-   php_admin_value open_basedir 
"/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal"
-   
-EOF
-}

Copied: drupal/repos/community-any/PKGBUILD (from rev 590995, 
drupal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 14:54:05 UTC (rev 590996)
@@ -0,0 +1,47 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Corrado Primier 
+
+pkgname=drupal
+pkgver=8.8.3
+pkgrel=1
+pkgdesc="A PHP-based content management platform"
+arch=('any')
+url="https://www.drupal.org/";
+license=('GPL')
+depends=()
+install='drupal.install'
+backup=('etc/webapps/drupal/.htaccess')
+options=(!strip)
+source=(https://ftp.drupal.org/files/projects/$pkgname-$pkgver.tar.gz)
+sha256sums=('511ba0a1d5fbca2b78ad73e5c9c5ac7b0dc515d7ca183b0a63f5f6dbee1da888')
+
+package() {
+  depends=('php' 'php-gd')
+
+  _instdir="$pkgdir"/usr/share/webapps/drupal
+  mkdir -p ${_instdir}
+  cd ${_instdir}
+  cp -r "$srcdir"/$pkgname-$pkgver/{*,.htaccess} ${_instdir}
+
+  # move .htaccess
+  mkdir -p "$pkgdir"/etc/webapps/drupal
+  sed -i '1,1iRequire all denied' ${_instdir}/.htaccess
+  mv ${_instdir}/.htaccess "$pkgdir"/etc/webapps/drupal/.htaccess
+  ln -s /etc/webapps/drupal/.htaccess ${_instdir}/.htaccess
+
+  # move sites/
+  mkdir -p "$pkgdir"/var/lib/drupal/
+  mv ${_instdir}/sites "$pkgdir"/var/lib/drupal/sites
+  ln -s /var/lib/drupal/sites ${_instdir}/sites
+
+  # apache config example
+  cat >"$pkgdir"/etc/webapps/drupal/apache.example.conf <
+   AllowOverride All
+   Options FollowSymlinks
+   Require all granted
+   php_admin_value open_basedir 
"/srv/:/tmp/:/usr/share/webapps/:/etc/webapps:/usr/share/pear/:/var/lib/drupal"
+   
+EOF
+}

Deleted: drupal.install
===
--- drupal.install  2020-03-06 14:53:50 UTC (rev 590995)
+++ drupal.install  2020-03-06 14:54:05 UTC (rev 590996)
@@ -1,7 +0,0 @@
-post_install() {
-  chown -R http:http var/lib/drupal
-}
-
-post_upgrade() {
-  chown -R http:http var/lib/drupal
-}

Copied: drupal/repos/community-any/drupal.install (from rev 590995, 
drupal/trunk/drupal.install)
===
--- drupal.install  (rev 0)
+++ drupal.install  2020-03-06 14:54:05 UTC (rev 590996)
@@ -0,0 +1,7 @@
+post_install() {
+  chown -R http:http var/lib/drupal
+}
+
+post_upgrade() {
+  chown -R http:http var/lib/drupal
+}


[arch-commits] Commit in gap/repos (5 files)

2020-03-06 Thread Antonio Rojas via arch-commits
Date: Friday, March 6, 2020 @ 14:37:37
  Author: arojas
Revision: 590994

archrelease: copy trunk to community-testing-x86_64

Added:
  gap/repos/community-testing-x86_64/
  gap/repos/community-testing-x86_64/PKGBUILD
(from rev 590993, gap/trunk/PKGBUILD)
  gap/repos/community-testing-x86_64/gap-polymake-4.0.patch
(from rev 590993, gap/trunk/gap-polymake-4.0.patch)
  gap/repos/community-testing-x86_64/gap.sh
(from rev 590993, gap/trunk/gap.sh)
  gap/repos/community-testing-x86_64/normalizinterface-missing-include.patch
(from rev 590993, gap/trunk/normalizinterface-missing-include.patch)

-+
 PKGBUILD|  142 +
 gap-polymake-4.0.patch  |  450 ++
 gap.sh  |7 
 normalizinterface-missing-include.patch |   12 
 4 files changed, 611 insertions(+)

Copied: gap/repos/community-testing-x86_64/PKGBUILD (from rev 590993, 
gap/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-03-06 14:37:37 UTC (rev 590994)
@@ -0,0 +1,142 @@
+# Maintainer: Antonio Rojas 
+# Contributor:  TDY 
+# Contributor: Rémy Oudompheng 
+
+pkgbase=gap
+pkgname=(gap gap-doc gap-packages)
+pkgver=4.11.0
+pkgrel=1
+pkgdesc="Groups, Algorithms, Programming: a system for computational discrete 
algebra"
+arch=(x86_64)
+url="https://www.gap-system.org/";
+license=(GPL)
+source=("https://www.gap-system.org/pub/gap/gap-${pkgver%.*}/tar.gz/gap-$pkgver.tar.gz";
 gap.sh
+ git+https://github.com/gap-packages/NormalizInterface#commit=cd69a42
+ normalizinterface-missing-include.patch
+ gap-polymake-4.0.patch)
+sha256sums=('6fda7af23394708aeb3b4bca8885f5fdcb7c3ae4419639dfb2d9f67d3f590abb'
+'143fb8a79a52c007903cce13407850df309ef803a9b00398d05169355917de46'
+'SKIP'
+'2410dfc69f1f4d2f320e91590d55e59c7b557637f9f60b9e609b318cfc21c181'
+'e3f6d671c8df9acb6143a7c279391957967cd44f0a00b949323401d5b54ed685')
+makedepends=(libxaw givaro mpfi normaliz polymake boost libsemigroups c-xsc 
zeromq fplll wget chrpath fmt git)
+
+prepare() {
+  cd gap-$pkgver
+
+# Use system normaliz
+  sed -e '/build-normaliz.sh/d' -i bin/BuildPackages.sh
+# Use system libsemigroups
+  sed -e 's|test "$with_external_libsemigroups" = yes|true|' -i 
pkg/semigroups-*/configure
+# Disable anupq package, it's i686 only
+  rm -r pkg/anupq-*
+# Fix https://bugs.archlinux.org/task/55174
+  sed -e '/xgap/d' -i pkg/sonata-*/PackageInfo.g
+  sed -e '/XGAP/d' -i pkg/cryst/PackageInfo.g
+
+# Update NormalizInterface to support recent normaliz
+  rm -r pkg/NormalizInterface-1.1.0
+  cp -r ../NormalizInterface pkg
+  cd pkg/NormalizInterface
+  patch -p1 -i "$srcdir"/normalizinterface-missing-include.patch
+
+  cd ../PolymakeInterface-*
+  patch -p2 -i "$srcdir"/gap-polymake-4.0.patch # Fix build with polymake 4.0
+}
+
+build() {
+  cd gap-$pkgver
+  ./configure --prefix=/usr --with-gmp=system
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+  make libgap.la
+
+  # Install libgap so we can link packages against it
+  mkdir -p tmp-install
+  libtool --mode=install install libgap.la "$srcdir"/gap-$pkgver/tmp-install
+
+  cd pkg
+  export CXXFLAGS+=" -I/usr/include/cxsc" # Find c-xsc headers
+  export LDFLAGS+=" -L$srcdir/gap-$pkgver/tmp-install -lgap" # See 
https://trac.sagemath.org/ticket/27372
+  export LD_LIBRARY_PATH="$srcdir"/gap-$pkgver/tmp-install
+  export MAKEFLAGS="-j1"
+  ../bin/BuildPackages.sh
+}
+
+_standardpkgs=(GAPDoc-* primgrp-* SmallGrp-* transgrp atlasrep autpgrp-* 
alnuth-* crisp-* ctbllib FactInt-* fga irredsol-* laguna-*
+   polenta-* polycyclic-* resclasses-* sophus-* tomlib-*)
+
+package_gap() {
+  depends=(gmp zlib)
+  optdepends=('gap-packages: extra packages' 'gap-doc: documentation')
+  conflicts=(libgap)
+  replaces=(gap-data libgap gap-4.8 gap-4.8-data)
+  cd gap-$pkgver
+
+  install -Dm644 src/*.h -t "$pkgdir"/usr/include/gap
+  install -Dm644 gen/config.h -t "$pkgdir"/usr/include/gap
+  install -Dm644 src/hpc/*.h -t "$pkgdir"/usr/include/gap/hpc
+
+  install -d "$pkgdir"/usr/lib
+  libtool --mode=install install libgap.la "$pkgdir"/usr/lib
+
+  mkdir -p "$pkgdir"/usr/{bin,lib/gap/pkg}
+  cp -r grp lib "$pkgdir"/usr/lib/gap
+  for _pkg in ${_standardpkgs[@]}; do
+cp -r pkg/$_pkg "$pkgdir"/usr/lib/gap/pkg
+  done
+  install -Dm755 gap -t "$pkgdir"/usr/lib/gap
+# Install launcher script
+  install -Dm755 "$srcdir"/gap.sh "$pkgdir"/usr/bin/gap
+
+  mkdir -p "$pkgdir"/usr/share
+  ln -s /usr/lib/gap -t "$pkgdir"/usr/share # expected by sagemath
+}
+
+package_gap-doc() {
+  depends=(gap)
+  replaces=(gap-4.8-doc)
+  pkgdesc="Documentation for GAP"
+  cd gap-$pkgver
+
+  mkdir -p "$pkgdir"/usr/lib/ga

[arch-commits] Commit in gap/trunk (PKGBUILD libsemigroups-1.0.patch)

2020-03-06 Thread Antonio Rojas via arch-commits
Date: Friday, March 6, 2020 @ 14:36:34
  Author: arojas
Revision: 590993

Update to 4.11.0

Modified:
  gap/trunk/PKGBUILD
Deleted:
  gap/trunk/libsemigroups-1.0.patch

-+
 PKGBUILD|   12 
 libsemigroups-1.0.patch | 2244 --
 2 files changed, 4 insertions(+), 2252 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 14:09:18 UTC (rev 590992)
+++ PKGBUILD2020-03-06 14:36:34 UTC (rev 590993)
@@ -4,20 +4,18 @@
 
 pkgbase=gap
 pkgname=(gap gap-doc gap-packages)
-pkgver=4.10.2
-pkgrel=11
+pkgver=4.11.0
+pkgrel=1
 pkgdesc="Groups, Algorithms, Programming: a system for computational discrete 
algebra"
 arch=(x86_64)
 url="https://www.gap-system.org/";
 license=(GPL)
 
source=("https://www.gap-system.org/pub/gap/gap-${pkgver%.*}/tar.gz/gap-$pkgver.tar.gz";
 gap.sh
- libsemigroups-1.0.patch
  git+https://github.com/gap-packages/NormalizInterface#commit=cd69a42
  normalizinterface-missing-include.patch
  gap-polymake-4.0.patch)
-sha256sums=('11175bed0234101643d510d4ab94c44db30bd303bfe63d86b9b86ae67cff9e49'
+sha256sums=('6fda7af23394708aeb3b4bca8885f5fdcb7c3ae4419639dfb2d9f67d3f590abb'
 '143fb8a79a52c007903cce13407850df309ef803a9b00398d05169355917de46'
-'ccd95de4f48d26b73d6df7c1847855f68ee70644d130d32f14213988c3e286e3'
 'SKIP'
 '2410dfc69f1f4d2f320e91590d55e59c7b557637f9f60b9e609b318cfc21c181'
 'e3f6d671c8df9acb6143a7c279391957967cd44f0a00b949323401d5b54ed685')
@@ -37,13 +35,11 @@
   sed -e '/XGAP/d' -i pkg/cryst/PackageInfo.g
 
 # Update NormalizInterface to support recent normaliz
-  rm -r pkg/NormalizInterface-1.0.2
+  rm -r pkg/NormalizInterface-1.1.0
   cp -r ../NormalizInterface pkg
   cd pkg/NormalizInterface
   patch -p1 -i "$srcdir"/normalizinterface-missing-include.patch
 
-  cd ../semigroups-*
-  patch -p1 -i "$srcdir"/libsemigroups-1.0.patch # Fix build with 
libsemigroups 1.0
   cd ../PolymakeInterface-*
   patch -p2 -i "$srcdir"/gap-polymake-4.0.patch # Fix build with polymake 4.0
 }

Deleted: libsemigroups-1.0.patch
===
--- libsemigroups-1.0.patch 2020-03-06 14:09:18 UTC (rev 590992)
+++ libsemigroups-1.0.patch 2020-03-06 14:36:34 UTC (rev 590993)
@@ -1,2244 +0,0 @@
-From ff6e172a492af2465fd7465da64298353cc15cc5 Mon Sep 17 00:00:00 2001
-From: James Mitchell 
-Date: Wed, 2 May 2018 10:45:40 +0200
-Subject: [PATCH] Update for libsemigroups v1.0.0
-

- .LIBSEMIGROUPS_VERSION  |   2 +-
- Makefile.am |  16 +-
- gap/main/fropin.gi  |  19 ++-
- m4/ax_check_libsemigroup.m4 |   4 +-
- scripts/travis-test.sh  |  10 +-
- src/.clang-format   |  10 +-
- src/bipart.cc   | 133 
- src/bipart.h|   9 +-
- src/congpairs.cc| 235 ++--
- src/converter.cc|  21 ++-
- src/converter.h |  50 +++---
- src/fropin.cc   |  29 ++--
- src/pkg.cc  |  22 +--
- src/pkg.h   |   5 +-
- src/semigrp.cc  | 294 +++-
- src/semigrp.h   |  63 
- src/uf.cc   |   8 +-
- tst/standard/congfpmon.tst  |  17 +--
- 18 files changed, 484 insertions(+), 463 deletions(-)
-
-diff --git a/.LIBSEMIGROUPS_VERSION b/.LIBSEMIGROUPS_VERSION
-index 2228cad41..3eefcb9dd 100644
 a/.LIBSEMIGROUPS_VERSION
-+++ b/.LIBSEMIGROUPS_VERSION
-@@ -1 +1 @@
--0.6.7
-+1.0.0
-diff --git a/Makefile.am b/Makefile.am
-index b5ee5ea8b..6998d563e 100644
 a/Makefile.am
-+++ b/Makefile.am
-@@ -11,7 +11,7 @@ if WITH_INCLUDED_LIBSEMIGROUPS
-   # the following triggers "make install" on libsemigroups
-   # note that making it a concrete file prevents this target
-   # to be needlessly re-run if libsemigroups/ is not changed.
--  BUILT_SOURCES = bin/include/libsemigroups/blocks.h
-+  BUILT_SOURCES = bin/include/libsemigroups/libsemigroups.hpp
- endif
- 
- AM_CPPFLAGS = @LIBSEMIGROUPS_CFLAGS@
-@@ -28,6 +28,18 @@ semigroups_la_SOURCES += src/semigrp.cc
- semigroups_la_CXXFLAGS = $(GAP_CFLAGS) @LIBSEMIGROUPS_CFLAGS@ -std=gnu++11 
-O3 -g -march=native
- semigroups_la_CPPFLAGS = $(GAP_CPPFLAGS)  @LIBSEMIGROUPS_CFLAGS@
- semigroups_la_CFLAGS = $(GAP_CFLAGS)
-+
-+semigroups_la_CPPFLAGS += -I$(top_srcdir)/libsemigroups/extern/HPCombi/include
-+semigroups_la_CPPFLAGS += 
-I$(top_srcdir)/libsemigroups/extern/HPCombi/include/fallback
-+semigroups_la_CPPFLAGS += 
-I$(top_srcdir)/libsemigroups/extern/fmt-5.3.0/include
-+semigroups_la_CPPFLAGS += -DFMT_HEADER_ONLY
-+
-+if KERNEL_DEBUG
-+semigroups_la_CPPFLAGS += -DDEBUG
-+else
-+semigroups_la_CPPFLAGS += -DNDEBUG
-+endif
-+
- semigroups_la_LDFLAGS = $(GAP_LDFLAGS) -module -avoid-version
- 
- semigroups_la_LIBADD = @LIBSEMIGROUPS_LIBS@
-@@ -37,7 +49,7 @@ se

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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 14:09:18
  Author: felixonmars
Revision: 590992

archrelease: copy trunk to community-staging-x86_64

Added:
  shellcheck/repos/community-staging-x86_64/
  shellcheck/repos/community-staging-x86_64/PKGBUILD
(from rev 590991, shellcheck/trunk/PKGBUILD)

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 590991, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-06 14:09:18 UTC (rev 590992)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.7.0
+pkgrel=162
+pkgdesc="Shell script analysis tool"
+url="https://www.shellcheck.net";
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-diff' 'haskell-quickcheck' 
'haskell-regex-tdfa')
+makedepends=('ghc' 'pandoc')
+source=("$_hkgname-$pkgver.tar.gz::https://github.com/koalaman/shellcheck/archive/v$pkgver.tar.gz";
+
shellcheck-cabal3.patch::https://github.com/koalaman/shellcheck/commit/2c026f1ec7c205c731ff2a0ccd85365f37245758.patch)
+sha512sums=('46ef486dff09bd51bdc5f053b1dda9e3f2943c66bbf6788824ddf8fcf3b69b7a3a9c00bf98bca0dee9d57ee6df833ca4088252dbf773815248be0fa667f35215'
+
'88b7101a536598ecbf4d1c48cfd4eb10b1a6424a2344e4b1be6f6a814dcf1c3d00e78390070242369bc55ed9c20defd4cc7337854da71761fb08e13240619684')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../shellcheck-cabal3.patch
+
+echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+}
+
+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='-pie'
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+
+./manpage
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m644 ${pkgname}.1   "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 14:09:03
  Author: felixonmars
Revision: 590991

upgpkg: shellcheck 0.7.0-162: rebuild with ghc-lib-parser-ex 8.8.5.3

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 14:05:50 UTC (rev 590990)
+++ PKGBUILD2020-03-06 14:09:03 UTC (rev 590991)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.0
-pkgrel=161
+pkgrel=162
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net";
 license=("GPL")


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 14:05:50
  Author: felixonmars
Revision: 590990

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
590989, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-06 14:05:50 UTC (rev 590990)
@@ -0,0 +1,46 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-crossref
+pkgver=0.3.6.2
+pkgrel=12
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgname}";
+license=("GPL2")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-data-default' 'haskell-data-accessor' 
'haskell-data-accessor-template'
+ 'haskell-data-accessor-transformers' 'haskell-gitrev' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'pandoc' 'haskell-pandoc-types' 
'haskell-roman-numerals'
+ 'haskell-syb' 'haskell-utility-ht')
+makedepends=('ghc' 'haskell-hspec')
+conflicts=('haskell-pandoc-crossref')
+replaces=('haskell-pandoc-crossref')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/lierdakil/pandoc-crossref/archive/v$pkgver.tar.gz";)
+sha512sums=('4b0443348ff3fa2e9f2366afee1a58c96466d395be9458e63b4741ffe0dba250d35e55de19b62c5a9231030bf658f2628f934667effcaad52891c94d63dbf168')
+
+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 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+   -f-enable_flaky_tests
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $pkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 14:05:36
  Author: felixonmars
Revision: 590989

upgpkg: pandoc-crossref 0.3.6.2-12: rebuild with ghc-lib-parser-ex 8.8.5.3

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 14:03:53 UTC (rev 590988)
+++ PKGBUILD2020-03-06 14:05:36 UTC (rev 590989)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.6.2
-pkgrel=11
+pkgrel=12
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname}";
 license=("GPL2")


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 14:03:53
  Author: felixonmars
Revision: 590988

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
590987, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-06 14:03:53 UTC (rev 590988)
@@ -0,0 +1,58 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.13.0.1
+pkgrel=31
+pkgdesc="A static website compiler library"
+url="https://jaspervdj.be/hakyll";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-network-uri'
+ 'haskell-optparse-applicative' 'pandoc' 'pandoc-citeproc' 
'haskell-random'
+ 'haskell-regex-tdfa' 'haskell-resourcet' 'haskell-scientific' 
'haskell-tagsoup'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-wai' 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('36d3d0c9e3cefbc6b159ec868a523be37cfd92db8997f914cbf9eb568cba6f16169048aca7d4bebdf8a800ec3ed6bb710c9330723b3444629ab8fae77e9325df')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i -e 's/< *0.17/<1/' -e 's/< *1.3/<2/' -e 's/< *2/<3/' -e 's/< 
*3.3/<4/' -e 's/< *0.15/<1/' $_hkgname.cabal
+sed -i 's/fail /error /' lib/Hakyll/Core/Metadata.hs 
lib/Hakyll/Web/Redirect.hs lib/Hakyll/Web/Template/Context.hs
+sed -i '/fail = /i instance MonadFail Compiler where' 
lib/Hakyll/Core/Compiler/Internal.hs
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir="$pkgname" 
--enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver -fusepandoc
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning 
"https://github.com/jaspervdj/hakyll/issues/682";
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 14:03:38
  Author: felixonmars
Revision: 590987

upgpkg: haskell-hakyll 4.13.0.1-31: rebuild with ghc-lib-parser-ex 8.8.5.3

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 14:01:42 UTC (rev 590986)
+++ PKGBUILD2020-03-06 14:03:38 UTC (rev 590987)
@@ -4,7 +4,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.13.0.1
-pkgrel=30
+pkgrel=31
 pkgdesc="A static website compiler library"
 url="https://jaspervdj.be/hakyll";
 license=("BSD")


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 14:01:42
  Author: felixonmars
Revision: 590986

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
590985, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-06 14:01:42 UTC (rev 590986)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.17
+pkgrel=15
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/$pkgname";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-aeson-pretty' 'haskell-attoparsec'
+ 'haskell-base-compat' 'haskell-data-default' 'haskell-hs-bibutils' 
'haskell-libyaml'
+ 'haskell-network' 'haskell-old-locale' 'pandoc' 
'haskell-pandoc-types' 'haskell-rfc5051'
+ 'haskell-safe' 'haskell-setenv' 'haskell-split' 'haskell-syb' 
'haskell-tagsoup'
+ 'haskell-temporary' 'haskell-text-icu' 'haskell-unordered-containers' 
'haskell-vector'
+ 'haskell-xml-conduit' 'haskell-yaml' 'haskell-hsyaml' 
'haskell-hsyaml-aeson')
+conflicts=('haskell-pandoc-citeproc')
+replaces=('haskell-pandoc-citeproc')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/$pkgname/${pkgver}/$pkgname-${pkgver}.tar.gz";)
+sha512sums=('65bc510c1208d5c76884c1b5898d033abd06ebce040c36e1ec2f11fd0107fbb6ac838e0be6d97c40c9b2893ba6bdc38d2bf5c12fec7db069bbabd37d6d07b4e7')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i 
"s|(\"HOME\",\".\")|(\"HOME\",\".\"),(\"LD_LIBRARY_PATH\",\"$PWD/dist/build\"),(\"pandoc_citeproc_datadir\",\"$PWD\")|"
 tests/test-pandoc-citeproc.hs
+}
+
+build() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/$pkgname" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+# https://github.com/jgm/pandoc-citeproc/issues/342
+runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/$pkgname.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/$pkgname.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/$pkgname/LICENSE"
+}


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 14:01:28
  Author: felixonmars
Revision: 590985

upgpkg: pandoc-citeproc 0.17-15: rebuild with ghc-lib-parser-ex 8.8.5.3

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:57:55 UTC (rev 590984)
+++ PKGBUILD2020-03-06 14:01:28 UTC (rev 590985)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.17
-pkgrel=14
+pkgrel=15
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname";
 license=("BSD")


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:57:40
  Author: felixonmars
Revision: 590983

upgpkg: pandoc 2.9.2-35: rebuild with ghc-lib-parser-ex 8.8.5.3

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:39:52 UTC (rev 590982)
+++ PKGBUILD2020-03-06 13:57:40 UTC (rev 590983)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc
 pkgver=2.9.2
-pkgrel=34
+pkgrel=35
 pkgdesc='Conversion between markup formats'
 url='https://pandoc.org'
 license=('GPL')


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:57:55
  Author: felixonmars
Revision: 590984

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 590983, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-06 13:57:55 UTC (rev 590984)
@@ -0,0 +1,68 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.9.2
+pkgrel=35
+pkgdesc='Conversion between markup formats'
+url='https://pandoc.org'
+license=('GPL')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-attoparsec' 'haskell-base-compat'
+ 'haskell-base64-bytestring' 'haskell-blaze-html' 
'haskell-blaze-markup'
+ 'haskell-case-insensitive' 'haskell-cmark-gfm' 'haskell-data-default' 
'haskell-doclayout'
+ 'haskell-doctemplates' 'haskell-emojis' 'haskell-exceptions' 
'haskell-glob'
+ 'haskell-haddock-library' 'haskell-ipynb' 'haskell-jira-wiki-markup' 
'haskell-skylighting'
+ 'haskell-skylighting-core' 'haskell-hslua' 
'haskell-hslua-module-system'
+ 'haskell-hslua-module-text' 'haskell-http-client' 'haskell-syb' 
'haskell-hsyaml'
+ 'haskell-http-client-tls' 'haskell-http-types' 'haskell-safe' 
'haskell-split'
+ 'haskell-texmath' 'haskell-network' 'haskell-pandoc-types' 
'haskell-random'
+ 'haskell-scientific' 'haskell-tagsoup' 'haskell-temporary' 
'haskell-text-conversions'
+ 'haskell-network-uri' 'haskell-unicode-transforms' 
'haskell-unordered-containers'
+ 'haskell-zip-archive' 'haskell-vector' 'haskell-xml' 'haskell-zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-lua'
+ 'haskell-tasty-quickcheck' 'haskell-tasty-golden' 
'haskell-quickcheck'
+ 'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('af67ad7ff6f5f16d62a9a5b988bb402f17e5774fcc91a7be56d95b2694640051628495c526ae9f92095ec7050ebb096db5d23ef07a105e73bbf50386a67eb532')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-trypandoc -f-embed_data_files -f-static
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test || warning "Tests failed"
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+install -Dm644 man/pandoc.1 "${pkgdir}"/usr/share/man/man1/pandoc.1
+}


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:39:52
  Author: felixonmars
Revision: 590982

archrelease: copy trunk to community-x86_64

Added:
  nodejs/repos/community-x86_64/PKGBUILD
(from rev 590981, nodejs/trunk/PKGBUILD)
  nodejs/repos/community-x86_64/rebuild.list
(from rev 590981, nodejs/trunk/rebuild.list)
Deleted:
  nodejs/repos/community-x86_64/PKGBUILD
  nodejs/repos/community-x86_64/rebuild.list

--+
 PKGBUILD |  114 -
 rebuild.list |4 +-
 2 files changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 13:39:28 UTC (rev 590981)
+++ PKGBUILD2020-03-06 13:39:52 UTC (rev 590982)
@@ -1,57 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor  Bartłomiej Piotrowski 
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: James Campos 
-# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Dongsheng Cai 
-# Contributor: Masutu Subric 
-# Contributor: TIanyi Cui 
-
-pkgname=nodejs
-pkgver=13.10.0
-pkgrel=1
-pkgdesc='Evented I/O for V8 javascript'
-arch=('x86_64')
-url='https://nodejs.org/'
-license=('MIT')
-depends=('openssl' 'zlib' 'icu' 'libuv' 'c-ares' 'libnghttp2') # 'http-parser' 
'v8')
-makedepends=('python' 'procps-ng')
-optdepends=('npm: nodejs package manager')
-source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz";)
-sha512sums=('ce09441b730bf6c26af78d8843f336d265bf241f8dd898c494e0a2d4b94c3d6c23ffb49cc2e2653867d141beb6e9389c19252f19a0f470e212bef04e8071b38e')
-
-build() {
-  cd node-$pkgver
-
-  ./configure \
---prefix=/usr \
---with-intl=system-icu \
---without-npm \
---shared-openssl \
---shared-zlib \
---shared-libuv \
---experimental-http-parser \
---shared-cares \
---shared-nghttp2
-# --shared-v8
-# --shared-http-parser
-
-  make
-}
-
-check() {
-  cd node-$pkgver
-  # Expected failure: https://github.com/nodejs/node/issues/11627
-  make test || warning "Tests failed"
-}
-
-package() {
-  cd node-$pkgver
-
-  make DESTDIR="$pkgdir" install
-
-  install -D -m644 LICENSE \
-"$pkgdir"/usr/share/licenses/nodejs/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: nodejs/repos/community-x86_64/PKGBUILD (from rev 590981, 
nodejs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 13:39:52 UTC (rev 590982)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor  Bartłomiej Piotrowski 
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: James Campos 
+# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Dongsheng Cai 
+# Contributor: Masutu Subric 
+# Contributor: TIanyi Cui 
+
+pkgname=nodejs
+pkgver=13.10.1
+pkgrel=1
+pkgdesc='Evented I/O for V8 javascript'
+arch=('x86_64')
+url='https://nodejs.org/'
+license=('MIT')
+depends=('openssl' 'zlib' 'icu' 'libuv' 'c-ares' 'libnghttp2') # 'http-parser' 
'v8')
+makedepends=('python' 'procps-ng')
+optdepends=('npm: nodejs package manager')
+source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz";)
+sha512sums=('ec7ac831a620b7d598662476736d64ba848b33458095d180e61e74def42d1eec198a6648aac482e31988e17ee656d85da9d720896774d97afee4b07352c55c8f')
+
+build() {
+  cd node-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--with-intl=system-icu \
+--without-npm \
+--shared-openssl \
+--shared-zlib \
+--shared-libuv \
+--experimental-http-parser \
+--shared-cares \
+--shared-nghttp2
+# --shared-v8
+# --shared-http-parser
+
+  make
+}
+
+check() {
+  cd node-$pkgver
+  # Expected failure: https://github.com/nodejs/node/issues/11627
+  make test || warning "Tests failed"
+}
+
+package() {
+  cd node-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -D -m644 LICENSE \
+"$pkgdir"/usr/share/licenses/nodejs/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: rebuild.list
===
--- rebuild.list2020-03-06 13:39:28 UTC (rev 590981)
+++ rebuild.list2020-03-06 13:39:52 UTC (rev 590982)
@@ -1,2 +0,0 @@
-apm
-bash-language-server

Copied: nodejs/repos/community-x86_64/rebuild.list (from rev 590981, 
nodejs/trunk/rebuild.list)
===
--- rebuild.list(rev 0)
+++ rebuild.list2020-03-06 13:39:52 UTC (rev 590982)
@@ -0,0 +1,2 @@
+apm
+bash-language-server


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:39:28
  Author: felixonmars
Revision: 590981

upgpkg: nodejs 13.10.1-1

Modified:
  nodejs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:38:04 UTC (rev 590980)
+++ PKGBUILD2020-03-06 13:39:28 UTC (rev 590981)
@@ -8,7 +8,7 @@
 # Contributor: TIanyi Cui 
 
 pkgname=nodejs
-pkgver=13.10.0
+pkgver=13.10.1
 pkgrel=1
 pkgdesc='Evented I/O for V8 javascript'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 makedepends=('python' 'procps-ng')
 optdepends=('npm: nodejs package manager')
 
source=("nodejs-$pkgver.tar.gz::https://github.com/nodejs/node/archive/v$pkgver.tar.gz";)
-sha512sums=('ce09441b730bf6c26af78d8843f336d265bf241f8dd898c494e0a2d4b94c3d6c23ffb49cc2e2653867d141beb6e9389c19252f19a0f470e212bef04e8071b38e')
+sha512sums=('ec7ac831a620b7d598662476736d64ba848b33458095d180e61e74def42d1eec198a6648aac482e31988e17ee656d85da9d720896774d97afee4b07352c55c8f')
 
 build() {
   cd node-$pkgver


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:38:04
  Author: felixonmars
Revision: 590980

archrelease: copy trunk to community-staging-x86_64

Added:
  cryptol/repos/community-staging-x86_64/
  cryptol/repos/community-staging-x86_64/PKGBUILD
(from rev 590979, cryptol/trunk/PKGBUILD)

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

Copied: cryptol/repos/community-staging-x86_64/PKGBUILD (from rev 590979, 
cryptol/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-06 13:38:04 UTC (rev 590980)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan 
+
+pkgname=cryptol
+pkgver=2.8.0
+pkgrel=70
+pkgdesc="The Language of Cryptography"
+url="https://www.cryptol.net";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'z3' 'haskell-base-compat' 'haskell-cryptohash-sha1' 
'haskell-gitrev'
+ 'haskell-graphscc' 'haskell-heredoc' 'haskell-monad-control' 
'haskell-monadlib'
+ 'haskell-panic' 'haskell-random' 'haskell-sbv' 'haskell-simple-smt' 
'haskell-strict'
+ 'haskell-tf-random' 'haskell-transformers-base' 
'haskell-ansi-terminal'
+ 'haskell-blaze-html')
+makedepends=('ghc' 'alex' 'happy')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/GaloisInc/cryptol/archive/$pkgver.tar.gz";
+ghc-8.8.patch::https://github.com/GaloisInc/cryptol/pull/655.patch)
+sha512sums=('ad2cbb67dbcd10dba12457b24558af4ef7066817f18e162432607e7d887071fef13a1c958e37a3f7e8e3fd04079c20cc2a8abdcf1c9dd35a9a93e7e0a2d383b0'
+
'f5399cfde04c2645e0bc80d80a39ac570c9649961e22bf9808bb55ba8457f9a124469d699de73624b2debabe8d672879bd0b2279b60dfcb08d328de67ca78e84')
+
+prepare() {
+cd $pkgname-$pkgver
+patch -p1 -i ../ghc-8.8.patch
+sed -i 's/< *0.11/<1/' $pkgname.cabal
+#sed -i 's/import Prelude.Compat/import Prelude.Compat hiding ( fail )/' 
src/Cryptol/Parser/{NoPat,ParserUtils}.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-static -f-relocatable --ghc-option='-pie'
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:37:49
  Author: felixonmars
Revision: 590979

upgpkg: cryptol 2.8.0-70: rebuild with ghc-lib-parser-ex 8.8.5.3

Modified:
  cryptol/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:34:12 UTC (rev 590978)
+++ PKGBUILD2020-03-06 13:37:49 UTC (rev 590979)
@@ -2,7 +2,7 @@
 
 pkgname=cryptol
 pkgver=2.8.0
-pkgrel=69
+pkgrel=70
 pkgdesc="The Language of Cryptography"
 url="https://www.cryptol.net";
 license=("BSD")


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:34:12
  Author: felixonmars
Revision: 590978

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-sbv/repos/community-staging-x86_64/PKGBUILD (from rev 590977, 
haskell-sbv/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-06 13:34:12 UTC (rev 590978)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=sbv
+pkgname=haskell-sbv
+pkgver=8.6
+pkgrel=32
+pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
+url="https://leventerkok.github.com/sbv";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-ghc' 'haskell-quickcheck' 'haskell-cracknum' 
'haskell-async'
+ 'haskell-random' 'haskell-syb' 'haskell-generic-deriving')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'hlint' 'haskell-tasty' 
'haskell-tasty-golden'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";)
+sha512sums=('2282c63d21c6baa8070ec8afbfb75deeae6becead7963efd0894d9a82af31de7e993d7bc57c17c5e7914bd458f45771ac7e0995632511584dd6d90bff9034f1f')
+
+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
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:33:57
  Author: felixonmars
Revision: 590977

upgpkg: haskell-sbv 8.6-32: rebuild with ghc-lib-parser-ex 8.8.5.3

Modified:
  haskell-sbv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:23:47 UTC (rev 590976)
+++ PKGBUILD2020-03-06 13:33:57 UTC (rev 590977)
@@ -4,7 +4,7 @@
 _hkgname=sbv
 pkgname=haskell-sbv
 pkgver=8.6
-pkgrel=31
+pkgrel=32
 pkgdesc="SMT Based Verification: Symbolic Haskell theorem prover using SMT 
solving"
 url="https://leventerkok.github.com/sbv";
 license=("BSD")


[arch-commits] Commit in systemd/repos (21 files)

2020-03-06 Thread Christian Hesse via arch-commits
Date: Friday, March 6, 2020 @ 13:26:37
  Author: eworm
Revision: 376866

archrelease: copy trunk to testing-x86_64

Added:
  systemd/repos/testing-x86_64/
  systemd/repos/testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch
(from rev 376865, 
systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
  systemd/repos/testing-x86_64/20-systemd-sysusers.hook
(from rev 376865, systemd/trunk/20-systemd-sysusers.hook)
  systemd/repos/testing-x86_64/30-systemd-binfmt.hook
(from rev 376865, systemd/trunk/30-systemd-binfmt.hook)
  systemd/repos/testing-x86_64/30-systemd-catalog.hook
(from rev 376865, systemd/trunk/30-systemd-catalog.hook)
  systemd/repos/testing-x86_64/30-systemd-daemon-reload.hook
(from rev 376865, systemd/trunk/30-systemd-daemon-reload.hook)
  systemd/repos/testing-x86_64/30-systemd-hwdb.hook
(from rev 376865, systemd/trunk/30-systemd-hwdb.hook)
  systemd/repos/testing-x86_64/30-systemd-sysctl.hook
(from rev 376865, systemd/trunk/30-systemd-sysctl.hook)
  systemd/repos/testing-x86_64/30-systemd-tmpfiles.hook
(from rev 376865, systemd/trunk/30-systemd-tmpfiles.hook)
  systemd/repos/testing-x86_64/30-systemd-udev-reload.hook
(from rev 376865, systemd/trunk/30-systemd-udev-reload.hook)
  systemd/repos/testing-x86_64/30-systemd-update.hook
(from rev 376865, systemd/trunk/30-systemd-update.hook)
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 376865, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 376865, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 376865, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 376865, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 376865, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 376865, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 376865, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd-hook
(from rev 376865, systemd/trunk/systemd-hook)
  systemd/repos/testing-x86_64/systemd-user.pam
(from rev 376865, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-x86_64/systemd.install
(from rev 376865, systemd/trunk/systemd.install)

+
 0001-Use-Arch-Linux-device-access-groups.patch |   67 +
 20-systemd-sysusers.hook   |   10 
 30-systemd-binfmt.hook |   10 
 30-systemd-catalog.hook|   11 
 30-systemd-daemon-reload.hook  |   11 
 30-systemd-hwdb.hook   |   11 
 30-systemd-sysctl.hook |   10 
 30-systemd-tmpfiles.hook   |   10 
 30-systemd-udev-reload.hook|   11 
 30-systemd-update.hook |   11 
 PKGBUILD   |  262 +++
 arch.conf  |7 
 initcpio-hook-udev |   22 +
 initcpio-install-systemd   |  202 +
 initcpio-install-udev  |   29 ++
 loader.conf|1 
 systemd-hook   |   37 +++
 systemd-user.pam   |5 
 systemd.install|  109 +
 19 files changed, 836 insertions(+)

Copied: 
systemd/repos/testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch 
(from rev 376865, systemd/trunk/0001-Use-Arch-Linux-device-access-groups.patch)
===
--- testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch   
(rev 0)
+++ testing-x86_64/0001-Use-Arch-Linux-device-access-groups.patch   
2020-03-06 13:26:37 UTC (rev 376866)
@@ -0,0 +1,67 @@
+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 6 Mar 2018 23:39:47 +0100
+Subject: [PATCH] Use Arch Linux' device access groups
+
+  cdrom   → optical
+  dialout → uucp
+  tape→ storage
+---
+ rules.d/50-udev-default.rules.in | 14 +++---
+ sysusers.d/basic.conf.in   |  6 +++---
+ 2 files changed, 10 insertions(+), 10 deletions(-)
+
+diff --git a/rules.d/50-udev-default.rules.in 
b/rules.d/50-udev-default.rules.in
+index 191f56f42..f81c4d0fc 100644
+--- a/rules.d/50-udev-default.rules.in
 b/rules.d/50-udev-default.rules.in
+@@ -22,7 +22,7 @@ SUBSYSTEM=="tty", KERNEL=="sclp_line[0-9]*", GROUP="tty", 
MODE="0620"
+ SUBSYSTEM=="tty", KERNEL=="ttysclp[0-9]*", GROUP="tty", MODE="0620"
+ SUBSYSTEM=="tty", KERNEL=="3270/tty[0-9]*", GROUP="tty", MODE="0620"
+ SUBSYSTEM=="vc", KERNEL=="vcs*|vcsa*", GROUP="tty"
+-KERNEL=="tty[A-Z]*[0-9]|ttymxc[0-9]*|pppox[0-9]*|ircomm[0-9]*|noz[0-9]*|rfcomm[0-9]*",
 GROUP="dialout"

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

2020-03-06 Thread Christian Hesse via arch-commits
Date: Friday, March 6, 2020 @ 13:26:28
  Author: eworm
Revision: 376865

upgpkg: systemd 245-1

new upstream release

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:25:11 UTC (rev 376864)
+++ PKGBUILD2020-03-06 13:26:28 UTC (rev 376865)
@@ -4,8 +4,8 @@
 
 pkgbase=systemd
 pkgname=('systemd' 'systemd-libs' 'systemd-resolvconf' 'systemd-sysvcompat')
-_tag='b7ed902b2394f94e7f1fbe6c3194b5cd9a9429e6' # git rev-parse v${pkgver}
-pkgver=244.3
+_tag='68fef5d635424a60224cce610d30a9041124c204' # git rev-parse v${pkgver}
+pkgver=245
 pkgrel=1
 arch=('x86_64')
 url='https://www.github.com/systemd/systemd'
@@ -60,8 +60,6 @@
 
'825b9dd0167c072ba62cabe0677e7cd20f2b4b850328022540f122689d8b25315005fa98ce867cf6e7460b2b26df16b88bb3b5c9ebf721746dce4e2271af7b97')
 
 _backports=(
-  # units: Split modprobing out into a separate service unit
-  '625077264ba01a108386eeea733ee244e6b7ff14'
 )
 
 _reverts=(


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

2020-03-06 Thread Florian Pritz via arch-commits
Date: Friday, March 6, 2020 @ 13:25:11
  Author: bluewind
Revision: 376864

archrelease: copy trunk to testing-x86_64

Added:
  syslog-ng/repos/testing-x86_64/
  syslog-ng/repos/testing-x86_64/PKGBUILD
(from rev 376863, syslog-ng/trunk/PKGBUILD)
  syslog-ng/repos/testing-x86_64/syslog-ng.conf
(from rev 376863, syslog-ng/trunk/syslog-ng.conf)
  syslog-ng/repos/testing-x86_64/syslog-ng.logrotate
(from rev 376863, syslog-ng/trunk/syslog-ng.logrotate)

-+
 PKGBUILD|   66 +++
 syslog-ng.conf  |   93 ++
 syslog-ng.logrotate |7 +++
 3 files changed, 166 insertions(+)

Copied: syslog-ng/repos/testing-x86_64/PKGBUILD (from rev 376863, 
syslog-ng/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-03-06 13:25:11 UTC (rev 376864)
@@ -0,0 +1,66 @@
+# Maintainer: Florian Pritz 
+# Contributor: Eric Bélanger 
+
+pkgname=syslog-ng
+pkgver=3.26.1
+pkgrel=1
+pkgdesc="Next-generation syslogd with advanced networking and filtering 
capabilities"
+arch=('x86_64')
+url="https://www.syslog-ng.com/products/open-source-log-management/";
+license=('GPL2' 'LGPL2.1')
+depends=('awk' 'systemd-libs' 'glib2' 'libnsl' 'json-c' 'curl' 'libnet')
+makedepends=('libxslt' 'mongo-c-driver' 'librabbitmq-c' 'python' 'libesmtp' 
'hiredis'
+ 'libdbi' 'libmaxminddb' 'net-snmp' 'librdkafka' 'libcap')
+checkdepends=('python-nose' 'python-ply')
+optdepends=('logrotate: for rotating log files'
+'libdbi: for the SQL plugin'
+'librabbitmq-c: for the AMQP plugin'
+'mongo-c-driver: for the MongoDB plugin'
+'libesmtp: for the SMTP plugin'
+'hiredis: for the Redis plugin'
+'libmaxminddb: for the GeoIP2 plugin'
+'net-snmp: for the SNMP plugin'
+'librdkafka: for the Kafka C plugin'
+'python: for Python-based plugins')
+conflicts=('eventlog')
+replaces=('eventlog')
+backup=('etc/syslog-ng/scl.conf'
+'etc/syslog-ng/syslog-ng.conf'
+'etc/logrotate.d/syslog-ng'
+'etc/default/syslog-ng@default')
+source=(https://github.com/balabit/syslog-ng/releases/download/syslog-ng-$pkgver/$pkgname-$pkgver.tar.gz
+syslog-ng.conf syslog-ng.logrotate)
+sha256sums=('90214223864df252cea80dbb35c88a2464edcbbb2c9fbc6f6f6c13ee60cb62cd'
+'1b8f6d00f8ce93024c0827c4969cbcf0b7d48bee22d5173e1bcd256ab55f9438'
+'93c935eca56854011ea9e353b7a1da662ad40b2e8452954c5b4b5a1d5b2d5317')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i -e 's,/bin/,/usr/bin/,' -e 's,/sbin/,/bin/,' 
contrib/systemd/syslog-ng@.service
+  sed -i -e 's|/var/run|/run|g' contrib/systemd/syslog-ng@default
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./autogen.sh
+  ./configure --prefix=/usr --sysconfdir=/etc/syslog-ng --libexecdir=/usr/lib \
+--sbindir=/usr/bin --localstatedir=/var/lib/syslog-ng --datadir=/usr/share 
\
+--with-pidfile-dir=/run --enable-spoof-source --enable-ipv6 \
+--enable-systemd --with-systemdsystemunitdir=/usr/lib/systemd/system \
+--enable-manpages --enable-all-modules --disable-java 
--disable-java-modules  \
+--disable-riemann --with-python=3 --with-jsonc=system
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check || /usr/bin/true # unit test requires criterion
+}
+
+package() {
+  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
+  install -dm755 "$pkgdir/var/lib/syslog-ng" 
"$pkgdir/etc/syslog-ng/patterndb.d"
+  install -Dm644 "$srcdir/syslog-ng.conf" 
"$pkgdir/etc/syslog-ng/syslog-ng.conf"
+  install -Dm644 "$srcdir/syslog-ng.logrotate" 
"$pkgdir/etc/logrotate.d/syslog-ng"
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/contrib/systemd/syslog-ng@default 
-t "$pkgdir"/etc/default
+}

Copied: syslog-ng/repos/testing-x86_64/syslog-ng.conf (from rev 376863, 
syslog-ng/trunk/syslog-ng.conf)
===
--- testing-x86_64/syslog-ng.conf   (rev 0)
+++ testing-x86_64/syslog-ng.conf   2020-03-06 13:25:11 UTC (rev 376864)
@@ -0,0 +1,93 @@
+@version: 3.25
+@include "scl.conf"
+#
+# /etc/syslog-ng/syslog-ng.conf
+#
+
+options {
+  stats_freq (0);
+  flush_lines (0);
+  time_reopen (10);
+  log_fifo_size (1);
+  chain_hostnames (off);
+  dns_cache (no);
+  use_dns (no);
+  use_fqdn (no);
+  create_dirs (no);
+  keep_hostname (yes);
+  perm(0640);
+  group("log");
+};
+
+source src {
+  system();
+  internal();
+};
+
+destination d_authlog { file("/var/log/auth.log"); };
+destination d_syslog { file("/var/log/syslog.log"); };
+destination d_cron { file("/var/log/crond.log"); };
+destination d_daemon { file("/var/log/daemon.log"); };
+destination d_kernel { file("/var/log/kernel.log"); };
+destination d_lpr { file("/var/log/lpr.log"); };
+destination d_user { file("/

[arch-commits] Commit in syslog-ng/trunk (PKGBUILD syslog-ng.conf)

2020-03-06 Thread Florian Pritz via arch-commits
Date: Friday, March 6, 2020 @ 13:25:06
  Author: bluewind
Revision: 376863

upgpkg: syslog-ng 3.26.1-1: upstream update

Modified:
  syslog-ng/trunk/PKGBUILD
  syslog-ng/trunk/syslog-ng.conf

+
 PKGBUILD   |   15 +++
 syslog-ng.conf |1 +
 2 files changed, 8 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:09:36 UTC (rev 376862)
+++ PKGBUILD2020-03-06 13:25:06 UTC (rev 376863)
@@ -1,17 +1,16 @@
-# Maintainer: Eric Bélanger 
+# Maintainer: Florian Pritz 
+# Contributor: Eric Bélanger 
 
 pkgname=syslog-ng
-pkgver=3.25.1
-pkgrel=4
+pkgver=3.26.1
+pkgrel=1
 pkgdesc="Next-generation syslogd with advanced networking and filtering 
capabilities"
 arch=('x86_64')
 url="https://www.syslog-ng.com/products/open-source-log-management/";
 license=('GPL2' 'LGPL2.1')
 depends=('awk' 'systemd-libs' 'glib2' 'libnsl' 'json-c' 'curl' 'libnet')
-# XXX: Depends on libcap-2.28 due to https://bugs.archlinux.org/task/65206
-#  Get the pkg from: 
https://archive.archlinux.org/repos/2020/01/07/core/os/x86_64/libcap-2.28-1-x86_64.pkg.tar.xz
 makedepends=('libxslt' 'mongo-c-driver' 'librabbitmq-c' 'python' 'libesmtp' 
'hiredis'
- 'libdbi' 'libmaxminddb' 'net-snmp' 'librdkafka' 'libcap=2.28')
+ 'libdbi' 'libmaxminddb' 'net-snmp' 'librdkafka' 'libcap')
 checkdepends=('python-nose' 'python-ply')
 optdepends=('logrotate: for rotating log files'
 'libdbi: for the SQL plugin'
@@ -31,8 +30,8 @@
 'etc/default/syslog-ng@default')
 
source=(https://github.com/balabit/syslog-ng/releases/download/syslog-ng-$pkgver/$pkgname-$pkgver.tar.gz
 syslog-ng.conf syslog-ng.logrotate)
-sha256sums=('34cb9673bcde58d543890e6c1189f466f938e199f227c524a6fa2f47f4db6817'
-'eaa6fea3f9b8af3edc0b4832837c4697aec9d9cf7674c7949054619d4900f40d'
+sha256sums=('90214223864df252cea80dbb35c88a2464edcbbb2c9fbc6f6f6c13ee60cb62cd'
+'1b8f6d00f8ce93024c0827c4969cbcf0b7d48bee22d5173e1bcd256ab55f9438'
 '93c935eca56854011ea9e353b7a1da662ad40b2e8452954c5b4b5a1d5b2d5317')
 
 prepare() {

Modified: syslog-ng.conf
===
--- syslog-ng.conf  2020-03-06 13:09:36 UTC (rev 376862)
+++ syslog-ng.conf  2020-03-06 13:25:06 UTC (rev 376863)
@@ -10,6 +10,7 @@
   time_reopen (10);
   log_fifo_size (1);
   chain_hostnames (off);
+  dns_cache (no);
   use_dns (no);
   use_fqdn (no);
   create_dirs (no);


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:23:47
  Author: felixonmars
Revision: 590976

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-ipynb/repos/community-staging-x86_64/PKGBUILD (from rev 590975, 
haskell-ipynb/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-06 13:23:47 UTC (rev 590976)
@@ -0,0 +1,43 @@
+# Maintainer: Felix Yan 
+
+_hkgname=ipynb
+pkgname=haskell-ipynb
+pkgver=0.1
+pkgrel=143
+pkgdesc="Data structure for working with Jupyter notebooks (ipynb)"
+url="https://github.com/jgm/ipynb";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base64-bytestring' 
'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-aeson-diff' 'haskell-microlens' 
'haskell-microlens-aeson'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-vector')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('8717dac6496905afc5e8735abc3b3a4a90b171253b035efa0751a6311b901caad563fdfeaa455987c1307d0532273ab80be37256562143db575f13c326843bf4')
+
+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
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:23:29
  Author: felixonmars
Revision: 590975

upgpkg: haskell-ipynb 0.1-143: rebuild with ghc-lib-parser-ex 8.8.5.3

Modified:
  haskell-ipynb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:22:18 UTC (rev 590974)
+++ PKGBUILD2020-03-06 13:23:29 UTC (rev 590975)
@@ -3,7 +3,7 @@
 _hkgname=ipynb
 pkgname=haskell-ipynb
 pkgver=0.1
-pkgrel=142
+pkgrel=143
 pkgdesc="Data structure for working with Jupyter notebooks (ipynb)"
 url="https://github.com/jgm/ipynb";
 license=('BSD')


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:21:51
  Author: felixonmars
Revision: 590973

upgpkg: haskell-aeson-diff 1.1.0.8-61: rebuild with ghc-lib-parser-ex 8.8.5.3

Modified:
  haskell-aeson-diff/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:19:56 UTC (rev 590972)
+++ PKGBUILD2020-03-06 13:21:51 UTC (rev 590973)
@@ -3,7 +3,7 @@
 _hkgname=aeson-diff
 pkgname=haskell-aeson-diff
 pkgver=1.1.0.8
-pkgrel=60
+pkgrel=61
 pkgdesc="Extract and apply patches to JSON documents"
 url="https://github.com/thsutton/aeson-diff";
 license=('BSD')


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:22:18
  Author: felixonmars
Revision: 590974

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-aeson-diff/repos/community-staging-x86_64/PKGBUILD (from rev 
590973, haskell-aeson-diff/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-06 13:22:18 UTC (rev 590974)
@@ -0,0 +1,45 @@
+# Maintainer: Felix Yan 
+
+_hkgname=aeson-diff
+pkgname=haskell-aeson-diff
+pkgver=1.1.0.8
+pkgrel=61
+pkgdesc="Extract and apply patches to JSON documents"
+url="https://github.com/thsutton/aeson-diff";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-edit-distance-vector' 
'haskell-hashable'
+ 'haskell-scientific' 'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-optparse-applicative')
+makedepends=('ghc' 'haskell-doctest' 'haskell-glob' 'haskell-quickcheck'
+ 'haskell-quickcheck-instances' 'hlint')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('5a5f703dec592c0cfd825eb1899006350649c52bf810ff1aaaf4134ebfbc11f5fbe9e7f158a8c3a21dbef4902b1f9e94148bc116e27418b2b786f6d31c7561fb')
+
+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
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:19:56
  Author: felixonmars
Revision: 590972

archrelease: copy trunk to community-staging-x86_64

Added:
  hlint/repos/community-staging-x86_64/
  hlint/repos/community-staging-x86_64/PKGBUILD
(from rev 590971, hlint/trunk/PKGBUILD)

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

Copied: hlint/repos/community-staging-x86_64/PKGBUILD (from rev 590971, 
hlint/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-06 13:19:56 UTC (rev 590972)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hlint
+pkgver=2.2.11
+pkgrel=13
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/";
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-terminal' 'haskell-cmdargs' 
'haskell-cpphs'
+ 'haskell-data-default' 'haskell-extra' 'haskell-file-embed' 
'haskell-filepattern'
+ 'haskell-ghc' 'haskell-ghc-lib-parser-ex' 'haskell-hscolour' 
'haskell-refact'
+ 'haskell-src-exts' 'haskell-src-exts-util' 'haskell-syb' 
'haskell-uniplate'
+ 'haskell-unordered-containers' 'haskell-utf8-string' 'haskell-vector' 
'haskell-yaml')
+conflicts=('haskell-hlint')
+replaces=('haskell-hlint')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz";)
+sha512sums=('287b4230d1238b45fa8b6cbe51e6bca19e0300ad89e9637a250e51104a5f843ac5bfbbd2c984edd482248aa086de5f22f82d3525d80880a02847db4130d1aa9c')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fgpl -fthreaded
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.BSD3"
+}


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:19:37
  Author: felixonmars
Revision: 590971

upgpkg: hlint 2.2.11-13: rebuild with ghc-lib-parser-ex 8.8.5.3

Modified:
  hlint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:19:21 UTC (rev 590970)
+++ PKGBUILD2020-03-06 13:19:37 UTC (rev 590971)
@@ -3,7 +3,7 @@
 
 pkgname=hlint
 pkgver=2.2.11
-pkgrel=12
+pkgrel=13
 pkgdesc="Source code suggestions"
 url="http://community.haskell.org/~ndm/hlint/";
 license=("BSD")


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:19:21
  Author: felixonmars
Revision: 590970

archrelease: copy trunk to community-any

Added:
  python-pytest-pylint/repos/community-any/PKGBUILD
(from rev 590969, python-pytest-pylint/trunk/PKGBUILD)
Deleted:
  python-pytest-pylint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 13:19:01 UTC (rev 590969)
+++ PKGBUILD2020-03-06 13:19:21 UTC (rev 590970)
@@ -1,41 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgname=python-pytest-pylint
-pkgver=0.15.0
-pkgrel=1
-pkgdesc='pytest plugin to check source code with pylint'
-arch=('any')
-license=('MIT')
-url='https://github.com/carsongee/pytest-pylint'
-depends=('python-pytest' 'python-pylint' 'python-six')
-makedepends=('python-pytest-runner')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/carsongee/pytest-pylint/archive/$pkgver.tar.gz";)
-sha512sums=('d6e23cf6c8a0147b0835266b958976818b9d1ced06af8ebc77addd20e957d5f89d50a1c3b34512e5ee037fa7dc195b89098ff55fb6e94ceaa1255c6e9e1f3a02')
-
-prepare() {
-  cd pytest-pylint-$pkgver
-  # Abandonware
-  sed -i 's/--pep8//' tox.ini
-  sed -i 's/import mock/from unittest import mock/' 
pytest_pylint/tests/test_pytest_pylint.py
-}
-
-build() {
-  cd pytest-pylint-$pkgver
-  python setup.py build
-}
-
-check() {
-  # Hack entry points by installing it
-
-  cd pytest-pylint-$pkgver
-  python setup.py install --root="$PWD/tmp_install" --optimize=1
-  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" 
py.test --ignore tmp_install
-}
-
-package() {
-  cd pytest-pylint-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pytest-pylint/repos/community-any/PKGBUILD (from rev 590969, 
python-pytest-pylint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 13:19:21 UTC (rev 590970)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan 
+
+pkgname=python-pytest-pylint
+pkgver=0.15.1
+pkgrel=1
+pkgdesc='pytest plugin to check source code with pylint'
+arch=('any')
+license=('MIT')
+url='https://github.com/carsongee/pytest-pylint'
+depends=('python-pytest' 'python-pylint' 'python-six')
+makedepends=('python-pytest-runner')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/carsongee/pytest-pylint/archive/$pkgver.tar.gz";)
+sha512sums=('b5a59866147639159736a644f44676abec72127844631bf0b52b7a97d0b94b782fb1540a012bfdcefa8ef3ac92acc671fdbd4632dedf23ab541f6a6abbc0187b')
+
+prepare() {
+  cd pytest-pylint-$pkgver
+  # Abandonware
+  sed -i 's/--pep8//' tox.ini
+  sed -i 's/import mock/from unittest import mock/' 
pytest_pylint/tests/test_pytest_pylint.py
+}
+
+build() {
+  cd pytest-pylint-$pkgver
+  python setup.py build
+}
+
+check() {
+  # Hack entry points by installing it
+
+  cd pytest-pylint-$pkgver
+  python setup.py install --root="$PWD/tmp_install" --optimize=1
+  PYTHONPATH="$PWD/tmp_install/usr/lib/python3.8/site-packages:$PYTHONPATH" 
py.test --ignore tmp_install
+}
+
+package() {
+  cd pytest-pylint-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:19:01
  Author: felixonmars
Revision: 590969

upgpkg: python-pytest-pylint 0.15.1-1

Modified:
  python-pytest-pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:17:55 UTC (rev 590968)
+++ PKGBUILD2020-03-06 13:19:01 UTC (rev 590969)
@@ -1,7 +1,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=python-pytest-pylint
-pkgver=0.15.0
+pkgver=0.15.1
 pkgrel=1
 pkgdesc='pytest plugin to check source code with pylint'
 arch=('any')
@@ -10,7 +10,7 @@
 depends=('python-pytest' 'python-pylint' 'python-six')
 makedepends=('python-pytest-runner')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/carsongee/pytest-pylint/archive/$pkgver.tar.gz";)
-sha512sums=('d6e23cf6c8a0147b0835266b958976818b9d1ced06af8ebc77addd20e957d5f89d50a1c3b34512e5ee037fa7dc195b89098ff55fb6e94ceaa1255c6e9e1f3a02')
+sha512sums=('b5a59866147639159736a644f44676abec72127844631bf0b52b7a97d0b94b782fb1540a012bfdcefa8ef3ac92acc671fdbd4632dedf23ab541f6a6abbc0187b')
 
 prepare() {
   cd pytest-pylint-$pkgver


[arch-commits] Commit in haskell-ghc-lib-parser-ex/repos (2 files)

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:17:55
  Author: felixonmars
Revision: 590968

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-ghc-lib-parser-ex/repos/community-staging-x86_64/
  haskell-ghc-lib-parser-ex/repos/community-staging-x86_64/PKGBUILD
(from rev 590967, haskell-ghc-lib-parser-ex/trunk/PKGBUILD)

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

Copied: haskell-ghc-lib-parser-ex/repos/community-staging-x86_64/PKGBUILD (from 
rev 590967, haskell-ghc-lib-parser-ex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-03-06 13:17:55 UTC (rev 590968)
@@ -0,0 +1,42 @@
+# Maintainer: Felix Yan 
+
+_hkgname=ghc-lib-parser-ex
+pkgname=haskell-ghc-lib-parser-ex
+pkgver=8.8.5.3
+pkgrel=1
+pkgdesc="Algorithms on GHC parse trees"
+url="https://github.com/shayne-fletcher/ghc-lib-parser-ex";
+license=('BSD')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-extra' 'haskell-uniplate' 'haskell-ghc')
+makedepends=('ghc' 'haskell-extra' 'haskell-tasty' 'haskell-tasty-hunit')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+sha512sums=('28e90bf15a7bb7867fc48568077254ecb7eb2ce772bc8b6200ee672499dd167d86223d5c32136a22e8a33cc6b86ef8a3455745a54c97e0080df5f562768071a4')
+
+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
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh 
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+runhaskell Setup copy --destdir="$pkgdir"
+install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


[arch-commits] Commit in haskell-ghc-lib-parser-ex/trunk (PKGBUILD)

2020-03-06 Thread Felix Yan via arch-commits
Date: Friday, March 6, 2020 @ 13:17:37
  Author: felixonmars
Revision: 590967

upgpkg: haskell-ghc-lib-parser-ex 8.8.5.3-1: rebuild with ghc-lib-parser-ex 
8.8.5.3

Modified:
  haskell-ghc-lib-parser-ex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:03:43 UTC (rev 590966)
+++ PKGBUILD2020-03-06 13:17:37 UTC (rev 590967)
@@ -2,16 +2,16 @@
 
 _hkgname=ghc-lib-parser-ex
 pkgname=haskell-ghc-lib-parser-ex
-pkgver=8.8.5.2
-pkgrel=2
+pkgver=8.8.5.3
+pkgrel=1
 pkgdesc="Algorithms on GHC parse trees"
 url="https://github.com/shayne-fletcher/ghc-lib-parser-ex";
 license=('BSD')
 arch=('x86_64')
-depends=('ghc-libs' 'haskell-uniplate' 'haskell-ghc')
+depends=('ghc-libs' 'haskell-extra' 'haskell-uniplate' 'haskell-ghc')
 makedepends=('ghc' 'haskell-extra' 'haskell-tasty' 'haskell-tasty-hunit')
 
source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
-sha512sums=('abe15aec201de069defae47f57fb8c00a4a8a12b2aeba276b3458625a0ae0748424feaa635527608b6485591fa5a0fded7ca62927a0e1257a3d445c70ec786f1')
+sha512sums=('28e90bf15a7bb7867fc48568077254ecb7eb2ce772bc8b6200ee672499dd167d86223d5c32136a22e8a33cc6b86ef8a3455745a54c97e0080df5f562768071a4')
 
 build() {
 cd $_hkgname-$pkgver


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

2020-03-06 Thread Sébastien Luttringer via arch-commits
Date: Friday, March 6, 2020 @ 13:09:31
  Author: seblu
Revision: 376861

upgpkg: coreutils 8.32-1

Modified:
  coreutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 13:03:57 UTC (rev 376860)
+++ PKGBUILD2020-03-06 13:09:31 UTC (rev 376861)
@@ -4,8 +4,8 @@
 # Contributor: judd 
 
 pkgname=coreutils
-pkgver=8.31
-pkgrel=3
+pkgver=8.32
+pkgrel=1
 pkgdesc='The basic file, shell and text manipulation utilities of the GNU 
operating system'
 arch=('x86_64')
 license=('GPL3')
@@ -13,8 +13,8 @@
 depends=('glibc' 'acl' 'attr' 'gmp' 'libcap' 'openssl')
 source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
 validpgpkeys=('6C37DC12121A5006BC1DB804DF6FD971306037D9') # Pádraig Brady
-md5sums=('0009a224d8e288e8ec406ef0161f9293'
- 'SKIP')
+sha256sums=('4458d8de7849df44ccab15e16b1548b285224dbba5f08fac070c1c0e0bcc4cfa'
+'SKIP')
 
 prepare() {
   cd $pkgname-$pkgver


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

2020-03-06 Thread Sébastien Luttringer via arch-commits
Date: Friday, March 6, 2020 @ 13:09:36
  Author: seblu
Revision: 376862

archrelease: copy trunk to testing-x86_64

Added:
  coreutils/repos/testing-x86_64/
  coreutils/repos/testing-x86_64/PKGBUILD
(from rev 376861, coreutils/trunk/PKGBUILD)

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

Copied: coreutils/repos/testing-x86_64/PKGBUILD (from rev 376861, 
coreutils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-03-06 13:09:36 UTC (rev 376862)
@@ -0,0 +1,52 @@
+# Maintainer: Sébastien "Seblu" Luttringer
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: judd 
+
+pkgname=coreutils
+pkgver=8.32
+pkgrel=1
+pkgdesc='The basic file, shell and text manipulation utilities of the GNU 
operating system'
+arch=('x86_64')
+license=('GPL3')
+url='https://www.gnu.org/software/coreutils/'
+depends=('glibc' 'acl' 'attr' 'gmp' 'libcap' 'openssl')
+source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+validpgpkeys=('6C37DC12121A5006BC1DB804DF6FD971306037D9') # Pádraig Brady
+sha256sums=('4458d8de7849df44ccab15e16b1548b285224dbba5f08fac070c1c0e0bcc4cfa'
+'SKIP')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+  --prefix=/usr \
+  --libexecdir=/usr/lib \
+  --with-openssl \
+  --enable-no-install-program=groups,hostname,kill,uptime
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-03-06 Thread Alexander Rødseth via arch-commits
Date: Friday, March 6, 2020 @ 13:03:36
  Author: arodseth
Revision: 590965

upgpkg: kotlin 1.3.70-1

Modified:
  kotlin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 12:56:05 UTC (rev 590964)
+++ PKGBUILD2020-03-06 13:03:36 UTC (rev 590965)
@@ -2,7 +2,7 @@
 # Contributor: Romain Gautier 
 
 pkgname=kotlin
-pkgver=1.3.61
+pkgver=1.3.70
 pkgrel=1
 pkgdesc='Statically typed programming language that can interoperate with Java'
 arch=(any)
@@ -11,7 +11,7 @@
 depends=('java-environment>=8')
 makedepends=(setconf)
 
source=("https://github.com/JetBrains/kotlin/releases/download/v${pkgver/_/-}/kotlin-compiler-${pkgver/_/-}.zip";)
-sha256sums=('3901151ad5d94798a268d1771c6c0b7e305a608c2889fc98a674802500597b1c')
+sha256sums=('709d782ff707a633278bac4c63bab3026b768e717f8aaf62de1036c994bc89c7')
 
 prepare() {
   cd "${pkgname}c/bin"


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

2020-03-06 Thread Alexander Rødseth via arch-commits
Date: Friday, March 6, 2020 @ 13:03:43
  Author: arodseth
Revision: 590966

archrelease: copy trunk to community-any

Added:
  kotlin/repos/community-any/PKGBUILD
(from rev 590965, kotlin/trunk/PKGBUILD)
Deleted:
  kotlin/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 13:03:36 UTC (rev 590965)
+++ PKGBUILD2020-03-06 13:03:43 UTC (rev 590966)
@@ -1,58 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: Romain Gautier 
-
-pkgname=kotlin
-pkgver=1.3.61
-pkgrel=1
-pkgdesc='Statically typed programming language that can interoperate with Java'
-arch=(any)
-url='https://kotlinlang.org/'
-license=(APACHE custom)
-depends=('java-environment>=8')
-makedepends=(setconf)
-source=("https://github.com/JetBrains/kotlin/releases/download/v${pkgver/_/-}/kotlin-compiler-${pkgver/_/-}.zip";)
-sha256sums=('3901151ad5d94798a268d1771c6c0b7e305a608c2889fc98a674802500597b1c')
-
-prepare() {
-  cd "${pkgname}c/bin"
-
-  setconf kotlin  DIR /usr/bin
-  setconf kotlinc-js  DIR /usr/bin
-  setconf kotlinc-jvm DIR /usr/bin
-  setconf kotlinc KOTLIN_HOME "/usr/share/$pkgname"
-}
-
-package() {
-  cd "${pkgname}c"
-
-  # executables
-  install -Dm755 -t "$pkgdir/usr/bin" bin/kotlin
-  install -Dm755 -t "$pkgdir/usr/bin" bin/kotlinc
-  install -Dm755 -t "$pkgdir/usr/bin" bin/kotlinc-js
-  install -Dm755 -t "$pkgdir/usr/bin" bin/kotlinc-jvm
-
-  # jar files
-  cd "$srcdir/${pkgname}c/lib"
-  install -d "$pkgdir/usr/share/$pkgname/lib"
-  for jar in *.jar; do
-install -Dm644 "$jar" "$pkgdir/usr/share/$pkgname/lib"
-  done
-
-  # licenses
-  cd "$srcdir/${pkgname}c/license"
-  install -d "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname"
-  install -Dm644 NOTICE.txt "$pkgdir/usr/share/licenses/$pkgname"
-
-  cd third_party
-  for txt in *.txt; do
-install -Dm644 "$txt" "$pkgdir/usr/share/licenses/$pkgname"
-  done
-
-  # build.txt must be installed for for "-version" to work
-  cd "$srcdir/${pkgname}c"
-  install -Dm644 build.txt "$pkgdir/usr/share/$pkgname"
-}
-
-# getver: github.com/JetBrains/kotlin/releases/latest
-# vim: ts=2 sw=2 et:

Copied: kotlin/repos/community-any/PKGBUILD (from rev 590965, 
kotlin/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-06 13:03:43 UTC (rev 590966)
@@ -0,0 +1,58 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: Romain Gautier 
+
+pkgname=kotlin
+pkgver=1.3.70
+pkgrel=1
+pkgdesc='Statically typed programming language that can interoperate with Java'
+arch=(any)
+url='https://kotlinlang.org/'
+license=(APACHE custom)
+depends=('java-environment>=8')
+makedepends=(setconf)
+source=("https://github.com/JetBrains/kotlin/releases/download/v${pkgver/_/-}/kotlin-compiler-${pkgver/_/-}.zip";)
+sha256sums=('709d782ff707a633278bac4c63bab3026b768e717f8aaf62de1036c994bc89c7')
+
+prepare() {
+  cd "${pkgname}c/bin"
+
+  setconf kotlin  DIR /usr/bin
+  setconf kotlinc-js  DIR /usr/bin
+  setconf kotlinc-jvm DIR /usr/bin
+  setconf kotlinc KOTLIN_HOME "/usr/share/$pkgname"
+}
+
+package() {
+  cd "${pkgname}c"
+
+  # executables
+  install -Dm755 -t "$pkgdir/usr/bin" bin/kotlin
+  install -Dm755 -t "$pkgdir/usr/bin" bin/kotlinc
+  install -Dm755 -t "$pkgdir/usr/bin" bin/kotlinc-js
+  install -Dm755 -t "$pkgdir/usr/bin" bin/kotlinc-jvm
+
+  # jar files
+  cd "$srcdir/${pkgname}c/lib"
+  install -d "$pkgdir/usr/share/$pkgname/lib"
+  for jar in *.jar; do
+install -Dm644 "$jar" "$pkgdir/usr/share/$pkgname/lib"
+  done
+
+  # licenses
+  cd "$srcdir/${pkgname}c/license"
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname"
+  install -Dm644 NOTICE.txt "$pkgdir/usr/share/licenses/$pkgname"
+
+  cd third_party
+  for txt in *.txt; do
+install -Dm644 "$txt" "$pkgdir/usr/share/licenses/$pkgname"
+  done
+
+  # build.txt must be installed for for "-version" to work
+  cd "$srcdir/${pkgname}c"
+  install -Dm644 build.txt "$pkgdir/usr/share/$pkgname"
+}
+
+# getver: github.com/JetBrains/kotlin/releases/latest
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in zabbix/repos (16 files)

2020-03-06 Thread Florian Pritz via arch-commits
Date: Friday, March 6, 2020 @ 13:03:57
  Author: bluewind
Revision: 376860

archrelease: copy trunk to testing-x86_64

Added:
  zabbix/repos/testing-x86_64/
  zabbix/repos/testing-x86_64/PKGBUILD
(from rev 376859, zabbix/trunk/PKGBUILD)
  zabbix/repos/testing-x86_64/zabbix-agent.service
(from rev 376859, zabbix/trunk/zabbix-agent.service)
  zabbix/repos/testing-x86_64/zabbix-agent.sysusers
(from rev 376859, zabbix/trunk/zabbix-agent.sysusers)
  zabbix/repos/testing-x86_64/zabbix-agent.tmpfiles
(from rev 376859, zabbix/trunk/zabbix-agent.tmpfiles)
  zabbix/repos/testing-x86_64/zabbix-agent2.service
(from rev 376859, zabbix/trunk/zabbix-agent2.service)
  zabbix/repos/testing-x86_64/zabbix-proxy-mysql.service
(from rev 376859, zabbix/trunk/zabbix-proxy-mysql.service)
  zabbix/repos/testing-x86_64/zabbix-proxy-pgsql.service
(from rev 376859, zabbix/trunk/zabbix-proxy-pgsql.service)
  zabbix/repos/testing-x86_64/zabbix-proxy-sqlite.service
(from rev 376859, zabbix/trunk/zabbix-proxy-sqlite.service)
  zabbix/repos/testing-x86_64/zabbix-proxy.sysusers
(from rev 376859, zabbix/trunk/zabbix-proxy.sysusers)
  zabbix/repos/testing-x86_64/zabbix-proxy.tmpfiles
(from rev 376859, zabbix/trunk/zabbix-proxy.tmpfiles)
  zabbix/repos/testing-x86_64/zabbix-server-mysql.service
(from rev 376859, zabbix/trunk/zabbix-server-mysql.service)
  zabbix/repos/testing-x86_64/zabbix-server-pgsql.service
(from rev 376859, zabbix/trunk/zabbix-server-pgsql.service)
  zabbix/repos/testing-x86_64/zabbix-server.install
(from rev 376859, zabbix/trunk/zabbix-server.install)
  zabbix/repos/testing-x86_64/zabbix-server.sysusers
(from rev 376859, zabbix/trunk/zabbix-server.sysusers)
  zabbix/repos/testing-x86_64/zabbix-server.tmpfiles
(from rev 376859, zabbix/trunk/zabbix-server.tmpfiles)

-+
 PKGBUILD|  206 ++
 zabbix-agent.service|   11 ++
 zabbix-agent.sysusers   |1 
 zabbix-agent.tmpfiles   |1 
 zabbix-agent2.service   |   11 ++
 zabbix-proxy-mysql.service  |   18 +++
 zabbix-proxy-pgsql.service  |   18 +++
 zabbix-proxy-sqlite.service |   18 +++
 zabbix-proxy.sysusers   |1 
 zabbix-proxy.tmpfiles   |1 
 zabbix-server-mysql.service |   18 +++
 zabbix-server-pgsql.service |   18 +++
 zabbix-server.install   |   12 ++
 zabbix-server.sysusers  |1 
 zabbix-server.tmpfiles  |1 
 15 files changed, 336 insertions(+)

Copied: zabbix/repos/testing-x86_64/PKGBUILD (from rev 376859, 
zabbix/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-03-06 13:03:57 UTC (rev 376860)
@@ -0,0 +1,206 @@
+# Maintainer: Bartłomiej Piotrowski 
+# Maintainer: Florian Pritz 
+
+pkgbase=zabbix
+pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php)
+pkgver=4.4.6
+pkgrel=1
+arch=(x86_64)
+url='https://www.zabbix.com/'
+license=(GPL)
+# XXX: go 1.13.8 needed to work around this: 
https://support.zabbix.com/browse/ZBX-17426
+# get it with wget 
https://archive.archlinux.org/packages/.all/go-2:1.13.7-1-x86_64.pkg.tar.zstd{,.sig}
+makedepends=(postgresql-libs libxml2 unixodbc net-snmp mariadb-libs libldap 
libevent 'go=2:1.13.8')
+source=(https://downloads.sourceforge.net/sourceforge/zabbix/zabbix-${pkgver}.tar.gz
+zabbix-agent.{service,sysusers,tmpfiles}
+zabbix-agent2.service
+zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles}
+zabbix-proxy{-sqlite,-mysql,-pgsql}.service 
zabbix-proxy.{sysusers,tmpfiles})
+
+sha512sums=('f9e84872f0210e497261462de95e9096391fc74bee6fd511087825fcfdd8f363003bd090e01a8a092a69ef1f01c4dd31d623f5321cf77dbced0bd337fb91682c'
+
'8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444'
+
'3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc'
+
'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'
+
'c57dfcc13b290f4120d1185339bd2d6b1ea7a2ca0c98dca8632d4fd8fe462a42cb35e8a88895eb8ee390c55cf0ffb90b544f23fefbf059b49c06e5373d0b8af2'
+
'b35155a5d151eb7258bca62d53e7099a05605e58adac9d1510e12c2219abc22f931e92ea5d36bf86900e30982e893e429235d983a7823610d76c15082c373d1f'
+
'ac968d9954e5d9523eb7a9b8dcbcef40d4b47c1db3b2ff86d5fbc3f1871fcd03aff14f5b0cfeeeb494fdeb2d95e2e32b8622297c714a90d22c68ab3b3b914475'
+
'4254d3b13ff0d19a8e207f709c10ea59dbb6d4f333d862b1611a0fa4ced199e9a32313e88d8abadc129c1e4001b182c0545bcc84117d218116a8c524de88850e'
+
'b6d548a26f845ef1a39724e3273aa521715272e20a0038144f86d377a26dfec6e3e129404cfda77632cad2f5cd6bab4a33f70a26c8

[arch-commits] Commit in zabbix/trunk (PKGBUILD zabbix-proxy-pgsql.service)

2020-03-06 Thread Florian Pritz via arch-commits
Date: Friday, March 6, 2020 @ 13:03:48
  Author: bluewind
Revision: 376859

upstream update and FS#65712 - [zabbix-proxy] Incorrect path in 
zabbix-proxy-pgsql.service

upgpkg: zabbix 4.4.6-1

Modified:
  zabbix/trunk/PKGBUILD
  zabbix/trunk/zabbix-proxy-pgsql.service

+
 PKGBUILD   |   12 +++-
 zabbix-proxy-pgsql.service |2 +-
 2 files changed, 8 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 12:48:55 UTC (rev 376858)
+++ PKGBUILD2020-03-06 13:03:48 UTC (rev 376859)
@@ -3,12 +3,14 @@
 
 pkgbase=zabbix
 pkgname=(zabbix-server zabbix-agent{,2} zabbix-proxy zabbix-frontend-php)
-pkgver=4.4.5
+pkgver=4.4.6
 pkgrel=1
 arch=(x86_64)
 url='https://www.zabbix.com/'
 license=(GPL)
-makedepends=(postgresql-libs libxml2 unixodbc net-snmp mariadb-libs libldap 
libevent go)
+# XXX: go 1.13.8 needed to work around this: 
https://support.zabbix.com/browse/ZBX-17426
+# get it with wget 
https://archive.archlinux.org/packages/.all/go-2:1.13.7-1-x86_64.pkg.tar.zstd{,.sig}
+makedepends=(postgresql-libs libxml2 unixodbc net-snmp mariadb-libs libldap 
libevent 'go=2:1.13.8')
 
source=(https://downloads.sourceforge.net/sourceforge/zabbix/zabbix-${pkgver}.tar.gz
 zabbix-agent.{service,sysusers,tmpfiles}
 zabbix-agent2.service
@@ -15,7 +17,7 @@
 zabbix-server{-mysql,-pgsql}.service zabbix-server.{sysusers,tmpfiles}
 zabbix-proxy{-sqlite,-mysql,-pgsql}.service 
zabbix-proxy.{sysusers,tmpfiles})
 
-sha512sums=('b7971f3c25270c5e35861a0db8e810d8ffe6c59ffc935fa2df5b1fd5d591d577db60e04673ca0a6f158dd126245a6ee4cd4e84a3637c447c9b6f68f77848f114'
+sha512sums=('f9e84872f0210e497261462de95e9096391fc74bee6fd511087825fcfdd8f363003bd090e01a8a092a69ef1f01c4dd31d623f5321cf77dbced0bd337fb91682c'
 
'8c1fa2676bc0ef91bc39ec5f97b4d3ba5c365d063420455a3785121a54e120bc5afeacde42a48f4509c115f940dcc3b6c2f43044a7fbfb421182fc93b22a2444'
 
'3ab3ac1acc7e35c8896157aef601ebc30815237ac5252cbd0c1ecb26eeaf9eccf5c49938ae8c85bb79a6f95f607f082f6b80ed660829599ec03aa626cca6d3dc'
 
'ca6b4779de23829dfdd80ee21e924fbe4e2754f4e693bed4b1a2aa846cd87d150e399b1169d7fe58d30c50ed837c1b8254e580de420267d0a1834d6dc409c43d'
@@ -26,7 +28,7 @@
 
'b6d548a26f845ef1a39724e3273aa521715272e20a0038144f86d377a26dfec6e3e129404cfda77632cad2f5cd6bab4a33f70a26c8c67b0d0b2abb3678ad2d83'
 
'7b5829caa77c6b5da8c2195ab840f0020f722a94f01a437324afdbe2a4372a594dcca6d63d2fdda5cfad81353ab4e4e0b2c6b67436203266dd44740a5e03b58e'
 
'94701f34fe5df4859c6a4d0459c16062374e8f89f4f51c414e71c9c2db14f61e087721e68dddb3e8d88bf1c097477c1a21e27ba4705fd07d88c60adb41acc1be'
-
'c772a7f7fe5c0715db27a15f8cb1aee7e92677d1fa2d922fae42440cac8c2acc3d3ceba0bb2103fd7907b129618cf50e6a34dd221c8474c9cea9badaeaadf80b'
+
'ce026b748df9b7597452a69c6cb04244a95bf99b00ea795d96d7d4ca5a68190af1b2dbf141dfd8e63bb4405131de81d8aa8a831ddde2595f1b859026b9fb0faa'
 
'7c1072a8cd5837095f857b50124cb45d1bdbddbce108f6f067a35c3c9ebb1ad0502ef617dfa10f9c843631220177a6286a97b1c2a46539200be72fa83cb23b99'
 
'64042ddf511b56b2a5a311e34643f4e049c09d909ea65b7343a8a9637f33dc59f2b1342201290ca0774cbcbf616096b3696982047fb622b7d51afb5eceb298dd')
 
@@ -164,7 +166,7 @@
 
 package_zabbix-proxy() {
   pkgdesc='Data collecting proxy for Zabbix'
-  depends=(net-snmp curl libxml2 sqlite unixodbc libldap pcre)
+  depends=(net-snmp curl libxml2 sqlite unixodbc libldap pcre libevent)
   optdepends=('mariadb-libs: for MariaDB support'
   'postgresql-libs: for PostgreSQL support')
   backup=(etc/zabbix/zabbix_proxy.conf)

Modified: zabbix-proxy-pgsql.service
===
--- zabbix-proxy-pgsql.service  2020-03-06 12:48:55 UTC (rev 376858)
+++ zabbix-proxy-pgsql.service  2020-03-06 13:03:48 UTC (rev 376859)
@@ -5,7 +5,7 @@
 
 [Service]
 Type=simple
-ExecStart=/usr/bin/zabbix_proxy_pgsql -f
+ExecStart=/usr/bin/zabbix_proxy_postgresql -f
 User=zabbix-proxy
 PrivateDevices=yes
 PrivateTmp=yes


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

2020-03-06 Thread Sébastien Luttringer via arch-commits
Date: Friday, March 6, 2020 @ 12:56:05
  Author: seblu
Revision: 590964

archrelease: copy trunk to community-x86_64

Added:
  docker/repos/community-x86_64/PKGBUILD
(from rev 590963, docker/trunk/PKGBUILD)
  docker/repos/community-x86_64/docker.sysusers
(from rev 590963, docker/trunk/docker.sysusers)
Deleted:
  docker/repos/community-x86_64/PKGBUILD
  docker/repos/community-x86_64/docker.sysusers

-+
 PKGBUILD|  308 +++---
 docker.sysusers |4 
 2 files changed, 156 insertions(+), 156 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-06 12:55:27 UTC (rev 590963)
+++ PKGBUILD2020-03-06 12:56:05 UTC (rev 590964)
@@ -1,154 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer
-
-pkgname=docker
-pkgver=19.03.6
-pkgrel=1
-epoch=1
-pkgdesc='Pack, ship and run any application as a lightweight container'
-arch=('x86_64')
-url='https://www.docker.com/'
-license=('Apache')
-depends=('glibc' 'bridge-utils' 'iproute2' 'device-mapper' 'sqlite' 
'systemd-libs'
- 'libseccomp' 'libtool' 'runc' 'containerd')
-makedepends=('git' 'go' 'btrfs-progs' 'cmake' 'systemd' 'go-md2man' 'sed')
-optdepends=('btrfs-progs: btrfs backend support'
-'pigz: parallel gzip compressor support')
-# don't strip binaries! A sha1 is used to check binary consistency.
-options=('!strip' '!buildflags')
-# Use exact commit version from Dockerfile, see them in:
-# 
https://github.com/docker/docker-ce/blob/master/components/engine/hack/dockerfile/install/
-_TINI_COMMIT=fec3683b971d9c3ef73f284f176672c44b448662
-_LIBNETWORK_COMMIT=9fd385be8302dbe1071a3ce124891893ff27f90f
-source=("git+https://github.com/docker/docker-ce.git#tag=v$pkgver";
-
"git+https://github.com/docker/libnetwork.git#commit=$_LIBNETWORK_COMMIT";
-"git+https://github.com/krallin/tini.git#commit=$_TINI_COMMIT";
-"git+https://github.com/spf13/cobra.git";
-"$pkgname.sysusers")
-sha224sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'4c19a66617d73adf1c0b4b0a63e22cba296fd5af32b9b32a9787ff8d')
-
-prepare() {
-  sed -i 's,/var/run,/run,' 
docker-ce/components/engine/contrib/init/systemd/docker.socket
-}
-
-# create a fake go path directory and pushd into it
-# $1 real directory
-# $2 gopath directory
-_fake_gopath_pushd() {
-  mkdir -p "$GOPATH/src/${2%/*}"
-  rm -f "$GOPATH/src/$2"
-  ln -rsT "$1" "$GOPATH/src/$2"
-  pushd  "$GOPATH/src/$2" >/dev/null
-}
-
-_fake_gopath_popd() {
-  popd >/dev/null
-}
-
-build() {
-  ### check my mistakes on commit version
-  echo 'Checking commit mismatch'
-  (
-  local _cfile
-  for _cfile in tini proxy; do
-. 
"$srcdir/docker-ce/components/engine/hack/dockerfile/install/$_cfile.installer"
-  done
-  local _commit _pkgbuild _dockerfile
-  err=0
-  for _commit in LIBNETWORK TINI; do
-_pkgbuild=_${_commit}_COMMIT
-_dockerfile=${_commit}_COMMIT
-if [[ ${!_pkgbuild} != ${!_dockerfile} ]]; then
-  echo "Invalid $_commit commit, should be ${!_dockerfile}" >&2
-  err=$(($err + 1))
-fi
-  done
-  return $err
-  )
-
-  ### globals
-  export GOPATH="$srcdir"
-  export PATH="$GOPATH/bin:$PATH"
-
-  ### cli
-  echo 'Building cli'
-  _fake_gopath_pushd docker-ce/components/cli github.com/docker/cli
-  DISABLE_WARN_OUTSIDE_CONTAINER=1 make VERSION=$pkgver-ce dynbinary
-  _fake_gopath_popd
-
-  ### daemon
-  echo 'Building daemon'
-  _fake_gopath_pushd docker-ce/components/engine github.com/docker/docker
-  DOCKER_GITCOMMIT=$(cd "$srcdir"/docker-ce && git rev-parse --short HEAD) \
-DOCKER_BUILDTAGS='seccomp journald apparmor' \
-VERSION=$pkgver-ce \
-hack/make.sh dynbinary
-  _fake_gopath_popd
-
-  ### docker man pages
-  echo 'Building man pages'
-  mkdir -p src/github.com/spf13
-  ln -rsfT cobra src/github.com/spf13/cobra
-  # use docker-ce cli version because they mess up with man dir
-  _fake_gopath_pushd docker-ce/components/cli github.com/docker/cli
-  make manpages 2>/dev/null
-  _fake_gopath_popd
-
-  ### docker proxy
-  echo 'Building docker-proxy'
-  _fake_gopath_pushd libnetwork github.com/docker/libnetwork
-  go build -ldflags='-linkmode=external' github.com/docker/libnetwork/cmd/proxy
-  _fake_gopath_popd
-
-  ### docker-init
-  echo 'Building docker-init'
-  _fake_gopath_pushd tini github.com/krallin/tini
-  cmake .
-  # we must use the static binary because it's started in a foreign os
-  make tini-static
-  _fake_gopath_popd
-}
-
-package() {
-  ### proxy
-  install -Dm755 libnetwork/proxy "$pkgdir/usr/bin/docker-proxy"
-  ### init
-  install -Dm755 tini/tini-static "$pkgdir/usr/bin/docker-init"
-  ### engine
-  cd "$srcdir"/docker-ce/components/engine
-  # binary
-  install -Dm755 {bundles/dynbinary-daemon,"$pkgdir"/usr/bin}/dockerd
-  # systemd
-  install -Dm644 'contrib/init/systemd/docker.service' \
-"$pkgdir/usr/lib/systemd/system/docker.service"
-  install -Dm6

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

2020-03-06 Thread Sébastien Luttringer via arch-commits
Date: Friday, March 6, 2020 @ 12:55:27
  Author: seblu
Revision: 590963

upgpkg: docker 1:19.03.7-1

Modified:
  docker/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 12:39:38 UTC (rev 590962)
+++ PKGBUILD2020-03-06 12:55:27 UTC (rev 590963)
@@ -1,7 +1,7 @@
 # Maintainer: Sébastien "Seblu" Luttringer
 
 pkgname=docker
-pkgver=19.03.6
+pkgver=19.03.7
 pkgrel=1
 epoch=1
 pkgdesc='Pack, ship and run any application as a lightweight container'


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

2020-03-06 Thread Antonio Rojas via arch-commits
Date: Friday, March 6, 2020 @ 12:48:55
  Author: arojas
Revision: 376858

Fix system ninja detection

Modified:
  qt5-webengine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 12:17:03 UTC (rev 376857)
+++ PKGBUILD2020-03-06 12:48:55 UTC (rev 376858)
@@ -19,6 +19,8 @@
 
 prepare() {
   mkdir -p build
+
+  sed -e 's|7-9|7-9\|10|' -i $_pkgfqn/configure.pri # Support ninja 1.10
 }
 
 build() {


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

2020-03-06 Thread Thore Bödecker via arch-commits
Date: Friday, March 6, 2020 @ 12:39:33
  Author: foxxx0
Revision: 590961

upgpkg: pigeonhole 0.5.10-1

new upstream release and rebuild against dovecot 2.3.10

Modified:
  pigeonhole/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-03-06 12:39:22 UTC (rev 590960)
+++ PKGBUILD2020-03-06 12:39:33 UTC (rev 590961)
@@ -8,12 +8,12 @@
 # This must be built against the version of dovecot being used,
 # else mail delivery will fail.
 # Specify the version of dovecot to be used here:
-_dcpkgver=2.3.9.3
+_dcpkgver=2.3.10
 # Make sure to bump pkgrel if changing this.
 
 pkgname=pigeonhole
-pkgver=0.5.9
-pkgrel=3
+pkgver=0.5.10
+pkgrel=1
 
 pkgdesc='Sieve implementation for Dovecot'
 url='https://pigeonhole.dovecot.org/'
@@ -26,7 +26,7 @@
 
 
source=("https://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-${pkgver}.tar.gz"{,.sig})
 
-sha256sums=('36da68aae5157b83e21383f711b8977e5b6f5477f369f71e7e22e76a738bbd05'
+sha256sums=('48c89cc9f3caa9c5f2454f9dcca74fe251a99749a38062bfab7e5017d329605e'
 'SKIP')
 validpgpkeys=(
   '42F3CD50D4F25A41833BEE3704D62B1E3DFBB4F4' # Stephan Bosch 



  1   2   >