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

2020-08-20 Thread Christian Hesse via arch-commits
Date: Thursday, August 20, 2020 @ 08:45:42
  Author: eworm
Revision: 685325

archrelease: copy trunk to community-testing-x86_64

Added:
  haproxy/repos/community-testing-x86_64/
  
haproxy/repos/community-testing-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
(from rev 685324, 
haproxy/trunk/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch)
  haproxy/repos/community-testing-x86_64/PKGBUILD
(from rev 685324, haproxy/trunk/PKGBUILD)
  haproxy/repos/community-testing-x86_64/haproxy.cfg
(from rev 685324, haproxy/trunk/haproxy.cfg)
  haproxy/repos/community-testing-x86_64/haproxy.install
(from rev 685324, haproxy/trunk/haproxy.install)
  haproxy/repos/community-testing-x86_64/haproxy.sysusers
(from rev 685324, haproxy/trunk/haproxy.sysusers)

-+
 0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch |   39 +++
 PKGBUILD|   72 ++
 haproxy.cfg |   49 +
 haproxy.install |8 +
 haproxy.sysusers|1 
 5 files changed, 169 insertions(+)

Copied: 
haproxy/repos/community-testing-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
 (from rev 685324, 
haproxy/trunk/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch)
===
--- 
community-testing-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
(rev 0)
+++ 
community-testing-x86_64/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
2020-08-20 08:45:42 UTC (rev 685325)
@@ -0,0 +1,39 @@
+diff --git a/contrib/halog/Makefile b/contrib/halog/Makefile
+index bf67c1f..e98a3fa 100644
+--- a/contrib/halog/Makefile
 b/contrib/halog/Makefile
+@@ -16,7 +16,7 @@ DEFINE   =
+ OBJS = halog
+ 
+ halog: halog.c fgets2.c
+-  $(CC) $(OPTIMIZE) $(DEFINE) -o $@ $(INCLUDE) $(SRC)/ebtree.c 
$(SRC)/eb32tree.c $(SRC)/eb64tree.c $(SRC)/ebmbtree.c $(SRC)/ebsttree.c 
$(SRC)/ebistree.c $(SRC)/ebimtree.c $^
++  $(CC) $(OPTIMIZE) $(CFLAGS) $(LDFLAGS) $(DEFINE) -o $@ $(INCLUDE) 
$(SRC)/ebtree.c $(SRC)/eb32tree.c $(SRC)/eb64tree.c $(SRC)/ebmbtree.c 
$(SRC)/ebsttree.c $(SRC)/ebistree.c $(SRC)/ebimtree.c $^
+ 
+ clean:
+   rm -f $(OBJS) *.[oas]
+diff --git a/contrib/ip6range/Makefile b/contrib/ip6range/Makefile
+index 55849b6..1276b97 100644
+--- a/contrib/ip6range/Makefile
 b/contrib/ip6range/Makefile
+@@ -7,7 +7,7 @@ OBJS = ip6range
+ all: $(OBJS)
+ 
+ %: %.c
+-  $(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
++  $(CC) $(CFLAGS) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
+ 
+ clean:
+   rm -f $(OBJS) *.o *.a *~
+diff --git a/contrib/iprange/Makefile b/contrib/iprange/Makefile
+index b3c72ed..e92baf3 100644
+--- a/contrib/iprange/Makefile
 b/contrib/iprange/Makefile
+@@ -7,7 +7,7 @@ OBJS = iprange
+ all: $(OBJS)
+ 
+ %: %.c
+-  $(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
++  $(CC) $(CFLAGS) $(LDFLAGS) $(OPTIMIZE) -o $@ $^
+ 
+ clean:
+   rm -f $(OBJS) *.o *.a *~

Copied: haproxy/repos/community-testing-x86_64/PKGBUILD (from rev 685324, 
haproxy/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-08-20 08:45:42 UTC (rev 685325)
@@ -0,0 +1,72 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=haproxy
+pkgver=2.2.2
+pkgrel=2
+
+pkgdesc='Reliable, high performance TCP/HTTP load balancer'
+url='https://www.haproxy.org/'
+arch=('x86_64')
+license=('GPL')
+
+depends=('openssl' 'pcre' 'zlib' 'libxcrypt' 'libcrypt.so' 'lua' 
'systemd-libs')
+makedepends=('systemd')
+
+backup=('etc/haproxy/haproxy.cfg')
+
+install=haproxy.install
+
+source=(https://www.haproxy.org/download/${pkgver%.*}/src/haproxy-$pkgver.tar.gz
+haproxy.cfg
+haproxy.sysusers
+0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch)
+
+sha256sums=('391c705a46c6208a63a67ea842c6600146ca24618531570c89c7915b0c6a54d6'
+'e88edeb2fe23508565e46ff485c93cfb7c2e9c64f231538452ec7ecd7ec37a42'
+'b02b4088205039f0979aef0ef3e22957f493dd54eabefaee7011f2d795303b3e'
+'81c03ef5d69f4f2ef2c7caa6722c82cda4a53b65f788a46e668ec2faa3abd8f5')
+
+prepare() {
+  cd haproxy-$pkgver
+
+  patch -p1 <"$srcdir"/0001-Use-CFLAGS-and-LDFLAGS-when-building-contrib.patch
+}
+
+build() {
+  cd haproxy-$pkgver
+
+  make CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
+CPU=generic \
+TARGET=linux-glibc \
+USE_GETADDRINFO=1 \
+USE_OPENSSL=1 \
+USE_PCRE=1 USE_PCRE_JIT=1 \
+USE_ZLIB=1 \
+USE_LUA=1 \
+USE_SYSTEMD=1 \
+EXTRA_OBJS="contrib/prometheus-exporter/service-prometheus.o"
+
+  for contrib in halog iprange ip6range systemd; do
+make -C contrib/$contrib 

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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 08:44:48
  Author: felixonmars
Revision: 685323

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-ui/repos/community-staging-x86_64/PKGBUILD (from rev 685322, 
hledger-ui/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-08-20 08:44:48 UTC (rev 685323)
@@ -0,0 +1,32 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-ui
+pkgver=1.18.1
+pkgrel=29
+pkgdesc="Curses-style terminal interface for the hledger accounting system"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-ansi-terminal' 
'haskell-async'
+ 'haskell-base-compat-batteries' 'haskell-cmdargs' 
'haskell-data-default' 'haskell-extra'
+ 'haskell-fsnotify' 'haskell-microlens' 'haskell-microlens-platform' 
'haskell-megaparsec'
+ 'haskell-pretty-show' 'haskell-safe' 'haskell-split' 
'haskell-text-zipper'
+ 'haskell-vector' 'haskell-brick' 'haskell-vty')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3d32e5cd9dd5d51fd76ec2cf9588d518834983bbeb8a661c469936696e0a541a8173548c7ab4139d5f929fca5b39c840d6f009a790be35ddd2f25543c3f4e9c4')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+-fthreaded
+runhaskell Setup build $MAKEFLAGS
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}


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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 08:44:40
  Author: felixonmars
Revision: 685322

upgpkg: hledger-ui 1.18.1-29: rebuild with tasty-expected-failure 0.12

Modified:
  hledger-ui/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 08:42:16 UTC (rev 685321)
+++ PKGBUILD2020-08-20 08:44:40 UTC (rev 685322)
@@ -3,7 +3,7 @@
 
 pkgname=hledger-ui
 pkgver=1.18.1
-pkgrel=28
+pkgrel=29
 pkgdesc="Curses-style terminal interface for the hledger accounting system"
 url="http://hledger.org;
 license=("GPL")


[arch-commits] Commit in open-vm-tools/repos (4 files)

2020-08-20 Thread Christian Hesse via arch-commits
Date: Thursday, August 20, 2020 @ 08:51:13
  Author: eworm
Revision: 685333

archrelease: copy trunk to community-testing-x86_64

Added:
  open-vm-tools/repos/community-testing-x86_64/
  open-vm-tools/repos/community-testing-x86_64/PKGBUILD
(from rev 685332, open-vm-tools/trunk/PKGBUILD)
  open-vm-tools/repos/community-testing-x86_64/vmtoolsd.service
(from rev 685332, open-vm-tools/trunk/vmtoolsd.service)
  open-vm-tools/repos/community-testing-x86_64/vmware-vmblock-fuse.service
(from rev 685332, open-vm-tools/trunk/vmware-vmblock-fuse.service)

-+
 PKGBUILD|   58 ++
 vmtoolsd.service|9 ++
 vmware-vmblock-fuse.service |   12 
 3 files changed, 79 insertions(+)

Copied: open-vm-tools/repos/community-testing-x86_64/PKGBUILD (from rev 685332, 
open-vm-tools/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-08-20 08:51:13 UTC (rev 685333)
@@ -0,0 +1,58 @@
+# Maintainer: Sergej Pupykin 
+# Contributor: Krzysztof Raczkowski 
+
+pkgname=open-vm-tools
+epoch=6
+pkgver=11.1.5
+pkgrel=2
+pkgdesc='The Open Virtual Machine Tools (open-vm-tools) are the open source 
implementation of VMware Tools'
+arch=('x86_64')
+url='https://github.com/vmware/open-vm-tools'
+license=('LGPL')
+depends=('fuse2' 'icu' 'iproute2' 'libdnet' 'libmspack' 'libsigc++'
+ 'libxcrypt' 'libcrypt.so' 'libxss' 'lsb-release' 'procps-ng'
+ 'uriparser')
+makedepends=('chrpath' 'doxygen' 'gtkmm3' 'libxtst' 'python' 'rpcsvc-proto')
+optdepends=('gtkmm3: DnD/CP plugin'
+'libxtst: DnD/CP, resolution set plugins'
+'netctl: suspend-resume network state'
+'networkmanager: suspend-resume network state')
+backup=('etc/xdg/autostart/vmware-user.desktop')
+options=('docs')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/vmware/open-vm-tools/archive/stable-${pkgver/_/-}.tar.gz;
+'vmtoolsd.service'
+'vmware-vmblock-fuse.service')
+sha256sums=('0bbc20d725cb2e15db5bd5e6a9cbab7fc98c2e3208f19a233a2308468cb2dc04'
+'5a9403f78356873258521644068f2c9639b994d5954e5ad953934136822b2689'
+'99e3cc1da20a751049144cc02dec77174a55109b5b5960e1facd78709da7724f')
+
+build() {
+  cd "$srcdir/$pkgname-stable-${pkgver}/open-vm-tools/"
+
+  autoreconf -vi
+  sh ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--with-udev-rules-dir=/usr/lib/udev/rules.d \
+--without-xmlsecurity \
+--without-kernel-modules
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-stable-${pkgver}/open-vm-tools/"
+
+  make install DESTDIR="$pkgdir"
+  chmod 7755 "$pkgdir"/usr/bin/vmware-user-suid-wrapper
+
+  # install vmware-xdg-detect-de
+  install -D -m0755 scripts/common/vmware-xdg-detect-de 
"$pkgdir"/usr/bin/vmware-xdg-detect-de
+
+  # We don't want a symlink in /sbin
+  rm "$pkgdir"/sbin/mount.vmhgfs
+  rmdir "$pkgdir"/sbin
+
+  # install systemd files
+  install -D -m0644 "$srcdir"/vmtoolsd.service 
"$pkgdir"/usr/lib/systemd/system/vmtoolsd.service
+  install -D -m0644 "$srcdir"/vmware-vmblock-fuse.service 
"$pkgdir"/usr/lib/systemd/system/vmware-vmblock-fuse.service
+}

Copied: open-vm-tools/repos/community-testing-x86_64/vmtoolsd.service (from rev 
685332, open-vm-tools/trunk/vmtoolsd.service)
===
--- community-testing-x86_64/vmtoolsd.service   (rev 0)
+++ community-testing-x86_64/vmtoolsd.service   2020-08-20 08:51:13 UTC (rev 
685333)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Open Virtual Machine Tools (VMware Tools)
+ConditionVirtualization=vmware
+
+[Service]
+ExecStart=/usr/bin/vmtoolsd
+
+[Install]
+WantedBy=multi-user.target

Copied: 
open-vm-tools/repos/community-testing-x86_64/vmware-vmblock-fuse.service (from 
rev 685332, open-vm-tools/trunk/vmware-vmblock-fuse.service)
===
--- community-testing-x86_64/vmware-vmblock-fuse.service
(rev 0)
+++ community-testing-x86_64/vmware-vmblock-fuse.service2020-08-20 
08:51:13 UTC (rev 685333)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Open Virtual Machine Tools (vmware-vmblock-fuse)
+ConditionVirtualization=vmware
+
+[Service]
+Type=simple
+RuntimeDirectory=vmblock-fuse
+RuntimeDirectoryMode=755
+ExecStart=/usr/bin/vmware-vmblock-fuse -d -f -o 
subtype=vmware-vmblock,default_permissions,allow_other /run/vmblock-fuse
+
+[Install]
+WantedBy=multi-user.target


[arch-commits] Commit in open-vm-tools/trunk (PKGBUILD)

2020-08-20 Thread Christian Hesse via arch-commits
Date: Thursday, August 20, 2020 @ 08:51:10
  Author: eworm
Revision: 685332

upgpkg: open-vm-tools 6:11.1.5-2: libxcrypt rebuild

Modified:
  open-vm-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 08:49:44 UTC (rev 685331)
+++ PKGBUILD2020-08-20 08:51:10 UTC (rev 685332)
@@ -4,13 +4,14 @@
 pkgname=open-vm-tools
 epoch=6
 pkgver=11.1.5
-pkgrel=1
+pkgrel=2
 pkgdesc='The Open Virtual Machine Tools (open-vm-tools) are the open source 
implementation of VMware Tools'
 arch=('x86_64')
 url='https://github.com/vmware/open-vm-tools'
 license=('LGPL')
-depends=('libdnet' 'icu' 'procps-ng' 'uriparser' 'libsigc++' 'libxss'
- 'iproute2' 'fuse2' 'lsb-release' 'libmspack')
+depends=('fuse2' 'icu' 'iproute2' 'libdnet' 'libmspack' 'libsigc++'
+ 'libxcrypt' 'libcrypt.so' 'libxss' 'lsb-release' 'procps-ng'
+ 'uriparser')
 makedepends=('chrpath' 'doxygen' 'gtkmm3' 'libxtst' 'python' 'rpcsvc-proto')
 optdepends=('gtkmm3: DnD/CP plugin'
 'libxtst: DnD/CP, resolution set plugins'


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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 09:33:46
  Author: felixonmars
Revision: 685344

upgpkg: pandoc-citeproc 0.17.0.2-13: rebuild with tasty-expected-failure 0.12

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 09:28:46 UTC (rev 685343)
+++ PKGBUILD2020-08-20 09:33:46 UTC (rev 685344)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-citeproc
 pkgver=0.17.0.2
-pkgrel=12
+pkgrel=13
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/$pkgname;
 license=("BSD")


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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 09:33:54
  Author: felixonmars
Revision: 685345

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 685344, pandoc-citeproc/trunk/PKGBUILD)

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

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
685344, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-08-20 09:33:54 UTC (rev 685345)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc-citeproc
+pkgver=0.17.0.2
+pkgrel=13
+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=('5ce079a542b096c06d6e4e205625a993422a972f04787495ac9013dd3131df62733f30e4c3004335e3738b02bb22a7ad50a31c1eb3f67d2b4ef51605c7fcbf16')
+
+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 $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+# 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 lib32-mesa/repos/multilib-x86_64 (4 files)

2020-08-20 Thread Laurent Carlier via arch-commits
Date: Thursday, August 20, 2020 @ 09:37:23
  Author: lcarlier
Revision: 685349

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-mesa/repos/multilib-x86_64/LICENSE
(from rev 685348, lib32-mesa/trunk/LICENSE)
  lib32-mesa/repos/multilib-x86_64/PKGBUILD
(from rev 685348, lib32-mesa/trunk/PKGBUILD)
Deleted:
  lib32-mesa/repos/multilib-x86_64/LICENSE
  lib32-mesa/repos/multilib-x86_64/PKGBUILD

--+
 LICENSE  |  166 +++
 PKGBUILD |  434 ++---
 2 files changed, 300 insertions(+), 300 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2020-08-20 09:37:17 UTC (rev 685348)
+++ LICENSE 2020-08-20 09:37:23 UTC (rev 685349)
@@ -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-x86_64/LICENSE (from rev 685348, 
lib32-mesa/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2020-08-20 09:37:23 UTC (rev 685349)
@@ -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 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 

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

2020-08-20 Thread Johannes Löthberg via arch-commits
Date: Thursday, August 20, 2020 @ 09:38:33
  Author: demize
Revision: 685350

upgpkg: matrix-synapse 1.19.0-1

Modified:
  matrix-synapse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 09:37:23 UTC (rev 685349)
+++ PKGBUILD2020-08-20 09:38:33 UTC (rev 685350)
@@ -2,7 +2,7 @@
 # Contributor: Ivan Shapovalov 
 
 pkgname=matrix-synapse
-pkgver=1.18.0
+pkgver=1.19.0
 pkgrel=1
 
 pkgdesc="Matrix reference homeserver"
@@ -12,7 +12,7 @@
 
 depends=('libwebp' 'python-jsonschema' 'python-twisted' 
'python-service-identity'
  'python-pyopenssl' 'python-yaml' 'python-pyasn1' 'python-pynacl'
- 'python-daemonize' 'python-bcrypt' 'python-frozendict'
+ 'python-bcrypt' 'python-frozendict'
  'python-pillow' 'python-ujson'
  'python-pysaml2' 'python-setuptools'
  'python-systemd' 'python-unpaddedbase64' 'python-canonicaljson'
@@ -34,7 +34,7 @@
 'sysusers-synapse.conf'
 'tmpfiles-synapse.conf')
 
-md5sums=('d8a58e52822ef5e4e823036c212af5d9'
+md5sums=('1a6146dabb58f2cf5bd6729a698c8684'
  'fb196dee4f38a4b19e0a160f45574032'
  'ecd9f66fb57fe1a2e1e2df07a460a35b'
  'e961c9ecad84a70345a57a7e9e6d5b09')


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

2020-08-20 Thread Johannes Löthberg via arch-commits
Date: Thursday, August 20, 2020 @ 09:38:37
  Author: demize
Revision: 685352

archrelease: copy trunk to community-testing-any

Added:
  matrix-synapse/repos/community-testing-any/
  matrix-synapse/repos/community-testing-any/PKGBUILD
(from rev 685351, matrix-synapse/trunk/PKGBUILD)
  matrix-synapse/repos/community-testing-any/synapse.install
(from rev 685351, matrix-synapse/trunk/synapse.install)
  matrix-synapse/repos/community-testing-any/synapse.service
(from rev 685351, matrix-synapse/trunk/synapse.service)
  matrix-synapse/repos/community-testing-any/sysusers-synapse.conf
(from rev 685351, matrix-synapse/trunk/sysusers-synapse.conf)
  matrix-synapse/repos/community-testing-any/tmpfiles-synapse.conf
(from rev 685351, matrix-synapse/trunk/tmpfiles-synapse.conf)

---+
 PKGBUILD  |   66 
 synapse.install   |   38 +++
 synapse.service   |   18 +
 sysusers-synapse.conf |1 
 tmpfiles-synapse.conf |1 
 5 files changed, 124 insertions(+)

Copied: matrix-synapse/repos/community-testing-any/PKGBUILD (from rev 685351, 
matrix-synapse/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2020-08-20 09:38:37 UTC (rev 685352)
@@ -0,0 +1,66 @@
+# Maintainer: Johannes Löthberg 
+# Contributor: Ivan Shapovalov 
+
+pkgname=matrix-synapse
+pkgver=1.19.0
+pkgrel=1
+
+pkgdesc="Matrix reference homeserver"
+url="https://github.com/matrix-org/synapse;
+arch=('any')
+license=('Apache')
+
+depends=('libwebp' 'python-jsonschema' 'python-twisted' 
'python-service-identity'
+ 'python-pyopenssl' 'python-yaml' 'python-pyasn1' 'python-pynacl'
+ 'python-bcrypt' 'python-frozendict'
+ 'python-pillow' 'python-ujson'
+ 'python-pysaml2' 'python-setuptools'
+ 'python-systemd' 'python-unpaddedbase64' 'python-canonicaljson'
+ 'python-signedjson' 'python-pymacaroons'
+ 'python-service-identity' 'python-msgpack'
+ 'python-phonenumbers' 'python-prometheus_client'
+ 'python-attrs' 'python-netaddr' 'python-sortedcontainers'
+ 'python-treq' 'python-idna' 'python-jinja'
+ 'python-bleach' 'python-typing_extensions' 'systemd')
+checkdepends=('python-authlib' 'python-pyjwt' 'python-lxml' 'python-mock' 
'python-parameterized')
+optdepends=('perl: sync_room_to_group.pl'
+'python-psycopg2: PostgreSQL support'
+'python-lxml: URL previewing'
+'python-psutil: metrics'
+'python-pyjwt: jwt')
+
+source=("synapse-$pkgver.tar.gz::https://github.com/matrix-org/synapse/archive/v$pkgver.tar.gz;
+'synapse.service'
+'sysusers-synapse.conf'
+'tmpfiles-synapse.conf')
+
+md5sums=('1a6146dabb58f2cf5bd6729a698c8684'
+ 'fb196dee4f38a4b19e0a160f45574032'
+ 'ecd9f66fb57fe1a2e1e2df07a460a35b'
+ 'e961c9ecad84a70345a57a7e9e6d5b09')
+
+backup=('etc/synapse/log_config.yaml')
+install=synapse.install
+
+build() {
+   cd synapse-$pkgver
+   python setup.py build
+}
+
+check() {
+   cd synapse-$pkgver
+   PYTHONPATH=. trial3 tests
+}
+
+package() {
+   install -Dm644 synapse.service 
"$pkgdir"/usr/lib/systemd/system/synapse.service
+
+   cd synapse-$pkgver
+   python setup.py install --root "$pkgdir" --optimize=1 --skip-build
+
+   install -dm755 -o 198 -g 198 "$pkgdir"/etc/synapse
+
+   install -Dm644 contrib/systemd/log_config.yaml 
"$pkgdir"/etc/synapse/log_config.yaml
+   install -Dm644 "$srcdir"/sysusers-synapse.conf 
"$pkgdir"/usr/lib/sysusers.d/synapse.conf
+   install -Dm644 "$srcdir"/tmpfiles-synapse.conf 
"$pkgdir"/usr/lib/tmpfiles.d/synapse.conf
+}

Copied: matrix-synapse/repos/community-testing-any/synapse.install (from rev 
685351, matrix-synapse/trunk/synapse.install)
===
--- community-testing-any/synapse.install   (rev 0)
+++ community-testing-any/synapse.install   2020-08-20 09:38:37 UTC (rev 
685352)
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+# arg 1:  the new package version
+post_install() {
+   if [[ ! -e /etc/synapse/homeserver.yaml ]]; then
+   cat <<-EOF
+   ==> A synapse configuration file needs to be generated before 
you can
+   start synapse, and you should make sure that it's readable 
by the
+   synapse user.
+
+   cd /var/lib/synapse
+   sudo -u synapse python -m synapse.app.homeserver \\
+ --server-name my.domain.name \\
+ --config-path /etc/synapse/homeserver.yaml \\
+ --generate-config \\
+ --report-stats=yes
+
+   N.B.: The default synapse config enables the 

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

2020-08-20 Thread Laurent Carlier via arch-commits
Date: Thursday, August 20, 2020 @ 09:37:17
  Author: lcarlier
Revision: 685348

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

Modified:
  lib32-mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 09:36:26 UTC (rev 685347)
+++ PKGBUILD2020-08-20 09:37:17 UTC (rev 685348)
@@ -6,7 +6,7 @@
 pkgbase=lib32-mesa
 pkgname=('lib32-vulkan-mesa-layers' 'lib32-opencl-mesa' 'lib32-vulkan-intel' 
'lib32-vulkan-radeon' 'lib32-libva-mesa-driver' 'lib32-mesa-vdpau' 'lib32-mesa')
 pkgdesc="An open-source implementation of the OpenGL specification (32-bit)"
-pkgver=20.1.5
+pkgver=20.1.6
 pkgrel=1
 arch=('x86_64')
 makedepends=('python-mako' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 
'xorgproto' 'lib32-libdrm'
@@ -18,7 +18,7 @@
 license=('custom')
 source=(https://mesa.freedesktop.org/archive/mesa-${pkgver}.tar.xz{,.sig}
 LICENSE)
-sha512sums=('47796bf2cccfd054ff25f571747754e0ab9b42fe87644ea320b3d9497d63b3013e9b7e59ea0516bbd1a38b5594e0d185bf5a36230ea5c5974e7ff889cee2601e'
+sha512sums=('5ef28334ecb7effaaf597ea3efe0406af62419e6fa629e835d843161ab8d83515626ec0f0495c4cc66af9e5669398ac96c16ca626e4965a9831e1704c995fb09'
 'SKIP'
 
'f9f0d0ccf166fe6cb684478b6f1e1ab1f2850431c06aa041738563eb1808a004e52cdec823c103c9e180f03ffc083e95974d291353f0220fe52ae6d4897fecc7')
 validpgpkeys=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D'  # Emil Velikov 



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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 09:38:34
  Author: felixonmars
Revision: 685351

upgpkg: pandoc-crossref 0.3.7.0-15: rebuild with tasty-expected-failure 0.12

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 09:38:33 UTC (rev 685350)
+++ PKGBUILD2020-08-20 09:38:34 UTC (rev 685351)
@@ -3,7 +3,7 @@
 
 pkgname=pandoc-crossref
 pkgver=0.3.7.0
-pkgrel=14
+pkgrel=15
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgname};
 license=("GPL2")


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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 09:47:13
  Author: felixonmars
Revision: 685357

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: shellcheck/repos/community-staging-x86_64/PKGBUILD (from rev 685356, 
shellcheck/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-08-20 09:47:13 UTC (rev 685357)
@@ -0,0 +1,51 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=ShellCheck
+pkgname=shellcheck
+pkgver=0.7.1
+pkgrel=113
+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;)
+sha512sums=('95ca827f50035e352eabfbee9eb1791278f7c18c10c3a6c2656c5b9e87396b7b6c088f4cefa3d6f954ac6c2765ea50e232985b9f3eeea2dbe77c17473cc4a437')
+
+prepare() {
+cd $pkgname-$pkgver
+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 $MAKEFLAGS
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+
+./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-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 09:47:04
  Author: felixonmars
Revision: 685356

upgpkg: shellcheck 0.7.1-113: rebuild with tasty-expected-failure 0.12

Modified:
  shellcheck/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 09:42:46 UTC (rev 685355)
+++ PKGBUILD2020-08-20 09:47:04 UTC (rev 685356)
@@ -4,7 +4,7 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.7.1
-pkgrel=112
+pkgrel=113
 pkgdesc="Shell script analysis tool"
 url="https://www.shellcheck.net;
 license=("GPL")


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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 09:53:26
  Author: felixonmars
Revision: 685361

archrelease: copy trunk to community-staging-x86_64

Added:
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 685360, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 685360, stack/trunk/stack.install)

---+
 PKGBUILD  |   82 
 stack.install |4 ++
 2 files changed, 86 insertions(+)

Copied: stack/repos/community-staging-x86_64/PKGBUILD (from rev 685360, 
stack/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-08-20 09:53:26 UTC (rev 685361)
@@ -0,0 +1,82 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=stack
+pkgver=2.3.1
+pkgrel=99
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-annotated-wl-pprint' 
'haskell-ansi-terminal'
+ 'haskell-async' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-casa-client'
+ 'haskell-casa-types' 'haskell-colour' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-cryptonite-conduit' 'haskell-echo'
+ 'haskell-extra' 'haskell-file-embed' 'haskell-filelock' 
'haskell-fsnotify'
+ 'haskell-generic-deriving' 'haskell-githash' 
'haskell-hackage-security' 'haskell-hashable'
+ 'haskell-hi-file-parser' 'haskell-hpack' 'haskell-http-client' 
'haskell-http-client-tls'
+ 'haskell-http-conduit' 'haskell-http-download' 'haskell-http-types' 
'haskell-memory'
+ 'haskell-microlens' 'haskell-mintty' 'haskell-mono-traversable' 
'haskell-mustache'
+ 'haskell-neat-interpolation' 'haskell-network-uri' 
'haskell-open-browser'
+ 'haskell-optparse-applicative' 'haskell-optparse-generic' 
'haskell-optparse-simple'
+ 'haskell-pantry' 'haskell-path' 'haskell-path-io' 'haskell-persistent'
+ 'haskell-persistent-sqlite' 'haskell-persistent-template' 
'haskell-primitive'
+ 'haskell-project-template' 'haskell-regex-applicative-text' 
'haskell-retry' 'haskell-rio'
+ 'haskell-rio-prettyprint' 'haskell-split' 'haskell-streaming-commons' 
'haskell-tar'
+ 'haskell-temporary' 'haskell-text-metrics' 'haskell-th-reify-many' 
'haskell-tls'
+ 'haskell-typed-process' 'haskell-unicode-transforms' 
'haskell-unix-compat'
+ 'haskell-unliftio' 'haskell-unordered-containers' 'haskell-vector' 
'haskell-yaml'
+ 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc' 'git' 'haskell-quickcheck' 'haskell-hspec' 
'haskell-raw-strings-qq'
+ 'haskell-smallcheck')
+checkdepends=('cabal-install')
+conflicts=('haskell-stack')
+replaces=('haskell-stack')
+install="stack.install"
+source=("git+https://github.com/commercialhaskell/stack.git#tag=v$pkgver;
+
stack-pantry-0.5.patch::https://github.com/commercialhaskell/stack/pull/5281.patch)
+sha512sums=('SKIP'
+
'9998e6cdc4b80db3490d66c4392a0e9c44c58fa51371bc68fbade48aea6b21f1172905627ade8132d2733a7e4d942b597d5943a5bd3da302aa6c3be616ecd769')
+
+prepare() {
+  cd $pkgname
+  patch -p1 -i ../stack-pantry-0.5.patch
+  sed -i -e '/semigroups/d' $pkgname.cabal
+
+  sed -i 's/map show errs/map show (toList errs)/' src/Stack/SDist.hs
+}
+
+build() {
+  cd $pkgname
+
+  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 \
+  -f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions -f-supported-build \
+  --ghc-option='-pie'
+  runhaskell Setup build $MAKEFLAGS
+  runhaskell Setup register --gen-script
+  runhaskell Setup unregister --gen-script
+  sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+  sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+  cd $pkgname
+  # cabal update
+  LD_LIBRARY_PATH="$PWD"/dist/build PATH="$PWD"/dist/build/stack:"$PATH" 
runhaskell Setup test
+  # Integration tests will result in 4 failures on Arch currently
+}
+
+package() {
+  cd $pkgname
+
+  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
+
+  LD_PRELOAD=$(ls "$pkgdir"/usr/lib/libHSstack-*-ghc*.so) 
"${pkgdir}"/usr/bin/stack --bash-completion-script /usr/bin/stack > 
stack_completion_script
+  install 

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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 09:55:33
  Author: felixonmars
Revision: 685363

archrelease: copy trunk to community-staging-x86_64

Added:
  tamarin-prover/repos/community-staging-x86_64/
  tamarin-prover/repos/community-staging-x86_64/PKGBUILD
(from rev 685362, tamarin-prover/trunk/PKGBUILD)

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

Copied: tamarin-prover/repos/community-staging-x86_64/PKGBUILD (from rev 
685362, tamarin-prover/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-08-20 09:55:33 UTC (rev 685363)
@@ -0,0 +1,54 @@
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=tamarin-prover
+pkgver=1.4.1
+pkgrel=407
+pkgdesc="The Tamarin prover for security protocol analysis"
+url="https://tamarin-prover.github.io;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'graphviz' 'maude' 'haskell-hunit' 
'haskell-binary-instances' 'haskell-binary-orphans'
+ 'haskell-blaze-builder' 'haskell-blaze-html' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-fclabels' 'haskell-file-embed' 'haskell-gitrev' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-monad-unlift'
+ 'haskell-resourcet' 'haskell-safe' 'haskell-shakespeare' 
'haskell-threads'
+ 'haskell-wai' 'haskell-warp' 'haskell-yesod-core' 
'haskell-yesod-static'
+ 'haskell-tamarin-prover-utils' 'haskell-tamarin-prover-term'
+ 'haskell-tamarin-prover-theory')
+optdepends=('ocaml: for sapic support')
+makedepends=('ghc' 'ocaml')
+source=("tamarin-prover-$pkgver.tar.gz::https://github.com/tamarin-prover/tamarin-prover/archive/$pkgver.tar.gz;)
+sha512sums=('4d3aeae02be5d430bff6c55d78656e3c9a648674d235bfeb36ce227a39abd3054a132b99ff8040abf05d8e26506fe85d21ecfb6fce73062dd45b5ba98d941144')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+sed -i '/cp sapic/d' plugins/sapic/Makefile
+
+sed -i 's/binary-orphans/binary-instances/' $pkgname.cabal
+sed -i 's/Data.Binary.Orphans/Data.Binary.Instances/' src/Web/Types.hs
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-executable-dynamic --prefix=/usr \
+--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fthreaded -ftest-coverage -f-build-tests --ghc-option='-pie'
+runhaskell Setup build $MAKEFLAGS
+
+cd plugins/sapic
+make -j1
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 etc/filetype.vim 
"$pkgdir"/usr/share/vim/vimfiles/ftdetect/tamarin.vim
+install -Dm644 etc/spthy.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/spthy.vim
+install -Dm644 etc/sapic.vim 
"$pkgdir"/usr/share/vim/vimfiles/syntax/sapic.vim
+
+cd plugins/sapic
+install -Dm755 sapic "$pkgdir"/usr/bin/sapic
+}


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

2020-08-20 Thread Felix Yan via arch-commits
Date: Thursday, August 20, 2020 @ 09:55:25
  Author: felixonmars
Revision: 685362

upgpkg: tamarin-prover 1.4.1-407: rebuild with tasty-expected-failure 0.12

Modified:
  tamarin-prover/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 09:53:26 UTC (rev 685361)
+++ PKGBUILD2020-08-20 09:55:25 UTC (rev 685362)
@@ -3,7 +3,7 @@
 
 pkgname=tamarin-prover
 pkgver=1.4.1
-pkgrel=406
+pkgrel=407
 pkgdesc="The Tamarin prover for security protocol analysis"
 url="https://tamarin-prover.github.io;
 license=("GPL")


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

2020-08-20 Thread Bruno Pagani via arch-commits
Date: Thursday, August 20, 2020 @ 10:08:17
  Author: archange
Revision: 685364

Merge two upstream patches

The project is dead, and the feature PR is required by VTK/ParaView

Modified:
  libharu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 09:55:33 UTC (rev 685363)
+++ PKGBUILD2020-08-20 10:08:17 UTC (rev 685364)
@@ -1,21 +1,30 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer : SpepS 
+# Maintainer: Sven-Hendrik Haase 
 # Contributor: Auguste 
 # Contributor: Jose Negron 
 
 pkgname=libharu
 pkgver=2.3.0
-pkgrel=3
+pkgrel=4
 pkgdesc="C library for generating PDF documents"
+arch=(x86_64)
 url="https://github.com/libharu/libharu;
-arch=('x86_64')
-license=('custom:ZLIB')
-depends=('libpng' 'gcc-libs')
-source=("https://github.com/libharu/libharu/archive/RELEASE_${pkgver//./_}.tar.gz;)
-sha512sums=('ebcabf1e8488e21185a231e97b4c16f9de742ae0ac2ebc7535b72b6b8e2045c2619bc6a94a820f7f923b0dfeceb217408f4e4c613ef3602104373cdf000d3f41')
+license=(custom:ZLIB)
+depends=(libpng gcc-libs)
+source=(${url}/archive/RELEASE_${pkgver//./_}/${pkgname}-${pkgver}.tar.gz
+${pkgname}-157.patch::${url}/pull/157.patch
+${pkgname}-158.patch::${url}/pull/158.patch)
+sha512sums=('ebcabf1e8488e21185a231e97b4c16f9de742ae0ac2ebc7535b72b6b8e2045c2619bc6a94a820f7f923b0dfeceb217408f4e4c613ef3602104373cdf000d3f41'
+
'3b9474c0dad5e8903cea6af1403d28ce405d33cc7086e116ac5b2f6d9c4274e9c4dcf85c5719b7cae95fe72511bc3c79d65dd6ef440c4b951367f7b8a409386a'
+
'babf974b91e2b4c1abc8bdcf2a46f6a4b663fad8ff9af995c68a0a85a263c19cb4e13a9b90a058eba4f6a5c11a04e9ac1d43e223384652f3d398041a67fd9cb0')
 
+prepare() {
+  cd ${pkgname}-RELEASE_${pkgver//./_}
+  patch -p1 -i ../${pkgname}-157.patch
+  patch -p1 -i ../${pkgname}-158.patch
+}
+
 build() {
-  cd "$srcdir/$pkgname-RELEASE_${pkgver//./_}"
+  cd ${pkgname}-RELEASE_${pkgver//./_}
   touch include/config.h.in
   aclocal
   libtoolize
@@ -26,9 +35,9 @@
 }
 
 package() {
-  cd "$srcdir/$pkgname-RELEASE_${pkgver//./_}"
-  make DESTDIR="$pkgdir/" install
+  cd ${pkgname}-RELEASE_${pkgver//./_}
+  make DESTDIR="${pkgdir}" install
   # license
-  install -d "$pkgdir/usr/share/licenses/$pkgname"
-  sed -n '102,120p' README > "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -d "${pkgdir}"/usr/share/licenses/${pkgname}
+  sed -n '102,120p' README > "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }


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

2020-08-20 Thread Bruno Pagani via arch-commits
Date: Thursday, August 20, 2020 @ 10:08:43
  Author: archange
Revision: 685365

archrelease: copy trunk to community-x86_64

Added:
  libharu/repos/community-x86_64/PKGBUILD
(from rev 685364, libharu/trunk/PKGBUILD)
Deleted:
  libharu/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 10:08:17 UTC (rev 685364)
+++ PKGBUILD2020-08-20 10:08:43 UTC (rev 685365)
@@ -1,34 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer : SpepS 
-# Contributor: Auguste 
-# Contributor: Jose Negron 
-
-pkgname=libharu
-pkgver=2.3.0
-pkgrel=3
-pkgdesc="C library for generating PDF documents"
-url="https://github.com/libharu/libharu;
-arch=('x86_64')
-license=('custom:ZLIB')
-depends=('libpng' 'gcc-libs')
-source=("https://github.com/libharu/libharu/archive/RELEASE_${pkgver//./_}.tar.gz;)
-sha512sums=('ebcabf1e8488e21185a231e97b4c16f9de742ae0ac2ebc7535b72b6b8e2045c2619bc6a94a820f7f923b0dfeceb217408f4e4c613ef3602104373cdf000d3f41')
-
-build() {
-  cd "$srcdir/$pkgname-RELEASE_${pkgver//./_}"
-  touch include/config.h.in
-  aclocal
-  libtoolize
-  automake --add-missing
-  autoconf
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-RELEASE_${pkgver//./_}"
-  make DESTDIR="$pkgdir/" install
-  # license
-  install -d "$pkgdir/usr/share/licenses/$pkgname"
-  sed -n '102,120p' README > "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: libharu/repos/community-x86_64/PKGBUILD (from rev 685364, 
libharu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-20 10:08:43 UTC (rev 685365)
@@ -0,0 +1,43 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Auguste 
+# Contributor: Jose Negron 
+
+pkgname=libharu
+pkgver=2.3.0
+pkgrel=4
+pkgdesc="C library for generating PDF documents"
+arch=(x86_64)
+url="https://github.com/libharu/libharu;
+license=(custom:ZLIB)
+depends=(libpng gcc-libs)
+source=(${url}/archive/RELEASE_${pkgver//./_}/${pkgname}-${pkgver}.tar.gz
+${pkgname}-157.patch::${url}/pull/157.patch
+${pkgname}-158.patch::${url}/pull/158.patch)
+sha512sums=('ebcabf1e8488e21185a231e97b4c16f9de742ae0ac2ebc7535b72b6b8e2045c2619bc6a94a820f7f923b0dfeceb217408f4e4c613ef3602104373cdf000d3f41'
+
'3b9474c0dad5e8903cea6af1403d28ce405d33cc7086e116ac5b2f6d9c4274e9c4dcf85c5719b7cae95fe72511bc3c79d65dd6ef440c4b951367f7b8a409386a'
+
'babf974b91e2b4c1abc8bdcf2a46f6a4b663fad8ff9af995c68a0a85a263c19cb4e13a9b90a058eba4f6a5c11a04e9ac1d43e223384652f3d398041a67fd9cb0')
+
+prepare() {
+  cd ${pkgname}-RELEASE_${pkgver//./_}
+  patch -p1 -i ../${pkgname}-157.patch
+  patch -p1 -i ../${pkgname}-158.patch
+}
+
+build() {
+  cd ${pkgname}-RELEASE_${pkgver//./_}
+  touch include/config.h.in
+  aclocal
+  libtoolize
+  automake --add-missing
+  autoconf
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-RELEASE_${pkgver//./_}
+  make DESTDIR="${pkgdir}" install
+  # license
+  install -d "${pkgdir}"/usr/share/licenses/${pkgname}
+  sed -n '102,120p' README > "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}


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

2020-08-20 Thread Christian Hesse via arch-commits
Date: Thursday, August 20, 2020 @ 10:25:09
  Author: eworm
Revision: 394435

archrelease: copy trunk to testing-x86_64

Added:
  wireguard-tools/repos/testing-x86_64/
  wireguard-tools/repos/testing-x86_64/PKGBUILD
(from rev 394434, wireguard-tools/trunk/PKGBUILD)

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

Copied: wireguard-tools/repos/testing-x86_64/PKGBUILD (from rev 394434, 
wireguard-tools/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-08-20 10:25:09 UTC (rev 394435)
@@ -0,0 +1,45 @@
+# Maintainer: Christian Hesse 
+# Contributor: Jason A. Donenfeld 
+
+pkgname=wireguard-tools
+pkgver=1.0.20200820
+pkgrel=1
+pkgdesc='next generation secure network tunnel - tools for configuration'
+arch=('x86_64')
+url='https://www.wireguard.com/'
+license=('GPL')
+depends=('bash')
+optdepends=('openresolv: for DNS functionality'
+'sudo: elevate privileges'
+'wireguard-dkms: wireguard module, built by dkms'
+'wireguard-lts: wireguard module for linux-lts')
+validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

+source=("https://git.zx2c4.com/${pkgname}/snapshot/${pkgname}-${pkgver}.tar"{.xz,.asc})
+sha256sums=('7735a04c68fffb101a10a67e3bd97a171f2b8eb47e9ddce2be68eb6538b013d0'
+'SKIP')
+
+prepare() {
+   cd ${pkgname}-${pkgver}/
+
+   find contrib/ -name '.gitignore' -delete
+}
+
+build() {
+   cd ${pkgname}-${pkgver}/
+
+   make -C src/
+}
+
+package() {
+   cd ${pkgname}-${pkgver}/
+
+   make -C src/ \
+   DESTDIR="${pkgdir}/" \
+   WITH_BASHCOMPLETION=yes \
+WITH_WGQUICK=yes \
+WITH_SYSTEMDUNITS=yes \
+install
+
+   install -d -m0755 "${pkgdir}"/usr/share/${pkgname}/
+   cp -r contrib/ "${pkgdir}"/usr/share/${pkgname}/examples/
+}


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

2020-08-20 Thread Christian Hesse via arch-commits
Date: Thursday, August 20, 2020 @ 10:25:04
  Author: eworm
Revision: 394434

upgpkg: wireguard-tools 1.0.20200820-1: new upstream release

Modified:
  wireguard-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 09:18:49 UTC (rev 394433)
+++ PKGBUILD2020-08-20 10:25:04 UTC (rev 394434)
@@ -2,7 +2,7 @@
 # Contributor: Jason A. Donenfeld 
 
 pkgname=wireguard-tools
-pkgver=1.0.20200513
+pkgver=1.0.20200820
 pkgrel=1
 pkgdesc='next generation secure network tunnel - tools for configuration'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 'wireguard-lts: wireguard module for linux-lts')
 validpgpkeys=('AB9942E6D4A4CFC3412620A749FC7012A5DE03AE') # Jason A. Donenfeld 

 
source=("https://git.zx2c4.com/${pkgname}/snapshot/${pkgname}-${pkgver}.tar"{.xz,.asc})
-sha256sums=('e73409a9fb8c90506db241d1e1a4e7372a60dbfa400e37f4ab2fd70a92ba495f'
+sha256sums=('7735a04c68fffb101a10a67e3bd97a171f2b8eb47e9ddce2be68eb6538b013d0'
 'SKIP')
 
 prepare() {


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

2020-08-20 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 20, 2020 @ 11:02:20
  Author: mtorromeo
Revision: 685513

upgpkg: percona-server 8.0.20_11-2: libxcrypt rebuild

Modified:
  percona-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 11:02:08 UTC (rev 685512)
+++ PKGBUILD2020-08-20 11:02:20 UTC (rev 685513)
@@ -6,7 +6,7 @@
 _boost_ver=1.70.0
 _pkgver=${pkgver/_/-}
 _myver=${pkgver/_rel*}
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 makedepends=('cmake' 'zlib' 'lz4' 'zstd' 'libaio' 'systemd-tools' 'pam' 
'numactl' 'jemalloc' 'openssl' 'rpcsvc-proto' 'boost' 'doxygen' 'graphviz')
 license=('GPL')


[arch-commits] Commit in percona-server/repos (7 files)

2020-08-20 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 20, 2020 @ 11:02:38
  Author: mtorromeo
Revision: 685514

archrelease: copy trunk to community-testing-x86_64

Added:
  percona-server/repos/community-testing-x86_64/
  percona-server/repos/community-testing-x86_64/PKGBUILD
(from rev 685513, percona-server/trunk/PKGBUILD)
  percona-server/repos/community-testing-x86_64/build-hostname.patch
(from rev 685513, percona-server/trunk/build-hostname.patch)
  percona-server/repos/community-testing-x86_64/my.cnf
(from rev 685513, percona-server/trunk/my.cnf)
  percona-server/repos/community-testing-x86_64/mysql-user.conf
(from rev 685513, percona-server/trunk/mysql-user.conf)
  percona-server/repos/community-testing-x86_64/no-werror.patch
(from rev 685513, percona-server/trunk/no-werror.patch)
  percona-server/repos/community-testing-x86_64/rocksdb-make.patch
(from rev 685513, percona-server/trunk/rocksdb-make.patch)

--+
 PKGBUILD |  179 +
 build-hostname.patch |   17 
 my.cnf   |   34 +
 mysql-user.conf  |1 
 no-werror.patch  |   28 +++
 rocksdb-make.patch   |   13 +++
 6 files changed, 272 insertions(+)

Copied: percona-server/repos/community-testing-x86_64/PKGBUILD (from rev 
685513, percona-server/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-08-20 11:02:38 UTC (rev 685514)
@@ -0,0 +1,179 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgbase=percona-server
+pkgname=('libperconaserverclient' 'percona-server-clients' 'percona-server')
+pkgver=8.0.20_11
+_boost_ver=1.70.0
+_pkgver=${pkgver/_/-}
+_myver=${pkgver/_rel*}
+pkgrel=2
+arch=('x86_64')
+makedepends=('cmake' 'zlib' 'lz4' 'zstd' 'libaio' 'systemd-tools' 'pam' 
'numactl' 'jemalloc' 'openssl' 'rpcsvc-proto' 'boost' 'doxygen' 'graphviz')
+license=('GPL')
+url="https://www.percona.com/software/mysql-database/percona-server;
+source=("https://www.percona.com/downloads/Percona-Server-${pkgver%.*_*}/Percona-Server-$_pkgver/source/tarball/percona-server-$_pkgver.tar.gz;
+
"https://dl.bintray.com/boostorg/release/$_boost_ver/source/boost_${_boost_ver//./_}.tar.gz;
+'my.cnf'
+'mysql-user.conf'
+'build-hostname.patch'
+'no-werror.patch'
+'rocksdb-make.patch')
+sha256sums=('929a1660f584bb3be49c579c1a2edd2a6a839c37fc4b275b843e90fba5cc77c0'
+'882b48708d211a5f48e60b0124cf5863c1534cd544ecd0664bb534a4b5d506e9'
+'b467b04d6d06152b2abc33f2a6de63fef0fc922dd5119d2ee1d07d3c1a489731'
+'e638a2657085f15b6728f43c1fd6aa551b27608fbf6b435e33afd3606a0cfb0e'
+'1537fdbb92dd1c135c1eb9f4d10c44fd02e652db66c933d731990a1196f1397c'
+'2343a191c452b91caa458b03b0c1ef3f5afb0e7031816c68467af5c6a6ffe253'
+'2ff495d271f99c4d0dba89e8ccde7e6b9789a4ea6b55034de9b9217b47e32c03')
+
+prepare() {
+   cd $pkgbase-$_pkgver
+   rm -v sql/sql_yacc.{cc,h}
+
+   patch -p1 -i "$srcdir"/build-hostname.patch
+   patch -p1 -i "$srcdir"/no-werror.patch
+   patch -p1 -i "$srcdir"/rocksdb-make.patch
+
+   for svcfile in mysqld{,@}.service.in; do
+   echo StateDirectory=mysql mysql-files >> 
scripts/systemd/$svcfile
+   echo RuntimeDirectory=mysqld >> scripts/systemd/$svcfile
+   done
+}
+
+build() {
+   # rm -rf build
+   mkdir -p build
+   cd build
+
+   cmake ../$pkgbase-$_pkgver \
+   -Wno-dev \
+   -DBUILD_CONFIG=mysql_release \
+   -DREPRODUCIBLE_BUILD=ON \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DSYSCONFDIR=/etc/mysql \
+   -DMYSQL_DATADIR=/var/lib/mysql \
+   -DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock \
+   -DDEFAULT_CHARSET=utf8mb4 \
+   -DDEFAULT_COLLATION=utf8mb4_general_ci \
+   -DENABLED_LOCAL_INFILE=ON \
+   -DINSTALL_INFODIR=share/doc/percona-server \
+   -DINSTALL_DOCREADMEDIR=share/doc/percona-server \
+   -DINSTALL_DOCDIR=share/doc/percona-server \
+   -DINSTALL_MANDIR=share/man \
+   -DINSTALL_PLUGINDIR=lib/perconaserver/plugin \
+   -DINSTALL_INCLUDEDIR=include/perconaserver \
+   -DINSTALL_SUPPORTFILESDIR=share/mysql \
+   -DINSTALL_MYSQLSHAREDIR=share/mysql \
+   -DINSTALL_STATIC_LIBRARIES=OFF \
+   -DWITH_ZLIB=system \
+   -DWITH_LZ4=system \
+   -DWITH_ZSTD=system \
+   -DWITH_SSL=system \
+   -DWITH_ICU=system \
+   -DWITH_LIBWRAP=OFF \
+   -DWITH_MECAB=OFF \
+   -DWITH_PAM=ON \
+   -DWITH_INNODB_MEMCACHED=ON \
+   -DWITH_ARCHIVE_STORAGE_ENGINE=ON \
+   -DWITH_BLACKHOLE_STORAGE_ENGINE=ON \
+ 

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

2020-08-20 Thread Kyle Keen via arch-commits
Date: Thursday, August 20, 2020 @ 11:02:08
  Author: kkeen
Revision: 685512

archrelease: copy trunk to community-testing-x86_64

Added:
  sthttpd/repos/community-testing-x86_64/
  sthttpd/repos/community-testing-x86_64/PKGBUILD
(from rev 685511, sthttpd/trunk/PKGBUILD)
  sthttpd/repos/community-testing-x86_64/config
(from rev 685511, sthttpd/trunk/config)
  sthttpd/repos/community-testing-x86_64/discreet.patch
(from rev 685511, sthttpd/trunk/discreet.patch)
  sthttpd/repos/community-testing-x86_64/service
(from rev 685511, sthttpd/trunk/service)

+
 PKGBUILD   |   58 +++
 config |6 +
 discreet.patch |   34 
 service|   10 +
 4 files changed, 108 insertions(+)

Copied: sthttpd/repos/community-testing-x86_64/PKGBUILD (from rev 685511, 
sthttpd/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-08-20 11:02:08 UTC (rev 685512)
@@ -0,0 +1,58 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Damir Perisa 
+# Contributor: Stewart Starbuck 
+
+pkgname=sthttpd
+pkgver=2.27.1
+pkgrel=3
+pkgdesc='Supported fork of the thttpd web server'
+url='https://github.com/blueness/sthttpd'
+license=('custom:BSD')
+arch=('x86_64')
+depends=('libxcrypt')
+backup=('etc/thttpd.conf')
+validpgpkeys=('1FEDFAD9D82C52A53BABDC799384FA6EF52D4BBA')
+source=("$pkgname-$pkgver.tgz::https://github.com/blueness/sthttpd/archive/v2.27.1.tar.gz;
+'discreet.patch'
+'service'
+'config')
+sha256sums=('a1ee2806432eaf5b5dd267a0523701f9f1fa00fefd499d5bec42165a41e05846'
+'be953777f2b5b860f1c5a8c96d8478535fe517d76bd4b76597d743a96c2659cf'
+'6fea42a6876e2a44eff4f76ed64befabe400e5c844b11b782b1507299e5eb986'
+'1f42c7625422944bd035731d264a711f50b47f4e4f58b6c67693f09fabb76350')
+
+conflicts=('thttpd')
+provides=('thttpd')
+replaces=('thttpd')
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i ../discreet.patch
+   ./autogen.sh
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   export WEBDIR=/srv/http
+   export WEBGROUP=root
+   ./configure \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --mandir=/usr/share/man \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   rm -fr "${pkgdir}"/srv
+
+   install -Dm644 ../config "${pkgdir}"/etc/thttpd.conf
+   install -Dm644 ../service 
"${pkgdir}"/usr/lib/systemd/system/thttpd.service
+   install -Dm644 README.md 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+   # Avoid conflicts with Apache
+   mv "${pkgdir}"/usr/bin/htpasswd{,-thttpd}
+   mv "${pkgdir}"/usr/share/man/man1/htpasswd{,-thttpd}.1
+}

Copied: sthttpd/repos/community-testing-x86_64/config (from rev 685511, 
sthttpd/trunk/config)
===
--- community-testing-x86_64/config (rev 0)
+++ community-testing-x86_64/config 2020-08-20 11:02:08 UTC (rev 685512)
@@ -0,0 +1,6 @@
+user=http
+dir=/srv/http
+cgipat=**.cgi
+charset=utf-8
+chroot
+vhost

Copied: sthttpd/repos/community-testing-x86_64/discreet.patch (from rev 685511, 
sthttpd/trunk/discreet.patch)
===
--- community-testing-x86_64/discreet.patch (rev 0)
+++ community-testing-x86_64/discreet.patch 2020-08-20 11:02:08 UTC (rev 
685512)
@@ -0,0 +1,34 @@
+diff -Naur old/src/libhttpd.c new/src/libhttpd.c
+--- old/src/libhttpd.c 2014-10-04 03:43:00.0 +0900
 new/src/libhttpd.c 2015-08-14 17:15:30.081099286 +0900
+@@ -738,7 +738,7 @@
+ (void) my_snprintf( buf, sizeof(buf), "\
+ \n\
+ %d %s\n\
+-\n\
++\n\
+ %d %s\n",
+   status, title, status, title );
+ add_response( hc, buf );
+@@ -763,11 +763,8 @@
+ char buf[1000];
+ 
+ (void) my_snprintf( buf, sizeof(buf), "\
+-\n\
+-%s\n\
+ \n\
+-\n",
+-  SERVER_ADDRESS, EXPOSED_SERVER_SOFTWARE );
++\n" );
+ add_response( hc, buf );
+ }
+ 
+@@ -2768,7 +2765,7 @@
+   (void) fprintf( fp, "\
+ \n\
+ Index of %.80s\n\
+-\n\
++\n\
+ Index of %.80s\n\
+ \n\
+ mode  links  bytes  last-changed  name\n\

Copied: sthttpd/repos/community-testing-x86_64/service (from rev 685511, 
sthttpd/trunk/service)
===
--- community-testing-x86_64/service(rev 0)
+++ community-testing-x86_64/service2020-08-20 11:02:08 UTC (rev 685512)
@@ -0,0 +1,10 @@
+[Unit]
+Description=Tiny HTTP Daemon
+
+[Service]
+PIDFile=/run/thttpd.pid
+ExecStart=/usr/bin/thttpd -D -C /etc/thttpd.conf
+Restart=always
+
+[Install]

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

2020-08-20 Thread Kyle Keen via arch-commits
Date: Thursday, August 20, 2020 @ 11:01:50
  Author: kkeen
Revision: 685511

upgpkg: sthttpd 2.27.1-3  libxcrypt rebuild

Modified:
  sthttpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 10:44:46 UTC (rev 685510)
+++ PKGBUILD2020-08-20 11:01:50 UTC (rev 685511)
@@ -4,14 +4,15 @@
 
 pkgname=sthttpd
 pkgver=2.27.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Supported fork of the thttpd web server'
 url='https://github.com/blueness/sthttpd'
 license=('custom:BSD')
 arch=('x86_64')
+depends=('libxcrypt')
 backup=('etc/thttpd.conf')
 validpgpkeys=('1FEDFAD9D82C52A53BABDC799384FA6EF52D4BBA')
-source=("https://github.com/blueness/sthttpd/archive/v2.27.1.tar.gz;
+source=("$pkgname-$pkgver.tgz::https://github.com/blueness/sthttpd/archive/v2.27.1.tar.gz;
 'discreet.patch'
 'service'
 'config')
@@ -33,7 +34,7 @@
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"
export WEBDIR=/srv/http
-   export WEBGROUP=http
+   export WEBGROUP=root
./configure \
--prefix=/usr \
--sbindir=/usr/bin \


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

2020-08-20 Thread Bartłomiej Piotrowski via arch-commits
Date: Thursday, August 20, 2020 @ 06:01:23
  Author: bpiotrowski
Revision: 394418

2.32-2: drop libcrypt.so

Modified:
  glibc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 04:53:43 UTC (rev 394417)
+++ PKGBUILD2020-08-20 06:01:23 UTC (rev 394418)
@@ -7,7 +7,7 @@
 pkgbase=glibc
 pkgname=(glibc lib32-glibc)
 pkgver=2.32
-pkgrel=1
+pkgrel=2
 arch=(x86_64)
 url='https://www.gnu.org/software/libc'
 license=(GPL LGPL)
@@ -195,7 +195,7 @@
   install -Dm644 "$srcdir/sdt-config.h" "$pkgdir/usr/include/sys/sdt-config.h"
 
   # Provided by libxcrypt; keep the old shared library for backwards 
compatibility
-  rm -f "$pkgdir"/usr/include/crypt.h "$pkgdir"/usr/lib/libcrypt.a
+  rm -f "$pkgdir"/usr/include/crypt.h "$pkgdir"/usr/lib/libcrypt.{a,so}
 }
 
 package_lib32-glibc() {


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

2020-08-20 Thread Evangelos Foutras via arch-commits
Date: Thursday, August 20, 2020 @ 06:56:03
  Author: foutrelis
Revision: 394423

archrelease: copy trunk to testing-x86_64

Added:
  pidgin/repos/testing-x86_64/
  pidgin/repos/testing-x86_64/PKGBUILD
(from rev 394422, pidgin/trunk/PKGBUILD)

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

Copied: pidgin/repos/testing-x86_64/PKGBUILD (from rev 394422, 
pidgin/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-08-20 06:56:03 UTC (rev 394423)
@@ -0,0 +1,96 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Ionut Biru 
+# Contributor: Andrea Scarpino 
+# Contributor: Alexander Fehr 
+# Contributor: Lucien Immink 
+
+pkgname=('pidgin' 'libpurple' 'finch')
+pkgver=2.14.1
+pkgrel=3
+arch=('x86_64')
+url="https://pidgin.im/;
+license=('GPL')
+makedepends=('startup-notification' 'gtkspell' 'libxss' 'nss' 'libsasl' 'libsm'
+ 'libidn' 'libgadu' 'python' 'hicolor-icon-theme' 'farstream' 'tk'
+ 'libnsl' 'avahi' 'ca-certificates' 'intltool' 'libnm' 'dbus-glib'
+ 'libgnt' 'libxcrypt')
+source=(https://downloads.sourceforge.net/project/pidgin/Pidgin/$pkgver/$pkgname-$pkgver.tar.bz2{,.asc})
+sha256sums=('f132e18d551117d9e46acce29ba4f40892a86746c366999166a3862b51060780'
+'SKIP')
+validpgpkeys=('40DE1DC7288FE3F50AB938C548F66AFFD9BDB729') # Gary Kramlich 

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


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

2020-08-20 Thread Evangelos Foutras via arch-commits
Date: Thursday, August 20, 2020 @ 06:55:57
  Author: foutrelis
Revision: 394422

upgpkg: pidgin 2.14.1-3: libxcrypt rebuild

Modified:
  pidgin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 06:02:50 UTC (rev 394421)
+++ PKGBUILD2020-08-20 06:55:57 UTC (rev 394422)
@@ -6,7 +6,7 @@
 
 pkgname=('pidgin' 'libpurple' 'finch')
 pkgver=2.14.1
-pkgrel=2
+pkgrel=3
 arch=('x86_64')
 url="https://pidgin.im/;
 license=('GPL')
@@ -13,7 +13,7 @@
 makedepends=('startup-notification' 'gtkspell' 'libxss' 'nss' 'libsasl' 'libsm'
  'libidn' 'libgadu' 'python' 'hicolor-icon-theme' 'farstream' 'tk'
  'libnsl' 'avahi' 'ca-certificates' 'intltool' 'libnm' 'dbus-glib'
- 'libgnt')
+ 'libgnt' 'libxcrypt')
 
source=(https://downloads.sourceforge.net/project/pidgin/Pidgin/$pkgver/$pkgname-$pkgver.tar.bz2{,.asc})
 sha256sums=('f132e18d551117d9e46acce29ba4f40892a86746c366999166a3862b51060780'
 'SKIP')
@@ -62,7 +62,7 @@
 package_libpurple(){
   pkgdesc="IM library extracted from Pidgin"
   depends=('farstream' 'libsasl' 'libidn' 'libnsl' 'libgadu' 'dbus-glib' 'nss'
-   'libnm')
+   'libnm' 'libxcrypt')
   optdepends=('avahi: Bonjour protocol support'
   'ca-certificates: SSL CA certificates'
   'python-dbus: for purple-remote and purple-url-handler'


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

2020-08-20 Thread Ike Devolder via arch-commits
Date: Thursday, August 20, 2020 @ 06:55:48
  Author: idevolder
Revision: 685283

archrelease: copy trunk to community-x86_64

Added:
  qcad/repos/community-x86_64/PKGBUILD
(from rev 685282, qcad/trunk/PKGBUILD)
  qcad/repos/community-x86_64/RRulerQt.patch
(from rev 685282, qcad/trunk/RRulerQt.patch)
  qcad/repos/community-x86_64/qt5.15.patch
(from rev 685282, qcad/trunk/qt5.15.patch)
Deleted:
  qcad/repos/community-x86_64/PKGBUILD
  qcad/repos/community-x86_64/RRulerQt.patch
  qcad/repos/community-x86_64/qt5.15.patch

+
 PKGBUILD   |  185 +++
 RRulerQt.patch |   40 +--
 qt5.15.patch   |   24 +++
 3 files changed, 123 insertions(+), 126 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 06:55:41 UTC (rev 685282)
+++ PKGBUILD2020-08-20 06:55:48 UTC (rev 685283)
@@ -1,94 +0,0 @@
-# Maintainer: BlackIkeEagle 
-# Contributor: Sergej Pupykin 
-# Contributor: Stefan Husmann 
-# Contributor: Giovanni Scafora 
-# Contributor: Daniel J Griffiths 
-
-pkgname=qcad
-pkgver=3.24.3.10
-pkgrel=2
-pkgdesc='A 2D CAD package based upon Qt'
-arch=('x86_64')
-url="https://www.qcad.org;
-license=('GPL3')
-depends=('qt5-script' 'qt5-svg' 'gcc-libs' 'qt5-xmlpatterns' 'qt5-tools')
-makedepends=('glu')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz;
-"RRulerQt.patch")
-sha512sums=('04c625c3e4900f8c5e2f907b43e9be96ad4f08b553b3b05cd2acbc7e3d8131fb74702b9a6d448fb313dcfbb757aec561f5fcbfa7394ac9d39aa8735907e29135'
-
'bcb26699aab6d16f9d180553adc17b5698c8a41758fe45820d25c402f41c29543d9293571677165387ba1fb6293ece09ac1814f70972bcb79e1b43b8e092e1a7')
-
-prepare() {
-  rm *.tar.gz
-  cd qcad-$pkgver
-  sed -e 's|$${QT_VERSION}|5.5.0|g' \
-  -i src/3rdparty/3rdparty.pro # Don't require specific Qt version
-  patch -p1 -i "$srcdir/RRulerQt.patch"
-}
-
-build() {
-  cd qcad-$pkgver
-  qmake-qt5 qcad.pro
-  make
-}
-
-package() {
-  cd qcad-$pkgver
-
-  # remove project files
-  find . \( -name '*.pri' -or -name '.pro' -or -name '*.ts' \) -delete
-  find . \( -name 'Makefile' -name '.gitignore' \) -delete
-
-  install -dm755 "$pkgdir"/usr/lib/qcad
-  cp -r examples fonts libraries linetypes patterns scripts themes ts \
-  "$pkgdir"/usr/lib/qcad
-  cp release/{*.so,qcad-bin} "$pkgdir"/usr/lib/qcad
-
-  # install man
-  install -Dm644 qcad.1 "$pkgdir"/usr/share/man/man1/qcad.1
-
-  # readme
-  install -Dm644 readme.txt "$pkgdir"/usr/lib/qcad/readme.txt
-
-  # qt
-  cp -r plugins platforminputcontexts platforms xcbglintegrations \
-  "$pkgdir"/usr/lib/qcad
-  #install -dm755 
"$pkgdir"/usr/lib/qcad/plugins/{designer,imageformats,printsupport,sqldrivers}
-  #for sofiles in /usr/lib/qt/plugins/designer/*.so
-  #do
-#ln -sf ${sofiles} "$pkgdir"/usr/lib/qcad/plugins/designer/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/imageformats/*.so
-  #do
-#ln -sf ${sofiles} 
"$pkgdir"/usr/lib/qcad/plugins/imageformats/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/printsupport/*.so
-  #do
-#ln -sf ${sofiles} 
"$pkgdir"/usr/lib/qcad/plugins/printsupport/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/sqldrivers/*.so
-  #do
-#ln -sf ${sofiles} 
"$pkgdir"/usr/lib/qcad/plugins/sqldrivers/${sofiles##/*/}
-  #done
-  #install -dm755 
"$pkgdir"/usr/lib/qcad/{platforminputcontexts,platforms,xcbglintegrations}
-  #for sofiles in /usr/lib/qt/plugins/platforminputcontexts/*.so
-  #do
-#ln -sf ${sofiles} 
"$pkgdir"/usr/lib/qcad/platforminputcontexts/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/platforms/*.so
-  #do
-#ln -sf ${sofiles} "$pkgdir"/usr/lib/qcad/platforms/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/xcbglintegrations/*.so
-  #do
-#ln -sf ${sofiles} "$pkgdir"/usr/lib/qcad/xcbglintegrations/${sofiles##/*/}
-  #done
-
-  install -Dm644 scripts/qcad_icon.png 
"$pkgdir"/usr/share/pixmaps/qcad_icon.png
-  install -Dm644 qcad.desktop "$pkgdir"/usr/share/applications/qcad.desktop
-
-  install -dm755 "$pkgdir"/usr/bin
-  echo -e 
'#!/bin/sh\nLD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"/usr/lib/qcad"
 exec /usr/lib/qcad/qcad-bin "$@"' >"$pkgdir"/usr/bin/qcad
-
-  chmod 0755 "$pkgdir"/usr/bin/qcad
-}

Copied: qcad/repos/community-x86_64/PKGBUILD (from rev 685282, 
qcad/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-20 06:55:48 UTC (rev 685283)
@@ -0,0 +1,91 @@
+# Maintainer: BlackIkeEagle 
+# Contributor: Sergej Pupykin 
+# Contributor: Stefan Husmann 
+# Contributor: Giovanni Scafora 
+# Contributor: Daniel J Griffiths 
+
+pkgname=qcad
+pkgver=3.25.0.0
+pkgrel=1
+pkgdesc='A 2D CAD package based upon Qt'
+arch=('x86_64')
+url="https://www.qcad.org;
+license=('GPL3')
+depends=('qt5-script' 

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

2020-08-20 Thread Ike Devolder via arch-commits
Date: Thursday, August 20, 2020 @ 06:54:48
  Author: idevolder
Revision: 685280

upgpkg: opera 70.0.3728.119-1

Modified:
  opera/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 06:25:34 UTC (rev 685279)
+++ PKGBUILD2020-08-20 06:54:48 UTC (rev 685280)
@@ -9,7 +9,7 @@
 # Contributor: eworm
 
 pkgname=opera
-pkgver=70.0.3728.106
+pkgver=70.0.3728.119
 pkgrel=1
 pkgdesc="A fast and secure web browser"
 url="https://www.opera.com/;
@@ -31,7 +31,7 @@
 'terms.html'
 'privacy.html'
 )
-sha512sums=('047d9638a82b28b2a3454c34f403b99b123152e36cb6e446dbdd88d56b9868959c3a1129962f6ccf436dd475de06abe6eca042451e73211493b2ff64d219c163'
+sha512sums=('746a33f8ee3261eed14dd8f87dd3b06d5d6ddc7047de5ddf7e18fe199f71ad90f7e812caa41063556f7c5ba919bd5990eccbb82eac8e37684c0b22fb3ce10070'
 
'7e854e4c972785b8941f60117fbe4b88baeb8d7ca845ef2e10e8064043411da73821ba1ab0068df61e902f242a3ce355b51ffa9eab5397ff3ae3b5defd1be496'
 
'ddb1773877fcfd7d9674e63263a80f9dd5a3ba414cda4cc6c411c88d49c1d5175eede66d9362558ddd53c928c723101e4e110479ae88b8aec4d2366ec179297f'
 
'e181656876f5075988964187c3d9f8d68c62944b986d67927c1c6e3181aeebf63a71d416d913c96e2d35b19bf786d8c83ee10015924c278ba42c990bcb7f9bb5'


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

2020-08-20 Thread Ike Devolder via arch-commits
Date: Thursday, August 20, 2020 @ 06:55:41
  Author: idevolder
Revision: 685282

upgpkg: qcad 3.25.0.0-1

Modified:
  qcad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 06:54:58 UTC (rev 685281)
+++ PKGBUILD2020-08-20 06:55:41 UTC (rev 685282)
@@ -5,8 +5,8 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=qcad
-pkgver=3.24.3.10
-pkgrel=2
+pkgver=3.25.0.0
+pkgrel=1
 pkgdesc='A 2D CAD package based upon Qt'
 arch=('x86_64')
 url="https://www.qcad.org;
@@ -13,10 +13,8 @@
 license=('GPL3')
 depends=('qt5-script' 'qt5-svg' 'gcc-libs' 'qt5-xmlpatterns' 'qt5-tools')
 makedepends=('glu')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz;
-"RRulerQt.patch")
-sha512sums=('04c625c3e4900f8c5e2f907b43e9be96ad4f08b553b3b05cd2acbc7e3d8131fb74702b9a6d448fb313dcfbb757aec561f5fcbfa7394ac9d39aa8735907e29135'
-
'bcb26699aab6d16f9d180553adc17b5698c8a41758fe45820d25c402f41c29543d9293571677165387ba1fb6293ece09ac1814f70972bcb79e1b43b8e092e1a7')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz;)
+sha512sums=('0eb541358723fe376ea68ad38d4173cfb002a24530b926d4a07b96caa3f0d21837e91eb38edcbca0ea5917236813bc14d6087793936aeb36c14afb1610e31563')
 
 prepare() {
   rm *.tar.gz
@@ -23,7 +21,6 @@
   cd qcad-$pkgver
   sed -e 's|$${QT_VERSION}|5.5.0|g' \
   -i src/3rdparty/3rdparty.pro # Don't require specific Qt version
-  patch -p1 -i "$srcdir/RRulerQt.patch"
 }
 
 build() {


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

2020-08-20 Thread Ike Devolder via arch-commits
Date: Thursday, August 20, 2020 @ 06:54:58
  Author: idevolder
Revision: 685281

archrelease: copy trunk to community-x86_64

Added:
  opera/repos/community-x86_64/PKGBUILD
(from rev 685280, opera/trunk/PKGBUILD)
  opera/repos/community-x86_64/default
(from rev 685280, opera/trunk/default)
  opera/repos/community-x86_64/eula.html
(from rev 685280, opera/trunk/eula.html)
  opera/repos/community-x86_64/opera
(from rev 685280, opera/trunk/opera)
  opera/repos/community-x86_64/opera.install
(from rev 685280, opera/trunk/opera.install)
  opera/repos/community-x86_64/privacy.html
(from rev 685280, opera/trunk/privacy.html)
  opera/repos/community-x86_64/terms.html
(from rev 685280, opera/trunk/terms.html)
Deleted:
  opera/repos/community-x86_64/PKGBUILD
  opera/repos/community-x86_64/default
  opera/repos/community-x86_64/eula.html
  opera/repos/community-x86_64/opera
  opera/repos/community-x86_64/opera.install
  opera/repos/community-x86_64/privacy.html
  opera/repos/community-x86_64/terms.html

---+
 PKGBUILD  |  176 +--
 default   |8 
 eula.html | 2104 +++---
 opera |   26 
 opera.install |   78 -
 privacy.html  | 2534 
 terms.html| 2314 +--
 7 files changed, 3620 insertions(+), 3620 deletions(-)

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


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

2020-08-20 Thread Bruno Pagani via arch-commits
Date: Thursday, August 20, 2020 @ 07:05:17
  Author: archange
Revision: 685284

upgpkg: intel-gmmlib 20.2.4-1

Modified:
  intel-gmmlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 06:55:48 UTC (rev 685283)
+++ PKGBUILD2020-08-20 07:05:17 UTC (rev 685284)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Bermond 
 
 pkgname=intel-gmmlib
-pkgver=20.2.3
+pkgver=20.2.4
 pkgrel=1
 pkgdesc="Intel Graphics Memory Management Library"
 arch=(x86_64)
@@ -15,7 +15,7 @@
 replaces=(gmmlib)
 options=(!emptydirs)
 
source=("https://github.com/${pkgname/-//}/archive/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('d2e0be39a986181623486d975f10ab74bc973857d216dc9f48400db96c6dfd66')
+sha256sums=('066d0dd2b0e23c924b4dccb04be2aa9ff38fbc34b9c18a407e6bedcd5fae1735')
 
 build() {
 cmake -B build -S gmmlib-${pkgname}-${pkgver} \


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

2020-08-20 Thread Bruno Pagani via arch-commits
Date: Thursday, August 20, 2020 @ 07:05:44
  Author: archange
Revision: 685285

archrelease: copy trunk to community-x86_64

Added:
  intel-gmmlib/repos/community-x86_64/PKGBUILD
(from rev 685284, intel-gmmlib/trunk/PKGBUILD)
Deleted:
  intel-gmmlib/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 07:05:17 UTC (rev 685284)
+++ PKGBUILD2020-08-20 07:05:44 UTC (rev 685285)
@@ -1,33 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Daniel Bermond 
-
-pkgname=intel-gmmlib
-pkgver=20.2.3
-pkgrel=1
-pkgdesc="Intel Graphics Memory Management Library"
-arch=(x86_64)
-url="https://github.com/intel/gmmlib/;
-license=(MIT)
-depends=(gcc-libs)
-makedepends=(cmake)
-provides=(gmmlib)
-conflicts=(gmmlib)
-replaces=(gmmlib)
-options=(!emptydirs)
-source=("https://github.com/${pkgname/-//}/archive/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('d2e0be39a986181623486d975f10ab74bc973857d216dc9f48400db96c6dfd66')
-
-build() {
-cmake -B build -S gmmlib-${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DRUN_TEST_SUITE=ON \
--Wno-dev
-make -C build
-}
-
-package() {
-make -C build DESTDIR="${pkgdir}" install
-install -Dm644 gmmlib-${pkgname}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: intel-gmmlib/repos/community-x86_64/PKGBUILD (from rev 685284, 
intel-gmmlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-20 07:05:44 UTC (rev 685285)
@@ -0,0 +1,33 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Daniel Bermond 
+
+pkgname=intel-gmmlib
+pkgver=20.2.4
+pkgrel=1
+pkgdesc="Intel Graphics Memory Management Library"
+arch=(x86_64)
+url="https://github.com/intel/gmmlib/;
+license=(MIT)
+depends=(gcc-libs)
+makedepends=(cmake)
+provides=(gmmlib)
+conflicts=(gmmlib)
+replaces=(gmmlib)
+options=(!emptydirs)
+source=("https://github.com/${pkgname/-//}/archive/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('066d0dd2b0e23c924b4dccb04be2aa9ff38fbc34b9c18a407e6bedcd5fae1735')
+
+build() {
+cmake -B build -S gmmlib-${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DRUN_TEST_SUITE=ON \
+-Wno-dev
+make -C build
+}
+
+package() {
+make -C build DESTDIR="${pkgdir}" install
+install -Dm644 gmmlib-${pkgname}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2020-08-20 Thread Eli Schwartz via arch-commits
Date: Friday, August 21, 2020 @ 05:47:34
  Author: eschwartz
Revision: 685731

upgpkg: calibre 4.23.0-1: upstream release

Modified:
  calibre/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-21 03:42:35 UTC (rev 685730)
+++ PKGBUILD2020-08-21 05:47:34 UTC (rev 685731)
@@ -8,7 +8,7 @@
 
 pkgbase=calibre
 pkgname=('calibre' 'calibre-common' 'calibre-python3')
-pkgver=4.22.0
+pkgver=4.23.0
 pkgrel=1
 pkgdesc="Ebook management application"
 arch=('x86_64')
@@ -29,11 +29,11 @@
 "https://calibre-ebook.com/signatures/${pkgbase}-${pkgver}.tar.xz.sig;
 "0001-De-vendor-pychm.patch"
 "calibre-alternatives.sh")
-sha256sums=('51f52b7015c4d9b456d0d5e8efacfffe564709552f0a635ae8174d1947ab1c34'
+sha256sums=('16de51473cf0e336f946a57251a1e4f4fbba1f857f17d8fc14aa132e7eb59518'
 'SKIP'
 'f7b829aea1d33818808cbeeb9a295e18e49edf619a5bc89b8315c88f56ce4d25'
 '940cc7081d0a64ba363bb0e1a1d8e0563c676458f90db845f2fbdd4195c075b3')
-b2sums=('19576d5cfc1a4ed6a505ef46656675980b6736be01f55874951a9a0c81a70c82e23e723db1d81d13917eaf615e65752a100fbc1cb43bdca0b3c4543e3b17cf43'
+b2sums=('3a950ac2b3aade547bb686cc99b963357e76b5931049ecb4a5e09ddaf1db26c74fa3b4ebd74e42d83f68c5c9827c534c0247a3c6a9b000641a778cfe5ac33599'
 'SKIP'
 
'c35181c70084813772c4d593311b48b3e3bcc3b4e9e8ee58112b9beab2bbc0de1ee22aafc3d06cfd812f87a2e91292f7b7f1dc5f522c55440f415b6b265d5671'
 
'543df218dfd2d4152a941ab57118d69bf4c6927e8020ee53c9a8b38efe9c89f032dc6385207e134cc9f69bfdc9cbcf63cd92fa6ea1647cbd534c5a511a5d1e91')


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

2020-08-20 Thread Eli Schwartz via arch-commits
Date: Friday, August 21, 2020 @ 05:48:10
  Author: eschwartz
Revision: 685732

archrelease: copy trunk to community-x86_64

Added:
  calibre/repos/community-x86_64/0001-De-vendor-pychm.patch
(from rev 685731, calibre/trunk/0001-De-vendor-pychm.patch)
  calibre/repos/community-x86_64/PKGBUILD
(from rev 685731, calibre/trunk/PKGBUILD)
  calibre/repos/community-x86_64/calibre-alternatives.sh
(from rev 685731, calibre/trunk/calibre-alternatives.sh)
  calibre/repos/community-x86_64/calibre-common.install
(from rev 685731, calibre/trunk/calibre-common.install)
  calibre/repos/community-x86_64/calibre.install
(from rev 685731, calibre/trunk/calibre.install)
Deleted:
  calibre/repos/community-x86_64/0001-De-vendor-pychm.patch
  calibre/repos/community-x86_64/PKGBUILD
  calibre/repos/community-x86_64/calibre-alternatives.sh
  calibre/repos/community-x86_64/calibre-common.install
  calibre/repos/community-x86_64/calibre.install

+
 0001-De-vendor-pychm.patch |13730 +--
 PKGBUILD   |  358 -
 calibre-alternatives.sh|  122 
 calibre-common.install |   22 
 calibre.install|   28 
 5 files changed, 7130 insertions(+), 7130 deletions(-)

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


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

2020-08-20 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 20, 2020 @ 11:10:54
  Author: mtorromeo
Revision: 685520

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 11:10:49 UTC (rev 685519)
+++ PKGBUILD2020-08-20 11:10:54 UTC (rev 685520)
@@ -1,17 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=cockpit-podman
-pkgver=21
-pkgrel=1
-pkgdesc='Cockpit UI for podman containers'
-arch=('x86_64')
-url='https://github.com/cockpit-project/cockpit-podman'
-license=(LGPL)
-depends=(cockpit podman)
-source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('7f9f4d08c5e0f0a0b502af505b86f6eb93a48b0c0958479cc1535b0a240a7768')
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: cockpit-podman/repos/community-x86_64/PKGBUILD (from rev 685519, 
cockpit-podman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-20 11:10:54 UTC (rev 685520)
@@ -0,0 +1,17 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=cockpit-podman
+pkgver=22
+pkgrel=1
+pkgdesc='Cockpit UI for podman containers'
+arch=('x86_64')
+url='https://github.com/cockpit-project/cockpit-podman'
+license=(LGPL)
+depends=(cockpit podman)
+source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
+sha256sums=('4b28449d7fb287cff1a15e3e15e47ba5288bbca52308490b590e028fbd5bc56d')
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2020-08-20 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 20, 2020 @ 11:10:49
  Author: mtorromeo
Revision: 685519

upgpkg: cockpit-podman 22-1

Modified:
  cockpit-podman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 11:09:44 UTC (rev 685518)
+++ PKGBUILD2020-08-20 11:10:49 UTC (rev 685519)
@@ -1,7 +1,7 @@
 # Maintainer: Massimiliano Torromeo 
 
 pkgname=cockpit-podman
-pkgver=21
+pkgver=22
 pkgrel=1
 pkgdesc='Cockpit UI for podman containers'
 arch=('x86_64')
@@ -9,7 +9,7 @@
 license=(LGPL)
 depends=(cockpit podman)
 
source=("https://github.com/cockpit-project/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz;)
-sha256sums=('7f9f4d08c5e0f0a0b502af505b86f6eb93a48b0c0958479cc1535b0a240a7768')
+sha256sums=('4b28449d7fb287cff1a15e3e15e47ba5288bbca52308490b590e028fbd5bc56d')
 
 package() {
   cd $pkgname


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

2020-08-20 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 20, 2020 @ 11:09:37
  Author: mtorromeo
Revision: 685517

upgpkg: cockpit 226-2: libxcrypt rebuild

Modified:
  cockpit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 11:06:40 UTC (rev 685516)
+++ PKGBUILD2020-08-20 11:09:37 UTC (rev 685517)
@@ -6,7 +6,7 @@
 pkgbase=cockpit
 pkgname=(cockpit cockpit-pcp cockpit-dashboard cockpit-docker cockpit-machines)
 pkgver=226
-pkgrel=1
+pkgrel=2
 pkgdesc='A systemd web based user interface for Linux servers'
 arch=('x86_64')
 url='https://cockpit-project.org/'


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

2020-08-20 Thread Christian Hesse via arch-commits
Date: Thursday, August 20, 2020 @ 12:26:38
  Author: eworm
Revision: 394436

upgpkg: archlinux-keyring 20200820-1: add kgizdov's new key

Modified:
  archlinux-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 10:25:09 UTC (rev 394435)
+++ PKGBUILD2020-08-20 12:26:38 UTC (rev 394436)
@@ -2,7 +2,7 @@
 # Maintainer: Bartłomiej Piotrowski 
 
 pkgname=archlinux-keyring
-pkgver=20200817
+pkgver=20200820
 pkgrel=1
 pkgdesc='Arch Linux PGP keyring'
 arch=(any)
@@ -10,7 +10,7 @@
 license=(GPL)
 install=$pkgname.install
 
source=(https://sources.archlinux.org/other/$pkgname/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('8673af1ae316c957c6c5ce91c30cb65a745531cb10366b83962ae34ccff32f1e'
+sha256sums=('2f0fe902583b12291ab52af151a9d5515a2dd46c241c544532ad8120b78d1bdf'
 'SKIP')
 validpgpkeys=('4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC'  # Pierre Schmitz 

   'A314827C4E4250A204CE6E13284FC34C8E4B1A25'  # Thomas Bächler 



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

2020-08-20 Thread Christian Hesse via arch-commits
Date: Thursday, August 20, 2020 @ 12:26:45
  Author: eworm
Revision: 394437

archrelease: copy trunk to testing-any

Added:
  archlinux-keyring/repos/testing-any/
  archlinux-keyring/repos/testing-any/PKGBUILD
(from rev 394436, archlinux-keyring/trunk/PKGBUILD)
  archlinux-keyring/repos/testing-any/archlinux-keyring.install
(from rev 394436, archlinux-keyring/trunk/archlinux-keyring.install)

---+
 PKGBUILD  |   26 ++
 archlinux-keyring.install |   20 
 2 files changed, 46 insertions(+)

Copied: archlinux-keyring/repos/testing-any/PKGBUILD (from rev 394436, 
archlinux-keyring/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2020-08-20 12:26:45 UTC (rev 394437)
@@ -0,0 +1,26 @@
+# Maintainer: Pierre Schmitz 
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgname=archlinux-keyring
+pkgver=20200820
+pkgrel=1
+pkgdesc='Arch Linux PGP keyring'
+arch=(any)
+url='https://projects.archlinux.org/archlinux-keyring.git/'
+license=(GPL)
+install=$pkgname.install
+source=(https://sources.archlinux.org/other/$pkgname/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('2f0fe902583b12291ab52af151a9d5515a2dd46c241c544532ad8120b78d1bdf'
+'SKIP')
+validpgpkeys=('4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC'  # Pierre Schmitz 

+  'A314827C4E4250A204CE6E13284FC34C8E4B1A25'  # Thomas Bächler 

+  '86CFFCA918CF3AF47147588051E8B148AC34'  # Evangelos Foutras 

+  'F3691687D867B81B51CE07D9BBE43771487328A9'  # Bartlomiej 
Piotrowski 
+  'BD84DE71F493DF6814B0167254EDC91609BC9183'  # Christian Hesse 

+  'CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E'  # Florian Pritz 

+  'E499C79F53C96A54E572FEE1C06086337C50773E')  # Jelle van der Waa 

+
+package() {
+  cd $pkgname-$pkgver
+  make PREFIX=/usr DESTDIR="$pkgdir" install
+}

Copied: archlinux-keyring/repos/testing-any/archlinux-keyring.install (from rev 
394436, archlinux-keyring/trunk/archlinux-keyring.install)
===
--- testing-any/archlinux-keyring.install   (rev 0)
+++ testing-any/archlinux-keyring.install   2020-08-20 12:26:45 UTC (rev 
394437)
@@ -0,0 +1,20 @@
+post_upgrade() {
+   if usr/bin/pacman-key -l >/dev/null 2>&1; then
+   usr/bin/pacman-key --populate archlinux
+
+   # Re-enable key of alad
+   # See https://bugs.archlinux.org/task/35478
+   printf 'enable\nquit\n' | LANG=C \
+   gpg --homedir /etc/pacman.d/gnupg \
+   --no-permission-warning --command-fd 0 \
+   --quiet --batch --edit-key \
+   DBE7D3DD8C81D58D0A13D0E76BC26A17B9B7018A \
+   2>/dev/null
+   fi
+}
+
+post_install() {
+   if [ -x usr/bin/pacman-key ]; then
+   post_upgrade
+   fi
+}


[arch-commits] Commit in cockpit/repos/community-testing-x86_64 (8 files)

2020-08-20 Thread Massimiliano Torromeo via arch-commits
Date: Thursday, August 20, 2020 @ 11:09:44
  Author: mtorromeo
Revision: 685518

archrelease: copy trunk to community-testing-x86_64

Added:
  cockpit/repos/community-testing-x86_64/PKGBUILD
(from rev 685517, cockpit/trunk/PKGBUILD)
  cockpit/repos/community-testing-x86_64/cockpit-ws.sysuser.conf
(from rev 685517, cockpit/trunk/cockpit-ws.sysuser.conf)
  cockpit/repos/community-testing-x86_64/cockpit-wsinstance.sysuser.conf
(from rev 685517, cockpit/trunk/cockpit-wsinstance.sysuser.conf)
  cockpit/repos/community-testing-x86_64/cockpit.pam
(from rev 685517, cockpit/trunk/cockpit.pam)
Deleted:
  cockpit/repos/community-testing-x86_64/PKGBUILD
  cockpit/repos/community-testing-x86_64/cockpit-ws.sysuser.conf
  cockpit/repos/community-testing-x86_64/cockpit-wsinstance.sysuser.conf
  cockpit/repos/community-testing-x86_64/cockpit.pam

-+
 PKGBUILD|  250 +++---
 cockpit-ws.sysuser.conf |2 
 cockpit-wsinstance.sysuser.conf |2 
 cockpit.pam |   10 -
 4 files changed, 132 insertions(+), 132 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 11:09:37 UTC (rev 685517)
+++ PKGBUILD2020-08-20 11:09:44 UTC (rev 685518)
@@ -1,125 +0,0 @@
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Iwan Timmer 
-# Contributor: Mark Constable 
-# Contributor: Anatol Pomozov 
-
-pkgbase=cockpit
-pkgname=(cockpit cockpit-pcp cockpit-dashboard cockpit-docker cockpit-machines)
-pkgver=225
-pkgrel=2
-pkgdesc='A systemd web based user interface for Linux servers'
-arch=('x86_64')
-url='https://cockpit-project.org/'
-license=(LGPL)
-makedepends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking
- git intltool gtk-doc gobject-introspection networkmanager 
libgsystem xmlto npm pcp)
-source=("https://github.com/cockpit-project/cockpit/releases/download/$pkgver/cockpit-$pkgver.tar.xz;
-
"https://github.com/cockpit-project/cockpit/releases/download/$pkgver/cockpit-cache-$pkgver.tar.xz;
-"cockpit.pam"
-"cockpit-ws.sysuser.conf"
-"cockpit-wsinstance.sysuser.conf")
-sha256sums=('426957b911291b1bdbb7c3d0c986c99375b89939cf9fe8eca6c74d71a70d1a11'
-'6021288b01a45715ad8213630b37d2f66fe9138b0d913e08e28594d9614d1582'
-'a979e236681c6a06906937cf0f012e976347af5d6d7e7ae04a11acb01cc2689d'
-'1ad9dad75858264778bd94799b60c651f7cc1c7f7fa1c54622174303e639287a'
-'46ee8ecad7bc97ba588ab9471dde76e41c00daf40658902425626c3a1938b438')
-
-build() {
-  cd cockpit-$pkgver
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---libexecdir=/usr/lib/$pkgname/ \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-dependency-tracking \
---with-appstream-data-packages='[ "archlinux-appstream-data" ]' \
---with-nfs-client-package='"nfs-utils"' \
---with-cockpit-user=cockpit-ws \
---with-cockpit-ws-instance-user=cockpit-wsinstance
-  make all
-}
-
-package_cockpit() {
-  depends=(krb5 libssh accountsservice perl-json perl-locale-po json-glib 
glib-networking)
-  backup=('etc/pam.d/cockpit')
-  optdepends=("cockpit-pcp: reading performance metrics"
-  "cockpit-dashboard: dashboard and support for connecting to 
remote hosts"
-  "cockpit-docker: user interface for managing docker containers"
-  "cockpit-podman: user interface for managing podman containers"
-  "cockpit-machines: user interface for managing virtual machines"
-  "udisks2: manage hard disks"
-  "networkmanager: manage network connections"
-  "packagekit: manage packages"
-  "kubernetes: manage cluster")
-
-  cd cockpit-$pkgver
-  make DESTDIR="$pkgdir" install
-  rm -rf "$pkgdir"/usr/{src,lib/firewalld}
-  install -Dm644 "$srcdir"/cockpit.pam "$pkgdir"/etc/pam.d/cockpit
-  install -Dm644 "$srcdir"/cockpit-ws.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-ws.conf
-  install -Dm644 "$srcdir"/cockpit-wsinstance.sysuser.conf 
"$pkgdir"/usr/lib/sysusers.d/cockpit-wsinstance.conf
-
-  echo "z /usr/lib/cockpit/cockpit-session - - cockpit-wsinstance -" >> 
"$pkgdir"/usr/lib/tmpfiles.d/cockpit-tempfiles.conf
-
-  # remove unused plugins
-  rm -rf "$pkgdir"/usr/share/cockpit/{selinux,playground,sosreport} \
- 
"$pkgdir"/usr/share/metainfo/org.cockpit-project.cockpit-{selinux,sosreport}.metainfo.xml
-
-  # remove plugins packaged separately
-  rm -rf "$pkgdir"/usr/share/cockpit/{pcp,dashboard,docker,machines} \
- 
"$pkgdir"/usr/share/metainfo/org.cockpit-project.cockpit-{docker,machines}.metainfo.xml
 \
- "$pkgdir"/usr/lib/cockpit/cockpit-pcp \
- "$pkgdir"/var/lib/pcp
-}
-
-package_cockpit-pcp() {
-  pkgdesc='Cockpit support for reading PCP metrics and loading PCP archives'
-  depends=(cockpit pcp)
-
-  cd 

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

2020-08-20 Thread Bruno Pagani via arch-commits
Date: Thursday, August 20, 2020 @ 12:31:59
  Author: archange
Revision: 685522

archrelease: copy trunk to community-x86_64

Added:
  paraview/repos/community-x86_64/PKGBUILD
(from rev 685521, paraview/trunk/PKGBUILD)
Deleted:
  paraview/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-20 12:31:31 UTC (rev 685521)
+++ PKGBUILD2020-08-20 12:31:59 UTC (rev 685522)
@@ -1,71 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Maintainer: Mathieu Westphal 
-# Contributor: Stéphane Gaudreault 
-# Contributor: 
-
-_pkg=paraview
-_mpi=openmpi
-pkgname=${_pkg}
-#-${_mpi}
-pkgver=5.8.0
-pkgrel=9
-pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
-arch=(x86_64)
-url="https://www.paraview.org;
-license=(BSD custom)
-depends=(boost-libs qt5-tools qt5-x11extras qt5-svg intel-tbb openmpi ffmpeg
- ospray python-numpy cgns protobuf
- double-conversion expat freetype2 gdal glew hdf5 libjpeg jsoncpp
- libjsoncpp.so libxml2 lz4 xz python-mpi4py netcdf libogg libpng pdal
- pugixml libtheora libtiff zlib)
-#gl2ps
-#libharu
-optdepends=(python-matplotlib)
-makedepends=(cmake boost mesa gcc-fortran ninja qt5-tools qt5-xmlpatterns 
eigen pegtl utf8cpp)
-conflicts=(vtk)
-source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver/R/-R}.tar.xz"
-
paraview-cgns-4.1.patch::https://gitlab.kitware.com/paraview/paraview/-/commit/3d48a287141eb911b4888440e09c262743b4db3c.patch)
-sha256sums=('219e4107abf40317ce054408e9c3b22fb935d464238c1c00c0161f1c8697a3f9'
-'917485fbff57b922e67e40ee35d265769b05b4b62c397e4c9ce00244f5fd07ae')
-
-prepare() {
-cd ParaView-v${pkgver/R/-R}
-patch -p1 -i ../paraview-cgns-4.1.patch
-}
-
-build() {
-# Note regarding use of system dependencies:
-# GL2PS has non-upstreamed patches
-# LIBHARU blocked by https://github.com/libharu/libharu/pull/157
-export CPPFLAGS+=" -DH5_USE_110_API"
-cmake -B build -S ParaView-v${pkgver/R/-R} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPARAVIEW_ENABLE_FFMPEG=ON \
--DPARAVIEW_ENABLE_GDAL=ON \
--DPARAVIEW_ENABLE_MOTIONFX=ON \
--DPARAVIEW_ENABLE_PDAL=ON \
--DPARAVIEW_ENABLE_VISITBRIDGE=ON \
--DPARAVIEW_ENABLE_XDMF3=ON \
--DPARAVIEW_INSTALL_DEVELOPMENT_FILES=ON \
--DPARAVIEW_USE_MPI=ON \
--DPARAVIEW_USE_PYTHON=ON \
--DPARAVIEW_USE_RAYTRACING=ON \
--DPARAVIEW_BUILD_WITH_EXTERNAL=ON \
--DVTK_MODULE_USE_EXTERNAL_VTK_gl2ps=OFF \
--DVTK_MODULE_USE_EXTERNAL_VTK_libharu=OFF \
--DVTK_SMP_IMPLEMENTATION_TYPE=TBB \
--DVTKm_ENABLE_MPI=ON \
--DVTK_MODULE_ENABLE_VTK_IOGDAL=YES \
--DVTK_MODULE_ENABLE_VTK_IOPDAL=YES \
--GNinja
-
-ninja -C build ${MAKEFLAGS}
-}
-
-package() {
-DESTDIR="${pkgdir}" ninja -C build install
-
-# Install license
-install -Dm644 ParaView-v${pkgver/R/-R}/License_v1.2.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: paraview/repos/community-x86_64/PKGBUILD (from rev 685521, 
paraview/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-20 12:31:59 UTC (rev 685522)
@@ -0,0 +1,65 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Mathieu Westphal 
+# Contributor: Stéphane Gaudreault 
+# Contributor: 
+
+_pkg=paraview
+_mpi=openmpi
+pkgname=${_pkg}
+#-${_mpi}
+pkgver=5.8.1
+pkgrel=1
+pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
+arch=(x86_64)
+url="https://www.paraview.org;
+license=(BSD custom)
+depends=(boost-libs qt5-tools qt5-x11extras qt5-svg intel-tbb openmpi ffmpeg
+ ospray python-numpy cgns protobuf
+ double-conversion expat freetype2 gdal gl2ps glew hdf5 libjpeg jsoncpp
+ libjsoncpp.so libharu libxml2 lz4 xz python-mpi4py netcdf libogg
+ libpng pdal pugixml libtheora libtiff zlib)
+optdepends=(python-matplotlib)
+makedepends=(cmake boost mesa gcc-fortran ninja qt5-tools qt5-xmlpatterns 
eigen pegtl utf8cpp)
+conflicts=(vtk)
+source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver/R/-R}.tar.xz"
+
paraview-cgns-4.1.patch::https://gitlab.kitware.com/paraview/paraview/-/commit/3d48a287141eb911b4888440e09c262743b4db3c.patch)
+sha256sums=('7653950392a0d7c0287c26f1d3a25cdbaa11baa7524b0af0e6a1a0d7d487d034'
+'917485fbff57b922e67e40ee35d265769b05b4b62c397e4c9ce00244f5fd07ae')
+
+prepare() {
+cd ParaView-v${pkgver/R/-R}
+patch -p1 -i ../paraview-cgns-4.1.patch
+# We have a patched libharu
+sed -i "s|2.4.0|2.3.0|" VTK/ThirdParty/libharu/CMakeLists.txt
+}
+
+build() {
+export CPPFLAGS+=" -DH5_USE_110_API"
+cmake -B build -S 

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

2020-08-20 Thread Bruno Pagani via arch-commits
Date: Thursday, August 20, 2020 @ 12:31:31
  Author: archange
Revision: 685521

upgpkg: paraview 5.8.1-1

Now build against system gl2ps and libharu

Modified:
  paraview/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-08-20 11:10:54 UTC (rev 685520)
+++ PKGBUILD2020-08-20 12:31:31 UTC (rev 685521)
@@ -7,8 +7,8 @@
 _mpi=openmpi
 pkgname=${_pkg}
 #-${_mpi}
-pkgver=5.8.0
-pkgrel=9
+pkgver=5.8.1
+pkgrel=1
 pkgdesc="Parallel Visualization application using VTK (${_mpi} version)"
 arch=(x86_64)
 url="https://www.paraview.org;
@@ -15,28 +15,25 @@
 license=(BSD custom)
 depends=(boost-libs qt5-tools qt5-x11extras qt5-svg intel-tbb openmpi ffmpeg
  ospray python-numpy cgns protobuf
- double-conversion expat freetype2 gdal glew hdf5 libjpeg jsoncpp
- libjsoncpp.so libxml2 lz4 xz python-mpi4py netcdf libogg libpng pdal
- pugixml libtheora libtiff zlib)
-#gl2ps
-#libharu
+ double-conversion expat freetype2 gdal gl2ps glew hdf5 libjpeg jsoncpp
+ libjsoncpp.so libharu libxml2 lz4 xz python-mpi4py netcdf libogg
+ libpng pdal pugixml libtheora libtiff zlib)
 optdepends=(python-matplotlib)
 makedepends=(cmake boost mesa gcc-fortran ninja qt5-tools qt5-xmlpatterns 
eigen pegtl utf8cpp)
 conflicts=(vtk)
 source=("${url}/files/v${pkgver:0:3}/ParaView-v${pkgver/R/-R}.tar.xz"
 
paraview-cgns-4.1.patch::https://gitlab.kitware.com/paraview/paraview/-/commit/3d48a287141eb911b4888440e09c262743b4db3c.patch)
-sha256sums=('219e4107abf40317ce054408e9c3b22fb935d464238c1c00c0161f1c8697a3f9'
+sha256sums=('7653950392a0d7c0287c26f1d3a25cdbaa11baa7524b0af0e6a1a0d7d487d034'
 '917485fbff57b922e67e40ee35d265769b05b4b62c397e4c9ce00244f5fd07ae')
 
 prepare() {
 cd ParaView-v${pkgver/R/-R}
 patch -p1 -i ../paraview-cgns-4.1.patch
+# We have a patched libharu
+sed -i "s|2.4.0|2.3.0|" VTK/ThirdParty/libharu/CMakeLists.txt
 }
 
 build() {
-# Note regarding use of system dependencies:
-# GL2PS has non-upstreamed patches
-# LIBHARU blocked by https://github.com/libharu/libharu/pull/157
 export CPPFLAGS+=" -DH5_USE_110_API"
 cmake -B build -S ParaView-v${pkgver/R/-R} \
 -DCMAKE_BUILD_TYPE=Release \
@@ -52,8 +49,6 @@
 -DPARAVIEW_USE_PYTHON=ON \
 -DPARAVIEW_USE_RAYTRACING=ON \
 -DPARAVIEW_BUILD_WITH_EXTERNAL=ON \
--DVTK_MODULE_USE_EXTERNAL_VTK_gl2ps=OFF \
--DVTK_MODULE_USE_EXTERNAL_VTK_libharu=OFF \
 -DVTK_SMP_IMPLEMENTATION_TYPE=TBB \
 -DVTKm_ENABLE_MPI=ON \
 -DVTK_MODULE_ENABLE_VTK_IOGDAL=YES \
@@ -65,7 +60,6 @@
 
 package() {
 DESTDIR="${pkgdir}" ninja -C build install
-
-# Install license
-install -Dm644 ParaView-v${pkgver/R/-R}/License_v1.2.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+# Fix licenses install
+mv "${pkgdir}"/usr/share/licenses/{ParaView,paraview}
 }


<    1   2   3   4